github.com/moarvm/moarvm | IRC logs at colabti.org/irclogger/irclogger_logs/moarvm
Set by AlexDaniel on 12 June 2018.
nwc10 good *able6, #moarvm 06:06
nine Good morning! 08:03
nwc10 correct!
:-)
nine nwc10: nice to see that my work on enabling compiler warnings laid the foundation for actual fixes :) 08:04
nwc10 what amused me was that on x86_64 it seemed to be byte-for-byte identnical object code 08:06
whereas on arm, the compiler compiled my bitwise AND test into < 0x80
also, for some reason, trying to use MVM_UNLIKELY on the two if statements made gcc on ARM generate *worse* code 08:07
it added 1 instruction into the loop
which was actually already laid out in a way that I think was optimal for the likely case
(I didn't think it through hard to "how would I write this in assemby"
)
Geth MoarVM/ILP32-printf-warnings: 3c3a24bff6 | (Nicholas Clark)++ | 2 files
Fix two *printf size warnings reported on ILP32 platforms.

In debugserver.c, handle_id is 64 bit, so use PRId64.
In the profiler, we print out the difference between two pointers. This has the type ptrdiff_t. It seems that on most platforms that ptrdiff_t is a typedef for long. However, on (at least) arm32 and sparc32 it is a typedef ... (6 more lines)
19:56
nwc10 good *, samcv
Geth MoarVM: nwc10++ created pull request #1364:
Fix two *printf size warnings reported on ILP32 platforms.
19:57
nwc10 right, let's see this time whether github notices that Azure finished its job