Hi, Sergey,

thanks for the patch! LGTM with a minor comment.

Sergey

On 6/4/26 12:30, Sergey Kaplun wrote:


<snipped>

+
+
+def bcmode_cd(op):
+    return int((lj_bc_mode()[op] >> 7) & 15)
+
+
+# Unfortunately, there is no place in the VM except the generated
+# Lua table, where the bytecode names are stored. So duplicate
+# them here.
+BYTECODES = [
+    # Comparison ops. ORDER OPR.
"ORDER OPR" - what does it mean? Here and below.
+    'ISLT',
+    'ISGE',
+    'ISLE',
<snipped>