1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
(module
(func (export "i32.test") (result i32) (return (i32.const 0x0bAdD00D)))
(func (export "i32.umax") (result i32) (return (i32.const 0xffffffff)))
(func (export "i32.smax") (result i32) (return (i32.const 0x7fffffff)))
(func (export "i32.neg_smax") (result i32) (return (i32.const -0x7fffffff)))
(func (export "i32.smin") (result i32) (return (i32.const -0x80000000)))
(func (export "i32.alt_smin") (result i32) (return (i32.const 0x80000000)))
(func (export "i32.inc_smin") (result i32) (return (i32.add (i32.const -0x80000000) (i32.const 1))))
(func (export "i32.neg_zero") (result i32) (return (i32.const -0x0)))
(func (export "i32.not_octal") (result i32) (return (i32.const 010)))
(func (export "i32.unsigned_decimal") (result i32) (return (i32.const 4294967295)))
(func (export "i32.plus_sign") (result i32) (return (i32.const +42)))
(func (export "i64.test") (result i64) (return (i64.const 0x0CABBA6E0ba66a6e)))
(func (export "i64.umax") (result i64) (return (i64.const 0xffffffffffffffff)))
(func (export "i64.smax") (result i64) (return (i64.const 0x7fffffffffffffff)))
(func (export "i64.neg_smax") (result i64) (return (i64.const -0x7fffffffffffffff)))
(func (export "i64.smin") (result i64) (return (i64.const -0x8000000000000000)))
(func (export "i64.alt_smin") (result i64) (return (i64.const 0x8000000000000000)))
(func (export "i64.inc_smin") (result i64) (return (i64.add (i64.const -0x8000000000000000) (i64.const 1))))
(func (export "i64.neg_zero") (result i64) (return (i64.const -0x0)))
(func (export "i64.not_octal") (result i64) (return (i64.const 010)))
(func (export "i64.unsigned_decimal") (result i64) (return (i64.const 18446744073709551615)))
(func (export "i64.plus_sign") (result i64) (return (i64.const +42)))
(func (export "i32-dec-sep1") (result i32) (i32.const 1_000_000))
(func (export "i32-dec-sep2") (result i32) (i32.const 1_0_0_0))
(func (export "i32-hex-sep1") (result i32) (i32.const 0xa_0f_00_99))
(func (export "i32-hex-sep2") (result i32) (i32.const 0x1_a_A_0_f))
(func (export "i64-dec-sep1") (result i64) (i64.const 1_000_000))
(func (export "i64-dec-sep2") (result i64) (i64.const 1_0_0_0))
(func (export "i64-hex-sep1") (result i64) (i64.const 0xa_f00f_0000_9999))
(func (export "i64-hex-sep2") (result i64) (i64.const 0x1_a_A_0_f))
)
(assert_return (invoke "i32.test") (i32.const 195940365))
(assert_return (invoke "i32.umax") (i32.const -1))
(assert_return (invoke "i32.smax") (i32.const 2147483647))
(assert_return (invoke "i32.neg_smax") (i32.const -2147483647))
(assert_return (invoke "i32.smin") (i32.const -2147483648))
(assert_return (invoke "i32.alt_smin") (i32.const -2147483648))
(assert_return (invoke "i32.inc_smin") (i32.const -2147483647))
(assert_return (invoke "i32.neg_zero") (i32.const 0))
(assert_return (invoke "i32.not_octal") (i32.const 10))
(assert_return (invoke "i32.unsigned_decimal") (i32.const -1))
(assert_return (invoke "i32.plus_sign") (i32.const 42))
(assert_return (invoke "i64.test") (i64.const 913028331277281902))
(assert_return (invoke "i64.umax") (i64.const -1))
(assert_return (invoke "i64.smax") (i64.const 9223372036854775807))
(assert_return (invoke "i64.neg_smax") (i64.const -9223372036854775807))
(assert_return (invoke "i64.smin") (i64.const -9223372036854775808))
(assert_return (invoke "i64.alt_smin") (i64.const -9223372036854775808))
(assert_return (invoke "i64.inc_smin") (i64.const -9223372036854775807))
(assert_return (invoke "i64.neg_zero") (i64.const 0))
(assert_return (invoke "i64.not_octal") (i64.const 10))
(assert_return (invoke "i64.unsigned_decimal") (i64.const -1))
(assert_return (invoke "i64.plus_sign") (i64.const 42))
(assert_return (invoke "i32-dec-sep1") (i32.const 1000000))
(assert_return (invoke "i32-dec-sep2") (i32.const 1000))
(assert_return (invoke "i32-hex-sep1") (i32.const 0xa0f0099))
(assert_return (invoke "i32-hex-sep2") (i32.const 0x1aa0f))
(assert_return (invoke "i64-dec-sep1") (i64.const 1000000))
(assert_return (invoke "i64-dec-sep2") (i64.const 1000))
(assert_return (invoke "i64-hex-sep1") (i64.const 0xaf00f00009999))
(assert_return (invoke "i64-hex-sep2") (i64.const 0x1aa0f))
(assert_malformed
(module quote "(global i32 (i32.const _100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i32 (i32.const +_100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i32 (i32.const -_100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i32 (i32.const 99_))")
"unknown operator"
)
(assert_malformed
(module quote "(global i32 (i32.const 1__000))")
"unknown operator"
)
(assert_malformed
(module quote "(global i32 (i32.const _0x100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i32 (i32.const 0_x100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i32 (i32.const 0x_100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i32 (i32.const 0x00_))")
"unknown operator"
)
(assert_malformed
(module quote "(global i32 (i32.const 0xff__ffff))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const _100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const +_100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const -_100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const 99_))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const 1__000))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const _0x100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const 0_x100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const 0x_100))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const 0x00_))")
"unknown operator"
)
(assert_malformed
(module quote "(global i64 (i64.const 0xff__ffff))")
"unknown operator"
)
|