2022-05-27 04:33:48 +08:00
|
|
|
// 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
|
|
|
|
{
|
|
|
|
|
2022-11-05 01:02:37 +08:00
|
|
|
enum class ConditionA64
|
2022-05-27 04:33:48 +08:00
|
|
|
{
|
2022-11-05 01:02:37 +08:00
|
|
|
Equal,
|
|
|
|
NotEqual,
|
|
|
|
|
|
|
|
CarrySet,
|
|
|
|
CarryClear,
|
|
|
|
|
|
|
|
Minus,
|
|
|
|
Plus,
|
|
|
|
|
2022-05-27 04:33:48 +08:00
|
|
|
Overflow,
|
|
|
|
NoOverflow,
|
|
|
|
|
2022-11-05 01:02:37 +08:00
|
|
|
UnsignedGreater,
|
|
|
|
UnsignedLessEqual,
|
2022-05-27 04:33:48 +08:00
|
|
|
|
2022-11-05 01:02:37 +08:00
|
|
|
GreaterEqual,
|
2022-05-27 04:33:48 +08:00
|
|
|
Less,
|
|
|
|
Greater,
|
2022-11-05 01:02:37 +08:00
|
|
|
LessEqual,
|
2022-05-27 04:33:48 +08:00
|
|
|
|
2022-11-05 01:02:37 +08:00
|
|
|
Always,
|
2022-10-14 06:59:53 +08:00
|
|
|
|
2022-05-27 04:33:48 +08:00
|
|
|
Count
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace CodeGen
|
|
|
|
} // namespace Luau
|