OSDN Git Service

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