Home
last modified time | relevance | path

Searched refs:WASM_TABLESWITCH_OP (Results 1 – 4 of 4) sorted by relevance

/external/v8/test/unittests/wasm/
Dast-decoder-unittest.cc1799 WASM_BLOCK(1, WASM_TABLESWITCH_OP(0, 1, WASM_CASE_BR(0)), WASM_I8(67))}; in TEST_F()
1805 static byte code[] = {WASM_TABLESWITCH_OP(1, 1, WASM_CASE(0)), in TEST_F()
1815 static byte code[] = {WASM_TABLESWITCH_OP(1, 1, WASM_CASE(0)), in TEST_F()
1825 WASM_TABLESWITCH_OP(2, 2, WASM_CASE(0), WASM_CASE(1)), in TEST_F()
1838 EXPECT_VERIFIES_INLINE(&env_i_i, WASM_TABLESWITCH_OP(1, 1, WASM_CASE(0)), in TEST_F()
1841 EXPECT_VERIFIES_INLINE(&env_f_ff, WASM_TABLESWITCH_OP(1, 1, WASM_CASE(0)), in TEST_F()
1844 EXPECT_VERIFIES_INLINE(&env_d_dd, WASM_TABLESWITCH_OP(1, 1, WASM_CASE(0)), in TEST_F()
1852 EXPECT_VERIFIES_INLINE(&env_i_i, WASM_TABLESWITCH_OP(0, 1, WASM_CASE_BR(0)), in TEST_F()
1856 &env_i_i, WASM_BLOCK(1, WASM_TABLESWITCH_OP(0, 1, WASM_CASE_BR(depth)), in TEST_F()
1865 WASM_TABLESWITCH_OP(0, 1, WASM_CASE_BR(depth)), in TEST_F()
[all …]
Dwasm-macro-gen-unittest.cc100 EXPECT_SIZE(7, WASM_TABLESWITCH_OP(0, 1, WASM_CASE(7))); in TEST_F()
101 EXPECT_SIZE(9, WASM_TABLESWITCH_OP(0, 2, WASM_CASE(7), WASM_CASE(8))); in TEST_F()
/external/v8/test/cctest/wasm/
Dtest-run-wasm.cc1008 BUILD(r, WASM_TABLESWITCH_OP(1, 1, WASM_CASE(0)), in TEST()
1016 BUILD(r, WASM_TABLESWITCH_OP(1, 2, WASM_CASE_BR(0), WASM_CASE(0)), in TEST()
1029 2, WASM_BLOCK(2, WASM_TABLESWITCH_OP( in TEST()
1048 BUILD(r, WASM_TABLESWITCH_OP(2, 2, WASM_CASE(0), WASM_CASE(1)), in TEST()
1060 BUILD(r, WASM_TABLESWITCH_OP(2, 2, WASM_CASE(1), WASM_CASE(0)), in TEST()
1077 WASM_BLOCK(1, WASM_TABLESWITCH_OP( in TEST()
1107 WASM_TABLESWITCH_OP(2, 4, WASM_CASE(a), WASM_CASE(b), in TEST()
1129 WASM_TABLESWITCH_OP(4, 4, WASM_CASE(0), WASM_CASE(1), WASM_CASE(2), in TEST()
1155 WASM_TABLESWITCH_OP(4, 4, WASM_CASE(0), WASM_CASE(1), WASM_CASE(2), in TEST()
/external/v8/src/wasm/
Dwasm-macro-gen.h36 #define WASM_TABLESWITCH_OP(case_count, table_count, ...) \ macro