Home
last modified time | relevance | path

Searched refs:kAstStmt (Results 1 – 13 of 13) sorted by relevance

/external/v8/test/cctest/wasm/
Dtest-signatures.h76 FunctionSig::Builder builder(zone, ret == kAstStmt ? 0 : 1, count); in many()
77 if (ret != kAstStmt) builder.AddReturn(ret); in many()
Dtest-run-wasm-64.cc1471 FunctionSig* sig = sigs.many(&zone, kAstStmt, param, num_params); in CompileCallIndirectMany()
Dtest-run-wasm.cc2811 FunctionSig* sig = sigs.many(&zone, kAstStmt, param, num_params); in CompileCallIndirectMany()
/external/v8/src/wasm/
Dast-decoder.cc141 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 …]
Dwasm-interpreter.h59 WasmVal() : type(kAstStmt) {} in WasmVal()
83 CHECK_EQ(kAstStmt, type); in FOREACH_UNION_MEMBER()
Dwasm-opcodes.h43 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()
Dast-decoder.h32 type = kAstStmt; in LocalIndexOperand()
87 type = kAstStmt; in GlobalIndexOperand()
Dasm-wasm-builder.cc270 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 …]
Dmodule-decoder.cc625 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()
Dwasm-interpreter.cc1681 case kAstStmt: in TraceValueStack()
1780 none.type = kAstStmt; in GetLocalVal()
1787 none.type = kAstStmt; in GetExprVal()
/external/v8/test/mjsunit/wasm/
Dverify-function-simple.js11 kWasmFunctionTypeForm, 0, kAstStmt, // signature
Dwasm-constants.js87 var kAstStmt = 0; variable
/external/v8/src/compiler/
Dwasm-compiler.cc2091 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()