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