mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-14 06:00:39 +00:00
fe7621ee8c
* Work toward affording parallel type checking * The interface to `LazyType` has changed: * `LazyType` now takes a second callback that is passed the `LazyType&` itself. This new callback is responsible for populating the field `TypeId LazyType::unwrapped`. Multithreaded implementations should acquire a lock in this callback. * Modules now retain their `humanReadableNames`. This reduces the number of cases where type checking has to call back to a `ModuleResolver`. * https://github.com/Roblox/luau/pull/902 * Add timing info to the Luau REPL compilation output We've also fixed some bugs and crashes in the new solver as we march toward readiness. * Thread ICEs (Internal Compiler Errors) back to the Frontend properly * Refinements are no longer applied to lvalues * More miscellaneous stability improvements Lots of activity in the new JIT engine: * Implement register spilling/restore for A64 * Correct Luau IR value restore location tracking * Fixed use-after-free in x86 register allocator spill restore * Use btz for bit tests * Finish branch assembly support for A64 * Codesize and performance improvements for A64 * The bit32 library has been implemented for arm and x64 --------- Co-authored-by: Arseny Kapoulkine <arseny.kapoulkine@gmail.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com>
72 lines
1.7 KiB
C++
72 lines
1.7 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
#include "Luau/AssemblyBuilderA64.h"
|
|
#include "Luau/IrData.h"
|
|
|
|
#include "IrRegAllocA64.h"
|
|
|
|
#include <vector>
|
|
|
|
struct Proto;
|
|
|
|
namespace Luau
|
|
{
|
|
namespace CodeGen
|
|
{
|
|
|
|
struct ModuleHelpers;
|
|
struct NativeState;
|
|
struct AssemblyOptions;
|
|
|
|
namespace A64
|
|
{
|
|
|
|
struct IrLoweringA64
|
|
{
|
|
IrLoweringA64(AssemblyBuilderA64& build, ModuleHelpers& helpers, NativeState& data, Proto* proto, IrFunction& function);
|
|
|
|
void lowerInst(IrInst& inst, uint32_t index, IrBlock& next);
|
|
void finishBlock();
|
|
|
|
bool hasError() const;
|
|
|
|
bool isFallthroughBlock(IrBlock target, IrBlock next);
|
|
void jumpOrFallthrough(IrBlock& target, IrBlock& next);
|
|
|
|
// Operand data build helpers
|
|
// May emit data/address synthesis instructions
|
|
RegisterA64 tempDouble(IrOp op);
|
|
RegisterA64 tempInt(IrOp op);
|
|
RegisterA64 tempUint(IrOp op);
|
|
AddressA64 tempAddr(IrOp op, int offset);
|
|
|
|
// May emit restore instructions
|
|
RegisterA64 regOp(IrOp op);
|
|
|
|
// Operand data lookup helpers
|
|
IrConst constOp(IrOp op) const;
|
|
uint8_t tagOp(IrOp op) const;
|
|
bool boolOp(IrOp op) const;
|
|
int intOp(IrOp op) const;
|
|
unsigned uintOp(IrOp op) const;
|
|
double doubleOp(IrOp op) const;
|
|
|
|
IrBlock& blockOp(IrOp op) const;
|
|
Label& labelOp(IrOp op) const;
|
|
|
|
AssemblyBuilderA64& build;
|
|
ModuleHelpers& helpers;
|
|
NativeState& data;
|
|
Proto* proto = nullptr; // Temporarily required to provide 'Instruction* pc' to old emitInst* methods
|
|
|
|
IrFunction& function;
|
|
|
|
IrRegAllocA64 regs;
|
|
|
|
bool error = false;
|
|
};
|
|
|
|
} // namespace A64
|
|
} // namespace CodeGen
|
|
} // namespace Luau
|