mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-13 05:20:38 +00:00
76070f8da2
* Reoptimized math.min/max/bit32 builtins assuming at least 2 arguments are used (1-2% lift on some benchmarks) * Type errors that mention function types no longer have redundant parenthesis around return type * Luau REPL now supports --compile=remarks which displays the source code with optimization remarks embedded as comments * Builtin calls are slightly faster when called with 1-2 arguments (~1% improvement in some benchmarks)
47 lines
628 B
C++
47 lines
628 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
|
|
{
|
|
|
|
enum class Condition
|
|
{
|
|
Overflow,
|
|
NoOverflow,
|
|
|
|
Carry,
|
|
NoCarry,
|
|
|
|
Below,
|
|
BelowEqual,
|
|
Above,
|
|
AboveEqual,
|
|
Equal,
|
|
Less,
|
|
LessEqual,
|
|
Greater,
|
|
GreaterEqual,
|
|
|
|
NotBelow,
|
|
NotBelowEqual,
|
|
NotAbove,
|
|
NotAboveEqual,
|
|
NotEqual,
|
|
NotLess,
|
|
NotLessEqual,
|
|
NotGreater,
|
|
NotGreaterEqual,
|
|
|
|
Zero,
|
|
NotZero,
|
|
|
|
Parity,
|
|
NotParity,
|
|
|
|
Count
|
|
};
|
|
|
|
} // namespace CodeGen
|
|
} // namespace Luau
|