Home
last modified time | relevance | path

Searched refs:WASM_STORE_GLOBAL (Results 1 – 5 of 5) sorted by relevance

/external/v8/test/unittests/wasm/
Dast-decoder-unittest.cc1412 EXPECT_VERIFIES_INLINE(env, WASM_STORE_GLOBAL(0, WASM_GET_LOCAL(0))); in TEST_F()
1413 EXPECT_VERIFIES_INLINE(env, WASM_STORE_GLOBAL(1, WASM_GET_LOCAL(0))); in TEST_F()
1414 EXPECT_VERIFIES_INLINE(env, WASM_STORE_GLOBAL(2, WASM_GET_LOCAL(0))); in TEST_F()
1415 EXPECT_VERIFIES_INLINE(env, WASM_STORE_GLOBAL(3, WASM_GET_LOCAL(0))); in TEST_F()
1416 EXPECT_VERIFIES_INLINE(env, WASM_STORE_GLOBAL(4, WASM_GET_LOCAL(0))); in TEST_F()
1417 EXPECT_VERIFIES_INLINE(env, WASM_STORE_GLOBAL(5, WASM_GET_LOCAL(0))); in TEST_F()
1436 EXPECT_FAILURE_INLINE(env, WASM_STORE_GLOBAL(0, WASM_GET_LOCAL(0))); in TEST_F()
1437 EXPECT_FAILURE_INLINE(env, WASM_STORE_GLOBAL(1, WASM_GET_LOCAL(0))); in TEST_F()
1438 EXPECT_FAILURE_INLINE(env, WASM_STORE_GLOBAL(2, WASM_GET_LOCAL(0))); in TEST_F()
1439 EXPECT_FAILURE_INLINE(env, WASM_STORE_GLOBAL(3, WASM_GET_LOCAL(0))); in TEST_F()
[all …]
Dwasm-macro-gen-unittest.cc53 EXPECT_SIZE(4, WASM_STORE_GLOBAL(0, WASM_ZERO)); in TEST_F()
/external/v8/test/cctest/wasm/
Dtest-run-wasm-module.cc192 byte code2[] = {WASM_STORE_GLOBAL(global1, WASM_I32(56)), in TEST()
193 WASM_STORE_GLOBAL(global2, WASM_I32(41)), in TEST()
Dtest-run-wasm.cc2091 BUILD(r, WASM_STORE_GLOBAL( in TEST()
2114 BUILD(r, WASM_STORE_GLOBAL( in TEST()
2140 BUILD(r, WASM_BLOCK(2, WASM_STORE_GLOBAL( in TEST()
2162 BUILD(r, WASM_BLOCK(2, WASM_STORE_GLOBAL( in TEST()
2183 BUILD(r, WASM_BLOCK(2, WASM_STORE_GLOBAL( in TEST()
2219 WASM_STORE_GLOBAL(1, WASM_LOAD_MEM(MachineType::Int8(), WASM_ZERO)), in TEST()
2220 WASM_STORE_GLOBAL(2, WASM_LOAD_MEM(MachineType::Uint8(), WASM_ZERO)), in TEST()
2221 WASM_STORE_GLOBAL(3, WASM_LOAD_MEM(MachineType::Int16(), WASM_ZERO)), in TEST()
2222 WASM_STORE_GLOBAL(4, WASM_LOAD_MEM(MachineType::Uint16(), WASM_ZERO)), in TEST()
2223 WASM_STORE_GLOBAL(5, WASM_LOAD_MEM(MachineType::Int32(), WASM_ZERO)), in TEST()
[all …]
/external/v8/src/wasm/
Dwasm-macro-gen.h85 #define WASM_STORE_GLOBAL(index, val) \ macro