forked from tekknolagi/cacao
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog-2003
More file actions
6563 lines (5703 loc) · 275 KB
/
ChangeLog-2003
File metadata and controls
6563 lines (5703 loc) · 275 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
2003-12-31 17:00 edwin
* src/vm/jit/verify/typecheck.c: check JSR recursion, access flags,
special method invokation
2003-12-31 15:14 twisti
* builtin.h, src/vm/builtin.h: Aaaaaahhhhhhhh!!! What's wrong with
me?
2003-12-31 15:11 twisti
* builtin.h, src/vm/builtin.h: Damn, forgot to include config.h.
2003-12-31 15:07 twisti
* builtin.h, src/vm/builtin.h: Define copysignf, finitef, fmodf,
isnanf if not found.
2003-12-31 15:05 edwin
* loader.c, src/vm/loader.c: check constant_pool_count != 0
2003-12-31 14:58 twisti
* configure.in: Check for copysign - copysignf, finite - finitef,
fmod - fmodf, isnan - isnanf. We have some problems on irix and
darwin.
2003-12-31 14:52 edwin
* loader.c, src/vm/loader.c: check flags consistency, final, array
dimension, constant pool overflow
2003-12-31 14:22 edwin
* global.h, src/vm/global.h: added TYPECHECK_STACK_COMPCAT
(disabled)
2003-12-31 02:41 edwin
* src/vm/jit/stack.c: added computational category checking for
stack manipulations
2003-12-31 01:21 edwin
* src/vm/jit/parse.c: check exception handler range, LOOKUPSWITCH
sort, TABLESWITCH bounds
2003-12-31 01:11 edwin
* global.h, src/vm/global.h: added ACC_SUPER
2003-12-30 23:20 twisti
* loader.c, src/vm/loader.c: - made code more readable
2003-12-30 22:35 twisti
* asmpart.h, src/vm/jit/asmpart.h: Define asm_check_clinit for
static clinit.
2003-12-30 21:54 twisti
* headers.c, src/cacaoh/headers.c: - generate classinfo initialized
offset - warning fix
2003-12-30 13:45 twisti
* jni.c, src/native/jni.c: - made code more readable - fixed break
bug in jni_method_invokeNativeHelper
2003-12-24 16:39 jowenn
* src/classpath/: acinclude.m4, aclocal.m4, configure: small
compiler fix
2003-12-22 11:08 edwin
* src/vm/jit/verify/typecheck.c: comment
2003-12-21 14:56 twisti
* main.c, src/cacao/cacao.c: Warning fixes.
2003-12-17 15:39 edwin
* src/vm/jit/stack.c: further comments
2003-12-17 15:27 edwin
* src/vm/jit/stack.c: further comments
2003-12-17 15:11 edwin
* src/vm/jit/stack.c: comments and better error messages
2003-12-17 00:14 edwin
* tests/Makefile.am: added -classpath .
2003-12-17 00:05 edwin
* tests/kaffe/TestScript: added -classpath .
2003-12-16 23:46 edwin
* global.h, src/vm/global.h, main.c, src/cacao/cacao.c,
src/vm/jit/jit.c, headers.c, src/cacaoh/headers.c: added
-noverify option
2003-12-16 23:30 edwin
* src/mm/memory.c: make dump_alloc work for oversized blocks
2003-12-16 23:29 edwin
* src/vm/jit/verify/typecheck.c: comments
2003-12-16 23:29 edwin
* src/vm/jit/stack.c: added stack overflow checking and comments
2003-12-16 23:28 edwin
* src/vm/jit/jit.c: builtin table fixes and loging
2003-12-16 23:27 edwin
* typeinfo.h, src/vm/jit/verify/typeinfo.h: removed c++ comment
2003-12-16 20:29 edwin
* src/vm/jit/alpha/codegen.c: use loging functions
2003-12-16 19:50 edwin
* builtin.c, src/vm/builtin.c: safe methodindent--
2003-12-16 19:49 edwin
* global.h, src/vm/global.h: removed c++ comments
2003-12-16 19:49 edwin
* jni.c, src/native/jni.c: pointer cast bugfix
2003-12-16 16:46 edwin
* jni.c, src/native/jni.c: vftbl argument for
builtin_arrayinstanceof
2003-12-16 15:46 edwin
* src/vm/jit/jit.c: fixed builtin problem on alpha
2003-12-15 19:45 edwin
* src/vm/jit/verify/typecheck.c: allow throwing across JSR
boundaries
2003-12-15 19:20 edwin
* src/vm/jit/stack.c: show_icmd bugfix
2003-12-15 18:05 edwin
* src/vm/jit/stack.c: DUP2_X2 bugfix
2003-12-15 17:34 twisti
* native.c, src/native/native.c: - warning fixes - made some code
more readable
2003-12-15 17:13 twisti
* loader.c, src/vm/loader.c: Removed heap_addreference calls.
2003-12-15 17:00 twisti
* unzip.c, src/vm/unzip.c: C standard compile fix.
2003-12-15 16:47 twisti
* builtin.c, src/vm/builtin.c: 64-bit warning fixes.
2003-12-15 16:24 twisti
* builtin.c, src/vm/builtin.c: Compile fix.
2003-12-14 22:59 edwin
* src/vm/jit/verify/typecheck.c: bugfix
2003-12-14 19:11 stefan
* builtin.c, src/vm/builtin.c, src/vm/jit/i386/asmpart.S,
asmpart.h, src/vm/jit/asmpart.h: Native threads
2003-12-14 15:54 stefan
* src/vm/jit/i386/codegen.h: More macros
2003-12-14 15:53 stefan
* src/vm/jit/i386/codegen.c: Cleaned up cast lock, actually working
now
2003-12-14 14:38 twisti
* src/vm/jit/i386/: codegen.c, codegen.h: Added code macros: -
i386_lock - i386_mov_mem_reg - i386_dec_mem - i386_xadd_reg_mem
2003-12-14 13:55 stefan
* src/vm/jit/i386/codegen.c: Native threads
2003-12-14 13:54 edwin
* loader.c, src/vm/loader.c, tables.c, src/vm/tables.c: safe
error(...) call
2003-12-14 13:50 edwin
* contrib/check_dangerous_printf.pl: Check error(...) and .inc
files
2003-12-14 13:24 edwin
* src/vm/jit/parse.c: added check for illegal opcode 186
2003-12-14 00:10 stefan
* src/vm/jit/i386/asmpart.S, src/vm/jit/i386/codegen.c,
src/mm/boehm.c, src/native/vm/VMRuntime.c, asmpart.h, headers.c,
jni.c, loader.c, main.c, native.c, src/cacao/cacao.c,
src/cacaoh/headers.c, src/native/jni.c, src/native/native.c,
src/vm/loader.c, src/vm/jit/asmpart.h,
src/threads/green/threads.c: Get rid of asm_javacallmethod
2003-12-14 00:08 stefan
* Makefile.am: Missing dependency added
2003-12-14 00:04 twisti
* src/native/vm/VMClass.c: - added gnu header, emacs tailer - code
indent - don't return NoClassDefFoundError in forName(), a
ClassNotfoundException is expected
2003-12-13 23:56 twisti
* src/vm/jit/stack.c: - added i386 scratch register stuff - code
indent
2003-12-13 23:53 twisti
* src/vm/jit/reg.h: Export reg_setup
2003-12-13 23:52 twisti
* src/vm/jit/i386/: codegen.c, codegen.h: - most important:
exchanged REG_ITMP2 and REG_ITMP3, because we try to use
REG_ITMP3 as scratch register, if it's not used (right now, in
the whole function, this will be changed) - CALCOFFSETBYTES and
CALCIMMEDIATEBYTES fixes
2003-12-13 23:49 twisti
* src/vm/jit/i386/types.h: We do have SUPPORT_IFCVT and
SUPPORT_FICVT.
2003-12-13 23:47 twisti
* src/vm/jit/i386/asmpart.S: - added gnu header and emacs tailer -
changes in the nat handling code
2003-12-13 23:42 twisti
* src/vm/jit/reg.inc: - changes reg_init - added reg_setup - some
i386 stuff
2003-12-13 23:39 twisti
* src/vm/jit/jit.c: - removed command line option variables - some
i386 stuff
2003-12-13 23:38 twisti
* src/vm/jit/jit.h: - usage of imm_union in struct instruction -
define some i386 stuff
2003-12-13 23:36 stefan
* src/vm/jit/powerpc/codegen.c: Get rid of asm_javacallmethod
2003-12-13 23:32 stefan
* src/vm/jit/: alpha/asmpart.S, mips/codegen.c: Get rid of
asm_javacallmethod
2003-12-13 23:30 twisti
* loader.c, src/vm/loader.c: - made code more readable (this one is
big!) - removed command line option variables
2003-12-13 23:27 twisti
* loader.h, src/vm/loader.h: Removed command line option variables.
2003-12-13 23:26 twisti
* native.h, src/native/native.h: - added
class_java_lang_NoClassDefFoundError - javastring_new and
javastring_new_char return now java_lang_String* (i hope this
works as expected)
2003-12-13 23:25 twisti
* native.c, src/native/native.c: - added
class_java_lang_NoClassDefFoundError - made code more readable -
javastring_new and javastring_new_char return now
java_lang_String* (i hope this works as expected)
2003-12-13 23:23 twisti
* tables.h, src/vm/tables.h: Removed some needless defines.
2003-12-13 23:22 twisti
* tables.c, src/vm/tables.c: - made some code more readable -
warning fix
2003-12-13 23:21 twisti
* src/threads/green/threadio.h: Can't remember, but made some
compiling problems.
2003-12-13 23:20 twisti
* src/threads/green/threads.c: Removed heap_addreference.
2003-12-13 23:14 twisti
* main.h, src/cacao/cacao.h: Define command line option variables.
2003-12-13 23:13 twisti
* main.c, src/cacao/cacao.c: - put all command line option
variables here - code beautify - removed heap_addreference -
print better exceptions
2003-12-13 23:10 twisti
* jni.h, src/native/jni.h: Code beautify.
2003-12-13 23:09 twisti
* jni.c, src/native/jni.c: Removed heap_addreference.
2003-12-13 23:05 twisti
* headers.c, src/cacaoh/headers.c: - added command line option
variables - throw_noclassdeffounderror_message
2003-12-13 21:53 stefan
* loader.c, src/vm/loader.c: Native threads
2003-12-13 21:47 stefan
* src/vm/jit/jit.c: Native threads
2003-12-13 21:25 stefan
* src/vm/jit/i386/asmpart.S: Native threads
2003-12-13 21:20 stefan
* src/vm/jit/parse.c: Native threads
2003-12-13 21:07 stefan
* global.h, src/vm/global.h: Missing ifdef added
2003-12-13 20:57 stefan
* loader.c, src/vm/loader.c: Fixed loader crash
2003-12-13 19:52 stefan
* src/mm/memory.h: Added GCFREE
2003-12-13 19:41 stefan
* src/mm/: boehm.c, boehm.h: Added GCFREE
2003-12-13 19:19 stefan
* global.h, src/vm/global.h, src/threads/green/threads.c: Native
threads
2003-12-13 16:52 stefan
* Makefile.am: Don't rebuild everything all the time
2003-12-13 16:47 stefan
* headers.c, src/cacaoh/headers.c: We don't need that
2003-12-13 13:39 stefan
* headers.c, src/cacaoh/headers.c: Added option to omit header file
generation
2003-12-12 18:27 stefan
* src/vm/jit/stack.c, typeinfo.c, src/vm/jit/verify/typeinfo.c:
This is still only C!
2003-12-12 18:23 stefan
* src/vm/jit/jit.c: Did not compile on alpha
2003-12-12 18:18 stefan
* loader.c, src/vm/loader.c: [no log message]
2003-12-11 22:23 edwin
* ChangeLog, builtin.c, src/vm/builtin.c, loader.c, main.c,
native.c, contrib/check_dangerous_printf.pl, src/cacao/cacao.c,
src/native/native.c, src/vm/loader.c, src/vm/jit/jit.c,
src/vm/jit/parse.c, src/vm/jit/stack.c,
src/vm/jit/inline/inline.c, src/mm/memory.c,
src/native/vm/Constructor.c, src/vm/jit/verify/typecheck.c: fixed
loging crash caused by printf made loging safer added
check_dangerous_printf.pl script
2003-12-11 12:43 edwin
* tests/: BasicToStrings.output, Makefile.am: do BasicToStrings
automatically
2003-12-11 12:11 edwin
* builtin.h, src/vm/builtin.h, src/vm/jit/jit.c: documented new
builtin table made builtintablelen static again
2003-12-11 11:52 edwin
* builtin.c, builtin.h, global.h, src/vm/builtin.c,
src/vm/builtin.h, src/vm/global.h, loader.c, tables.c,
src/vm/loader.c, src/vm/tables.c, src/vm/jit/jit.c,
src/vm/jit/jit.h, src/vm/jit/parse.c, src/vm/jit/stack.c,
src/vm/jit/verify/typecheck.c: changed builtin table layout
typecheck for all builtins
2003-12-10 16:41 edwin
* loader.c, src/vm/loader.c, src/vm/jit/parse.c,
src/vm/jit/verify/typecheck.c: detect branches to middle of
instruction detect WIDE followed by incompatible opcode
typechecks for builtin functions typecheck statistics
2003-12-10 01:24 edwin
* loader.c, src/vm/loader.c, src/vm/jit/jit.c, src/vm/jit/parse.c,
src/vm/jit/stack.c, src/vm/jit/verify/typecheck.c: added
end-of-bytecode check fixed stack-underflow check added variable
index check
2003-12-09 19:56 edwin
* jni.c, loader.c, loader.h, src/native/jni.c, src/vm/loader.c,
src/vm/loader.h, native.c, tables.c, tables.h,
src/native/native.c, src/vm/tables.c, src/vm/tables.h,
src/vm/jit/parse.c, src/vm/jit/inline/inline.c,
src/vm/jit/inline/parseRT.c, src/vm/jit/stack.c,
src/vm/jit/i386/codegen.c, src/vm/jit/verify/typecheck.c,
src/native/vm/VMClassLoader.c, src/threads/green/locks.c,
src/threads/green/threads.c, src/vm/jit/x86_64/codegen.c: added
UTF-8 validation made descriptor parsing safer added stack
underflow checks added end-of-file checks in loader.c added
detection for infinite linking loops bugfixes new functions:
type_from_descriptor, loader_load_sysclass, class_fetchmethod
2003-12-08 20:51 edwin
* global.h, loader.c, loader.h, typeinfo.c, src/vm/global.h,
src/vm/loader.c, src/vm/loader.h, src/vm/jit/jit.h,
src/vm/jit/verify/typeinfo.c, src/native/vm/Field.c,
src/native/vm/VMClass.c, src/vm/jit/verify/typecheck.c,
tests/TestArrayClasses.java, tests/TestArrayClasses.output: made
descriptor parsing safer + array classes fix
2003-12-08 17:02 edwin
* global.h, src/vm/global.h: minor change in descriptor parsing
macros
2003-12-08 16:46 edwin
* global.h, src/vm/global.h: minor change in descriptor parsing
macros
2003-12-08 15:44 edwin
* typeinfo.h, src/vm/jit/verify/typecheck.c,
src/vm/jit/verify/typeinfo.h: added #includes and emacs tailer
2003-12-08 15:26 edwin
* global.h, loader.c, src/vm/global.h, src/vm/loader.c, typeinfo.c,
typeinfo.h, src/vm/jit/stack.c, src/vm/jit/verify/typecheck.c,
src/vm/jit/verify/typeinfo.c, src/vm/jit/verify/typeinfo.h: added
uninitialized object typecheck
2003-12-08 14:03 jowenn
* builtin.c, src/vm/builtin.c, jni.c, src/native/jni.c,
src/native/vm/VMClass.c, src/vm/jit/i386/codegen.c,
src/native/vm/VMSecurityManager.c: array out of memory fixlet,
InvocationTargetException handling, less debug output, removal of
unneded code in the i386jit
2003-12-07 23:02 twisti
* global.h, src/vm/global.h: Define immediate union.
2003-12-07 22:58 twisti
* builtin.c, src/vm/builtin.c, builtin.h, src/vm/builtin.h: -
removed usage of native-math.h - code beautify
2003-12-07 21:40 twisti
* src/vm/jit/x86_64/asmpart.S: - added gnu header - implemented
asm_calljavafunction2 - usage of offclassvftbl in exception
handling code - implemented helper function asm_printf
2003-12-07 21:39 twisti
* src/vm/jit/x86_64/codegen.h: use again INT_ARG_CNT stuff
2003-12-07 21:38 twisti
* src/vm/jit/x86_64/codegen.c: - reverted intreg_argnum back to
INT_ARG_CNT - handling of more than 5 params in native stub
2003-12-07 18:32 twisti
* jni.c, src/native/jni.c: - added gnu header - add some includes -
code beautify
2003-12-07 18:31 twisti
* native.c, src/native/native.c: - added includes - code beautify
2003-12-07 18:29 twisti
* typeinfo.c, src/vm/jit/verify/typeinfo.c: - added standard
includes - add emacs tailer
2003-12-07 18:28 twisti
* typeinfo.h, src/vm/jit/verify/typeinfo.h: - added stdio.h include
- changed header define to the cacao _standard_ - added emacs
tailer
2003-12-07 18:26 twisti
* loader.h, src/vm/loader.h: Added stdio.h include.
2003-12-07 18:24 twisti
* src/native/vm/: Constructor.c, FileChannelImpl.c, Method.c,
Proxy.c, VMClass.c, VMClassLoader.c, VMObject.c,
VMObjectStreamClass.c, VMRuntime.c, VMSecurityManager.c,
VMSystem.c, VMThread.c: Added standard includes, which are
needed.
2003-12-07 18:20 twisti
* global.h, src/vm/global.h: Removed standard defines.
2003-12-07 17:26 edwin
* src/vm/jit/verify/typecheck.c: minor loging changes
2003-12-07 16:54 edwin
* tables.c, tables.h, src/native/vm/Constructor.c, src/vm/tables.c,
src/vm/tables.h, src/native/vm/VMClass.c,
src/native/vm/VMObject.c, tests/Makefile.am,
tests/kaffe/Makefile.am, tests/kaffe/TestScript: added loging
functions, made kaffe tests run
2003-12-07 15:45 edwin
* global.h, src/vm/global.h, src/vm/jit/verify/typecheck.c: some
typecheck fixes
2003-12-07 14:42 edwin
* typeinfo.c, src/vm/jit/verify/typecheck.c,
src/vm/jit/verify/typeinfo.c: added method invocation typecheck
2003-12-07 13:45 edwin
* typeinfo.c, src/vm/jit/verify/typeinfo.c,
src/vm/jit/verify/typecheck.c: added exception handler typecheck
+ bugfix
2003-12-06 21:10 edwin
* Makefile.am, builtin.c, builtin.h, global.h, src/vm/builtin.c,
src/vm/builtin.h, src/vm/global.h, loader.c, loader.h, main.c,
typeinfo.c, typeinfo.h, src/cacao/cacao.c, src/vm/loader.c,
src/vm/loader.h, src/vm/jit/Makefile.am,
src/vm/jit/verify/typeinfo.c, src/vm/jit/verify/typeinfo.h,
src/vm/jit/jit.c, src/vm/jit/jit.h, src/vm/jit/parse.c,
src/vm/jit/stack.c, src/vm/jit/verify/typecheck.c: added the
typechecker (not yet complete)
2003-12-05 22:28 jowenn
* tests/BasicToStrings.java: Testcase for Method.toString and other
basic to strings
2003-12-05 22:27 jowenn
* src/: classpath/vm/reference/java/lang/VMClass.java,
classpath/vm/reference/java/lang/reflect/Constructor.java,
classpath/vm/reference/java/lang/reflect/Method.java,
native/vm/VMClass.c: fix for VMClass.getName + additional public
static native String getBeautifiedName(Class). For
Constructor/Method.toString. Perhaps that should be done in java
later on, or with an indirection through Class.getBeautifiedName
or something like that
2003-12-05 20:00 jowenn
* loader.c, src/native/vm/VMClass.c, src/vm/loader.c: 1) fix for
getDeclaredClass(publiconly=true) returning protected classes 2)
hiding <init> and <clinit> from getDeclaredMethods 3) don't
derive primitive types from Object 4) hide the clone method of
array classes in getDeclaredMethods
2003-12-05 19:17 stefan
* native.c, src/native/native.c: This is C
2003-12-05 19:16 stefan
* src/vm/jit/alpha/asmpart.S: Sanitized labels (somewhat)
2003-12-05 19:15 stefan
* src/vm/jit/: alpha/codegen.c, mips/codegen.c, powerpc/codegen.c:
Made loging thread-safe
2003-12-05 19:03 stefan
* builtin.c, headers.c, loader.c, main.c, src/cacao/cacao.c,
src/cacaoh/headers.c, src/vm/builtin.c, src/vm/loader.c,
native.c, tables.c, src/native/native.c, src/vm/tables.c,
src/vm/jit/inline/inline.c, src/vm/jit/jit.c, src/vm/jit/parse.c,
src/vm/jit/i386/codegen.c, src/mm/boehm.c,
src/vm/jit/x86_64/codegen.c, src/native/vm/Constructor.c,
src/mm/memory.c: Made loging thread-safe
2003-12-05 00:50 jowenn
* jni.c, src/native/jni.c, src/vm/jit/i386/codegen.c,
tests/ReflectEx.java: Make exceptions thrown from bytecode back
to native code work again
2003-12-04 23:29 edwin
* Makefile.am, global.h, loader.c, main.c, tables.c,
src/cacao/cacao.c, src/vm/global.h, src/vm/loader.c,
src/vm/tables.c, tables.h, typeinfo.c, typeinfo.h, typeinfo.tst,
src/vm/tables.h, src/vm/jit/verify/typeinfo.c,
src/vm/jit/verify/typeinfo.h, src/vm/jit/verify/typeinfo.tst:
preparations for the typechecker
2003-12-04 12:34 stefan
* jni.c, src/native/jni.c, builtin.c, src/vm/builtin.c: This is C
2003-12-04 02:25 jowenn
* builtin.c, headers.c, jni.c, src/cacaoh/headers.c,
src/native/jni.c, src/vm/builtin.c, src/native/vm/Method.c,
src/native/vm/VMClass.c, src/vm/jit/alpha/asmpart.S,
src/vm/jit/i386/asmpart.S: one bug less related to
class/exception handing and use_class_as_object. Thanks to twisti
for tracking it down. More standard compliant handling of errors
during Method.invoke
2003-12-02 17:50 twisti
* src/toolbox/: chain.c, list.c, list.h, tree.c, tree.h: Forgot to
add GNU headers, here they are.
2003-12-01 16:33 jowenn
* Makefile.am, builtin.c, global.h, headers.c, jni.c, jni.h,
loader.c, src/cacaoh/headers.c, src/native/jni.c,
src/native/jni.h, src/vm/builtin.c, src/vm/global.h,
src/vm/loader.c, native.c, native.h, tables.c,
src/classpath/gnu/java/awt/Makefile.in,
src/classpath/gnu/java/awt/image/Makefile.in,
src/classpath/gnu/java/awt/peer/Makefile.in,
src/classpath/gnu/java/awt/peer/gtk/Makefile.in,
src/classpath/java/lang/Class.java, src/native/native.c,
src/native/native.h, src/vm/tables.c,
src/classpath/java/lang/Double.java,
src/classpath/native/target/generic/target_generic_network.h,
src/native/vm/Constructor.c, src/native/vm/Method.c,
src/native/vm/VMClass.c, tests/network/urltest.java: reflection,
loader fix (before it did offer an unloaded (not found) class as
loaded if it has been requested a second time. jni modifications,
classinfo structures are now created with GCNEW, fix for arrays
with size <0
2003-11-26 00:39 jowenn
* src/vm/jit/alpha/asmpart.S: try fixing alpha
2003-11-25 00:12 twisti
* loader.c, src/vm/loader.c: Also compile without zlib.
2003-11-24 23:44 twisti
* tests/jvm98/Makefile.am: There is no -ieee switch anymore.
2003-11-24 23:20 twisti
* tests/Makefile.in: Always changed, too annoying.
2003-11-24 21:55 twisti
* Makefile.am: Link cacao with nat/libnat.a and jni.o
2003-11-24 21:50 twisti
* jni.c, jni.h, native.c, src/native/jni.c, src/native/jni.h,
src/native/native.c, headers.c, native.h, src/cacaoh/headers.c,
src/native/native.h: - build a libnat.a - build jni himself -
generate #ifndef -- #define in nat/*.h files
2003-11-24 21:48 twisti
* src/native/: vm/Constructor.c, vm/Field.c, vm/FileChannelImpl.c,
vm/Makefile.am, vm/Method.c, vm/Proxy.c, vm/VMClass.c,
vm/VMClassLoader.c, vm/VMObject.c, vm/VMObjectStreamClass.c,
vm/VMRuntime.c, vm/VMSecurityManager.c, vm/VMSystem.c,
vm/VMThread.c, include/java_lang_ClassLoader.h,
include/java_lang_Cloneable.h, include/java_lang_Object.h,
include/java_lang_String.h, include/java_lang_Thread.h,
include/java_lang_ThreadGroup.h, include/java_lang_Throwable.h,
include/java_lang_VMObject.h: - we now build a libnat.a - #ifndef
+ #define in header files are generated
2003-11-23 23:14 jowenn
* jni.c, src/native/jni.c, loader.c, native.c, native.h, unzip.c,
unzip.h, src/native/native.c, src/native/native.h,
src/vm/loader.c, src/vm/unzip.c, src/vm/unzip.h: faster zip
implementation, works only for one zip archive right now, since
there is a single static pointer. Will be removed in the future.
helper code for reflection
2003-11-23 23:00 jowenn
* src/native/vm/: Constructor.c, Field.c, Method.c, VMClass.c,
VMThread.c: better reflection code
2003-11-23 22:55 jowenn
* src/threads/green/: threads.c, threads.h: make threads work again
(means, they don't crash anymore, just block the application),
must have forgotten to commit/merge that
2003-11-23 15:36 edwin
* global.h, src/vm/global.h: removed mysterious class_array
declaration
2003-11-23 15:04 edwin
* builtin.c, global.h, jni.c, loader.c, loader.h, src/native/jni.c,
src/vm/builtin.c, src/vm/global.h, src/vm/loader.c,
src/vm/loader.h, src/classpath/doc/hacking.info,
src/classpath/java/lang/Double.java, src/native/vm/VMClass.c,
src/native/vm/VMObject.c, src/native/vm/VMSecurityManager.c,
src/native/vm/VMSystem.c, src/vm/jit/parse.c, tests/Makefile.am:
new array classes cleanup + made tests (except fp*) work
2003-11-23 14:06 edwin
* tests/: TestArrayClasses.java, TestArrayClasses.output,
TestBase.java: Re-added tests for array classes
2003-11-21 20:05 jowenn
* Makefile.am, headers.c, src/cacaoh/headers.c: missed a header.c
change related to arrayarray
2003-11-21 19:35 jowenn
* src/: classpath/native/Makefile.am, classpath/native/Makefile.in,
classpath/native/cni/Makefile.am,
classpath/native/cni/Makefile.in,
classpath/native/fdlibm/Makefile.am,
classpath/native/fdlibm/Makefile.in,
classpath/native/fdlibm/dtoa.c, classpath/native/fdlibm/e_acos.c,
classpath/native/fdlibm/e_asin.c,
classpath/native/fdlibm/e_atan2.c,
classpath/native/fdlibm/e_exp.c,
classpath/native/fdlibm/e_fmod.c,
classpath/native/fdlibm/e_log.c, classpath/native/fdlibm/e_pow.c,
classpath/native/fdlibm/e_rem_pio2.c,
classpath/native/fdlibm/e_remainder.c,
classpath/native/fdlibm/e_scalb.c,
classpath/native/fdlibm/e_sqrt.c,
classpath/native/fdlibm/fdlibm.h,
classpath/native/fdlibm/ieeefp.h,
classpath/native/fdlibm/java-assert.h,
classpath/native/fdlibm/k_cos.c,
classpath/native/fdlibm/k_rem_pio2.c,
classpath/native/fdlibm/k_sin.c, classpath/native/fdlibm/k_tan.c,
classpath/native/fdlibm/mprec.c, classpath/native/fdlibm/mprec.h,
classpath/native/fdlibm/s_atan.c,
classpath/native/fdlibm/s_ceil.c,
classpath/native/fdlibm/s_copysign.c,
classpath/native/fdlibm/s_cos.c,
classpath/native/fdlibm/s_fabs.c,
classpath/native/fdlibm/s_floor.c,
classpath/native/fdlibm/s_rint.c,
classpath/native/fdlibm/s_scalbn.c,
classpath/native/fdlibm/s_sin.c, classpath/native/fdlibm/s_tan.c,
classpath/native/fdlibm/sf_fabs.c,
classpath/native/fdlibm/sf_rint.c,
classpath/native/fdlibm/strtod.c,
classpath/native/fdlibm/w_acos.c,
classpath/native/fdlibm/w_asin.c,
classpath/native/fdlibm/w_atan2.c,
classpath/native/fdlibm/w_exp.c,
classpath/native/fdlibm/w_fmod.c,
classpath/native/fdlibm/w_log.c, classpath/native/fdlibm/w_pow.c,
classpath/native/fdlibm/w_remainder.c,
classpath/native/fdlibm/w_sqrt.c,
classpath/native/jni/Makefile.am,
classpath/native/jni/Makefile.in,
classpath/native/jni/classpath/Makefile.am,
classpath/native/jni/classpath/Makefile.in,
classpath/native/jni/classpath/jcl.c,
classpath/native/jni/classpath/jcl.h,
classpath/native/jni/classpath/jnilink.c,
classpath/native/jni/classpath/jnilink.h,
classpath/native/jni/classpath/native_state.c,
classpath/native/jni/classpath/native_state.h,
classpath/native/jni/classpath/primlib.c,
classpath/native/jni/classpath/primlib.h,
classpath/native/jni/gtk-peer/.cvsignore,
classpath/native/jni/gtk-peer/Makefile.am,
classpath/native/jni/gtk-peer/Makefile.in,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontMetrics.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGraphics.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGraphics2D.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkPixbufDecoder.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkButtonPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkCanvasPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkCheckboxMenuItemPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkCheckboxPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkChoicePeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkClipboard.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkComponentPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkEvents.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkFileDialogPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkImagePainter.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkLabelPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkListPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMainThread.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMenuBarPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMenuItemPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkMenuPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkPanelPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkPopupMenuPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkScrollBarPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkScrollPanePeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextAreaPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextComponentPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkTextFieldPeer.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkToolkit.c,
classpath/native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkWindowPeer.c,
classpath/native/jni/gtk-peer/gthread-jni.c,
classpath/native/jni/gtk-peer/gthread-jni.h,
classpath/native/jni/gtk-peer/gtkpeer.h,
classpath/native/jni/java-io/FileDescriptor.c,
classpath/native/jni/java-io/Makefile.am,
classpath/native/jni/java-io/Makefile.in,
classpath/native/jni/java-io/java_io_File.c,
classpath/native/jni/java-io/java_io_ObjectInputStream.c,
classpath/native/jni/java-io/javaio.c,
classpath/native/jni/java-io/javaio.h,
classpath/native/jni/java-lang/Makefile.am,
classpath/native/jni/java-lang/Makefile.in,
classpath/native/jni/java-lang/java_lang_Double.c,
classpath/native/jni/java-lang/java_lang_Math.c,
classpath/native/jni/java-lang/java_lang_Object.c,
classpath/native/jni/java-lang/java_lang_VMDouble.c,
classpath/native/jni/java-lang/java_lang_VMFloat.c,
classpath/native/jni/java-lang/java_lang_VMSystem.c,
classpath/native/jni/java-lang/java_lang_reflect_Array.c,
classpath/native/jni/java-net/Makefile.am,
classpath/native/jni/java-net/Makefile.in,
classpath/native/jni/java-net/java_net_InetAddress.c,
classpath/native/jni/java-net/java_net_NetworkInterface.c,
classpath/native/jni/java-net/java_net_PlainDatagramSocketImpl.c,
classpath/native/jni/java-net/java_net_PlainSocketImpl.c,
classpath/native/jni/java-net/javanet.c,
classpath/native/jni/java-net/javanet.h,
classpath/native/jni/java-nio/Makefile.am,
classpath/native/jni/java-nio/Makefile.in,
classpath/native/jni/java-nio/java_nio_DirectByteBufferImpl.c,
classpath/native/jni/java-nio/java_nio_FileChannelImpl.c,
classpath/native/jni/java-nio/java_nio_FileLockImpl.c,
classpath/native/jni/java-util/Makefile.am,
classpath/native/jni/java-util/Makefile.in,
classpath/native/jni/java-util/java_util_TimeZone.c,
classpath/native/target/Makefile.am,
classpath/native/target/Makefile.in,
classpath/native/target/readme.txt,
classpath/native/target/Linux/Makefile.am,
classpath/native/target/Linux/Makefile.in,
classpath/native/target/Linux/target_native.h,
classpath/native/target/Linux/target_native_file.h,
classpath/native/target/Linux/target_native_io.h,
classpath/native/target/Linux/target_native_math_float.h,
classpath/native/target/Linux/target_native_math_int.h,
classpath/native/target/Linux/target_native_misc.h,
classpath/native/target/Linux/target_native_network.h,
classpath/native/target/generic/Makefile.am,
classpath/native/target/generic/Makefile.in,
classpath/native/target/generic/target_generic.h,
classpath/native/target/generic/target_generic_file.h,
classpath/native/target/generic/target_generic_io.h,
classpath/native/target/generic/target_generic_math_float.h,
classpath/native/target/generic/target_generic_math_int.h,
classpath/native/target/generic/target_generic_misc.h,
classpath/native/target/generic/target_generic_network.h,
classpath/resource/Makefile.am, classpath/resource/Makefile.in,
classpath/resource/orp-1.0.8.patch,
classpath/resource/orp-1.0.9.patch,
classpath/resource/gnu/Makefile.am,
classpath/resource/gnu/Makefile.in,
classpath/resource/gnu/java/Makefile.am,
classpath/resource/gnu/java/Makefile.in,
classpath/resource/gnu/java/awt/Makefile.am,
classpath/resource/gnu/java/awt/Makefile.in,
classpath/resource/gnu/java/awt/peer/Makefile.am,
classpath/resource/gnu/java/awt/peer/Makefile.in,
classpath/resource/gnu/java/awt/peer/gtk/Makefile.am,
classpath/resource/gnu/java/awt/peer/gtk/Makefile.in,
classpath/resource/gnu/java/awt/peer/gtk/font.properties,
classpath/resource/java/Makefile.am,
classpath/resource/java/Makefile.in,
classpath/resource/java/security/Makefile.am,
classpath/resource/java/security/Makefile.in,
classpath/resource/java/security/classpath.security,
classpath/resource/java/util/Makefile.am,
classpath/resource/java/util/Makefile.in,
classpath/resource/java/util/iso3166-a3.properties,
classpath/resource/java/util/iso3166.properties,
classpath/resource/java/util/iso3166_de.properties,
classpath/resource/java/util/iso639-a2-old.properties,
classpath/resource/java/util/iso639-a3.properties,
classpath/resource/java/util/iso639.properties,
classpath/resource/java/util/iso639_de.properties,
classpath/resource/java/util/iso639_fr.properties,
classpath/resource/java/util/iso639_ga.properties,
classpath/vm/Makefile.am, classpath/vm/Makefile.in,
classpath/vm/reference/Makefile.am,
classpath/vm/reference/Makefile.in,
classpath/vm/reference/java/Makefile.am,
classpath/vm/reference/java/Makefile.in,
classpath/vm/reference/java/io/Makefile.am,
classpath/vm/reference/java/io/Makefile.in,
classpath/vm/reference/java/io/VMObjectStreamClass.java,
classpath/vm/reference/java/lang/Makefile.am,
classpath/vm/reference/java/lang/Makefile.in,
classpath/vm/reference/java/lang/Runtime.java,
classpath/vm/reference/java/lang/Thread.java,
classpath/vm/reference/java/lang/VMClass.java,
classpath/vm/reference/java/lang/VMClassLoader.java,