forked from parrot/parrot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
12739 lines (9342 loc) · 422 KB
/
ChangeLog
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
2016-??-?? release 8.3.0
- Core
+ fix binding AF_UNIX sockets GH #1233 by Andrew Aldridge
2016-03-15 release 8.2.0
- Core
+ add foldcase string ops GH #786
+ bump PBC_COMPAT to 13.1 for foldcase ops
+ add missing StringHandle methods seek, peek, tell,
analog to FileHandle. Better seek error handling. GH #1011
+ Deprecate StringHandle auto-reopen, auto-read, and
PIO_VF_AWAYS_READABLE. Will be removed with 8.3.0. GH #245
+ Fix method dispatch with builtin namespaces. Subs are now ignored,
they need a :method attribute. It's now safer to define or override
class methods for builtin PMCs. GH #304
- Build
+ Improve darwin install: make -j0 not needed anymore.
Use libparrotsrc.VER.dylib locally, libparrot installed.
GH #1213, #1212, #1096
- Documentation
+ dynpmc file.copy does not allow dir arguments, GH #229
- Tests
+ Check in pcre.t the returned error string, GH #258
+ Test that file.copy to dir must fail, GH #229
- Community
2016-02-16 release 8.1.0
- Core
+ Annotate needed -Wcast-align fixes (for early armv5 systems)
- Documentation
+ Fixed typo in move_buffer_callback doc
+ Add missing hyperref package for latex
- Tests
+ Restore make configure_tests, remove outdated t/steps/auto/labs-01.t
2015-12-15 release 7.11.0
- Build
+ Improve darwin and cygwin build, seperate installable libparrot.
GH #1212, 1096
+ Honor --disable-rpath on darwin, skip -install_name then
+ Update default cygwin compiler and linker to gcc with 1.7
+ Add darwin and windows smokers (travis + appveyor), prev. linux only
+ use a smaller default target: core (most parrot_utils, not all)
make all builds now all, including docs and installables
2015-11-17 release 7.10.0
- Documentation
+ Accept cperldoc as fallback to perldoc GH #1211
2015-10-20 release 7.9.0
- Core
+ StringBuilder.clone and ResizablePMCArray write barrier optimizations.
1.14% faster, GH #1123
+ More StringBuilder optimizations with substr, set_pmc, push_pmc,
i_concatenate, and do less overallocation. <1% faster. GH #1123
+ Support -D1 GC stats with --ccflags=-DMEMORY_DEBUG for --gc=ms
+ Added a Parrot_{un,}block_GC_move API for the 2 string compacting
collectors ms and ms2
+ Fixed a --gc=ms segv in Parrot_io_write_s GH #1196
+ Fixed --gc=inf string header allocation and failing tests
+ const/ARGIN all read-only IO api arguments
+ Deprecated ListChunk GC API and src/list.c GH #1179
- Build
+ --optimize: Replace -O2 from perl5 with -O3 on clang or gcc. GH #1185
5% faster
+ Fixed make clean realclean and install which sometimes forgot pmc_default.h
GH #1194, GH #1206
- Tests
+ Use the faster travis docker infrastructure without sudo
2015-09-15 release 7.8.0
- Build
+ Added fixes for AIX7.1 by tkob <[email protected]>
+ Rewrote new_changelog_skeleton.pl to use JSON release data.
2015-08-18 release 7.7.0
- Documentation
+ remove bitrotted author contributions
2015-07-21 release 7.6.0
- Core
+ structview
= Added missing returns to switch/case.
- Build
- Documentation
- Tests
+ distro/manifest_generated.t
= Corrected reversed order of got/expected.
= Added reference to GH#1206 .
- Community
2015-06-16 release 7.5.0
- Core
+ Optimize mod_i_* ops and Integer pmc to avoid util_intval_mod
+ Coverity bugs fixed:
= missing_comma in optimizer.c
= nesting_indent_mismatch in runcore/subprof.c
= insecure chroot in platform/generic/file.c
- Tests
+ Remove executable file permissions from some .t files
- Community
+ Coverity static analysis scans of the Parrot source code
have resumed. Many thanks for providing the service to
the open-source community!
2015-05-19 release 7.4.0
- Documentation
+ Many minor corrections
- Community
+ Coverity scans to resume RSN.
2015-04-21 release 7.3.0 - supported
- Build
+ Fixed windows link regression from 7.0.2 with cl.exe. #1203
+ Fixed rlimit compilation for OpenBSD
- Tests
+ Relaxed the common GC stress test and re-add the JSON.nqp variant.
2015-03-17 release 7.2.0
- Build
+ Fix warning on Win32 (with cl.exe) when `link` is not explicitly set.
2015-02-17 release 7.1.0
- Core
+ Fix SIGBUS in GC trace_mem_block on alignment-strict CPUs (arm), #1200.
We traced all pointers by +1 and not by +4 or +8.
- Tests
+ Add a common GC stress test to the normal testsuite. #1189
+ Fix tests for --ccflags=-DSTRUCT_DEBUG. #1195
- Community
+ rakudo perl6 announced to drop parrot support.
2015-01-29 release 7.0.2 - supported
- Core
+ Fix 2 regressions from 6.11.0 on win64 with Visual C++. GH #1190, #1192
Wrong SAL annotations, and a wrong function ptr cast.
+ Fixed reading big-endian long doubles from .pbc on win64. GH #1193
- Build
+ Optimize away ExtUtils::Command on posix systems. #1177
+ Fix cpu config values for gcc_cmpxchg to include atomic/gcc_x86.o on amd64.
Harmonized the cpu config keys, no $platform_has_$feature keys anymore, just
HAS_$PLATFORM_$feature. #1173
+ Improved msvc configuration from a mingw perl. #1191
2015-01-23 release 7.0.1 - supported
- Core
+ Fixed a serious GC regression with --optimize and the default GC gms. #1186
+ Fixed a threads deadlock with the default GC gms. #1187
- Build
+ Fixed and improved --m={32,64} cross-compilation support and
automatic libpath adjustments for gcc, esp. on mips64 and ppc64.
#1181, #1182, #1178, #1110
+ Actually link with libicu when probing for it. #1182, #1188
2015-01-20 release 7.0.0 - supported
- Core
+ Added a experimental INTERPINFO_MAX_GENERATIONS api, made MAX_GENERATIONS
--ccflags adjustable, renamed to GC_MAX_GENERATIONS, and use the correct number.
Default 3 for generations 0,1,2.
+ Add the DEPRECATED attribute to all deprecated functions. #1163
+ Fix parser crashes detected by the american fuzzy lop (1.06b) #1168
+ Replace an end op inside pcc methods by a returncc op, #1168.
This used to crash the last years, now it returns. It is now documented as
unspecified behavior.
+ Finish PackFile_ API deprecation and refactoring. No wrong exports anymore.
See api.yml. #1170 #1122
+ Reenabled the following NCI signatures: t (cstring), 2 (Integer PMC -> short),
3 (-> int), 4 (-> long). SDL and Curses is now usable again. #436, #601, #605
+ Added a useful subset of static nci thunks to core-thunks. #1171
Updated the extra thunks to pass most nci examples without libffi, just
2, 3 and 4 require libffi when being used destructively on the Integer PMC.
+ Fixed a couple of blocking ResizablePMCArray ("rpa") splice regressions from 6.10,
which broke perl6. See https://github.com/perl6/nqp/issues/209, GH #1174, #1175.
+ Added an optional rpa splice warning as in perl5, when an overlarge offset is
adjusted. #1176
+ Fix a GC regression from 6.11 with ResizablePMCArray #1159 (1.2% slower)
+ Skip startup warnings "Unknown codeset `', defaulting to ASCII" when
nl_langinfo() failed, and silently use ASCII. #1180
- Build
+ More code cleanup to reduce compiler warnings, code size and unneeded calls.
+ Add ARGIN_FORMAT declarations, probe for gnu_printf, ms_printf, printf. #1163
+ Fix PARROT_CANNOT_RETURN_NULL #1163
+ Move HASATTRIBUTE_* definitions from ccflags via cmdline to has_header.h #1163
+ Add the _Check_return_ MSVC SAL variant #1163
+ Check and fix that PARROT_EXPORT being the first function attribute (C++) #1164
+ Allow PARROT_DOES_NOT_RETURN without PARROT_CANNOT_RETURN_NULL #1163
+ Move -Wformat to --cage #1165
+ Fix and allow --cxx on FreeBSD 10 (clang, not g++) #1166
+ Fix git_describe config probe on tag-less repos, e.g. git clone --depth #1167
+ Fix solaris asctime_r with _POSIX_C_SOURCE #858
- Documentation
- Tests
- Community
2014-12-16 release 6.11.0
- Core
+ Rewrote ResizablePMCArray with moving offset, esp on shift.
Even better than nqp/qrpa. 20% faster overall. #1152
+ Fixed wrong maybe_mark_and_sweep call in --gc ms #1142
+ Added GC maybe_gc_mark vtable function #1142
+ Fixed Memory_Block prolog access in --gc inf #1136
+ Added MEMORY_DEBUG tracing to --gc inf and ms2, added
GC validation to ms2.
+ Fix bignum.i_substract and i_multiply #1144
+ Fix cmod_p_p_n* math dynops for NaN and Inf #1147
+ Fix floor, ceil and complex, integer math ops for NaN and Inf #422
+ Optimize printing of single numbers #828
+ More --debugging protections when accessing empty registers
from :immediate #1024
+ Change ResizablePMCArray.delete to throw out of bounds errors,
but just warn on deprecated delete[0] with size 0 for backcompat. #1153
+ Add check for illegal delete of capture blocks in PGE.match #1154
+ Add new traceflag -t20 for ResizablePMCArray states.
+ Add experimental vms support by mvorl. Untested. GH #866
+ Provide Parrot_new_string and Parrot_compile_string in the extend api
- Build
+ Extend auto::infnan probe to other --floatval #1146
+ Warn in Configure on experimental flags intval, floatval and gc #1148
+ Die in Configure on unsupported intval sizes #1148, #642, ...
+ Renamed auto::labs to auto::mathl, probe and use more long math
functions: fabsl powl ceill floorl fmodl expl logl #1111
+ Fixed pbc_to_exe and wrong Parrot_{g,s,uns}etenv declarations on windows #1156
- Documentation
+ Rewrote docs/pmc/array.pod
- Tests
+ Fix t/steps/auto/arch-01.t darwin regression #1142
+ Added bigger t/stress/gc.t test to catch most GC issues.
+ Add optional copyright year test on TEST_SLOW #719
+ Fix most --floatval='long double' tests, just embed API broken #1111
+ Adjust tests for VALGRIND=valgrind #1150
+ Added tests to t/pmc/resizablepmcarray.t to cover all offset cases. #1152
+ Replace included IO::CaptureOutput with our own capture function. #892
+ Fixed most embed and extend tests. #41511 #829
- Community
2014-11-18 release 6.10.0
- Core
+ Add imcc -d2 flag for MKCONST tracing.
+ Fix darwin --m=32 Parrot_sysmem_amount() #1113
+ Honor rlimit settings on all non-windows platforms. #935
+ Slightly improved mark methods for Coroutine, Continuation,
CallContext, NCI, Task. #1109
+ Unify code for platform encodings, now supports all. #1120
e.g. unicode filenames or UTF-8 term output on cygwin, solaris, dragonfly
+ Update pcre for cygwin
+ Add more -D flags for --ccflags=-DMEMORY_DEBUG #1108.
Print initial memory settings on -D1 and more with -D101 and -D200.
+ Added -t10 trace flag for pmc flags, prettier -t output, less GC stress.
+ Fixed GC bug in Coroutine.clone #1108, #1109
+ Export Parrot_io_get_vtable. #1131
+ Added lstat io op for nqp, fixed os.lstat method. #1129
+ Throw errors on illegal seek arguments, no assertions. #1130
+ Disallow negative count argument for array splice methods. GH #766
+ Allow array negative index access for most arrays. #1127
+ Shorten and harmonize array exception messages: no context, just:
index out of bounds, illegal argument, can't resize, ... #1126
+ Add simplier Parrot_ex_throw_from_c_noargs. #1132
+ Fix all wrong exception codes left-overs, 0, 1 or -1. #1133
+ Unescape double-quoted .lex string constants. #1095, perl6 RT#116643
+ Downgrade external ascii strings on multi-byte platform encodings
to ascii. #1098
+ Fix self heuristic with vtable overridden method calls.
$P0($P0) instead of $P0() is now invalid, it is always a method.
https://trac.parrot.org/parrot/ticket/103 #1013
- Build
+ Set -mabi=64 for gcc --m=64 on mips, -m64 on powerpc #1110
+ Add --{en,dis}able-static #1104
+ Fix Windows build for pbc_to_exe #1114
+ Fix default cygwin builds #1116
+ Silence failing auto::inline probe #1118
+ Revert automatic regeneration of encoding tables, added with 6.9.0. #1119
+ Use labs() instead of abs() with 64-bit #1111
+ Avoid duplicate src/longopt.o, export Parrot_longopt_get. #1121
+ Detect icu version, new icu_version config key. #867
+ Skip -Werror=strict-prototypes only on broken icu 4.2 - 4.9. #867
- Documentation
+ Document .lex "name" limitations. Use .lex 'name' w/ single-quotes #1095
+ Fixed 6.9 manpage regressions on BSD make #1125
+ Better newclass example code in pirbook #802
- Tests
+ Fixed make smoke, uploading to smolder with changed YAML::Tiny
quoting. #1078
+ Add better GC stress tests with reproducible GC bugs. #1108
- Community
2014-10-21 release 6.9.0 - supported
- Core
+ Changed behavior with illegal escape sequences, GH #1103. Do not silently
skip the \ anymore, throw an EXCEPTION_INVALID_CHARACTER error with
"Illegal escape sequence \o in 'string\o'".
+ Add platform encoding functions for darwin, FreeBSD, OpenBSD and NetBSD,
fixing rakudo problems with UTF-8 locales. #1092
+ Enable trap op (int3) on x86_64 also
+ Add const to env api STRING args
+ Do no pre-allocate 256 IO tables for the standard handles, only 3. #1093
+ Renamed ops2c to parrot-ops2c. Get the new name if exists in config
key ops2c. #900
+ Reenable parrot -t [flags] traceflags to enable the flags 2 find_method and
4 invoke/retcc/yield again.
+ Enable >2GB RAM on darwin also. #268
+ Fix crash with parrot -d8 DEBUG_IMC dump_instructions
+ Fix sprintf width count for unicode strings. #956
+ Fix sprintf width for NaN/Inf/-Inf [GH #1099/perl6 RT#116280]
+ Optimize utf8_substr. Do not use the slow utf8 iterator.
+ Regenerated and fixed the iso_8859_1_typetable. Add \x2028, \x2029
and \v to be of cclass newline. [GH #1086, perl6 RT #122341].
Several chars 160..191 are not in the [[:punct:]] class anymore.
Removed defunct Parrot_ascii_typetable, unused since 2010.
+ Protect callmethod from an empty object, missed by fixup_subs
immediate. #1024
+ Add Couroutine reset and autoreset methods. #564
+ Add -t8 trace flag for Coroutine states
+ Disabled trace flags -t4 and -t8 with --optimize. #1105
+ Harmonize parrot usage messages
- Build
+ Fix all -Wshadow instances
+ Added bootstrap-tables make target
+ Configure options consistency: --{en,dis}able-<feature> for shared, rpath,
threads, --with{,out}-<library> for: llvm pcre ... + threads. [GH #1101]
+ Deprecated --parrot_is_shared in favor of --enable-shared. [GH #1101]
+ Change default of the config key debugging from 1 to 0, i.e. you need to
provide now --debugging[=flags] for debugging. [GH #1099]
+ Enable --disable-shared (or --parrot_is_shared=0) to link against static
libparrot [GH #1101]
+ Change darwin build flags to improve gdb debugging,
no -undefined dynamic_lookup. #1096
+ Fix parrot-ops2c not generating extraneous parentheses #1008
+ Adjust all warnings and suffix overrides
- Documentation
+ Add missing manpages for pbc_disassemble, pbc_dump, pbc_merge
+ Improved src/string/encoding/tables.c pod.
- Tests
+ Run fulltests with the runcore=fast,-O1,-O2 fast, without -D040, --gc-debug
[GH #1086]
+ Added tests for LexInfo.declare_lex_preg and .lex quoting roundtrips
[GH #1095]
+ Simplify smolder resend usage
+ Fix mingw issues with \r\n
+ Updated the missing native_pbc 64-bit big-endian files on mips64 qemu.
2014-09-16 release 6.8.0
- Build
+ pbc_to_exe created executables use now the absolute execname on most platforms
and not only argv[0] which needs to be looked up in the path. [GH #1088]
- Documentation
+ Fix various new podchecker syntax errors with the new Pod::Simple 3.28
- Tests
+ Update embedded Pod::Simple to 3.28 to fix the missing whiteline_handler method
from non-embedded podchecker [GH #1089]
+ Skip 3 crashing codingstd tests with 5.8 DEBUGGING [GH #1090]
2014-08-19 release 6.7.0
- Core
+ find_codepoint: added more name aliases for perl6 (LF,FF,CR and NEL)
+ Optimize internal pcc CallContext calls from VTABLE to direct calls
and inline CallContext ATTR accessors to omit the obj check. [GH #1083]
- Build
- Documentation
+ Updated documentation for StringHandle.readall and FileHandle.readall, which
reads just the rest of the buffer if tell > 0. [GH #1084]
- Tests
+ Improve test plan for t/library/pg.t
- Community
+ Our GSoC student Chirag Agrawal successfully passed the final evaluation.
All three project parts have been merged already.
2014-07-15 release 6.6.0
- Core
+ Optimized method call overhead at compile-time in pmc2c directly
to avoid run-time overhead. Less temp. PMC's, less branches and
avoiding at least 2 costly C functions per method call.
+ New arity warning:
"wrong number of arguments: %d passed, %d expected" [GH #1080]
- Build
+ Workaround libffi-3.1 upstream bug in ffi.h [GH #1081]
+ Expand pkg-config make macros in auto::libffi [GH #1082]
- Tests
+ Fix t/pmc/filehandle.t on cygwin with newer Cwd >= 3.40 [GH #1077]
- Community
+ Our GSoC student passed the project midterm, having made great progress.
Congratulations to Chirag Agrawal!
+ More parrot-bench numbers at https://github.com/parrot/parrot-bench,
now using gnuplot for all releases from 1.8.0 - 6.6.0, amd64 + -m32
2014-06-17 release 6.5.0
- Core
+ Re-add -DMEMORY_DEBUG support to the new GMS GC [GH #1073]
+ Added 2 new PMC method attributes :manual_wb and :no_wb and
worked over all core PMCs for unneeded GC write barriers.
Thereby removed the vtable method calling overhead of _orig into a
wrapper with the mandatory write barrier. This was the first part
of Chirag's GSOC project. [GH #1069]
+ find_codepoint: Added name aliases for control character names which
disappeared with ICU 5.2, and added those names to non-ICU builds also.
Improved ICU search for u_charFromName() to check all UCharNameChoices,
not only U_EXTENDED_CHAR_NAME. [GH #1075, roast #43]
- Build
+ Fixed wrong ICU header probes on multi-arch systems (debian) [GH #1014]
+ Fix opengl on bsd which does not have __APPLE__ defined as 0 [GH #1070]
+ pmc2c was extended to improve write barriers and deal with :manual_wb,
:no_wb and RETURN() in VTABLE methods. [GH #1069]
- Documentation
+ Improved the docs for pmc and pmc2c [GH #1069]
+ Harmonized pmc names for the PMC html index [GH #1079]
- Tests
+ Fix t/op/gc.t for --gc=inf
+ Fix t/library/pcre.t for --without-pcre or windows
- Community
+ Our GSOC project succeeded in the first deliverable
+ Non-core dynpmc's with multiple return paths in writer VTABLE methods will
need to be changed to use either :manual_wb or RETURN() as in PCCMETHODs,
and can now be optimized for unneeded GC write barriers.
E.g. nqp 6model got 2-4% faster.
2014-05-20 release 6.4.0
- Examples
+ Enhance shootout/regexdna.pir to test GC write barrier crashes
- Community
+ Our GSOC project did officially start. See https://github.com/ZYROz/parrot
2014-04-15 release 6.3.0
- Core
- Build
- Documentation
- Tests
+ Fixed tests for cygwin and cygwin64
+ Added 2 new examples/benchmarks/ files and benchmarks/run.sh
+ Fixed socket tests without IPv6 support at all [GH #1068]
- Community
+ New Benchmark results at https://github.com/parrot/parrot-bench
for all releases from 1.8.0 - 6.2.0
2014-03-18 release 6.2.0
- Core
+ Re-enable old immc flags for parrot and parrot_old, such as
-On -a -v -y -E -dxx. [GH #1033]
+ Fixed imcc -O1 and -O2
-O1 fixes:
= Special-case get_global for branch_cond_loop_swap, which broke
NCI tests [GH #1037]
= set_addr label does mark a basic_block, dead_code_remove() needs
the label. Fixes nqp [GH #1061].
-O2 used_once fixes:
= Allow used_once elimination only for purely functional ops
without side-effects [GH #1036]
= Empty ins->next in deletion [GH #1042].
-O2 constant propagation fixes:
= Empty ins->op ptrs when deleting or skipping certain instruction
[GH #1039],
= Wrong logic leading to missed detecting writes from get_results
[GH #1041],
= Propagate only matching types in setters [GH #1042],
= Stop at yield or invokecc for possible push_eh/pop_eh non-local
effects [GH #1044]
+ Fixed TT #1930, a floating point optimizer problem on PPC
+ Added cache iterators in encoding_find_*cclass [GH #1027]
to speedup the utf8 pattern "scan a whole string for newlines".
- Build
+ Set emacs buffer-read-only:t tags in generated files [GH #1034]
+ Provide coda for generated include/*.pasm files [GH #1032]
+ Fix parser for bison 3 [GH #1031]
+ Add support for __builtin_expect LIKELY/UNLIKELY branch optimizations
in a new auto::expect step. [GH #1047]
- Deprecations
+ Warn on deprecated usage of append_configure_log()
- Documentation
+ Updated pod for parrot and tools/build/c2str.pl
- Tests
+ Added -O1 and -O2 to fulltest
- Community
+ Parrot has been accepted to Google Summer of Code 2014
+ Got a candidate for "Improve performance of method signatures"
2014-02-18 release 6.1.0
- Build
+ Improve auto::libffi probe with -fstack-protector-all or
-fstack-protector-strong with recent GCC and OpenBSD’s toolchains
- Documentation
+ Replace perldoc by a new podextract.pl [GH #1028, #973, #520], which fixes
problems with 'sudo make install' generated ops pods as root.
2014-01-21 release 6.0.0
- Core
- Build
- Documentation
+ Fixed bad IPv6 examples in pdd22_io, thanks to Zefram++ [GH#1005]
- Tests
+ Fixed failure in t/configure/062-sha1.t.
+ Updated to Unicode 6.3 (libicu5.2): U+180e Mongolian Vowel Separator
is no whitespace anymore [GH #1015]
- Community
2013-12-17 release 5.11.0
This version was not released to the wild.
2013-11-19 release 5.10.0
- Core
+ Fixed bareword method names check for " in imcc [GH #1015]
+ Moved eval from eval.pmc to HLLCompile and use new packfile API.
This is a prerequisite for --target=pbc in the HLLCompiler [GH #937]
+ Merged branch 'new-packfile-api' [GH #937]
= Removed Eval PMC
= IMCCompiler now returns PackfileView instead of Eval.
= Added Parrot_pf_single_sub_by_tag() to packfile API.
= Added first_sub_in_const_table() to PackfileView PMC as a
stopgap until properly tagged subs are generated.
- Build
+ Removed wrong -Wlogical-op exception for imcparser.c [GH #1015]
+ Fixed parsing for OpenGL 4.1 on OS X Mavericks. [GH #1016]
- Documentation
- Tests
- Community
2013-10-15 release 5.9.0
- Core
+ Don't complain about utf8 multibyte characters split by chunk boundaries
+ Fixed readall SEGV at eof, e.g. when calling readall twice [GH #981]
+ Fixed SEGV when .const not found. [GH #996]
+ Added PackfileView-compatible methods to EvalPMC. [GH #937] (Temporary)
- Build
+ Fixed MacOSX -Wno-long-double warning [GH #980]
- Testing
+ Sorted hash keys to allow better diffs between runs of `make fulltest`.
- Branches
+ The new-packfile-api branch with the final removal of the EvalPMC
is ready and will most likely land in 5.10.0
- Documentation
+ Fixed and improved the documentation about Parrot_str_new
- Community
+ Zefram reported 31 issues. Thanks a lot!
+ All three of our GSoC students completed their projects, and passed
their finals with flying colors. Congratulations! Their weekly reports
are available here:
= Saurabh Kumar - "Update parrot-libgit2 to latest libgit2 release"
http://www.parrot.org/tags/parrot-libgit2
= Paweł Murias - "A Javascript backend for Rakudo"
http://parrot.org/blog/1850
= Denis Boyun - "Improve Web UI of App::Parrot::Create"
http://parrot.org/blog/1843
2013-09-17 release 5.8.0
This version was not released to the wild.
2013-08-20 release 5.7.0
- Build
+ Fixed GH#976 - Cannot load PCRE library during install on gentoo x64.
- Community
+ All three of our GSoC students passed their midterms, and are
on track to complete their Parrot and Perl 6 projects on time.
Congratulations to Saurabh Kumar, Paweł Murias, and Denis Boyun!
2013-07-16 release 5.6.0
- Build
+ Makefile dependencies are now compatible with VMS make.
- Documentation
+ The main README is now more helpful.
2013-06-18 release 5.5.0
- Build
+ Configure options are now allowed to be quoted.
+ Fixed build on Win32.
+ Updated location of NQP on Win32.
+ Fixed Parrot::Distribution detection.
- Documentation
+ Noted that RESPONSIBLE_PARTIES is mostly out of date.
- Tests
+ Stopped testing native PBC on 64bit LE, due to lack of access to
such machine.
- Release
+ Added tool: make_upload_commands.pl
- Community
+ Parrot has been awarded 3 student slots in Google Summer of Code 2013!
This means that 3 lucky students will be on a paid internship from
Google to work on these accepted proposals:
= Saurabh Kumar - "Update parrot-libgit2 to latest libgit2 release"
https://gist.github.com/sa1/5468408
http://www.google-melange.com/gsoc/proposal/review/google/gsoc2013/saurabh_kgp/11002
= Paweł Murias - "A Javascript backend for Rakudo"
http://www.google-melange.com/gsoc/proposal/review/google/gsoc2013/pmurias/9002
= Denis Boyun - "Improve Web UI of App::Parrot::Create"
https://gist.github.com/denisboyun/5472762
https://google-melange.appspot.com/gsoc/proposal/review/google/gsoc2013/chob_rock/9001
+ YAPC::NA::2013 hosted 4 days of Hackathon, focusing on the next
generation of Perl implementations.
= Huge Success!
+ MoarVM was unveiled:
https://github.com/MoarVM
+ P2 on Potion was debuted:
http://perl11.org/p2/
2013-05-21 release 5.4.0
- Core
+ Implemented the coth() and acot() math functions.
+ Fixed chomp to only trim a newline when it ends the string. [GH #958]
+ Added readlink() and Parrot_file_readlink(), with tests. [GH #967]
- Build
+ Parrot now detects the CPU model on Linux systems, as well as
detecting more CPU models on BSD, Cygwin, Solaris, Win32, and Darwin.
ARM v7 is also now recognized. [GH #962]
- Documentation
+ Threads examples now have proper POD sections and useful descriptions
with links to references.
+ Added main description for Task PMC.
+ Added descriptions to trig methods in Float PMC.
- Tests
+ Added improved test coverage targets "cover_new" and "fullcover_new".
+ Improved tests for acot(), coth(), acot() math functions.
+ Added tests for options passed to debugger.
+ Updated native PBC test files for string, number, and integer,
which resolved 11 TODOs in the test suite. [GH #959]
+ Fixed test for the auto/arch config step.
- Release process
+ Added message digests to crow.pir.
+ Added in release.json: "release.type" can be "devel" or "supported".
+ Refactored common code to sub in auto_release.pl.
- Community
+ Parrot is part of the Hackathon at YAPC::NA::2013, in Austin, TX, USA!
http://www.yapcna.org/yn2013/wiki?node=Hackathons
+ Parrot has been accepted to Google Summer of Code 2013!
+ Currently there are two high-quality proposals being worked on:
https://gist.github.com/sa1/5468408 - parrot-libgit2
https://gist.github.com/denisboyun/5472762 - App::Parrot::Create
2013-04-16 release 5.3.0
- Build
+ Files generated by `make cover` are now correctly cleaned by `make`
and ignored by `git`.
- Tests
+ Internal testing of the Configure probe for Fink now works correctly
with the --verbose flag.
+ Tests added for .sort method of ResizableFloatArray and
ResizableIntegerArray. [GH #926], [GH #927]
+ Benchmarks added for .sort methods of various Array objects.
[GH #175]
+ Coverage analysis added for pbc_disassemble.
2013-03-19 release 5.2.0
- Core
+ IO now only syncs buffers for the IO types where syncing makes sense.
= PIO_VF_SYNC_IO flag added
- Build
+ installable_pdump now has the correct rpath (blib corrected to lib).
- Libraries
+ Tcl/Glob.pir has been removed. (PGE/Glob.pir remains intact)
- Ecosystem
+ All Parrot tarballs are now symlinked to the 'all' directory,
regardless of their true homes ('devel' or 'stable'), to better
allow for automated downloads.
ftp://ftp.parrot.org/pub/parrot/releases/all/
2013-02-19 release 5.1.0
- Core
+ The .sort() method was added to the FixedFloatArray PMC
+ Improved detection of system memory for machines with >2GB
+ Improved pbc_to_exe support for spacey paths
+ Fixed Parrot_io_readall_s allocating too much string space
- Build
+ Fixed generated MANIFEST files to omit $destdir
- Documentation
- Tests
+ .readall now checks that prior reads are respected.
- Community
+ Weekly IRC meetings have resumed. #parrotsketch Tuesdays at 1930 UTC
2013-01-22 release 5.0.0
- Core
+ Remove duplicate library search path entries, move "." from the beginning to
the end. [GH #368]
+ Install forgotten runtime include files:
cloneflags.pasm
packfile_annotation_keytype.pasm
packfile_segments.pasm
+ Install include/parrot/pbcversion.h with the main package, not devel.
+ Install headers for dynpmc files.
+ Install libraries tgc.pbc, NCI/Utils.pbc, OpenGL/Math.pbc, PCT/Dumper.pbc,
postgres.pbc, ProfTest.pbc and ProfTest/*pbc, String/Utils.pbc, URI/Escape.pbc,
YAML/Dumper/Base.pbc, YAML/Dumper/Default.pbc
+ New experimental PARROT_DYNEXT environment variable
+ New experimental dynext_dirs config entry (same as PARROT_DYNEXT and -X)
+ Add OS error messages to FileHandle.open() error messages [GH #911]
- Build
+ Generate MANIFEST.generated, cleanup MANIFEST,
removed MANIFEST_configure.generated, add installation of forgotten files
[GH #890]
+ perl Configure.pl now calls make clean if possible
+ Generate datadir/MANIFEST* for all installed files [GH #899]
+ Improved Configure.pl probes for --with-llvm
+ Replace / slashes with \ on windows for all Makefiles automatically.
This improves cygwin interaction, like remote or cronjob smoking on windows.
+ Reenabled and fixed debugging line directives in pmc2c, ops2c not yet [GH #641]
- Tools
+ Improved nci_thunk_gen (v0.02): handle void sig, add declaration
+ Fixed nci examples
- Documentation
+ Re-added docs/ops, the generated ops summary and docs/packfile-c.pod
+ Improved pdd10_embedding
+ Document FileHandle.open() exceptions and error messages
- Tests
+ Added t/library/lib_search_path.t
2012-12-18 release 4.11.0
- Core
+ Parrot now supports fast and lightweight OS threads, based on Nat Tucks's
initial GSoC work on green threads and then Stefan Seifert's extension
to true parallel OS threads as hybrid threads.
See http://wknight8111.blogspot.co.at/2010/08/gsoc-threads-chandons-results.html
and http://niner.name/Hybrid_Threads_for_the_Parrot_VM.pdf
Summary: http://perl6advent.wordpress.com/2012/12/11/day-11-parrot-threads/
+ New parrot cmdline option --numthreads
+ Export new dynpmc_class_<ClassName> types [GH #870].
+ Changed core_ops library format and ops2c to contain the PBC_COMPAT only,
not the parrot version triple. Removed the duplicate PARROT_DYNOP_CORE_INIT
cpp definition in include/parrot/oplib/core_ops.h, use only
PARROT_CORE_OPLIB_INIT from config.h
+ Store PBC_MAJOR and PBC_MINOR in the config hash, stored by auto::revision
+ Added getprotobyname method to the Socket PMC
- Documentation
+ Marked unused API parameters
+ Install man pages for all binaries
- Languages
+ nqp-rx tests updated from perl6/nqp-rx.git, and enabled to run on make test
- Platforms
+ More compilation fixes on Windows without working mt.exe or ranlib=rem,
enable smoking without git binary.
- Tools
+ Re-enabled pbc_dump -h --header-only
+ Improved pmc2c, added more UNUSED(arg) macros [GH #836]. Parrot is now almost
-Wunused-parameters safe.
- Tests
+ failing Pod::Simple pod_todo.t tests are now skipped
+ added nqp-rx tests
+ removed duplicate ext/nqp-rx/t/p6regex tests
+ rewrote and enabled native_pbc tests [GH #394],
renamed native_pbc testfiles
2012-11-21 release 4.10.0
- Core
+ Add PMCNULL check to result_info op
+ Fixed record separator bug on io handles
- Build
+ Add -fpermissive so that nqp builds under gcc 4.7.2
+ Fixed warnings for old ICU 4.4
- Platforms
+ More VMS fixes, but not yet done
- Branches
+ The threads branch is ready to be merged, but nqp needs some changes,
so it will be merged with 4.11.0.
- Examples
+ Parrot mini-web server fixes
2012-10-16 release 4.9.0
- Core
+ Keep encoding information in the imcc optimizer, which fixes the
concat op but probably many more cases with non-ascii encoded
constant strings. [GH #837]
+ Fixed ByteBuffer set_string_native, which became out of sync with
two internal buffers. [GH #835]
+ Preload Configure steps when called with perl -d Configure.pl [GH #833]
+ Strip unneeded config keys from installed config hash. Saves 6360
bytes from every installed executable. [GH #824]
+ Parrot_get_cpu_type returns now "unknown" for all unknown cpu types.
On non-windows it returned before 4.9.0 a null string. [GH #846]
+ Fixed src/hash.c for platforms where size_t is unsigned (e.g. vms) [GH #854]
- Build
+ Improved warnings for clang. [GH #843]
+ Cleaned wrong UNUSED(arg) macros in all pmc's due to an improved
pmc2c compiler, which SHIMs all UNUSED args. [GH #836]
+ Added clang++ support and a new auto::alignof Configure step. [GH #844]
+ Fixed auto::inline for C++ compilers
+ Improved auto::llvm
- Branches
+ The threads branch is almost ready to be merged. Some remaining races
have been fixed. There are only some remaining platforms errors on
darwin/x86.
- Libraries
+ Fixed Mime::Base64: Split long lines at 76 chars. [GH #826]
Support multi-byte codepoints. Use binary encoding,
encoded files are now endian specific [GH #813 + #814],
Added 2nd optional encoding arg to decode_base64().
- Documentation
+ Cleaned up removed parrot cmdline options -D/-O/-v from --help output and
running.pod [GH #838]
- Tools
+ Improved gdb pretty-printing for multi-byte strings
2012-09-18 release 4.8.0
- Core
+ Prevent interpreter from dying twice
+ Complete rewrite of the IO system, including new unified IO PMC
semantics.
+ The Integer and Float PMCs now have a get_pointer vtable which is
needed when using NCI to bind to Fortran libraries such as LAPACK
- Deprecations
+ Moved dynpmc/os to pmc os. loadlib 'os' is not needed anymore.
- Platforms
+ Fixed for the FileHandle open method the append mode on Windows.
+ Fix compilation on Windows without working mt.exe
+ Detect GNU/Hurd as linux proper.
+ Fixed broken int3 trap on Solaris with gcc.
+ Updated the vms port on a YAPC::EU hackathon with vaxman and mvorl.
- Tests
+ Improve testability with valgrind or thread-sanitizer
2012-08-21 release 4.7.0
- Core
+ Added .all_tags() and .all_tagged_pmcs() methods to PackfileView PMC
+ Several build and coding standards fixes
2012-07-17 release 4.6.0
- Core
+ Added init_pmc method to PackFileView.
- Documentation
+ Added source lines from 'docs/index/book.json' to 'index.json'
to make display of 'Parrot Developer's Guide: PIR (draft)'
display more like the other books, e.g., 'PCT Book'.
+ Removed 'docs/index/book.json' as unnecessary.
- Tests
- Build
+ Improve on 'sudo make install' permission errors by using
File::Copy::cp.
- Community
2012-06-19 release 4.5.0
- Core
+ Added .write_bytes and .read_bytes methods to FileHandle and Socket
PMCs.
+ Added Parrot_api_set_stdhandle, Parrot_api_new_call_object and
Parrot_api_setup_signature functions to the embedding API
+ Removed the "can" VTABLE
- Languages
+ Winxed snapshot updated to 1.9.1
- New syntax for parameters in multi
- New syntax for initalization with new
- Cast to var improved
- IMCC
+ Removed .line, .file, setline and setfile directives from IMCC
- Documentation
+ Fixed up Pod in 240 files to pass 't/codingstd/pod_description.t'.
- Tests
+ Added 'docs/pdds' and 'docs/pdds/draft' as files for
'Parrot::Test::Pod.pm' to exclude.
- Build
+ Reduced number of packages under 'lib/Parrot/Pmc2c/'.
+ Added method-level documentation to several of the remaining packages.
+ Added 'docs/pdds' and 'docs/pdds/draft' as files for
'Parrot::Test::Pod.pm' to exclude.
- Community
+ M1, a C-like language that targets M0 had a burst of development
and now has many working examples such as recursive Fibonacci and
recursive factorial : https://github.com/parrot/m1
+ Parrot bindings to LAPACK are being worked on as part of Google
Summer of Code: https://github.com/leto/parrot-lapack
2012-05-15 release 4.4.0
- Core
+ Most internal calls to libc exit(x) have been replaced with
Parrot_x_* API calls or PARROT_FORCE_EXIT
- Documentation
+ 'pdd31_hll.pod' made stable in 'docs/pdds/'.
+ Updated main 'README' to 'README.pod'
+ Updated various dependencies, e.g., 'lib/Parrot/Distribution.pm'.
+ Updated all 'README' files to 'README.pod' files.
+ Added 'README.pod' files to top-level directories.
- Tests
+ Update various tests to pull from new 'README.pod'
+ Updated 't/tools/install/02-install_files.t' to pull from new
'README.pod'
- Community
- Platforms
- Tools
+ pbc_merge has been fixed to deduplicate constant strings and
merge annotations segments
2012-04-17 release 4.3.0
- Core
+ Winxed snapshot updated to 1.7.0
+ Add type introspection to lexical variables.
+ New 'tools/release/parrot_github_release.pl' script to automate
updates to the 'parrot.github.com' and 'parrot-docsx' repositories.
+ Numerous casting and consting fixes thanks to GCC 4.8 .
- Documentation
+ Updated 'docs/projects/release_manager_guide.pod'
+ Updated 'docs/projects/release_parrot_github_guide.pod'
+ Improved function documentation.
- Tests
- Community
- Platforms
+ Fixed alignment issues on ia64, sparc and mipsel.
+ Fixed a platform-specific issue with dlclose().
2012-03-20 release 4.2.0
- API Changes
+ The signature of getprop was changed from (PMC,String,PMC) to
(PMC, PMC,String) for consistency
- Core
+ Parrot Calling Conventions (pcc) now reuses Continuation PMCs
internally, which reduces GC work by 25% and improves
the fib.pir benchmark by 6%
+ Winxed snapshot updated to 1.6.devel 44a04cfa7b
+ Improved the detection of Clang-ish compilers during configuration
+ Fixed a possible segfault bug when reading packfiles with no
constants or main_sub
+ By default, Parrot has now elevated these GCC warnings to errors
during compile time:
implicit-function-declaration, undef, missing-braces,
nested externs, old-style-definition, strict-prototypes,
+ The OS Dynamic PMC now has separate functions to unlink a file
and remove an empty directory (rmdir)
+ Fix building on Cygwin due to an improperly named DLL file
+ Various small bug fixes pointed out by static and dynamic analysis
tools
- Branches
+ Work on M0 continues now in the m0 branch, which contains both
implementations (currently C and Perl) and specification.
+ Good progress has been made on the threads branch which builds
on the green_threads branch. This gets Parrot much closer to
being able to utilize multiple CPU cores seemlessly. More details
at http://niner.name/Hybrid_Threads_for_the_Parrot_VM.pdf
- Documentation
+ New release manager documentation for parrot.github.com :
http://git.io/parrot-github-guide
- Community
+ Parrot was accepted to Google Summer of Code 2012!
Ideas Page: http://git.io/parrot-gsoc-2012
2012-02-21 release 4.1.0
- Core
+ Shared libraries and installable binaries are now stripped if
built with --optimize on Cygwin, which greatly reduces their
size on disk
+ New experimental PCC-related ops added to core.
- Documentation
+ Revised 'docs/project/release_manager_guide.pod'
- Tests
+ Parrot now uses Travis CI http://travis-ci.org
+ Parrot Continuous Integration (CI) with Travis CI means
every commit of Parrot is now compiled and tested on gcc,
g++ and clang with various Configure.pl options.
+ CI Notifications are sent to parrot-dev, the #parrot
IRC channel and Smolder
+ Cardinal and Rakudo spec tests also on Travis CI
2012-01-17 release 4.0.0
- Core
+ Several cleanups to the interp subsystem API
+ Cleanups and documentation additions for green threads and timers
+ Iterator PMC and family now implement the "iterator" role
+ A bug in Parrot_ext_try was fixed where it was not popping a context correctly
- Documentation
+ Docs for all versions of Parrot ever released are now available
at http://parrot.github.com
- Tests
+ Timer PMC tests were converted from PASM to PIR
2011-12-20 release 3.11.0
- Core
+ packfile api and pbc handling improvements
+ smarter recursion tracking across threads
+ new "pop_upto_eh" op for finer-grained exception handling
+ subroutine-level profiling runcore cleanups
+ improved window support
- Languages
+ new math builtins in winxed (abs, sinh, cosh and tanh)
+ better inline support in winxed
+ squaak improvements (sub as expression, new read() builtin)
- Documentation
+ many new man pages thanks to gci students
- Tests
+ updated example code for FileHandle and Iterator
+ coding standards fixes
2011-11-15 release 3.10.0
- Core
+ The mark VTABLE was added to the Select PMC
+ The Parrot::Embed Perl 5 module was removed from parrot.git and now lives
at https://github.com/parrot/parrot-embed
+ A set_random method was added to the Integer PMC, so random numbers can
be generated without needing to load math dynops
+ A new implementation of green threads was added to Parrot, in preparation
for a robust hybrid threading system. Green threads are currently
not available on Windows.
- Languages
+ Winxed
- 'multi' modifier improved
- throw "string" now emits throw instead of die
- several optimizations in generated code
- improved some error dianostics
- Community
+ Parrot Foundation was accepted to Google Code-In 2011. We could always use more volunteers.
Task ideas are on the wiki:
https://github.com/parrot/parrot/wiki/Google-Code-In-Task-Ideas
- Documentation
- Tests
+ Added tests for recently-fixed bugs using return :flat and ResizableStringArrays.
2011-10-18 release 3.9.0
- Core
+ The whiteknight/kill_threads branch was merged, which removes the old and broken
thread/concurrency implementation. Better and more flexible concurrency primitives