From 39ab275f5f0c2a0be2c610584a4bee85546bed71 Mon Sep 17 00:00:00 2001 From: GRH <107208086+luau-load@users.noreply.github.com> Date: Wed, 8 May 2024 22:43:41 +0300 Subject: [PATCH] Check bytecode version before writing type information --- Compiler/src/BytecodeBuilder.cpp | 70 +++++++++++++++++--------------- 1 file changed, 38 insertions(+), 32 deletions(-) diff --git a/Compiler/src/BytecodeBuilder.cpp b/Compiler/src/BytecodeBuilder.cpp index 5386a528..f6c5d5c8 100644 --- a/Compiler/src/BytecodeBuilder.cpp +++ b/Compiler/src/BytecodeBuilder.cpp @@ -665,8 +665,11 @@ void BytecodeBuilder::finalize() bytecode = char(version); - uint8_t typesversion = getTypeEncodingVersion(); - writeByte(bytecode, typesversion); + if (version >= 4) + { + uint8_t typesversion = getTypeEncodingVersion(); + writeByte(bytecode, typesversion); + } writeStringTable(bytecode); @@ -690,45 +693,48 @@ void BytecodeBuilder::writeFunction(std::string& ss, uint32_t id, uint8_t flags) writeByte(ss, func.numupvalues); writeByte(ss, func.isvararg); - writeByte(ss, flags); - - if (FFlag::LuauCompileTypeInfo) + if (getVersion() >= 4) { - if (!func.typeinfo.empty() || !typedUpvals.empty() || !typedLocals.empty()) + writeByte(ss, flags); + + if (FFlag::LuauCompileTypeInfo) { - // collect type info into a temporary string to know the overall size of type data - tempTypeInfo.clear(); - writeVarInt(tempTypeInfo, uint32_t(func.typeinfo.size())); - writeVarInt(tempTypeInfo, uint32_t(typedUpvals.size())); - writeVarInt(tempTypeInfo, uint32_t(typedLocals.size())); - - tempTypeInfo.append(func.typeinfo); - - for (const TypedUpval& l : typedUpvals) - writeByte(tempTypeInfo, l.type); - - for (const TypedLocal& l : typedLocals) + if (!func.typeinfo.empty() || !typedUpvals.empty() || !typedLocals.empty()) { - writeByte(tempTypeInfo, l.type); - writeByte(tempTypeInfo, l.reg); - writeVarInt(tempTypeInfo, l.startpc); - LUAU_ASSERT(l.endpc >= l.startpc); - writeVarInt(tempTypeInfo, l.endpc - l.startpc); - } + // collect type info into a temporary string to know the overall size of type data + tempTypeInfo.clear(); + writeVarInt(tempTypeInfo, uint32_t(func.typeinfo.size())); + writeVarInt(tempTypeInfo, uint32_t(typedUpvals.size())); + writeVarInt(tempTypeInfo, uint32_t(typedLocals.size())); - writeVarInt(ss, uint32_t(tempTypeInfo.size())); - ss.append(tempTypeInfo); + tempTypeInfo.append(func.typeinfo); + + for (const TypedUpval& l : typedUpvals) + writeByte(tempTypeInfo, l.type); + + for (const TypedLocal& l : typedLocals) + { + writeByte(tempTypeInfo, l.type); + writeByte(tempTypeInfo, l.reg); + writeVarInt(tempTypeInfo, l.startpc); + LUAU_ASSERT(l.endpc >= l.startpc); + writeVarInt(tempTypeInfo, l.endpc - l.startpc); + } + + writeVarInt(ss, uint32_t(tempTypeInfo.size())); + ss.append(tempTypeInfo); + } + else + { + writeVarInt(ss, 0); + } } else { - writeVarInt(ss, 0); + writeVarInt(ss, uint32_t(func.typeinfo.size())); + ss.append(func.typeinfo); } } - else - { - writeVarInt(ss, uint32_t(func.typeinfo.size())); - ss.append(func.typeinfo); - } // instructions writeVarInt(ss, uint32_t(insns.size()));