Searched refs:kAstStmt (Results 1 – 13 of 13) sorted by relevance
/external/v8/test/cctest/wasm/ |
D | test-signatures.h | 76 FunctionSig::Builder builder(zone, ret == kAstStmt ? 0 : 1, count); in many() 77 if (ret != kAstStmt) builder.AddReturn(ret); in many()
|
D | test-run-wasm-64.cc | 1471 FunctionSig* sig = sigs.many(&zone, kAstStmt, param, num_params); in CompileCallIndirectMany()
|
D | test-run-wasm.cc | 2811 FunctionSig* sig = sigs.many(&zone, kAstStmt, param, num_params); in CompileCallIndirectMany()
|
/external/v8/src/wasm/ |
D | ast-decoder.cc | 141 operand.type = kAstStmt; in Validate() 655 Push(kAstStmt, nullptr); in DecodeFunctionBody() 730 val = {val.pc, nullptr, kAstStmt}; in DecodeFunctionBody() 750 if (tval.type == kAstStmt || tval.type != fval.type) { in DecodeFunctionBody() 774 Value val = {pc_, nullptr, kAstStmt}; in DecodeFunctionBody() 786 Value val = {pc_, nullptr, kAstStmt}; in DecodeFunctionBody() 798 Push(kAstStmt, nullptr); in DecodeFunctionBody() 805 Value val = {pc_, nullptr, kAstStmt}; in DecodeFunctionBody() 835 Push(kAstStmt, nullptr); in DecodeFunctionBody() 1104 return sig->return_count() == 0 ? kAstStmt : sig->GetReturn(); in GetReturnType() [all …]
|
D | wasm-interpreter.h | 59 WasmVal() : type(kAstStmt) {} in WasmVal() 83 CHECK_EQ(kAstStmt, type); in FOREACH_UNION_MEMBER()
|
D | wasm-opcodes.h | 43 const LocalType kAstStmt = MachineRepresentation::kNone; variable 511 case kAstStmt: in LocalTypeCodeFor() 562 case kAstStmt: in MachineTypeFor() 638 case kAstStmt: in ShortNameOf() 660 case kAstStmt: in TypeName()
|
D | ast-decoder.h | 32 type = kAstStmt; in LocalIndexOperand() 87 type = kAstStmt; in GlobalIndexOperand()
|
D | asm-wasm-builder.cc | 270 TypeOf(stmt->expression()) == kAstStmt ? ARITY_0 : ARITY_1; in VisitReturnStatement() 468 FunctionSig::Builder b(zone(), return_type == kAstStmt ? 0 : 1, in VisitFunctionLiteral() 470 if (return_type != kAstStmt) b.AddReturn(return_type); in VisitFunctionLiteral() 473 DCHECK_NE(kAstStmt, type); in VisitFunctionLiteral() 562 DCHECK_NE(kAstStmt, var_type); in VisitVariableProxy() 643 FunctionSig::Builder sig(zone(), return_type == kAstStmt ? 0 : 1, in AddFunctionTable() 645 if (return_type != kAstStmt) { in AddFunctionTable() 796 DCHECK_NE(kAstStmt, var_type); in EmitAssignment() 1284 FunctionSig::Builder sig(zone(), return_type == kAstStmt ? 0 : 1, in VisitCall() 1286 if (return_type != kAstStmt) { in VisitCall() [all …]
|
D | module-decoder.cc | 625 return kAstStmt; in consume_local_type() 636 return kAstStmt; in consume_local_type() 687 if (param == kAstStmt) error(pc_ - 1, "invalid void parameter type"); in consume_sig() 702 if (ret == kAstStmt) error(pc_ - 1, "invalid void return type"); in consume_sig()
|
D | wasm-interpreter.cc | 1681 case kAstStmt: in TraceValueStack() 1780 none.type = kAstStmt; in GetLocalVal() 1787 none.type = kAstStmt; in GetExprVal()
|
/external/v8/test/mjsunit/wasm/ |
D | verify-function-simple.js | 11 kWasmFunctionTypeForm, 0, kAstStmt, // signature
|
D | wasm-constants.js | 87 var kAstStmt = 0; variable
|
/external/v8/src/compiler/ |
D | wasm-compiler.cc | 2091 case wasm::kAstStmt: in ToJS() 2258 case wasm::kAstStmt: in FromJS() 2397 sig->return_count() == 0 ? wasm::kAstStmt : sig->GetReturn()); in BuildJSToWasmWrapper() 2482 sig->return_count() == 0 ? wasm::kAstStmt : sig->GetReturn()); in BuildWasmToJSWrapper()
|