luau/CodeGen/include/Luau/ConditionA64.h

41 lines
512 B
C
Raw Normal View History

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