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