2022-10-28 11:37:29 +01:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
namespace CodeGen
|
|
|
|
{
|
|
|
|
|
|
|
|
bool forgLoopNodeIter(lua_State* L, Table* h, int index, TValue* ra);
|
|
|
|
bool forgLoopNonTableFallback(lua_State* L, int insnA, int aux);
|
|
|
|
|
|
|
|
void forgPrepXnextFallback(lua_State* L, TValue* ra, int pc);
|
|
|
|
|
2022-11-04 17:33:22 +00:00
|
|
|
Closure* callProlog(lua_State* L, TValue* ra, StkId argtop, int nresults);
|
|
|
|
void callEpilogC(lua_State* L, int nresults, int n);
|
|
|
|
|
2023-03-31 19:42:49 +01:00
|
|
|
Closure* callFallback(lua_State* L, StkId ra, StkId argtop, int nresults);
|
|
|
|
Closure* returnFallback(lua_State* L, StkId ra, int n);
|
2023-03-24 18:03:04 +00:00
|
|
|
|
2022-10-28 11:37:29 +01:00
|
|
|
} // namespace CodeGen
|
|
|
|
} // namespace Luau
|