diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-07-11 02:57:23 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-07-11 02:57:23 +0900 |
| commit | 26f49b7e27076e689541b9e13a1b54f60a4ee5c2 (patch) | |
| tree | a3762813c34a384f21ddeed630ddf333a1cc1b05 /src/Structure/Instructions/Instrs/Numeric | |
| parent | 326273f20c2d7dfe3d866eb720d1bb914570e3a3 (diff) | |
| download | php-waddiwasi-26f49b7e27076e689541b9e13a1b54f60a4ee5c2.tar.gz php-waddiwasi-26f49b7e27076e689541b9e13a1b54f60a4ee5c2.tar.zst php-waddiwasi-26f49b7e27076e689541b9e13a1b54f60a4ee5c2.zip | |
feat: organize namespaces
Diffstat (limited to 'src/Structure/Instructions/Instrs/Numeric')
144 files changed, 0 insertions, 2192 deletions
diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Abs.php b/src/Structure/Instructions/Instrs/Numeric/F32Abs.php deleted file mode 100644 index bd13425..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Abs.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Abs extends Instr -{ - public static function opName(): string - { - return "f32.abs"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Add.php b/src/Structure/Instructions/Instrs/Numeric/F32Add.php deleted file mode 100644 index 77b9379..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Add.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Add extends Instr -{ - public static function opName(): string - { - return "f32.add"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Ceil.php b/src/Structure/Instructions/Instrs/Numeric/F32Ceil.php deleted file mode 100644 index dfd2274..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Ceil.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Ceil extends Instr -{ - public static function opName(): string - { - return "f32.ceil"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Const.php b/src/Structure/Instructions/Instrs/Numeric/F32Const.php deleted file mode 100644 index 03a25d5..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Const.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Const extends Instr -{ - /** - * @param F32 $value - */ - protected function __construct( - public float $value, - ) { - } - - public static function opName(): string - { - return "f32.const"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32ConvertI32S.php b/src/Structure/Instructions/Instrs/Numeric/F32ConvertI32S.php deleted file mode 100644 index 7fe7735..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32ConvertI32S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32ConvertI32S extends Instr -{ - public static function opName(): string - { - return "f32.convert_i32_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32ConvertI32U.php b/src/Structure/Instructions/Instrs/Numeric/F32ConvertI32U.php deleted file mode 100644 index 76e7cf4..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32ConvertI32U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32ConvertI32U extends Instr -{ - public static function opName(): string - { - return "f32.convert_i32_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32ConvertI64S.php b/src/Structure/Instructions/Instrs/Numeric/F32ConvertI64S.php deleted file mode 100644 index 6739f34..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32ConvertI64S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32ConvertI64S extends Instr -{ - public static function opName(): string - { - return "f32.convert_i64_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32ConvertI64U.php b/src/Structure/Instructions/Instrs/Numeric/F32ConvertI64U.php deleted file mode 100644 index 0396a2a..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32ConvertI64U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32ConvertI64U extends Instr -{ - public static function opName(): string - { - return "f32.convert_i64_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32CopySign.php b/src/Structure/Instructions/Instrs/Numeric/F32CopySign.php deleted file mode 100644 index ee8b26c..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32CopySign.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32CopySign extends Instr -{ - public static function opName(): string - { - return "f32.copy_sign"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32DemoteF64.php b/src/Structure/Instructions/Instrs/Numeric/F32DemoteF64.php deleted file mode 100644 index 4602bcd..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32DemoteF64.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32DemoteF64 extends Instr -{ - public static function opName(): string - { - return "f32.demote_f64"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Div.php b/src/Structure/Instructions/Instrs/Numeric/F32Div.php deleted file mode 100644 index 06bbac2..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Div.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Div extends Instr -{ - public static function opName(): string - { - return "f32.div"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Eq.php b/src/Structure/Instructions/Instrs/Numeric/F32Eq.php deleted file mode 100644 index 29503d1..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Eq.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Eq extends Instr -{ - public static function opName(): string - { - return "f32.eq"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Floor.php b/src/Structure/Instructions/Instrs/Numeric/F32Floor.php deleted file mode 100644 index 7dd6802..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Floor.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Floor extends Instr -{ - public static function opName(): string - { - return "f32.floor"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Ge.php b/src/Structure/Instructions/Instrs/Numeric/F32Ge.php deleted file mode 100644 index f833c6b..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Ge.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Ge extends Instr -{ - public static function opName(): string - { - return "f32.ge"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Gt.php b/src/Structure/Instructions/Instrs/Numeric/F32Gt.php deleted file mode 100644 index 5d5537d..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Gt.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Gt extends Instr -{ - public static function opName(): string - { - return "f32.gt"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Le.php b/src/Structure/Instructions/Instrs/Numeric/F32Le.php deleted file mode 100644 index 38dcf93..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Le.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Le extends Instr -{ - public static function opName(): string - { - return "f32.le"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Lt.php b/src/Structure/Instructions/Instrs/Numeric/F32Lt.php deleted file mode 100644 index 511f9fb..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Lt.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Lt extends Instr -{ - public static function opName(): string - { - return "f32.lt"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Max.php b/src/Structure/Instructions/Instrs/Numeric/F32Max.php deleted file mode 100644 index af41f0f..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Max.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Max extends Instr -{ - public static function opName(): string - { - return "f32.max"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Min.php b/src/Structure/Instructions/Instrs/Numeric/F32Min.php deleted file mode 100644 index d4b1625..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Min.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Min extends Instr -{ - public static function opName(): string - { - return "f32.min"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Mul.php b/src/Structure/Instructions/Instrs/Numeric/F32Mul.php deleted file mode 100644 index 30347e0..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Mul.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Mul extends Instr -{ - public static function opName(): string - { - return "f32.mul"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Ne.php b/src/Structure/Instructions/Instrs/Numeric/F32Ne.php deleted file mode 100644 index eecff24..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Ne.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Ne extends Instr -{ - public static function opName(): string - { - return "f32.ne"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Nearest.php b/src/Structure/Instructions/Instrs/Numeric/F32Nearest.php deleted file mode 100644 index ae45b0a..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Nearest.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Nearest extends Instr -{ - public static function opName(): string - { - return "f32.nearest"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Neg.php b/src/Structure/Instructions/Instrs/Numeric/F32Neg.php deleted file mode 100644 index 1cd54f7..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Neg.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Neg extends Instr -{ - public static function opName(): string - { - return "f32.neg"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32ReinterpretI32.php b/src/Structure/Instructions/Instrs/Numeric/F32ReinterpretI32.php deleted file mode 100644 index ee617f4..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32ReinterpretI32.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32ReinterpretI32 extends Instr -{ - public static function opName(): string - { - return "f32.reinterpret_i32"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32ReinterpretI64.php b/src/Structure/Instructions/Instrs/Numeric/F32ReinterpretI64.php deleted file mode 100644 index edc06c7..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32ReinterpretI64.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32ReinterpretI64 extends Instr -{ - public static function opName(): string - { - return "f32.reinterpret_i64"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Sqrt.php b/src/Structure/Instructions/Instrs/Numeric/F32Sqrt.php deleted file mode 100644 index be2dc16..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Sqrt.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Sqrt extends Instr -{ - public static function opName(): string - { - return "f32.sqrt"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Sub.php b/src/Structure/Instructions/Instrs/Numeric/F32Sub.php deleted file mode 100644 index 1e971a9..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Sub.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Sub extends Instr -{ - public static function opName(): string - { - return "f32.sub"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F32Trunc.php b/src/Structure/Instructions/Instrs/Numeric/F32Trunc.php deleted file mode 100644 index 0218c5f..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F32Trunc.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F32Trunc extends Instr -{ - public static function opName(): string - { - return "f32.trunc"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Abs.php b/src/Structure/Instructions/Instrs/Numeric/F64Abs.php deleted file mode 100644 index 4a6a166..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Abs.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Abs extends Instr -{ - public static function opName(): string - { - return "f64.abs"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Add.php b/src/Structure/Instructions/Instrs/Numeric/F64Add.php deleted file mode 100644 index e76b910..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Add.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Add extends Instr -{ - public static function opName(): string - { - return "f64.add"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Ceil.php b/src/Structure/Instructions/Instrs/Numeric/F64Ceil.php deleted file mode 100644 index 12f8a19..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Ceil.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Ceil extends Instr -{ - public static function opName(): string - { - return "f64.ceil"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Const.php b/src/Structure/Instructions/Instrs/Numeric/F64Const.php deleted file mode 100644 index f5819a9..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Const.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Const extends Instr -{ - /** - * @param F64 $value - */ - protected function __construct( - public float $value, - ) { - } - - public static function opName(): string - { - return "f64.const"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64ConvertI32S.php b/src/Structure/Instructions/Instrs/Numeric/F64ConvertI32S.php deleted file mode 100644 index e87dc21..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64ConvertI32S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64ConvertI32S extends Instr -{ - public static function opName(): string - { - return "f64.convert_i32_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64ConvertI32U.php b/src/Structure/Instructions/Instrs/Numeric/F64ConvertI32U.php deleted file mode 100644 index 05a7336..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64ConvertI32U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64ConvertI32U extends Instr -{ - public static function opName(): string - { - return "f64.convert_i32_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64ConvertI64S.php b/src/Structure/Instructions/Instrs/Numeric/F64ConvertI64S.php deleted file mode 100644 index 0b25d72..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64ConvertI64S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64ConvertI64S extends Instr -{ - public static function opName(): string - { - return "f64.convert_i64_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64ConvertI64U.php b/src/Structure/Instructions/Instrs/Numeric/F64ConvertI64U.php deleted file mode 100644 index a782c93..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64ConvertI64U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64ConvertI64U extends Instr -{ - public static function opName(): string - { - return "f64.convert_i64_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64CopySign.php b/src/Structure/Instructions/Instrs/Numeric/F64CopySign.php deleted file mode 100644 index d9f363f..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64CopySign.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64CopySign extends Instr -{ - public static function opName(): string - { - return "f64.copy_sign"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Div.php b/src/Structure/Instructions/Instrs/Numeric/F64Div.php deleted file mode 100644 index a7806a6..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Div.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Div extends Instr -{ - public static function opName(): string - { - return "f64.div"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Eq.php b/src/Structure/Instructions/Instrs/Numeric/F64Eq.php deleted file mode 100644 index fefb545..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Eq.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Eq extends Instr -{ - public static function opName(): string - { - return "f64.eq"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Floor.php b/src/Structure/Instructions/Instrs/Numeric/F64Floor.php deleted file mode 100644 index 248a01e..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Floor.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Floor extends Instr -{ - public static function opName(): string - { - return "f64.floor"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Ge.php b/src/Structure/Instructions/Instrs/Numeric/F64Ge.php deleted file mode 100644 index 2c7a3da..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Ge.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Ge extends Instr -{ - public static function opName(): string - { - return "f64.ge"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Gt.php b/src/Structure/Instructions/Instrs/Numeric/F64Gt.php deleted file mode 100644 index a08b908..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Gt.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Gt extends Instr -{ - public static function opName(): string - { - return "f64.gt"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Le.php b/src/Structure/Instructions/Instrs/Numeric/F64Le.php deleted file mode 100644 index 069382d..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Le.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Le extends Instr -{ - public static function opName(): string - { - return "f64.le"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Lt.php b/src/Structure/Instructions/Instrs/Numeric/F64Lt.php deleted file mode 100644 index 67e8a06..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Lt.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Lt extends Instr -{ - public static function opName(): string - { - return "f64.lt"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Max.php b/src/Structure/Instructions/Instrs/Numeric/F64Max.php deleted file mode 100644 index 4a159ae..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Max.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Max extends Instr -{ - public static function opName(): string - { - return "f64.max"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Min.php b/src/Structure/Instructions/Instrs/Numeric/F64Min.php deleted file mode 100644 index bae22c3..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Min.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Min extends Instr -{ - public static function opName(): string - { - return "f64.min"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Mul.php b/src/Structure/Instructions/Instrs/Numeric/F64Mul.php deleted file mode 100644 index 5204c61..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Mul.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Mul extends Instr -{ - public static function opName(): string - { - return "f64.mul"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Ne.php b/src/Structure/Instructions/Instrs/Numeric/F64Ne.php deleted file mode 100644 index f2b9767..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Ne.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Ne extends Instr -{ - public static function opName(): string - { - return "f64.ne"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Nearest.php b/src/Structure/Instructions/Instrs/Numeric/F64Nearest.php deleted file mode 100644 index df39552..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Nearest.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Nearest extends Instr -{ - public static function opName(): string - { - return "f64.nearest"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Neg.php b/src/Structure/Instructions/Instrs/Numeric/F64Neg.php deleted file mode 100644 index e39c12f..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Neg.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Neg extends Instr -{ - public static function opName(): string - { - return "f64.neg"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64PromoteF32.php b/src/Structure/Instructions/Instrs/Numeric/F64PromoteF32.php deleted file mode 100644 index 0b3d4ef..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64PromoteF32.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64PromoteF32 extends Instr -{ - public static function opName(): string - { - return "f64.promote_f32"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64ReinterpretI32.php b/src/Structure/Instructions/Instrs/Numeric/F64ReinterpretI32.php deleted file mode 100644 index 9817aea..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64ReinterpretI32.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64ReinterpretI32 extends Instr -{ - public static function opName(): string - { - return "f64.reinterpret_i32"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64ReinterpretI64.php b/src/Structure/Instructions/Instrs/Numeric/F64ReinterpretI64.php deleted file mode 100644 index 4178a96..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64ReinterpretI64.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64ReinterpretI64 extends Instr -{ - public static function opName(): string - { - return "f64.reinterpret_i64"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Sqrt.php b/src/Structure/Instructions/Instrs/Numeric/F64Sqrt.php deleted file mode 100644 index b9ba41e..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Sqrt.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Sqrt extends Instr -{ - public static function opName(): string - { - return "f64.sqrt"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Sub.php b/src/Structure/Instructions/Instrs/Numeric/F64Sub.php deleted file mode 100644 index 05eddc1..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Sub.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Sub extends Instr -{ - public static function opName(): string - { - return "f64.sub"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/F64Trunc.php b/src/Structure/Instructions/Instrs/Numeric/F64Trunc.php deleted file mode 100644 index 4c3fa30..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/F64Trunc.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class F64Trunc extends Instr -{ - public static function opName(): string - { - return "f64.trunc"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Add.php b/src/Structure/Instructions/Instrs/Numeric/I32Add.php deleted file mode 100644 index bb7253b..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Add.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Add extends Instr -{ - public static function opName(): string - { - return "i32.add"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32And.php b/src/Structure/Instructions/Instrs/Numeric/I32And.php deleted file mode 100644 index 9cfefc6..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32And.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32And extends Instr -{ - public static function opName(): string - { - return "i32.and"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Clz.php b/src/Structure/Instructions/Instrs/Numeric/I32Clz.php deleted file mode 100644 index d6da4c1..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Clz.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Clz extends Instr -{ - public static function opName(): string - { - return "i32.clz"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Const.php b/src/Structure/Instructions/Instrs/Numeric/I32Const.php deleted file mode 100644 index 7ebc418..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Const.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Const extends Instr -{ - /** - * @param U32 $value - */ - protected function __construct( - public int $value, - ) { - } - - public static function opName(): string - { - return "i32.const"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Ctz.php b/src/Structure/Instructions/Instrs/Numeric/I32Ctz.php deleted file mode 100644 index 49872e7..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Ctz.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Ctz extends Instr -{ - public static function opName(): string - { - return "i32.ctz"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32DivS.php b/src/Structure/Instructions/Instrs/Numeric/I32DivS.php deleted file mode 100644 index d3d5fc3..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32DivS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32DivS extends Instr -{ - public static function opName(): string - { - return "i32.div_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32DivU.php b/src/Structure/Instructions/Instrs/Numeric/I32DivU.php deleted file mode 100644 index 159ce6e..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32DivU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32DivU extends Instr -{ - public static function opName(): string - { - return "i32.div_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Eq.php b/src/Structure/Instructions/Instrs/Numeric/I32Eq.php deleted file mode 100644 index e98b81d..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Eq.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Eq extends Instr -{ - public static function opName(): string - { - return "i32.eq"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Eqz.php b/src/Structure/Instructions/Instrs/Numeric/I32Eqz.php deleted file mode 100644 index 9362e84..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Eqz.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Eqz extends Instr -{ - public static function opName(): string - { - return "i32.eqz"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Extend16S.php b/src/Structure/Instructions/Instrs/Numeric/I32Extend16S.php deleted file mode 100644 index a09c7f0..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Extend16S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Extend16S extends Instr -{ - public static function opName(): string - { - return "i32.extend16_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Extend8S.php b/src/Structure/Instructions/Instrs/Numeric/I32Extend8S.php deleted file mode 100644 index e8a1165..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Extend8S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Extend8S extends Instr -{ - public static function opName(): string - { - return "i32.extend8_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32GeS.php b/src/Structure/Instructions/Instrs/Numeric/I32GeS.php deleted file mode 100644 index 5238682..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32GeS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32GeS extends Instr -{ - public static function opName(): string - { - return "i32.ge_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32GeU.php b/src/Structure/Instructions/Instrs/Numeric/I32GeU.php deleted file mode 100644 index 7202fe2..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32GeU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32GeU extends Instr -{ - public static function opName(): string - { - return "i32.ge_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32GtS.php b/src/Structure/Instructions/Instrs/Numeric/I32GtS.php deleted file mode 100644 index 1c5207b..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32GtS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32GtS extends Instr -{ - public static function opName(): string - { - return "i32.gt_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32GtU.php b/src/Structure/Instructions/Instrs/Numeric/I32GtU.php deleted file mode 100644 index 1f02f92..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32GtU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32GtU extends Instr -{ - public static function opName(): string - { - return "i32.gt_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32LeS.php b/src/Structure/Instructions/Instrs/Numeric/I32LeS.php deleted file mode 100644 index f0c316a..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32LeS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32LeS extends Instr -{ - public static function opName(): string - { - return "i32.le_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32LeU.php b/src/Structure/Instructions/Instrs/Numeric/I32LeU.php deleted file mode 100644 index 83ff213..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32LeU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32LeU extends Instr -{ - public static function opName(): string - { - return "i32.le_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32LtS.php b/src/Structure/Instructions/Instrs/Numeric/I32LtS.php deleted file mode 100644 index a44a846..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32LtS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32LtS extends Instr -{ - public static function opName(): string - { - return "i32.lt_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32LtU.php b/src/Structure/Instructions/Instrs/Numeric/I32LtU.php deleted file mode 100644 index 56e3ca5..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32LtU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32LtU extends Instr -{ - public static function opName(): string - { - return "i32.lt_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Mul.php b/src/Structure/Instructions/Instrs/Numeric/I32Mul.php deleted file mode 100644 index 4a90126..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Mul.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Mul extends Instr -{ - public static function opName(): string - { - return "i32.mul"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Ne.php b/src/Structure/Instructions/Instrs/Numeric/I32Ne.php deleted file mode 100644 index ea22294..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Ne.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Ne extends Instr -{ - public static function opName(): string - { - return "i32.ne"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Or.php b/src/Structure/Instructions/Instrs/Numeric/I32Or.php deleted file mode 100644 index 43e4fc1..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Or.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Or extends Instr -{ - public static function opName(): string - { - return "i32.or"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Popcnt.php b/src/Structure/Instructions/Instrs/Numeric/I32Popcnt.php deleted file mode 100644 index 1a0cda6..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Popcnt.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Popcnt extends Instr -{ - public static function opName(): string - { - return "i32.popcnt"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32ReinterpretF32.php b/src/Structure/Instructions/Instrs/Numeric/I32ReinterpretF32.php deleted file mode 100644 index b0c8fbb..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32ReinterpretF32.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32ReinterpretF32 extends Instr -{ - public static function opName(): string - { - return "i32.reinterpret_f32"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32ReinterpretF64.php b/src/Structure/Instructions/Instrs/Numeric/I32ReinterpretF64.php deleted file mode 100644 index 4396987..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32ReinterpretF64.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32ReinterpretF64 extends Instr -{ - public static function opName(): string - { - return "i32.reinterpret_f64"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32RemS.php b/src/Structure/Instructions/Instrs/Numeric/I32RemS.php deleted file mode 100644 index 9f26f93..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32RemS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32RemS extends Instr -{ - public static function opName(): string - { - return "i32.rem_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32RemU.php b/src/Structure/Instructions/Instrs/Numeric/I32RemU.php deleted file mode 100644 index dc60d09..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32RemU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32RemU extends Instr -{ - public static function opName(): string - { - return "i32.rem_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32RotL.php b/src/Structure/Instructions/Instrs/Numeric/I32RotL.php deleted file mode 100644 index 7f847b2..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32RotL.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32RotL extends Instr -{ - public static function opName(): string - { - return "i32.rot_l"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32RotR.php b/src/Structure/Instructions/Instrs/Numeric/I32RotR.php deleted file mode 100644 index 3b7a6c4..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32RotR.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32RotR extends Instr -{ - public static function opName(): string - { - return "i32.rot_r"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Shl.php b/src/Structure/Instructions/Instrs/Numeric/I32Shl.php deleted file mode 100644 index c22e9d2..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Shl.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Shl extends Instr -{ - public static function opName(): string - { - return "i32.shl"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32ShrS.php b/src/Structure/Instructions/Instrs/Numeric/I32ShrS.php deleted file mode 100644 index 485849b..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32ShrS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32ShrS extends Instr -{ - public static function opName(): string - { - return "i32.shr_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32ShrU.php b/src/Structure/Instructions/Instrs/Numeric/I32ShrU.php deleted file mode 100644 index 859db54..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32ShrU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32ShrU extends Instr -{ - public static function opName(): string - { - return "i32.shr_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Sub.php b/src/Structure/Instructions/Instrs/Numeric/I32Sub.php deleted file mode 100644 index 63c6501..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Sub.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Sub extends Instr -{ - public static function opName(): string - { - return "i32.sub"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32TruncF32S.php b/src/Structure/Instructions/Instrs/Numeric/I32TruncF32S.php deleted file mode 100644 index 895010b..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32TruncF32S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32TruncF32S extends Instr -{ - public static function opName(): string - { - return "i32.trunc_f32_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32TruncF32U.php b/src/Structure/Instructions/Instrs/Numeric/I32TruncF32U.php deleted file mode 100644 index a10d8f3..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32TruncF32U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32TruncF32U extends Instr -{ - public static function opName(): string - { - return "i32.trunc_f32_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32TruncF64S.php b/src/Structure/Instructions/Instrs/Numeric/I32TruncF64S.php deleted file mode 100644 index 75dc9d9..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32TruncF64S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32TruncF64S extends Instr -{ - public static function opName(): string - { - return "i32.trunc_f64_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32TruncF64U.php b/src/Structure/Instructions/Instrs/Numeric/I32TruncF64U.php deleted file mode 100644 index c0c3b28..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32TruncF64U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32TruncF64U extends Instr -{ - public static function opName(): string - { - return "i32.trunc_f64_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF32S.php b/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF32S.php deleted file mode 100644 index 93428d1..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF32S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32TruncSatF32S extends Instr -{ - public static function opName(): string - { - return "i32.trunc_sat_f32_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF32U.php b/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF32U.php deleted file mode 100644 index a50e00b..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF32U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32TruncSatF32U extends Instr -{ - public static function opName(): string - { - return "i32.trunc_sat_f32_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF64S.php b/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF64S.php deleted file mode 100644 index a0d501d..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF64S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32TruncSatF64S extends Instr -{ - public static function opName(): string - { - return "i32.trunc_sat_f64_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF64U.php b/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF64U.php deleted file mode 100644 index acc5f90..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32TruncSatF64U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32TruncSatF64U extends Instr -{ - public static function opName(): string - { - return "i32.trunc_sat_f64_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32WrapI64.php b/src/Structure/Instructions/Instrs/Numeric/I32WrapI64.php deleted file mode 100644 index 3603c57..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32WrapI64.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32WrapI64 extends Instr -{ - public static function opName(): string - { - return "i32.wrap_i64"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I32Xor.php b/src/Structure/Instructions/Instrs/Numeric/I32Xor.php deleted file mode 100644 index 1ba47c2..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I32Xor.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I32Xor extends Instr -{ - public static function opName(): string - { - return "i32.xor"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Add.php b/src/Structure/Instructions/Instrs/Numeric/I64Add.php deleted file mode 100644 index ed7aa75..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Add.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Add extends Instr -{ - public static function opName(): string - { - return "i64.add"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64And.php b/src/Structure/Instructions/Instrs/Numeric/I64And.php deleted file mode 100644 index 2fc7ec7..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64And.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64And extends Instr -{ - public static function opName(): string - { - return "i64.and"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Clz.php b/src/Structure/Instructions/Instrs/Numeric/I64Clz.php deleted file mode 100644 index 1fbcc07..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Clz.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Clz extends Instr -{ - public static function opName(): string - { - return "i64.clz"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Const.php b/src/Structure/Instructions/Instrs/Numeric/I64Const.php deleted file mode 100644 index 5e95f58..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Const.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Const extends Instr -{ - /** - * @param U64 $value - */ - protected function __construct( - public int $value, - ) { - } - - public static function opName(): string - { - return "i64.const"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Ctz.php b/src/Structure/Instructions/Instrs/Numeric/I64Ctz.php deleted file mode 100644 index f127093..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Ctz.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Ctz extends Instr -{ - public static function opName(): string - { - return "i64.ctz"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64DivS.php b/src/Structure/Instructions/Instrs/Numeric/I64DivS.php deleted file mode 100644 index fc5c43c..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64DivS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64DivS extends Instr -{ - public static function opName(): string - { - return "i64.div_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64DivU.php b/src/Structure/Instructions/Instrs/Numeric/I64DivU.php deleted file mode 100644 index 191124e..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64DivU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64DivU extends Instr -{ - public static function opName(): string - { - return "i64.div_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Eq.php b/src/Structure/Instructions/Instrs/Numeric/I64Eq.php deleted file mode 100644 index db05130..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Eq.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Eq extends Instr -{ - public static function opName(): string - { - return "i64.eq"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Eqz.php b/src/Structure/Instructions/Instrs/Numeric/I64Eqz.php deleted file mode 100644 index fd4e921..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Eqz.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Eqz extends Instr -{ - public static function opName(): string - { - return "i64.eqz"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Extend16S.php b/src/Structure/Instructions/Instrs/Numeric/I64Extend16S.php deleted file mode 100644 index 6490af7..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Extend16S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Extend16S extends Instr -{ - public static function opName(): string - { - return "i64.extend16_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Extend32S.php b/src/Structure/Instructions/Instrs/Numeric/I64Extend32S.php deleted file mode 100644 index 20af6a3..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Extend32S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Extend32S extends Instr -{ - public static function opName(): string - { - return "i64.extend32_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Extend8S.php b/src/Structure/Instructions/Instrs/Numeric/I64Extend8S.php deleted file mode 100644 index b5f991a..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Extend8S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Extend8S extends Instr -{ - public static function opName(): string - { - return "i64.extend8_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64ExtendI32S.php b/src/Structure/Instructions/Instrs/Numeric/I64ExtendI32S.php deleted file mode 100644 index 5db18a3..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64ExtendI32S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64ExtendI32S extends Instr -{ - public static function opName(): string - { - return "i64.extend_i32_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64ExtendI32U.php b/src/Structure/Instructions/Instrs/Numeric/I64ExtendI32U.php deleted file mode 100644 index cc8ea69..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64ExtendI32U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64ExtendI32U extends Instr -{ - public static function opName(): string - { - return "i64.extend_i32_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64GeS.php b/src/Structure/Instructions/Instrs/Numeric/I64GeS.php deleted file mode 100644 index 94df4cd..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64GeS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64GeS extends Instr -{ - public static function opName(): string - { - return "i64.ge_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64GeU.php b/src/Structure/Instructions/Instrs/Numeric/I64GeU.php deleted file mode 100644 index 4421d97..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64GeU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64GeU extends Instr -{ - public static function opName(): string - { - return "i64.ge_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64GtS.php b/src/Structure/Instructions/Instrs/Numeric/I64GtS.php deleted file mode 100644 index 469fa2a..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64GtS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64GtS extends Instr -{ - public static function opName(): string - { - return "i64.gt_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64GtU.php b/src/Structure/Instructions/Instrs/Numeric/I64GtU.php deleted file mode 100644 index 1b7f108..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64GtU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64GtU extends Instr -{ - public static function opName(): string - { - return "i64.gt_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64LeS.php b/src/Structure/Instructions/Instrs/Numeric/I64LeS.php deleted file mode 100644 index 3bc9192..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64LeS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64LeS extends Instr -{ - public static function opName(): string - { - return "i64.le_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64LeU.php b/src/Structure/Instructions/Instrs/Numeric/I64LeU.php deleted file mode 100644 index b95b5da..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64LeU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64LeU extends Instr -{ - public static function opName(): string - { - return "i64.le_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64LtS.php b/src/Structure/Instructions/Instrs/Numeric/I64LtS.php deleted file mode 100644 index b63e56b..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64LtS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64LtS extends Instr -{ - public static function opName(): string - { - return "i64.lt_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64LtU.php b/src/Structure/Instructions/Instrs/Numeric/I64LtU.php deleted file mode 100644 index 0417e04..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64LtU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64LtU extends Instr -{ - public static function opName(): string - { - return "i64.lt_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Mul.php b/src/Structure/Instructions/Instrs/Numeric/I64Mul.php deleted file mode 100644 index d151d8a..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Mul.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Mul extends Instr -{ - public static function opName(): string - { - return "i64.mul"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Ne.php b/src/Structure/Instructions/Instrs/Numeric/I64Ne.php deleted file mode 100644 index 7c634bb..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Ne.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Ne extends Instr -{ - public static function opName(): string - { - return "i64.ne"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Or.php b/src/Structure/Instructions/Instrs/Numeric/I64Or.php deleted file mode 100644 index fb0ba0c..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Or.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Or extends Instr -{ - public static function opName(): string - { - return "i64.or"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Popcnt.php b/src/Structure/Instructions/Instrs/Numeric/I64Popcnt.php deleted file mode 100644 index e27cc2e..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Popcnt.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Popcnt extends Instr -{ - public static function opName(): string - { - return "i64.popcnt"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64ReinterpretF32.php b/src/Structure/Instructions/Instrs/Numeric/I64ReinterpretF32.php deleted file mode 100644 index 3a86af6..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64ReinterpretF32.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64ReinterpretF32 extends Instr -{ - public static function opName(): string - { - return "i64.reinterpret_f32"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64ReinterpretF64.php b/src/Structure/Instructions/Instrs/Numeric/I64ReinterpretF64.php deleted file mode 100644 index f54a0cf..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64ReinterpretF64.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64ReinterpretF64 extends Instr -{ - public static function opName(): string - { - return "i64.reinterpret_f64"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64RemS.php b/src/Structure/Instructions/Instrs/Numeric/I64RemS.php deleted file mode 100644 index fc63520..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64RemS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64RemS extends Instr -{ - public static function opName(): string - { - return "i64.rem_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64RemU.php b/src/Structure/Instructions/Instrs/Numeric/I64RemU.php deleted file mode 100644 index 0d59167..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64RemU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64RemU extends Instr -{ - public static function opName(): string - { - return "i64.rem_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64RotL.php b/src/Structure/Instructions/Instrs/Numeric/I64RotL.php deleted file mode 100644 index bcacbee..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64RotL.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64RotL extends Instr -{ - public static function opName(): string - { - return "i64.rot_l"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64RotR.php b/src/Structure/Instructions/Instrs/Numeric/I64RotR.php deleted file mode 100644 index 02256fe..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64RotR.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64RotR extends Instr -{ - public static function opName(): string - { - return "i64.rot_r"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Shl.php b/src/Structure/Instructions/Instrs/Numeric/I64Shl.php deleted file mode 100644 index 191b38f..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Shl.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Shl extends Instr -{ - public static function opName(): string - { - return "i64.shl"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64ShrS.php b/src/Structure/Instructions/Instrs/Numeric/I64ShrS.php deleted file mode 100644 index 2e3efc6..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64ShrS.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64ShrS extends Instr -{ - public static function opName(): string - { - return "i64.shr_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64ShrU.php b/src/Structure/Instructions/Instrs/Numeric/I64ShrU.php deleted file mode 100644 index 290753a..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64ShrU.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64ShrU extends Instr -{ - public static function opName(): string - { - return "i64.shr_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Sub.php b/src/Structure/Instructions/Instrs/Numeric/I64Sub.php deleted file mode 100644 index 2b6e2b9..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Sub.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Sub extends Instr -{ - public static function opName(): string - { - return "i64.sub"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64TruncF32S.php b/src/Structure/Instructions/Instrs/Numeric/I64TruncF32S.php deleted file mode 100644 index b10816e..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64TruncF32S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64TruncF32S extends Instr -{ - public static function opName(): string - { - return "i64.trunc_f32_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64TruncF32U.php b/src/Structure/Instructions/Instrs/Numeric/I64TruncF32U.php deleted file mode 100644 index 2840cb4..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64TruncF32U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64TruncF32U extends Instr -{ - public static function opName(): string - { - return "i64.trunc_f32_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64TruncF64S.php b/src/Structure/Instructions/Instrs/Numeric/I64TruncF64S.php deleted file mode 100644 index fda84be..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64TruncF64S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64TruncF64S extends Instr -{ - public static function opName(): string - { - return "i64.trunc_f64_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64TruncF64U.php b/src/Structure/Instructions/Instrs/Numeric/I64TruncF64U.php deleted file mode 100644 index de35e7f..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64TruncF64U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64TruncF64U extends Instr -{ - public static function opName(): string - { - return "i64.trunc_f64_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF32S.php b/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF32S.php deleted file mode 100644 index 98409c5..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF32S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64TruncSatF32S extends Instr -{ - public static function opName(): string - { - return "i64.trunc_sat_f32_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF32U.php b/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF32U.php deleted file mode 100644 index f4478c4..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF32U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64TruncSatF32U extends Instr -{ - public static function opName(): string - { - return "i64.trunc_sat_f32_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF64S.php b/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF64S.php deleted file mode 100644 index eb04f34..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF64S.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64TruncSatF64S extends Instr -{ - public static function opName(): string - { - return "i64.trunc_sat_f64_s"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF64U.php b/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF64U.php deleted file mode 100644 index 7b5777d..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64TruncSatF64U.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64TruncSatF64U extends Instr -{ - public static function opName(): string - { - return "i64.trunc_sat_f64_u"; - } -} diff --git a/src/Structure/Instructions/Instrs/Numeric/I64Xor.php b/src/Structure/Instructions/Instrs/Numeric/I64Xor.php deleted file mode 100644 index 06b6b8b..0000000 --- a/src/Structure/Instructions/Instrs/Numeric/I64Xor.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php - -declare(strict_types=1); - -namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Numeric; - -use Nsfisis\Waddiwasi\Structure\Instructions\Instr; - -final readonly class I64Xor extends Instr -{ - public static function opName(): string - { - return "i64.xor"; - } -} |
