• Jim Mussared's avatar
    py/qstr: Add support for sorted qstr pools. · 64c79a54
    Jim Mussared authored
    
    
    This provides a significant performance boost for qstr_find_strn, which is
    called a lot during parsing and loading of .mpy files, as well as interning
    of string objects (which happens in most string methods that return new
    strings).
    
    Also adds comments to explain the "static" qstrs.  These are part of the
    .mpy ABI and avoid needing to duplicate string data for QSTRs known to
    already be in the firmware.  The static pool isn't currently sorted, but in
    the future we could either split the static pool into the sorted regions,
    or in the next .mpy version just sort them.
    
    Based on initial work done by @amirgon in #6896.
    
    This work was funded through GitHub Sponsors.
    Signed-off-by: default avatarJim Mussared <jim.mussared@gmail.com>
    64c79a54
persistentcode.c 22.4 KB