tools/mpy-tool.py: Optimise freezing of str when str data is a qstr.

Signed-off-by: Damien George <damien@micropython.org>
pull/8504/head
Damien George 2022-04-08 14:05:23 +10:00
rodzic e647966fc9
commit 40d431d1bb
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -478,6 +478,12 @@ class GlobalQStrList:
def get_by_index(self, i):
return self.qstrs[i]
def find_by_str(self, s):
for q in self.qstrs:
if q is not None and q.str == s:
return q
return None
class MPFunTable:
def __repr__(self):
@ -633,6 +639,9 @@ class CompiledModule:
else:
return "MP_ROM_PTR(&mp_const_empty_bytes_obj)"
if is_str_type(obj):
q = global_qstrs.find_by_str(obj)
if q:
return "MP_ROM_QSTR(%s)" % q.qstr_id
obj = bytes_cons(obj, "utf8")
obj_type = "mp_type_str"
else: