github.com/moarvm/moarvm | IRC logs at colabti.org/irclogger/irclogger_logs/moarvm
Set by AlexDaniel on 12 June 2018.
Geth_ MoarVM: c02754207e | (Matthew Wilson)++ (committed using GitHub Web editor) | README.markdown
bump unicode version in readme
03:58
nwc10 good *, #moarvm 09:12
lizmat nwc10 o/
hope everybody's doing well
nwc10 well, I will declare "POETS" in under an hour, hopefully also with enough code pushed to a branch that the rest of it is safely "SEP" 09:14
(acronyms everywhere)
but the "SEP" thing didn't work last time, when I had a week off, and Someone Else hadn't made any progress in the week I was away
Geth_ MoarVM: 03d334f111 | (Timo Paulssen)++ (committed by timo) | src/platform/threads.h
we need to import pthread on windows to get a type
09:18
timotimo i forgot what POETS means 09:30
nwc10 Piss Off Early, Tomorrow's Saturday 09:32
timotimo ah
nwc10 well, more usually writen as "POETS day" to make it sound innocent and sophisticated 09:33
Geth_ MoarVM/master: 6 commits pushed by (Stefan Seifert)++, niner++ 11:54
brrt \o 12:31
nwc10 o/ 12:44
nine I think we should replace tc->compiling_scs with just a tc->compiling_sc. The stack of serialization contexts can be just as well managed in HLL land. The VM is only ever interested in the top most SC. This would speed up MVM_sc_wb_hit_obj a bit and make it easer to clean up after a failed compilation 13:26
brrt I ... need to look at that code in order to say something useful 13:27
though it certainly sounds plausible :-)
nwc10 m: my $a = 42; my $b = 42; $a does role { method Str() { "foo" } }; $b.Str.say 16:28
camelia foo
nwc10 is that really the intcache?
lizmat doesn't know of any HLL magic that would do that 16:29
nwc10 I really don't know much at all, but the MoarVM intcache in intcache.c is only for values from -1 to 15
[Coke] m: my $a = 42; my int $b = 42; $a does role { method Str() { "foo" } }; $b.Str.say 16:33
camelia 42
nwc10 m: my $a = 42; my int $b = 42; $a does role { method Str() { "foo" } }; $b.Str.say 16:35
camelia 42
nwc10 m: my $a = 1; my int $b = 1; $a does role { method Str() { "foo" } }; $b.Str.say
camelia foo
nwc10 OK, that's the intcache. Righto. So there are two different bugs, it seems 16:36
lizmat m: my $a = 42; my $b = 42; $a does role { method Str() { "foo" } }; dd Int.^name 16:41
camelia "Int"
lizmat m: my $a = 42; my $b = 42; $a does role { method Str() { "foo" } }; dd $a.^name
camelia "Int+\{<anon|1>}"
lizmat right 16:42
*phew*