Searched refs:kExprNop (Results 1 – 10 of 10) sorted by relevance
/external/v8/test/mjsunit/wasm/ |
D | verify-function-simple.js | 16 kExprNop // body 34 kExprBlock, 2, kExprNop, kExprNop // body
|
D | calls.js | 80 kExprNop, // body
|
D | wasm-constants.js | 41 var kExprNop = 0x00; variable
|
/external/v8/test/unittests/wasm/ |
D | ast-decoder-unittest.cc | 396 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 …]
|
D | module-decoder-unittest.cc | 317 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/ |
D | wasm-macro-gen.h | 15 #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
|
D | asm-wasm-builder.cc | 156 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()
|
D | wasm-opcodes.h | 425 return kExprNop; in LoadStoreOpcodeOf()
|
D | ast-decoder.cc | 328 case kExprNop: in DecodeFunctionBody() 1532 case kExprNop: in OpcodeArity()
|
/external/v8/test/cctest/wasm/ |
D | test-run-wasm.cc | 1235 BUILD(r, kExprNop); in TEST()
|