You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sometimes I get the unsupported line_ref tag: 0 warning when loading a module and it seems it's correlated with missing entries in a stack trace when an error is raised in that module. I'm going to debug further, but it seems that the warning comes from here:
and it seems a part of 'compact integers decoding' implementation is missing. Is there any place (in OTP?) where I can find some details / a reference implementation of it so that I can add it to AtomVM?
The text was updated successfully, but these errors were encountered:
Gotcha, thanks for quick answer. Do you have any idea about what the 'compact integer' is? Searching for 'compact integer' in the OTP source didn't give anything :(
Reading the code, I don't understand our decoding and I wonder if it's correct as we do the same thing for TAG_COMPACT_INT and TAG_COMPACT_ATOM but we don't do the same thing for TAG_EXTENDED_INT and TAG_EXTENDED_ATOM.
Hey there,
sometimes I get the
unsupported line_ref tag: 0
warning when loading a module and it seems it's correlated with missing entries in a stack trace when an error is raised in that module. I'm going to debug further, but it seems that the warning comes from here:AtomVM/src/libAtomVM/module.c
Lines 498 to 499 in fc824ad
The text was updated successfully, but these errors were encountered: