github.com/moarvm/moarvm | IRC logs at colabti.org/irclogger/irclogger_logs/moarvm
Set by AlexDaniel on 12 June 2018.
Geth MoarVM/experimental-hllize-speshing: c026ae48d6 | (Timo Paulssen)++ | src/spesh/optimize.c
WIP further hllize speshializations. can't really test it, tho
01:08
MasterDuke looks like our libatomic_ops is kind of outdated. upstream is now at 7.6.10 (soon to 7.6.12 github.com/ivmai/libatomic_ops/blo...ChangeLog) and we're only at 7.6.2 08:34
MasterDuke it's odd, if `MVM_string_utf8_c8_encode_C_string` is in my list of allocating functions to check (even if it's the only one!) then the plugin reliably causes a segfault in gcc when compiling src/io/filewatchers.c 08:45
Kaiepi what are MVM_BC_get_I64 and MVM_BC_get_N64 for? 11:37
timotimo they grab an int64 or num64 literal out of the bytecode 11:51
Kaiepi when would they be used over .i64/.n64 in interp.c? 11:52
timotimo you mean on GET_REG? 11:57
Kaiepi yeah 12:03
timotimo GET_REG reads a 16 bit integer from the bytecode at an offset and gives you a pointer to the register in the current frame's work area ("stack frame") selected by that integer value 12:04
Kaiepi ah 12:06
so that's probably not what i want
timotimo depends entirely upon what you want to do 12:07
Kaiepi i'm writing an op for a function that takes a couple MVMuint32, but these are user input 12:08
what i have atm is the op itself takes a couple uint64 and casts them to MVMuint32 to pass to the function, and on the rakudo side of things i use nqp::unbox_u and UInt to make sure the input is valid 12:09
but i'm not really sure if this is the right way to go
timotimo you will need a register, then 12:22
well, multiple 12:25
MasterDuke is there ever a case when you're freeing a struct member (e.g., `MVM_free(foo->bar)`) that you shouldn't (or wouldn't want t) also set the member to `NULL` (i.e., use `MVM_free_null(foo->bar)`)? 12:31
jnthn If it will never be accessed again, setting it to NULL is a waste of time. 12:32
MasterDuke so if before an MVM_exception_throw_* it's unnecessary? 12:44
Geth MoarVM: MasterDuke17++ created pull request #1291:
Add gcc plugin to check for missing free before throw
13:19
nine MasterDuke: you can't say that in general. Exceptions can be caught and the free'd thing may be in a long lived data structure 20:21
MasterDuke what about if you free the struct at the end? do you ever need to NULL the members after you free them? 22:37