timo

Results 97 comments of timo

Please try if the latest commit to moarvm helps: https://github.com/MoarVM/MoarVM/commit/f14712b6b9

I can't reproduce the failure that you're seeing. Could you run this from nqp's source directory? ``` lldb -O "breakpoint set -n MVM_oops" -o "run" -- moar --libpath=src/vm/moar/stage0 src/vm/moar/stage0/nqp.moarvm --bootstrap...

ping @barracuda156 do you have time to look more into this soon?

hey @barracuda156 can you check with this moarvm commit i just pushed? https://github.com/MoarVM/MoarVM/commit/e380dbabd6 I'm not sure it would actually ever trigger in a regular build, but when it goes wrong...

I think you got all the interesting commits. Can you see if you can build moar with the `--asan` flag passed to Configure.pl, and then `ASAN_OPTIONS=detect_leaks=0` in your environment to...

This is most likely related to the implementation of smartmatch as a dispatcher. The initial work on that was from january 2022 and according to your bisect log it was...

`releases class foo { method ACCEPTS(foo:D $self: $other) { } }; say foo.^lookup("ACCEPTS").signature.params[0].type`: https://gist.github.com/Whateverable/b4a0adadc2a85cf4372db3f7190a6408 `releases sub blorb(Any:D $x) { }; say &blorb.signature.params[0].type`: https://gist.github.com/Whateverable/b677e1663e0e185c8747f65599e1597b It looks like getting the invocant type's...

here's some hints: (I also removed the empty line from aoc_d19_input.txt like jubilatious did above) ``` time rakudo -e 'my @patterns = lines.first.split: ", "; my @designs = lines[1..*]; say...

it would be fine by me to have only `"using this sort line"` work

it's infinitely recursing when printing out the pseudostash, because it finds itself in there after the loop body has been inlined, i.e. $a looks kind of like PseudoStash.new( a =>...