forked from kaffe/kaffe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog.15
More file actions
8517 lines (6885 loc) · 333 KB
/
ChangeLog.15
File metadata and controls
8517 lines (6885 loc) · 333 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2004-12-31 Dalibor Topic <[email protected]>
* test/internal/Makefile.am (NativeMethodCall.class): Merged
with java/lang/System.class.
(java/lang/System.class): Removed.
2004-12-31 Dalibor Topic <[email protected]>
* test/internal/Makefile.am (NativeMethodCall.class): Added
dependency on java/lang/System.class.
(java/lang/System.class): Written out source file name.
2004-12-31 Dalibor Topic <[email protected]>
* libraries/javalib/Makefile.am.in (LD_LIBRARY_PATH): Added to
fix bootstrap problems on OpenBSD.
Reported by: Riccardo Mottola <[email protected]>
Suggested by: Guilhem Lavaux <[email protected]>
* libraries/javalib/Makefile.am,
libraries/javalib/Makefile.in:
Regenerated.
2004-12-30 Guilhem Lavaux <[email protected]>
* include/Makefile.am
(NOINSTALL_DERIVED_HDRS): Added java_lang_VMClassLoader.h.
* configure.ac: Removed the detection of broken setsockopt.
* kaffe/kaffevm/jni/jni-string.c
(KaffeJNI_NewStringUTF): If data is NULL we should return NULL
directly.
* kaffe/kaffevm/systems/unix-pthreads/syscalls.c
(jthreadedAccept): Use the old implementation using select all the
time. It looks like being the only really working way of handling
timeouts.
* libraries/clib/native/ClassLoader.c: Include
java_lang_VMClassLoader.h to fix some warnings.
* configure, include/Makefile.in, config/config.h.in,
libltdl/ltdl.c: Regenerated.
2004-12-30 Guilhem Lavaux <[email protected]>
* kaffe/kaffevm/systems/unix-jthreads/jsignal.h,
kaffe/kaffevm/systems/unix-jthreads/signal.c:
Brought back ignoreSignal as a global symbol but renamed it to
KaffeJThread_ignoreSignal.
2004-12-29 Guilhem Lavaux <[email protected]>
* kaffe/kaffevm/gtypes.h: New intp type for signed integer that may
represent pointers.
* kaffe/kaffevm/thread.c
(nameThread): Check that the thread has been linked before returning
the name.
* kaffe/kaffevm/kaffe-gc/gc-mem.c
(page_alloc): Use intp instead of intptr_t as it is not available on
all systems.
* kaffe/kaffevm/kaffe-gc/gc-refs.c
(TwalkLiveThreads): Reuse jthread_walkLiveThreads_r to highlight the
bug on SMP.
* kaffe/kaffevm/systems/unix-jthreads/jsignal.h: Removed ignoreSignal.
* kaffe/kaffevm/systems/unix-pthreads/syscalls.c
(jthreadedForkExec): Save the old sigmask and restore it after fork.
* kaffe/kaffevm/systems/unix-pthreads/thread-impl.c
(jthread_create): Cleanup the thread queue if pthread_create fails.
(jthread_suspendall): Temporarily changed logic to insure that all
concerned threads receive the signal.
2004-12-29 Guilhem Lavaux <[email protected]>
* config/sparc/jit-sparc.def: Renamed setEpilogueLabel to match the
new symbol names.
2004-12-29 Guilhem Lavaux <[email protected]>
* kaffe/kaffevm/systems/unix-pthreads/jsignal.h,
kaffe/kaffevm/systems/unix-jthreads/jsignal.h,
kaffe/kaffevm/systems/unix-pthreads/signal.c,
kaffe/kaffevm/systems/unix-jthreads/signal.c:
Made ignoreSignal private to signal.c. This symbol may conflict
with Ch.
Reported by Kabileshkumar Cheetancheri <[email protected]>
2004-12-27 Guilhem Lavaux <[email protected]>
* test/regression/ProhibitedClass.java: Changed the output to be less
sensitive to the line number fluctuations.
2004-12-27 Guilhem Lavaux <[email protected]>
* kaffe/kaffevm/soft.c
(instanceof_interface): Fixed instanceof implementation. It should
work as expected now (tested against Ant). CSTATE_PREPARED is
sufficient for implementors.
* WHATSNEW: Updated NEWS entry.
2004-12-27 Guilhem Lavaux <[email protected]>
* config/alpha/jit-alpha.def,
config/i386/jit-i386.def,
config/i386/jit3-i386.def,
config/powerpc/jit3-powerpc.def,
kaffe/kaffevm/jit/funcs.c,
kaffe/kaffevm/jit/icode.c,
kaffe/kaffevm/jit/machine.c,
kaffe/kaffevm/jit3/funcs.c,
kaffe/kaffevm/jit3/icode.c,
kaffe/kaffevm/jit3/machine.c: Adjusted calls to the new name of
some JIT compiler symbols.
* kaffe/kaffevm/jit/constpool.c, kaffe/kaffevm/jit/constpool.h,
* kaffe/kaffevm/jit/labels.c, kaffe/kaffevm/jit/labels.h:
Renamed functions to use the KaffeJIT_ prefix.
* kaffe/kaffevm/jit/machine.h: New macro KJIT to follow the prefix name.
* kaffe/kaffevm/jit/native-wrapper.c: Renamed calls to the JIT
compiler using the KJIT macro.
* kaffe/kaffevm/jit3/constpool.c, kaffe/kaffevm/jit3/constpool.h,
kaffe/kaffevm/jit3/labels.c, kaffe/kaffevm/jit3/labels.h:
Renamed functions to use the KaffeJIT_ prefix.
* kaffe/kaffevm/jit3/machine.h: New macro KJIT to follow the prefix name.
* kaffe/kaffevm/jni/jni-base.c
(parseSize): Imported from kaffe/main.c
(KaffeJNI_ParseArgs): Added support for debug output and stack
size setting.
2004-12-25 Guilhem Lavaux <[email protected]>
* configure.ac: Fixed CPPFLAGS generation to be compatible with
boehm's configure.
* config/mips/irix5/md.h: Removed extra macros.
* include/Makefile.am: Moved ObjectInputStream and
VMObjectStreamClass to JNI headers.
* kaffe/kaffevm/baseClasses.c: Reset dummyClassClass before using
it.
* kaffe/kaffevm/classMethod.c
(processClass, resolveInterfaces): Use weak references to track
vanishing classes.
(processClass): Do not free explicitly the generated code anymore.
(buildInterfaceDispatchTable): Remember the total length of the
table. Store the parent class of the table in the first entry.
(computeInterfaceImplementationIndex): Store a pointer to the
itable2dtable instead of an index.
* kaffe/kaffevm/soft.c
(soft_lookupinterfacemethod): Use directly the pointer in
implementors.
(instanceof_interface): Use implementors to directly check the
inheritancy.
* kaffe/kaffevm/gc.h: New type for interface table. Two new
functions to handle weak references.
* kaffe/kaffevm/gcFuncs.c
(destroyClass): Do not explicitly free memory for the
native/bytecode code. Use weak references to track classes which
has already been freed.
(walkMethods): Mark the bytecode _and_ the native code.
(walkClass): Mark the dtable, the interfaces, the vtable.
(initCollector): KGC_ALLOC_TRAMPOLINE, KGC_ALLOC_JITCODE,
KGC_ALLOC_BYTECODE, KGC_ALLOC_INTERFACE, KGC_ALLOC_INTERFACE_TABLE
are now dynamic.
* kaffe/kaffevm/kaffe-gc/gc-incremental.c
(finishGC): Invoke KaffeGC_clearWeakRef.
* kaffe/kaffevm/kaffe-gc/gc-refs.c
(refObject): Renamed to strongRefObject.
(refTable): Likewise.
(weakRefObject, weakRefTable): New table.
(KaffeGC_addWeakRef, KaffeGC_rmWeakRef): New functions.
(KaffeGC_clearWeakRef): New function.
* kaffe/kaffevm/boehm-gc/gc-refs.c: Like kaffe-gc/gc-refs.c
* kaffe/kaffevm/boehm-gc/gc2.c
(finalizeObject): Invoke KaffeGC_clearWeakRef.
* kaffe/kaffevm/systems/unix-pthreads/thread-impl.c
(jthread_unsuspend_all): Removed mutex protection.
(jthread_walkLiveThreads_r, jthread_walkLiveThreads): Splitted in
a reentrant function and a non-reentrant one. (See
jthread_unsuspend_all)
* include/Makefile.in, configure: Regenerated.
2004-12-24 Adam Heath <[email protected]>
* libraries/javalib/java/util/zip/ZipFile.java:
If we can't find the entry, return null for the input stream.
2004-12-23 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/plaf/metal/MetalTheme.java:
Resynced with GNU Classpath.
2004-12-23 Michael Koch <[email protected]>
* javax/swing/plaf/metal/MetalTheme.java
(getControlTextColor): Return getControlInfo().
(getHighlightedTextColor): Return getControlTextColor().
2004-12-23 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/plaf/basic/BasicButtonListener.java,
libraries/javalib/javax/swing/plaf/basic/BasicButtonUI.java:
Resynced with GNU Classpath.
2004-12-23 Michael Koch <[email protected]>
* javax/swing/plaf/basic/BasicButtonListener.java
(BasicButtonListener): New constructor.
* javax/swing/plaf/basic/BasicButtonUI.java
(createButtonListener): Usw new BasicButtonListener constructor.
2004-12-23 Dalibor Topic <[email protected]>
* libraries/javalib/java/awt/image/MemoryImageSource.java:
Resynced with GNU Classpath.
2004-12-23 Michael Koch <[email protected]>
* java/awt/image/MemoryImageSource.java: Reformatted.
2004-12-23 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/tree/TreeCellEditor.java:
Resynced with GNU Classpath.
2004-12-23 Michael Koch <[email protected]>
* javax/swing/tree/TreeCellEditor.java: Refomatted.
2004-12-23 Dalibor Topic <[email protected]>
* kaffe/kaffevm/verifier/verify-block.c
(ensureOpstackSizeErrorInVerifyBasicBlock,
opstackPeekTBlindErrorInVerifyBasicBlock): No longer
inlined. That fixes gcc warnings.
2004-12-22 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/JTable.java:
Resynced with GNU Classpath.
2004-12-22 Michael Koch <[email protected]>
Olga Rodimina <[email protected]>
* javax/swing/JTable.java
(editorComp): New field.
(JTable): Initialize local variables and call updateUI
(selectionBackground): Make protected.
(selectionForeground): Likewise.
(initializeLocalVars): Create default editors and renderers,
initialize editingColumn, editingRow variables.
(createDefaultEditors): New Method.
(createDefaultRenderers): Likewise.
(createDefaultListSelectionModel): Removed
(createDefaultSelectionModel): New Method.
(createDefaultTableHeader): Likewise
(removeColumn): Likewise.
(getEditingColumn): Likewise.
(setEditingColumn): Likewise.
(getEditingRow): Likewise.
(setEditingRow): Likewise.
(getEditorComponent): Likewise.
(isEditing): Likewise.
(setDefaultEditor): Likewise.
(addColumnSelectionInterval): Likewise.
(addRowSelectionInterval): Likewise.
(setColumnSelectionInterval): Likewise.
(setRowSelectionInterval): Likewise.
(removeColumnSelectionInterval): Likewise.
(removeRowSelectionInterval): Likewise.
(isColumnSelected): Likewise.
(isRowSelected): Likewise.
(isCellSelected): Likewise.
(selectAll): Likewise.
2004-12-22 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/plaf/metal/MetalTheme.java
libraries/javalib/javax/swing/plaf/metal/DefaultMetalTheme.java,
libraries/javalib/javax/swing/plaf/metal/MetalLookAndFeel.java:
Resynced with GNU Classpath.
2004-12-22 Michael Koch <[email protected]>
* javax/swing/plaf/metal/MetalTheme.java,
javax/swing/plaf/metal/DefaultMetalTheme.java:
New files.
* javax/swing/plaf/metal/MetalLookAndFeel.java:
Implemented all color resource getter methods.
2004-12-22 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/JFileChooser.java:
Resynced with GNU Classpath.
2004-12-22 Michael Koch <[email protected]>
* javax/swing/JFileChooser.java
(showDialog): Return CANCEL_OPTION for now.
(showOpenDialog): Likewise.
(showSaveDialog): Likewise.
2004-12-22 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/JTextField.java:
Resynced with GNU Classpath.
2004-12-22 Michael Koch <[email protected]>
* javax/swing/JTextField.java (getPreferredSize):
Re-implemented.
2004-12-22 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/plaf/basic/BasicEditorPaneUI.java:
Resynced with GNU Classpath.
2004-12-22 Michael Koch <[email protected]>
* javax/swing/plaf/basic/BasicEditorPaneUI.java: New file.
2004-12-22 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/JLabel.java:
Resynced with GNU Classpath.
2004-12-21 Michael Koch <[email protected]>
* javax/swing/JLabel.java (setDisplayedMnemoic):
Make text upper case before searching mnemonic character.
2004-12-22 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/JLabel.java:
Resynced with GNU Classpath.
2004-12-21 Michael Koch <[email protected]>
* javax/swing/JLabel.java
(setDisplayedMnemonicIndex): Handle index == -1 and fire
PropertyChangeEvent after property got set to the new index.
(setDisplayedMnemonic): Use only upper case characters.
2004-12-22 Dalibor Topic <[email protected]>
* libraries/javalib/javax/swing/JApplet.java,
libraries/javalib/javax/swing/JInternalFrame.java,
libraries/javalib/javax/swing/JWindow.java:
Resynced with GNU Classpath.
2004-12-21 Michael Koch <[email protected]>
* javax/swing/JFrame.java
(setDefaultLookAndFeelDecorated): Removed wrong code again.
* javax/swing/JInternalFrame.java
(setDefaultCloseOperation): Fixed typo.
2004-12-21 Michael Koch <[email protected]>
* javax/swing/JApplet.java
(HIDE_ON_CLOSE): Removed.
(EXIT_ON_CLOSE): Likewise.
(DISPOSE_ON_CLOSE): Likewise.
(DO_NOTHING_ON_CLOSE): Likewise.
(close_action): Likewise.
(getDefaultCloseOperation): Likewise.
(setDefaultCloseOperation): Likewise.
(processWindowEvent): Likewise.
(getPreferredSize): Simplified.
* javax/swing/JDialog.java
(setDefaultLookAndFeelDecorated): Throw exception on wrong argument
value.
* javax/swing/JFrame.java
(setDefaultLookAndFeelDecorated): Likewise.
* javax/swing/JInternalFrame.java
(setDefaultCloseOperation): Fixed throwing exception on wrong argument
value.
* javax/swing/JWindow.java
(HIDE_ON_CLOSE): Removed.
(EXIT_ON_CLOSE): Likewise.
(DISPOSE_ON_CLOSE): Likewise.
(DO_NOTHING_ON_CLOSE): Likewise.
(close_action): Likewise.
(processKeyEvent): Likewise.
(setDefaultCloseOperation): Likewise.
(getPreferredSize): Simplified.
2004-12-22 Dalibor Topic <[email protected]>
* configure.ac: Disable gjdoc by default because it needs
external ANTLR.
* configure: Regenerated.
2004-12-22 Dalibor Topic <[email protected]>
* m4/ac_prog_javac.m4,
m4/ac_prog_javac_works.m4:
Added missing m4 macros.
Reported by: Davanum Srinivas <[email protected]>
* THIRDPARTY: Added notes for new macros.
* aclocal.m4,
configure,
config/Makefile.in,
include/Makefile.in,
kaffe/Makefile.in,
kaffe/jvmpi/Makefile.in,
kaffe/kaffe/Makefile.in,
kaffe/kaffeh/Makefile.in,
kaffe/kaffevm/Makefile.in,
kaffe/kaffevm/boehm-gc/Makefile.in,
kaffe/kaffevm/gcj/Makefile.in,
kaffe/kaffevm/intrp/Makefile.in,
kaffe/kaffevm/jit/Makefile.in,
kaffe/kaffevm/jit3/Makefile.in,
kaffe/kaffevm/jni/Makefile.in,
kaffe/kaffevm/kaffe-gc/Makefile.in,
kaffe/kaffevm/systems/Makefile.in,
kaffe/kaffevm/systems/beos-native/Makefile.in,
kaffe/kaffevm/systems/oskit-pthreads/Makefile.in,
kaffe/kaffevm/systems/unix-jthreads/Makefile.in,
kaffe/kaffevm/systems/unix-pthreads/Makefile.in,
kaffe/kaffevm/verifier/Makefile.in,
kaffe/man/Makefile.in,
kaffe/scripts/Makefile.in,
kaffe/scripts/bat/Makefile.in,
kaffe/scripts/compat/Makefile.in,
kaffe/xprof/Makefile.in,
libltdl/Makefile.in,
libltdl/aclocal.m4,
libltdl/configure,
libraries/Makefile.in,
libraries/clib/Makefile.in,
libraries/clib/awt/Makefile.in,
libraries/clib/awt/X/Makefile.in,
libraries/clib/awt/classpath-gtk/Makefile.in,
libraries/clib/awt/classpath-gtk/gtk-peer/Makefile.in,
libraries/clib/awt/classpath-gtk/resource/Makefile.in,
libraries/clib/awt/qt/Makefile.in,
libraries/clib/classpath/Makefile.in,
libraries/clib/io/Makefile.in,
libraries/clib/libxmlj/Makefile.in,
libraries/clib/management/Makefile.in,
libraries/clib/math/Makefile.in,
libraries/clib/native/Makefile.in,
libraries/clib/net/Makefile.in,
libraries/clib/nio/Makefile.in,
libraries/clib/security/Makefile.in,
libraries/clib/sound/Makefile.in,
libraries/clib/sound/alsa/Makefile.in,
libraries/clib/sound/common/Makefile.in,
libraries/clib/sound/esd/Makefile.in,
libraries/clib/zip/Makefile.in,
libraries/extensions/Makefile.in,
libraries/extensions/comm/Makefile.in,
libraries/extensions/comm/javalib/Makefile.in,
libraries/extensions/microsoft/Makefile.in,
libraries/extensions/microsoft/clib/Makefile.in,
libraries/extensions/microsoft/javalib/Makefile.in,
libraries/extensions/pjava/Makefile.in,
libraries/extensions/pjava/javalib/Makefile.in,
libraries/extensions/servlet/Makefile.in,
libraries/extensions/servlet/javalib/Makefile.in,
libraries/javalib/Makefile.in,
libraries/javalib/awt-implementations/Makefile.in,
libraries/javalib/awt-implementations/kaffe/Makefile.in,
libraries/javalib/gmp-math/Makefile.in,
replace/Makefile.in,
test/Makefile.in,
test/internal/Makefile.in,
test/jni/Makefile.in,
test/regression/Makefile.in,
test/regression/compile_time/Makefile.in,
test/regression/compiler/Makefile.in,
test/regression/run_time/Makefile.in,
tools/Makefile.in,
tools/gjdoc/Makefile.in,
tools/gjdoc/javalib/Makefile.in:
Regenerated.
2004-12-22 Dalibor Topic <[email protected]>
* m4/ac_prog_antlr.m4:
Fixed detection of ANTLR when antlr.jar is on CLASSPATH
but not among the directories looked at.
* configure,
libraries/javalib/Makefile.am,
libraries/javalib/Makefile.in,
libraries/javalib/rebuildLib.in:
Regenerated.
2004-12-22 Dalibor Topic <[email protected]>
* m4/ac_prog_antlr.m4,
m4/ac_prog_java.m4,
m4/ac_prog_java_works.m4,
tools/gjdoc/javalib/java.lang-classes-1.2.txt,
tools/gjdoc/javalib/java.lang-classes-1.3.txt,
tools/gjdoc/javalib/java.lang-classes-1.4.txt,
tools/gjdoc/javalib/java.lang-classes-1.5.txt,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/DocletOptionPackageWildcard.java,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/InlineTagRenderer.java,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/debugdoclet,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/htmldoclet/HtmlTagletContext.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/ClassDocReflectedImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/ValueTagImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/expr,
tools/gjdoc/javalib/gnu/classpath/tools/taglets/CodeTaglet.java,
tools/gjdoc/javalib/gnu/classpath/tools/taglets/GnuExtendedTaglet.java,
tools/gjdoc/javalib/gnu/classpath/tools/taglets/ValueTaglet.java,
tools/gjdoc/javalib/htmldoclet/gjdoc.js,
tools/gjdoc/javalib/htmldoclet/gjdochtml-clean-color1.css,
tools/gjdoc/javalib/htmldoclet/gjdochtml-clean-layout.css,
tools/gjdoc/javalib/htmldoclet/inherit.png:
New files taken from gjdoc.
* THIRDPARTY: Added ANTLR reference.
* configure.ac: Check for ANTLR when building gjdoc.
* tools/gjdoc/javalib/Makefile.am:
Added new resources, classes and adapted build to use
ANTLR.
* Makefile.in,
aclocal.m4,
configure,
config/Makefile.in,
include/Makefile.in,
kaffe/Makefile.in,
kaffe/jvmpi/Makefile.in,
kaffe/kaffe/Makefile.in,
kaffe/kaffeh/Makefile.in,
kaffe/kaffevm/Makefile.in,
kaffe/kaffevm/boehm-gc/Makefile.in,
kaffe/kaffevm/boehm-gc/boehm/Makefile.in,
kaffe/kaffevm/boehm-gc/boehm/doc/Makefile.in,
kaffe/kaffevm/boehm-gc/boehm/include/Makefile.in,
kaffe/kaffevm/gcj/Makefile.in,
kaffe/kaffevm/intrp/Makefile.in,
kaffe/kaffevm/jit/Makefile.in,
kaffe/kaffevm/jit3/Makefile.in,
kaffe/kaffevm/jni/Makefile.in,
kaffe/kaffevm/kaffe-gc/Makefile.in,
kaffe/kaffevm/systems/Makefile.in,
kaffe/kaffevm/systems/beos-native/Makefile.in,
kaffe/kaffevm/systems/oskit-pthreads/Makefile.in,
kaffe/kaffevm/systems/unix-jthreads/Makefile.in,
kaffe/kaffevm/systems/unix-pthreads/Makefile.in,
kaffe/kaffevm/verifier/Makefile.in,
kaffe/man/Makefile.in,
kaffe/scripts/Makefile.in,
kaffe/scripts/bat/Makefile.in,
kaffe/scripts/compat/Makefile.in,
kaffe/xprof/Makefile.in,
libltdl/Makefile.in,
libltdl/aclocal.m4,
libltdl/configure,
libraries/Makefile.in,
libraries/clib/Makefile.in,
libraries/clib/awt/Makefile.in,
libraries/clib/awt/X/Makefile.in,
libraries/clib/awt/classpath-gtk/Makefile.in,
libraries/clib/awt/classpath-gtk/gtk-peer/Makefile.in,
libraries/clib/awt/classpath-gtk/resource/Makefile.in,
libraries/clib/awt/qt/Makefile.in,
libraries/clib/classpath/Makefile.in,
libraries/clib/io/Makefile.in,
libraries/clib/libxmlj/Makefile.in,
libraries/clib/management/Makefile.in,
libraries/clib/math/Makefile.in,
libraries/clib/native/Makefile.in,
libraries/clib/net/Makefile.in,
libraries/clib/nio/Makefile.in,
libraries/clib/security/Makefile.in,
libraries/clib/sound/Makefile.in,
libraries/clib/sound/alsa/Makefile.in,
libraries/clib/sound/common/Makefile.in,
libraries/clib/sound/esd/Makefile.in,
libraries/clib/zip/Makefile.in,
libraries/extensions/Makefile.in,
libraries/extensions/comm/Makefile.in,
libraries/extensions/comm/javalib/Makefile.in,
libraries/extensions/microsoft/Makefile.in,
libraries/extensions/microsoft/clib/Makefile.in,
libraries/extensions/microsoft/javalib/Makefile.in,
libraries/extensions/pjava/Makefile.in,
libraries/extensions/pjava/javalib/Makefile.in,
libraries/extensions/servlet/Makefile.in,
libraries/extensions/servlet/javalib/Makefile.in,
libraries/javalib/Makefile.am,
libraries/javalib/Makefile.in,
libraries/javalib/awt-implementations/Makefile.in,
libraries/javalib/awt-implementations/kaffe/Makefile.in,
libraries/javalib/gmp-math/Makefile.in,
replace/Makefile.in,
test/Makefile.in,
test/internal/Makefile.in,
test/jni/Makefile.in,
test/regression/Makefile.in,
test/regression/compile_time/Makefile.in,
test/regression/compiler/Makefile.in,
test/regression/run_time/Makefile.in,
tools/Makefile.in,
tools/gjdoc/Makefile.in,
tools/gjdoc/javalib/Makefile.in:
Regenerated.
tools/gjdoc/javalib/com/sun/javadoc/ClassDoc.java,
tools/gjdoc/javalib/com/sun/javadoc/FieldDoc.java,
tools/gjdoc/javalib/com/sun/javadoc/Type.java,
tools/gjdoc/javalib/gnu/classpath/tools/IOToolkit.java,
tools/gjdoc/javalib/gnu/classpath/tools/NotifyingInputStreamReader.java,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/AbstractDoclet.java,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/DocletOptionColonSeparated.java,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/PackageMatcher.java,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/htmldoclet/CssClass.java,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java,
tools/gjdoc/javalib/gnu/classpath/tools/doclets/xmldoclet/Driver.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/AbstractTagImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/ClassDocImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/ClassDocProxy.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/DocImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/ExecutableMemberDocImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/FieldDocImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/LinkTagImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/Main.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/MemberDocImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/ParseException.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/Parser.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/ProgramElementDocImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/RootDocImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/SeeTagImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/TagImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/ThrowsTagImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/gjdoc/TypeImpl.java,
tools/gjdoc/javalib/gnu/classpath/tools/java2xhtml/Java2xhtml.java,
tools/gjdoc/javalib/gnu/classpath/tools/taglets/SinceTaglet.java,
tools/gjdoc/javalib/gnu/classpath/tools/taglets/TagletContext.java,
tools/gjdoc/javalib/gnu/classpath/tools/taglets/VersionTaglet.java,
tools/gjdoc/javalib/htmldoclet/help.xhtml:
Resynced with gjdoc.
2004-12-21 Julian Scheid <[email protected]>
* acinclude.m4: remove dependency on grep supporting -o; do not
complain if no antlr.jar is found.
2004-12-21 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/AbstractDoclet.java: add
standard taglet for @return tags.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java:
properly output @return tags.
* src/gnu/classpath/tools/gjdoc/ClassDocReflectedImpl.java: add
method newInstance().
* src/gnu/classpath/tools/gjdoc/RootDocImpl.java: remove debug
output; add resolution mechanism for .* imports.
2004-12-20 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/gjdoc/AbstractTagImpl.java: temporary
fix for inlineTags() sometimes returnining null.
* src/gnu/classpath/tools/gjdoc/ClassDocImpl.java: rewrite of
findClass(); findExecutableRec(), findConstructor() and
findMethod() no longer assume that the member is part of a
ClassDocImpl; add getter and setter for importStatementList.
* src/gnu/classpath/tools/gjdoc/ClassDocProxy.java: remove dead
code in compareTo(); resolve qualifiedName in constructor; minor
reformatting.
* src/gnu/classpath/tools/gjdoc/ClassDocReflectedImpl.java:
initial version.
* src/gnu/classpath/tools/gjdoc/DocImpl.java: use char[] instead
of StringBuffer; write raw comment into cache depending on
Main.isCacheRawComments(); cache source files.
* src/gnu/classpath/tools/gjdoc/ExecutableMemberDocImpl.java: no
longer assume that the member is part of a ClassDocImpl.
* src/gnu/classpath/tools/gjdoc/FieldDocImpl.java: remove debug
code.
* src/gnu/classpath/tools/gjdoc/Main.java: added
isCacheRawComments(); added System.exit(0) at end of main(); catch
Throwables in addition to Exceptions in main().
* src/gnu/classpath/tools/gjdoc/MemberDocImpl.java: fix bug which
would lead to an ArrayIndexOutOfBoundsException.
* src/gnu/classpath/tools/gjdoc/Parser.java: add import statements
to ClassDocImpl; cope with empty statements at top-level; handle
escaped single and double quotes in field constants; accelerate
whitespace detection.
* src/gnu/classpath/tools/gjdoc/RootDocImpl.java: complete
overhaul of class resolution mechanism; introducing fall-back to
reflection if source code not available.
* src/gnu/classpath/tools/gjdoc/ThrowsTagImpl.java: no longer
assume that referenced exception is a ClassDocImpl.
* src/gnu/classpath/tools/doclets/AbstractDoclet.java:
optimizations to index building; removed debug message.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java:
fixed NPE.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java:
optimization test.
2004-12-17 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/AbstractDoclet.java: added
methods isSinglePackage(), getSinglePackage().
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java:
output trimmed documentation if only one package is being
documented.
2004-12-17 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java: fixed
method name.
2004-12-17 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java: add
methods createHrefString(String,String) and
createHrefString(String,String,String).
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java: add
method createTypeHref; add hyperlink to inherited member table
headers.
2004-12-17 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/AbstractDoclet.java: add method
getImplementedInterfaces().
* src/gnu/classpath/tools/doclets/htmldoclet/CssClass.java: add
class for sub-table headers.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java: list
inherited fields and inherited nested classes; show "member
summary" headers even if only inherited members are listed; use
smaller heading for inherited member table; add "class" or
"interface" to modifiers for nested classes.
* src/com/sun/javadoc/ClassDoc.java: add innerClasses(boolean).
* src/gnu/classpath/tools/gjdoc/ClassDocImpl.java: implement
innerClasses(boolean); treat inner classes as included when they
are protected, no matter what access level mask has been
specified.
* src/gnu/classpath/tools/gjdoc/ClassDocProxy.java: implement
innerClasses(boolean) dummy.
* src/gnu/classpath/tools/gjdoc/FieldDocImpl.java: treat fields as
public if they are members of an interface.
* src/gnu/classpath/tools/gjdoc/MemberDocImpl.java: remove
commented out code.
* src/gnu/classpath/tools/gjdoc/Parser.java: support for
unfiltered inner classes; correctly filter inner classes.
* src/resources/htmldoclet/gjdochtml-clean-color1.css: add style
for sub-table headers.
* src/resources/htmldoclet/gjdochtml-clean-layout.css: likewise.
2004-12-17 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java: add
window title to all page titles if specified; sort member details
by name; output serialized form page; link to serialized form page
from class page.
* src/gnu/classpath/tools/doclets/AbstractDoclet.java: register
serial tag; call tag output method even if tags are empty; add
findField() method.
* src/gnu/classpath/tools/doclets/debugdoclet/DebugDoclet.java:
output fields and serialized fields.
* src/gnu/classpath/tools/doclets/htmldoclet/CssClass.java: add
CSS classes for serialized form page.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java: add
method span(CssClass, String).
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlTagletContext.java:
store whether context is serialized form page.
* src/gnu/classpath/tools/gjdoc/ClassDocImpl.java: fix a bug which
would result in an incorrect SourcePosition; add readExternal,
writeExternal, and writeObject to serialization methods.
* src/gnu/classpath/tools/gjdoc/MemberDocImpl.java: improved
comparison.
* src/gnu/classpath/tools/gjdoc/Parser.java: treat readExternal,
writeExternal and writeObject as serialization method candidates.
* src/resources/htmldoclet/gjdochtml-clean-color1.css: add styles
for serialized form page.
* src/resources/htmldoclet/gjdochtml-clean-layout.css: likewise.
2004-12-16 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/CssClass.java:
tweaked CSS classes, added new class.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java: hide
link to package overview on index page(s); categorize class menu
for packages.
* src/resources/htmldoclet/gjdochtml-clean-layout.css: smaller
font for menu pages.
2004-12-16 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java:
remove commented code.
2004-12-16 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/AbstractDoclet.java: collect
implementing classes in separate pass.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java:
remove inefficient collection of implementing classes.
2004-12-15 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/CssClass.java:
added new CSS classes.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java:
further improved generated HTML.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java:
added beginRow(CssClass).
* src/resources/htmldoclet/gjdochtml-clean-color1.css: various
improvements.
* src/resources/htmldoclet/gjdochtml-clean-layout.css: likewise.
2004-12-15 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/CssClass.java:
added various CSS classes.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java:
improved generated HTML.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java:
include default CSS stylesheets.
* src/resources/htmldoclet/gjdochtml-clean-color1.css:
* src/resources/htmldoclet/gjdochtml-clean-layout.css:
* src/resources/htmldoclet/inherit.png:
initial version.
2004-12-15 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/NotifyingInputStreamReader.java: fix bug
which would result in an endless loop under certain conditions;
fix bug in event listener registration/deregistration.
* src/gnu/classpath/tools/IOToolkit.java: add methods
getLineFromFile(), getColumnDisplayLine().
* src/gnu/classpath/tools/gjdoc/Parser.java: output warning on
malformed input.
2004-12-15 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java: fix
window title, omit title for menu pages; copy resources to own
subdirectory; copy javascript file.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java:
include javascript; invoke javascript function when page is
loaded.
* src/resources/htmldoclet/gjdoc.js: copied from
src/resources/doctranslets/html/res/gjdoc.js; only set title if
not null.
2004-12-15 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java:
support @linkplain tags.
* src/gnu/classpath/tools/gjdoc/DocImpl.java: likewise.
* src/gnu/classpath/tools/gjdoc/LinkTagImpl.java: likewise.
* src/gnu/classpath/tools/gjdoc/SeeTagImpl.java: fix bug in label
detection.
2004-12-15 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java: add
navigation bar to about page and help page.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java: add
method insert(Reader).
* src/resources/htmldoclet/help.xhtml: replaced outer body tag by
p tag.
2004-12-15 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/AbstractDoclet.java: added
getThrownExceptions(), isUncheckedException().
* src/gnu/classpath/tools/doclets/debugdoclet/DebugDoclet.java:
output thrown exceptions.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java:
output "throws" information for unchecked exceptions. remove debug
output.
2004-12-15 Julian Scheid <[email protected]>
* src/gnu/classpath/tools/doclets/AbstractDoclet.java: added
getSortedMethods(), getSortedConstructors(), getSortedFields(),
getSortedInnerClasses(); removed bogus comment; special handling
for standard taglets.
* src/gnu/classpath/tools/doclets/DocletOptionPackageWildcard.java:
add isSpecified().
* src/gnu/classpath/tools/doclets/htmldoclet/CssClass.java: added
various CSS classes.
* src/gnu/classpath/tools/doclets/htmldoclet/HtmlDoclet.java: list
inhertited methods properly for interfaces; fix bug in "specified
by" list; sort methods/fields/constructors; add inline deprecated
information; add see also information; list nested classes;
improved layout.
* src/gnu/classpath/tools/gjdoc/ClassDocImpl.java: remove
interface sorting; properly handle empty method and constructor
signatures; improved comparison.
* src/gnu/classpath/tools/gjdoc/ExecutableMemberDocImpl.java:
improved comparison.
* src/gnu/classpath/tools/gjdoc/Parser.java: removed array
sorting.
* src/gnu/classpath/tools/gjdoc/SeeTagImpl.java: improved
reference resolution.
* src/gnu/classpath/tools/taglets/ValueTaglet.java: corrected
copyright notice.