Home
last modified time | relevance | path

Searched refs:kExprNop (Results 1 – 10 of 10) sorted by relevance

/external/v8/test/mjsunit/wasm/
Dverify-function-simple.js16 kExprNop // body
34 kExprBlock, 2, kExprNop, kExprNop // body
Dcalls.js80 kExprNop, // body
Dwasm-constants.js41 var kExprNop = 0x00; variable
/external/v8/test/unittests/wasm/
Dast-decoder-unittest.cc396 static const byte code[] = {kExprNop}; in TEST_F()
487 byte code[] = {kExprBlock, i, kExprNop}; in TEST_F()
494 static const byte code[] = {kExprBlock, 1, kExprBr, 0, kExprNop}; in TEST_F()
500 static const byte code[] = {kExprBlock, 2, kExprNop, kExprBr, 0, kExprNop}; in TEST_F()
506 static const byte code[] = {kExprBlock, 1, kExprBr, 1, kExprNop}; in TEST_F()
512 static const byte code[] = {kExprBlock, 2, kExprNop, kExprBr, 1, kExprNop}; in TEST_F()
547 static const byte code[] = {kExprIf, kExprGetLocal, 0, kExprNop}; in TEST_F()
554 0, kExprI8Const, 0, kExprNop}; in TEST_F()
562 0, kExprNop}; in TEST_F()
577 static const byte code[] = {kExprIfElse, kExprGetLocal, 0, kExprNop, in TEST_F()
[all …]
Dmodule-decoder-unittest.cc317 kExprNop, in TEST_F()
401 kExprNop // body in TEST_F()
441 kExprNop // body in TEST_F()
485 kExprNop, // func#0 body in TEST_F()
486 kExprNop, // func#0 body in TEST_F()
487 kExprNop, // func#0 body in TEST_F()
857 kExprNop // body in TEST_F()
/external/v8/src/wasm/
Dwasm-macro-gen.h15 #define WASM_NOP kExprNop
18 #define WASM_INFINITE_LOOP kExprLoop, 1, kExprBr, 0, kExprNop
23 #define WASM_BR(depth) kExprBr, static_cast<byte>(depth), kExprNop
25 kExprBrIf, static_cast<byte>(depth), cond, kExprNop
29 #define WASM_BREAK(depth) kExprBr, static_cast<byte>(depth + 1), kExprNop
30 #define WASM_CONTINUE(depth) kExprBr, static_cast<byte>(depth), kExprNop
Dasm-wasm-builder.cc156 current_function_builder_->Emit(kExprNop); in VisitIfStatement()
181 current_function_builder_->Emit(kExprNop); in VisitContinueStatement()
204 current_function_builder_->Emit(kExprNop); in VisitBreakStatement()
279 current_function_builder_->Emit(kExprNop); in VisitDoWhileStatement()
306 current_function_builder_->Emit(kExprNop); in VisitForStatement()
318 current_function_builder_->Emit(kExprNop); in VisitForStatement()
Dwasm-opcodes.h425 return kExprNop; in LoadStoreOpcodeOf()
Dast-decoder.cc328 case kExprNop: in DecodeFunctionBody()
1532 case kExprNop: in OpcodeArity()
/external/v8/test/cctest/wasm/
Dtest-run-wasm.cc1235 BUILD(r, kExprNop); in TEST()