Branch: refs/heads/smoke-me/sig-crash1
Home: https://github.com/parrot/parrot
Commit: 6f3ba40ffb8c17af5c7b8646d7c80c0d3469377b
https://github.com/parrot/parrot/commit/6f3ba40ffb8c17af5c7b8646d7c80c0d3469377b
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M compilers/imcc/main.c
M compilers/imcc/parser_util.c
M include/parrot/api.h
M include/parrot/compiler.h
M include/parrot/exceptions.h
M include/parrot/interpreter.h
M include/parrot/string.h
M src/call/args.c
M src/call/context.c
M src/call/pcc.c
M src/datatypes.c
M src/debug.c
M src/dynext.c
M src/embed/embed_private.h
M src/embed/pmc.c
M src/embed/strings.c
M src/gc/gc_gms.c
M src/gc/gc_ms2.c
M src/global_setup.c
M src/hash.c
M src/hll.c
M src/interp/inter_cb.c
M src/io/api.c
M src/io/buffer.c
M src/io/utilities.c
M src/library.c
M src/oo.c
M src/packfile/api.c
M src/packfile/object_serialization.c
M src/packfile/pf_items.c
M src/pmc.c
M src/runcore/trace.c
M src/string/api.c
M src/string/encoding.c
M src/string/encoding/null.c
M src/string/encoding/shared.c
M src/string/encoding/ucs2.c
M src/string/encoding/utf16.c
M src/string/encoding/utf8.c
M src/thread.c
M src/utils.c
Log Message:
-----------
[core] fix -Wnonnull-compare warnings
when the compiler already ensured that an arg is non-NULL,
it doesnt need to be checked at runtime again.
Set HAVE_NONNULL
Commit: b227a598b664305ebb7e685c7e72d53b364e4581
https://github.com/parrot/parrot/commit/b227a598b664305ebb7e685c7e72d53b364e4581
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M compilers/imcc/symreg.c
M include/parrot/parrot.h
M src/pmc/continuation.pmc
M src/string/api.c
M src/vtables.c
Log Message:
-----------
[core] dont assert STRUCT_COPY args
as some of them are already NONNULL checked.
fixes more -Wnonnull-compare warnings.
add the required asserts manually.
Commit: 26ebd469ffc23b3a1952a767787c83d0d3dd3ec6
https://github.com/parrot/parrot/commit/26ebd469ffc23b3a1952a767787c83d0d3dd3ec6
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M compilers/imcc/parser_util.c
M compilers/imcc/pbc.c
M src/nci/libffi.c
M src/string/spf_render.c
Log Message:
-----------
[cage] fix -Wimplicit-fallthrough warnings
Commit: 223f951399593b48994b92379921642b0c218608
https://github.com/parrot/parrot/commit/223f951399593b48994b92379921642b0c218608
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M config/auto/warnings.pm
M config/gen/makefiles/root.in
Log Message:
-----------
[config] suppress -Wcast-qual
for cast discards ‘const’ qualifier from pointer target type warnings
Commit: b877cb5f49dc224a4175b8125c2791d021a3f188
https://github.com/parrot/parrot/commit/b877cb5f49dc224a4175b8125c2791d021a3f188
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M .github/workflows/main.yml
M t/harness
M t/op/gc-stress.t
Log Message:
-----------
[test] support testing with asan
GH #1256
skip two crashing tests.
set more detect_leaks=0
Commit: bd284a8e7addc089241f838e3376f6da4032a196
https://github.com/parrot/parrot/commit/bd284a8e7addc089241f838e3376f6da4032a196
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M src/nci/extra_thunks.c
Log Message:
-----------
[chore] fix some -Wmaybe-uninitialized
This is really optimizer dependant
Commit: 075d8c48399e1e4ad788cc5042e9abbb974e9efc
https://github.com/parrot/parrot/commit/075d8c48399e1e4ad788cc5042e9abbb974e9efc
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M config/auto/warnings.pm
Log Message:
-----------
[config] -Winline not with asan nor --debugging
TODO: only really with --optimized
Commit: ca32f4191685994717713a1ab334005c7150702e
https://github.com/parrot/parrot/commit/ca32f4191685994717713a1ab334005c7150702e
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M src/pmc/callcontext.pmc
Log Message:
-----------
[doc] fix callcontext doc wording
Commit: c2c6fffb9b7f328da3615e4c77ee3a0729a85df4
https://github.com/parrot/parrot/commit/c2c6fffb9b7f328da3615e4c77ee3a0729a85df4
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M src/call/args.c
M src/call/context_accessors.c
M src/call/pcc.c
M src/pmc/callcontext.pmc
M src/pmc/handle.pmc
Log Message:
-----------
WIP [core] assert CONTEXT_STRUCT(ctx) which are NULL
Commit: abfe6dcb8d100708cf6c4be46782be89ee10ae74
https://github.com/parrot/parrot/commit/abfe6dcb8d100708cf6c4be46782be89ee10ae74
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M compilers/imcc/pbc.c
M include/parrot/call.h
M src/call/args.c
Log Message:
-----------
[pmc] rename CallContext signature to call_object
Commit: 128ef5437596ec15cb849d75d33afedf4d8a5697
https://github.com/parrot/parrot/commit/128ef5437596ec15cb849d75d33afedf4d8a5697
Author: Reini Urban <[email protected]>
Date: 2025-12-17 (Wed, 17 Dec 2025)
Changed paths:
M .github/workflows/main.yml
Log Message:
-----------
[ci] run all jobs, don't break
because we have a flaky test GH #1263
also ignore all doc-only changes. run make codingstd_tests manually then.
Compare: https://github.com/parrot/parrot/compare/19dcb209d0ba...128ef5437596
To unsubscribe from these emails, change your notification settings at
https://github.com/parrot/parrot/settings/notifications
_______________________________________________
http://lists.parrot.org/mailman/listinfo/parrot-commits