mirror of
https://github.com/luau-lang/luau.git
synced 2025-01-07 03:49:10 +00:00
39 lines
1,006 B
C
39 lines
1,006 B
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/IrData.h"
|
||
|
|
||
|
#include <array>
|
||
|
|
||
|
namespace Luau
|
||
|
{
|
||
|
namespace CodeGen
|
||
|
{
|
||
|
|
||
|
struct IrValueLocationTracking
|
||
|
{
|
||
|
IrValueLocationTracking(IrFunction& function);
|
||
|
|
||
|
void setRestoreCallack(void* context, void (*callback)(void* context, IrInst& inst));
|
||
|
|
||
|
void beforeInstLowering(IrInst& inst);
|
||
|
void afterInstLowering(IrInst& inst, uint32_t instIdx);
|
||
|
|
||
|
void recordRestoreOp(uint32_t instIdx, IrOp location);
|
||
|
void invalidateRestoreOp(IrOp location);
|
||
|
void invalidateRestoreVmRegs(int start, int count);
|
||
|
|
||
|
IrFunction& function;
|
||
|
|
||
|
std::array<uint32_t, 256> vmRegValue;
|
||
|
|
||
|
// For range/full invalidations, we only want to visit a limited number of data that we have recorded
|
||
|
int maxReg = 0;
|
||
|
|
||
|
void* restoreCallbackCtx = nullptr;
|
||
|
void (*restoreCallback)(void* context, IrInst& inst) = nullptr;
|
||
|
};
|
||
|
|
||
|
} // namespace CodeGen
|
||
|
} // namespace Luau
|