mirror of
https://github.com/luau-lang/luau.git
synced 2025-01-09 12:59:10 +00:00
29 lines
603 B
C
29 lines
603 B
C
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
||
|
#pragma once
|
||
|
|
||
|
namespace Luau
|
||
|
{
|
||
|
namespace CodeGen
|
||
|
{
|
||
|
|
||
|
class AssemblyBuilderX64;
|
||
|
struct Label;
|
||
|
struct OperandX64;
|
||
|
|
||
|
enum class BuiltinImplType
|
||
|
{
|
||
|
None,
|
||
|
UsesFallback, // Uses fallback for unsupported cases
|
||
|
};
|
||
|
|
||
|
struct BuiltinImplResult
|
||
|
{
|
||
|
BuiltinImplType type;
|
||
|
int actualResultCount;
|
||
|
};
|
||
|
|
||
|
BuiltinImplResult emitBuiltin(AssemblyBuilderX64& build, int bfid, int nparams, int ra, int arg, OperandX64 args, int nresults, Label& fallback);
|
||
|
|
||
|
} // namespace CodeGen
|
||
|
} // namespace Luau
|