OSDN Git Service

* java/util/Calendar.java: Implement Comparable<Calendar>. Update
[pf3gnuchains/gcc-fork.git] / libjava / ChangeLog
1 2007-02-01  Tom Tromey  <tromey@redhat.com>
2
3         * java/util/Calendar.java: Implement Comparable<Calendar>.  Update
4         comments.
5         (clear): Call complete.
6         (setTimeZone): Call computeTime, computeFields.
7         (compareTo): New method.
8         * java/nio/charset/Charset.java: Implement Comparable<Charset>.
9         (availableCharsets): Genericized.
10         (aliases): Likewise.
11         (compareTo): Changed argument type.
12         * java/lang/ClassLoader.java (loadClass): Genericized.
13         (findClass): Likewise.
14         (defineClass): Likewise.
15         (resolveClass): Likewise.
16         (findSystemClass): Likewise.
17         (setSigners): Likewise.
18         (findLoadedClass): Likewise.
19         (getResources): Likewise.
20         (findResources): Likewise.
21         (getSystemResources): Likewise.
22         (checkInitialized): New method.
23         * java/lang/Class.java (getCanonicalName): New method.
24
25 2007-01-31  Keith Seitz  <keiths@redhat.com>
26
27         * include/jvmti-int.h (JVMTI): Declare member "enabled".
28         * jvmti.cc (JVMTI): Add member "enabled".
29         (_Jv_GetJVMTIEnv): Mark JVMTI enabled.
30         * interpret.cc (_Jv_InterpMethod::ncode): Use JVMTI::enabled
31         instead of gnu::classpath::jdwp::Jdwp::isDebugging.
32         (_Jv_CompileMethod): If JVMTI is enabled, use run_debug
33         instead of run to compile the method.
34
35         * interpret-run.cc [DEBUG] (NEXT_INSN): Add JVMTI single step
36         notification.
37
38 2007-01-31  Andreas Tobler  <a.tobler@schweiz.org>
39
40         * testsuite/libjava.jvmti/jvmti-interp.exp (gij_jvmti_test_one): Add
41         -shared-libgcc to the cxxflaglist for Darwin.
42
43 2007-01-31  Tom Tromey  <tromey@redhat.com>
44
45         * scripts.am, Makefile.in: Rebuilt.
46         * scripts/makemake.tcl (gnu/javax/swing/text/html/parser): Build
47         as 'ordinary'.
48         (emit_ordinary_rule): New proc.
49
50 2007-01-31  Keith Seitz  <keiths@redhat.com>
51
52         * testsuite/libjava.jvmti/getmethodname.h: New file.
53         * testsuite/libjava.jvmti/getmethodname.jar: New file.
54
55 2007-01-31  Andrew Haley  <aph@redhat.com>
56
57         * prims.cc (_Jv_Abort): fflush (stderr).
58         * java/lang/natClassLoader.cc (_Jv_CheckABIVersion): Abort.
59
60 2007-01-31  Tom Tromey  <tromey@redhat.com>
61
62         * configure, Makefile.in: Rebuilt.
63         * configure.ac (JAR): Check for -@ feature.
64         * Makefile.am (libgcj-$(gcc_version).jar): Use find -prune.
65
66 2007-01-31  Tom Tromey  <tromey@redhat.com>
67
68         PR libgcj/30606:
69         * configure, include/config.h.in: Rebuilt.
70         * configure.ac: Check for magic_t in magic.h.
71         * java/net/natVMURLConnection.cc: Use HAVE_MAGIC_T.
72
73 2007-01-30  Tom Tromey  <tromey@redhat.com>
74
75         * Makefile.in: Rebuilt.
76         * Makefile.am (libgcj-$(gcc_version).jar): Rewrote.
77
78 2007-01-30  Andreas Tobler  <a.tobler@schweiz.org>
79
80         * testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use a
81         cast to print it right.
82
83 2007-01-29  Kaloian Doganov  <kaloian@doganov.org>
84
85         PR libgcj/30600:
86         * gnu/gcj/convert/BytesToCharsetAdaptor.java (read): Fix call to
87         'limit'.
88
89 2007-01-29  Kyle Galloway  <kgallowa@redhat.com>
90
91         * include/java-interp.h:  Added _Jv_Frame class and its two
92         subclasses _Jv_InterpFrame and _Jv_NativeFrame.  Also moved
93         _Jv_FrameType from java-stack.h.
94         * include/java-stack.h: Removed _Jv_FrameType.
95         * java/lang/Thread.java: Added frame member to hold new
96         composite frame stack.
97         * java/lang/Thread.h: Regenerated.
98         * java/lang/Thread.class: Rebuilt.
99         * jni.cc (_Jv_JNIMethod::call): Push a frame onto the stack when
100         calling a JNI method.
101         * jvmti.cc (_Jv_JVMTI_GetStackTrace): New Method.
102         (_Jv_JVMTI_GetFrameCount): New method.
103         * stacktrace.cc (UnwindTraceFn): Modified to use new _Jv_Frame
104         classes.
105         * testsuite/libjava.jvmti/interp/getstacktrace.jar: New test.
106         * testsuite/libjava.jvmti/interp/natgetstacktrace.cc: New test.
107         * testsuite/libjava.jvmti/interp/getstacktrace.h: New test.
108         * testsuite/libjava.jvmti/interp/getstacktrace.jar: New test.
109         * testsuite/libjava.jvmti/interp/getstacktrace.out: Output file
110         for test. 
111
112 2007-01-29  Tom Tromey  <tromey@redhat.com>
113
114         * interpret.cc (run_debug): Remove comment.
115         (STOREA): Reformat.
116         (STOREI): Likewise.
117         (STOREF): Likewise.
118         (STOREL): Likewise.
119         (STORED): Likewise.
120         (POKEI): Likewise.
121         (run_normal_debug): Likewise.
122         (run_synch_object_debug): Likewise.
123         (run_class_debug): Likewise.
124         (run_synch_class_debug): Likewise.
125         (get1s): Likewise.
126         (get1u): Likewise.
127         (get2u): Likewise.
128         (get4): Likewise.
129         (NULLARRAYCHECK): Likewise.
130         (ARRAYBOUNDSCHECK): Likewise.
131         * interpret-run.cc (insn_target) <breakpoint>: Tidy.
132
133 2007-01-29  Tom Tromey  <tromey@redhat.com>
134
135         * configure, Makefile.in: Rebuilt.
136         * Makefile.am (bin_SCRIPTS): Never install scripts/jar.
137         * configure.ac (BASH_JAR): Removed conditional.
138         (JAR): Prefer the jar found by AC_CHECK_PROGS.
139
140 2007-01-29  Tom Tromey  <tromey@redhat.com>
141
142         * Makefile.in: Rebuilt.
143         * Makefile.am (interpret.lo): New target.  Add -fwrap to
144         AM_CXXFLAGS.
145
146 2007-01-29  Keith Seitz  <keiths@redhat.com>
147
148         * include/jvmti_md.h (_CLASSPATH_VM_JVMTI_TYPES_DEFINED):
149         Define.
150         [__GCJ_JNI_IMPL__]: Define our own JVMTI types when building
151         gcj. All jvmti object types now are defined to be their
152         corresponding java classes.
153         * jvmti.cc (_Jv_JVMTI_SuspendThread): Remove casting from
154         jthread to Thread*.
155         (_Jv_JVMTI_ResumeThread): Likewise.
156         (_Jv_JVMTI_InterruptThread): Likewise.
157         (_Jv_JVMTI_SetEventNotificationMode): Likewise.
158         * gnu/classpath/jdwp/natVMVirtualMachine.cc
159         (jdwpClassPrepareCB): Likewise.
160         (jdwpThreadEndCB): Likewise.
161         (jdwpThreadStartCB): Likewise.
162         (jdwpVMInitCB): Likewise.
163  
164 2007-01-28  Michele Sandri  <gpointorama@gmail.com>
165
166         * gnu/java/nio/channels/natFileChannelWin32.cc
167         (lock): Implemented.
168         (unlock): Implemented.
169
170 2007-01-27  Andreas Tobler  <a.tobler@schweiz.org>
171
172         PR libgcj/30513
173         * configure.host: Add forgottten sysdep_dir to sparc. Add a flag to
174         libgcj_flags to undefine 'sun' at compile time.
175         * sysdep/sparc/locks.h (read_barrier): New functions for 32 and 64 bit
176         Sparc.
177         (write_barrier): Likewise.
178
179 2007-01-27  Keith Seitz  <keiths@redhat.com>
180
181         * gnu/classpath/jdwp/natVMVirtualMachine.cc
182         (getAllClassMethods): Move error handling to ...
183         (throw_jvmti_error): ... here.
184         (jdwpClassPrepareCB): New function.
185         (jdwpThreadEndCB): New function.
186         (jdwpThreadStartCB): New function.
187         (jdwpVMDeathCB): New function.
188         (jdwpVMInitCB): Define and enable callbacks for
189         ClassPrepare, ThreadEnd, ThreadStart, and VMDeath.
190
191 2007-01-27  Jakub Jelinek  <jakub@redhat.com>
192
193         * Makefile.am (generic_header_files): Add $(inner_nat_headers).
194         * testsuite/Makefile.am (check-dejaGNU): Depend on compile-tests.
195         (MYGCJH): New variable.
196         (compile-tests): New goal.
197         * Makefile.in: Rebuilt.
198         * testsuite/Makefile.in: Rebuilt.
199
200 2007-01-26  Tom Tromey  <tromey@redhat.com>
201
202         * Updated headers.
203
204 2007-01-25  Tom Tromey  <tromey@redhat.com>
205
206         PR libgcj/29594:
207         * gnu/gcj/convert/Convert.java (main): Correctly handle missing
208         input or output encodings.  Removed unused local variables.
209
210 2007-01-25  Keith Seitz  <keiths@redhat.com>
211
212         * include/jvmti-int.h (_Jv_GetJDWP_JVMTIEnv): Declare.
213         * gnu/classpath/jdwp/natVMVirtualMachine.cc
214         (_Jv_GetJDWP_JVMTIEnv): New function.
215         * gnu/classpath/jdwp/natVMMethod.cc (getName): Implement.
216         (getSignature): Implement.
217         (getModifiers): Implement.
218
219 2007-01-25  Andrew Haley  <aph@redhat.com>
220
221         * configure, Makefile.in, include/config.h.in: Rebuilt.
222         * Makefile.am (libgcj_la_LIBADD): Removed $(LIBMAGIC).
223         * configure.ac: Don't check for libmagic.
224         * java/net/natVMURLConnection.cc (p_magic_open, p_magic_load,
225         p_magic_close, p_magic_buffer): New globals.
226         (init): Look up 'magic' functions.
227         (guessContentTypeFromBuffer): Updated.
228
229 2007-01-25  Keith Seitz  <keiths@redhat.com>
230
231         * jvmti.cc (_Jv_JVMTI_GetMethodName): New function.
232         (_Jv_JVMTI_Interface): Define GetMethodName.
233         * testsuite/libjava.jvmti/getmethodname.java: New file.
234         * testsuite/libjava.jvmti/natgetmethodname.cc: New file.
235         * testsuite/libjava.jvmti/getmethodname.out: New file. 
236
237 2007-01-24  Kyle Galloway  <kgallowa@redhat.com>
238
239     * libjava/testsuite/libjava.jvmti/jvmti-interp.exp: New file.
240     * libjava/testsuite/libjava.jvmti/interp: New folder.
241     * libjava/testsuite/lib/libjava.exp (exec_gij): New Method.
242
243 2007-01-24  Keith Seitz  <keiths@redhat.com>
244
245         * link.cc (_Jv_Linker::wait_for_state): Add JVMTI
246         CLASS_PREPARE notification.
247
248 2007-01-24  Keith Seitz  <keiths@redhat.com>
249
250         * interpret.cc: Include gnu/gcj/jvmti/Breakpoint.h,
251         gnu/gcj/jvmti/BreakpointManager.h, jvmti.h, and jvmti-int.h
252         * interpret-run.cc: Implement insn_breakpoint.
253
254 2007-01-24  Keith Seitz  <keiths@redhat.com>
255
256         * prims.cc (_Jv_RunMain): Send JVMTI event notifications
257         for VM_INIT and VM_DEATH instead of the JDWP notifications.
258
259 2007-01-24  Keith Seitz  <keiths@redhat.com>
260
261         * gnu/classpath/jdwp/natVMVirtualMachine.cc
262         (getAllClassMethods): Implement.
263
264 2007-01-24  Andrew Haley  <aph@redhat.com>
265
266         * gnu/classpath/natVMStackWalker.cc: Call InitClass everywhere.
267         (getClassContext) Add a barrier to prevent GetStackWalkerStack()
268         from being sibcalled.
269
270 2007-01-24  Andrew Haley  <aph@redhat.com>
271
272         * scripts/makemake.tcl (emit_bc_rule): Set the source filename.
273         * sources.am: Rebuild.
274
275 2007-01-24  Andreas Krebbel  <krebbel1@de.ibm.com>
276
277         * exception.cc (parse_lsda_header, PERSONALITY_FUNCTION): Replaced
278         _Unwind_Word with _uleb128_t and _Unwind_SWord with _sleb128_t.
279
280 2007-01-23  H.J. Lu  <hongjiu.lu@intel.com>
281
282         PR libgcj/30550
283         * Makefile.am (ecjx_DEPENDENCIES): Add libgcj_bc.la if needed.
284         * Makefile.in: Regenerated.
285
286 2007-01-22  Keith Seitz  <keiths@redhat.com>
287
288         * gnu/classpath/jdwp/natVMVirtualMachine.cc
289         (getClassMethod): Implement.
290
291 2007-01-22  Keith  Seitz  <keiths@redhat.com>
292
293         * java/lang/Class.h (_Jv_GetClassStatus): Declare.
294         * java/lang/natClass.cc (_Jv_GetClassStatus): New function.
295         * jvmti.cc (_Jv_JVMTI_GetClassStatus): New function.
296         (_Jv_JVMTI_Interface): Define GetClassStatus.
297
298 2007-01-22  Tom Tromey  <tromey@redhat.com>
299
300         * configure: Rebuilt.
301         * configure.ac (GCJ): Reverted patch of 2006-12-20.
302
303 2007-01-22  Tom Tromey  <tromey@redhat.com>
304
305         PR java/29812:
306         * testsuite/libjava.jni/pr29812.java: New file.
307         * testsuite/libjava.jni/pr29812_injar.java: New file.
308         * testsuite/libjava.jni/pr29812_injar.jar: New file.
309         * testsuite/libjava.jni/pr29812.out: New file.
310         * testsuite/libjava.jni/pr29812_injar.c: New file.
311         * testsuite/libjava.jni/pr29812_injar.h: New file.
312         * testsuite/libjava.jni/pr29812.jar: New file.
313         * testsuite/libjava.jni/pr29812.c: New file.
314         * testsuite/libjava.jni/pr29812.h: New file.
315         * testsuite/libjava.jni/jni.exp (gcj_jni_get_cxxflags_invocation):
316         New proc.
317         (gcj_jni_invocation_test_one): Use it.
318         (gcj_jni_pr29812): New proc.
319         (gcj_jni_run): Use it.
320         * java/lang/natRuntime.cc (_load): Push a new system frame before
321         calling JNI_OnLoad.
322         * include/jvm.h (_Jv_JNI_PopSystemFrame): Declare.
323         (_Jv_GetJNIEnvNewFrameWithLoader): Likewise.
324         * jni.cc (struct _Jv_JNI_LocalFrame) <marker>: Now unsigned char.
325         <allocated_p>: Now bool.
326         <loader>: New field.
327         (_Jv_JNI_EnsureLocalCapacity): Updated.
328         (_Jv_JNI_NewLocalRef): Likewise.
329         (_Jv_JNI_NewLocalRef): Likewise.
330         (_Jv_JNI_PopLocalFrame): Likewise.
331         (_Jv_JNI_FindClass): Likewise.
332         (_Jv_GetJNIEnvNewFrame): Likewise.
333         (_Jv_JNI_AttachCurrentThread): Likewise.
334         (_Jv_GetJNIEnvNewFrameWithLoader): New function.
335         (_Jv_GetJNIEnvNewFrame): Use it.
336         * include/jni_md.h (_CLASSPATH_JNIENV_CONTENTS): Removed 'klass'.
337
338 2007-01-22  Tom Tromey  <tromey@redhat.com>
339
340         * libtool-version: Bump current to 9.
341
342 2007-01-22  Andrew Haley  <aph@redhat.com>
343
344         * sysdep/alpha/locks.h (write_barrier): New.
345
346 2007-01-21  Matthias Klose  <doko@debian.org>
347
348         * Makefile.am (install-exec-hook): Use transformed name.
349         * Makefile.in: Regenerate.
350
351 2007-01-19  Keith Seitz  <keiths@redhat.com>
352
353         * gnu/classpath/jdwp/natVMVirtualMachine.cc: Mark unused parameters
354         in methods and reformat.
355
356         * gnu/classpath/jdwp/natVMFrame.cc: Mark unused parameters with
357         MAYBE_UNUSED.
358
359 2007-01-18  Keith Seitz  <keiths@redhat.com>
360
361         From Macro Trudel <mtrudel@gmx.ch>:
362         * gnu/classpath/jdwp/natVMVirtualMachine.cc (jdwpVMInitCB):
363         Use JNICALL.
364
365 2007-01-18  Marco Trudel  <mtrudel@gmx.ch>
366
367         * jni.cc (_Jv_JNI_FindClass): Initialize class.
368         * testsuite/libjava.jni/findclass2.jar: New file.
369         * testsuite/libjava.jni/findclass2.h: New file.
370         * testsuite/libjava.jni/findclass2.java: New file
371         * testsuite/libjava.jni/findclass2.c: New file.
372         * testsuite/libjava.jni/findclass2.out: New file.
373
374 2007-01-18  Tom Tromey  <tromey@redhat.com>
375
376         * configure: Rebuilt.
377         * configure.ac: Use multi_basedir instead of libgcj_basedir.
378
379 2007-01-18  Gary Benson  <gbenson@redhat.com>
380
381         * gnu/java/nio/natVMPipeEcos.cc:
382         Renamed from gnu/java/nio/natPipeImplEcos.cc.
383         * gnu/java/nio/natVMPipePosix.cc:
384         Renamed from gnu/java/nio/natPipeImplPosix.cc.
385         * gnu/java/nio/natVMPipeWin32.cc:
386         Renamed from gnu/java/nio/natPipeImplWin32.cc.
387         * gnu/java/nio/natVMSelectorEcos.cc:
388         Renamed from gnu/java/nio/natSelectorImplEcos.cc.
389         * gnu/java/nio/natVMSelectorPosix.cc:
390         Renamed from gnu/java/nio/natSelectorImplPosix.cc.
391         * gnu/java/nio/natVMSelectorWin32.cc:
392         Renamed from gnu/java/nio/natSelectorImplWin32.cc.
393         * java/io/natVMObjectInputStream.cc:
394         Renamed from java/io/natObjectInputStream.cc.
395         * java/lang/natVMDouble.cc:
396         Renamed from java/lang/natDouble.cc.
397         * java/lang/natVMFloat.cc:
398         Renamed from java/lang/natFloat.cc.     
399         * Makefile.am, configure.ac: Reflect the above.
400         * Makefile.in, configure: Rebuilt.
401
402 2007-01-17  Andrew Haley  <aph@redhat.com>
403
404         * Makefile.in: Rebuilt.
405         * Makefile.am (ecjx_LDFLAGS): Pass -fbootclasspath.
406
407 2007-01-17  Keith Seitz  <keiths@redhat.com>
408
409         * java/lang/natThread.cc (finish_): Add JVMTI ThreadEnd notification.
410         (_Jv_NotifyThreadStart): Add JVMTI ThreadStart notification.
411
412 2007-01-16  Jack Howarth  <howarth@bromo.med.uc.edu>
413
414         * configure.ac: Use multi.m4 from aclocal rather than custom
415         code.  Use multi_basedir instead libgcj_basedir.  Test for
416         /proc/self/exe when not cross-compiling.
417         * aclocal.m4: Regenerate.
418         * configure: Regenerate.
419         * Makefile.in: Regenerate.
420
421 2007-01-17  Gary Benson  <gbenson@redhat.com>
422
423         * java/nio/natVMDirectByteBufferImpl.cc:
424         Renamed from java/nio/natDirectByteBufferImpl.cc.
425         * Makefile.am: Reflect the above.
426         * Makefile.in: Rebuilt.
427         
428 2007-01-17  Marco Trudel  <mtrudel@gmx.ch>
429
430         * jvmti.cc (_Jv_JVMTI_GetAllThreads): Now static.  Use JNICALL.
431         Fixed indentation.  Removed unused variable.
432
433 2007-01-16  Tom Tromey  <tromey@redhat.com>
434
435         * java/lang/natThread.cc (finalize_native): Remove cast.
436         (_Jv_GetCurrentJNIEnv): Likewise.
437         * include/jvm.h (struct natThread) <jni_env>: Declare as
438         _Jv_JNIEnv*.
439
440 2007-01-16  Keith Seitz  <keiths@redhat.com>
441
442         * testsuite/libjava.jvmti/natevents.cc (FieldModificationCB): Use
443         %#llx instead of %d for new_value.
444         * testsuite/libjava.jvmti/events.out: Update expected output.
445         * testsuite/libjava.jvmti/events.jar: Regenerate.
446
447 2007-01-16  Keith Seitz  <keiths@redhat.com>
448
449         * gnu/classpath/jdwp/natVMVirtualMachine.cc (DEFINE_CALLBACK):
450         New macro.
451         (ENABLE_EVENT): New macro.
452         (initialize): Define and enable JVMTI VM_INIT callback.
453         (jdwpVMInitCB): New function.
454
455 2007-01-16  Kyle Galloway  <kgallowa@redhat.com>
456
457         * jvmti.cc (_Jv_JVMTI_GetAllThreads): New function.
458         * testsuite/libjava.jvmti/getallthreads.java: New test.
459         * testsuite/libjava.jvmti/natgetallthreads.cc: Ditto.
460         * testsuite/libjava.jvmti/getallthreads.out: Ditto.
461         * testsuite/libjava.jvmti/getallthreads.h: Ditto.
462         * testsuite/libjava.jvmti/getallthreads.jar: Ditto. 
463
464 2007-01-15  Keith Seitz  <keiths@redhat.com>
465
466         * gnu/classpath/jdwp/natVMVirtualMachine.cc (suspendThread): Use
467         java.lang.StringBuilder instead of java.lang.StringBuffer.
468         (resumeThread): Likewise.
469
470 2007-01-15  Gary Benson  <gbenson@redhat.com>
471
472         * java/nio/MappedByteBuffer.java: Removed.
473         * sources.am, Makefile.in: Rebuilt.
474
475 2007-01-15  Gary Benson  <gbenson@redhat.com>
476
477         * java/net/URLClassLoader.java: Removed.
478         * gnu/java/net/loader/Load_gcjlib.java: New file.
479         * gnu/gcj/runtime/BootClassLoader.java: Ensure core
480         URL handler is present in static executables.
481         * sources.am, Makefile.in: Rebuilt.
482
483 2007-01-14  H.J. Lu  <hongjiu.lu@intel.com>
484
485         * Makefile.am (libgcj_la_LDFLAGS): Add
486         $(LIBGCJ_LD_SYMBOLIC_FUNCTIONS).
487         (libgcj_tools_la_LDFLAGS): Likewise.
488         (libgcj_bc_la_LDFLAGS): Likewise.
489         * Makefile.in: Regenerated.
490
491         * configure.ac: Use ACX_PROG_LD_GNU_SYMBOLIC.  Set
492         LIBGCJ_LD_SYMBOLIC_FUNCTIONS to $SYMBOLIC_LDFLAGS.  Set
493         libgcj_ld_symbolic to $SYMBOLIC_LDFLAGS if it isn't set.
494         Substitute LIBGCJ_LD_SYMBOLIC_FUNCTIONS.
495         * configure: Regenerated.
496         * aclocal.m4: Likewise.
497         * gcj/Makefile.in: Likewise.
498         * include/Makefile.in: Likewise.
499         * testsuite/Makefile.in: Likewise.
500
501 2007-01-12  Kaz Kojima  <kkojima@gcc.gnu.org>
502
503         * sysdep/sh/locks.h (read_barrier): New.
504         (write_barrier): Likewise.
505
506 2007-01-12  Andrew Haley  <aph@redhat.com>
507
508         * include/i386-signal.h: Rewrite to use rt_sigaction.
509
510 2007-01-11  Andrew Haley  <aph@redhat.com>
511
512         * prims.cc (jdwpOptions) Fix deprecated cast from char[] constant
513         to char*.
514         * include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): Rewrite to fix
515         aliasing violation.
516
517 2007-01-10  Tom Tromey  <tromey@redhat.com>
518
519         * gnu/gcj/xlib/*.h: New files.
520         * gnu/awt/xlib/*.h: Likewise.
521         * classpath/lib/gnu/gcj/xlib: New class files.
522         * classpath/lib/gnu/awt/xlib: Likewise.
523
524 2007-01-10  Tom Tromey  <tromey@redhat.com>
525
526         * HACKING: Various updates.
527
528 2007-01-10  Tom Tromey  <tromey@redhat.com>
529
530         * java/lang/natDouble.cc (toString): Added parens.
531         * gnu/gcj/io/shs.h (PROTO): Define.
532         * link.cc (resolve_pool_entry): Added missing braces.
533
534 2007-01-10  H.J. Lu  <hongjiu.lu@intel.com>
535
536         PR libgcj/30424
537         * sysdep/ia64/locks.h (read_barrier): New.
538         (write_barrier): New.
539
540 2007-01-10  Gary Benson  <gbenson@redhat.com>
541
542         * java/net/URL.java: Removed.
543         * sources.am, Makefile.in: Rebuilt.
544
545 2007-01-10  Matthias Klose  <doko@debian.org>
546
547         * Makefile.am (install-exec-hook): Support $(DESTDIR).
548         * Makefile.in: Regenerated.
549
550 2007-01-05  Tom Tromey  <tromey@redhat.com>
551
552         * testsuite/libjava.loader/loader.exp (gcj_loader_run): Find
553         dummy.class in srcdir.
554
555 2007-01-03  Tom Tromey  <tromey@redhat.com>
556
557         * testsuite/libjava.cni/cni.exp (gcj_cni_compile_cxx_to_o): Add -I
558         for srcdir.
559
560 2007-01-03  Tom Tromey  <tromey@redhat.com>
561
562         * testsuite/*: Added many .jar and .h files.
563         * testsuite/libjava.special/special.exp
564         (gcj_special_try_compiler): New proc.
565         * testsuite/libjava.loader/loader.exp (gcj_loader_run): Don't
566         bytecompile source.  Search for .jar files.
567         (gcj_loader_test_one): Don't look for MyLoader.java.
568         * testsuite/libjava.jvmti/jvmti.exp (gcj_jvmti_test_one): Don't
569         bytecompile sources or build headers.
570         (gcj_jvmti_run): Look for .jar files.
571         * testsuite/libjava.jni/jni.exp (gcj_jni_run): Compile .jar
572         files.
573         (gcj_jni_test_one): Don't bytecompile sources or build headers.
574         Set classpath when invoking gij.
575         (gcj_jni_invocation_test_one): Likewise.
576         * testsuite/libjava.cni/cni.exp (gcj_cni_test_one): Don't build
577         headers or bytecompile sources.
578         (gcj_cni_run): Use .jar files, not .java files.
579         * testsuite/libjava.lang/lang.exp: Compile .jar files.
580
581 2007-01-02  Tom Tromey  <tromey@redhat.com>
582
583         * configure: Rebuilt.
584         * configure.ac: Check for gjar.
585
586 2007-01-02  Tom Tromey  <tromey@redhat.com>
587
588         * testsuite/libjava.jacks/jacks.exp: Removed.
589         * testsuite/libjava.jacks/jacks.xfail: Removed.
590