Home
last modified time | relevance | path

Searched refs:kWasmStmt (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/wasm/
Dfunction-body-decoder-impl.h25 type = kWasmStmt; in LocalIndexOperand()
76 type = kWasmStmt; in GlobalIndexOperand()
87 ValueType type = kWasmStmt; in BlockTypeOperand()
92 arity = type == kWasmStmt ? 0 : 1; in BlockTypeOperand()
118 if (type == kWasmStmt) { in BlockTypeOperand()
130 *result = kWasmStmt; in decode_local_type()
157 *result = kWasmStmt; in decode_local_type()
Dmodule-decoder.cc74 return kWasmStmt; in TypeOf()
78 : kWasmStmt; in TypeOf()
89 return kWasmStmt; in TypeOf()
372 {kWasmStmt, false, WasmInitExpr(), 0, true, false}); in DecodeModule()
455 {kWasmStmt, false, WasmInitExpr(), 0, false, false}); in DecodeModule()
722 return consume_init_expr(nullptr, kWasmStmt); in DecodeInitExpr()
757 global->init = consume_init_expr(module, kWasmStmt); in DecodeGlobalInModule()
1039 if (expected != kWasmStmt && TypeOf(module, expr) != kWasmI32) { in consume_init_expr()
1083 return kWasmStmt; in consume_value_type()
Dwasm-opcodes.h36 const ValueType kWasmStmt = MachineRepresentation::kNone; variable
568 case kWasmStmt: in ValueTypeCodeFor()
594 case kWasmStmt: in MachineTypeFor()
679 case kWasmStmt: in ShortNameOf()
706 case kWasmStmt: in TypeName()
Dwasm-interpreter.h51 WasmVal() : type(kWasmStmt) {} in WasmVal()
Dwasm-interpreter.cc1697 if (val.type != kWasmStmt) stack_.push_back(val); in Push()
1736 case kWasmStmt: in TraceValueStack()
1943 none.type = kWasmStmt; in GetLocalVal()
1950 none.type = kWasmStmt; in GetExprVal()
Dfunction-body-decoder.cc285 operand.type = kWasmStmt; in Validate()
1380 return sig->return_count() == 0 ? kWasmStmt : sig->GetReturn(); in GetReturnType()
1534 if (type != kWasmStmt) { in Push()
/external/v8/src/asmjs/
Dasm-wasm-builder.cc551 DCHECK_NE(kWasmStmt, type); in VisitFunctionLiteral()
660 DCHECK_NE(kWasmStmt, var_type); in VisitVariableProxy()
785 FunctionSig::Builder sig(zone(), return_type == kWasmStmt ? 0 : 1, in LookupOrAddFunctionTable()
787 if (return_type != kWasmStmt) { in LookupOrAddFunctionTable()
954 DCHECK_NE(kWasmStmt, var_type); in EmitAssignment()
1448 FunctionSig::Builder sig(zone(), return_type == kWasmStmt ? 0 : 1, in VisitCallExpression()
1450 if (return_type != kWasmStmt) { in VisitCallExpression()
1917 FunctionSig::Builder b(zone(), return_type == kWasmStmt ? 0 : 1, in LookupOrInsertFunction()
1919 if (return_type != kWasmStmt) b.AddReturn(return_type); in LookupOrInsertFunction()
1922 DCHECK_NE(kWasmStmt, type); in LookupOrInsertFunction()
[all …]
/external/v8/src/compiler/
Dwasm-compiler.h284 wasm::ValueType wasmtype = wasm::kWasmStmt);
Dwasm-compiler.cc2486 case wasm::kWasmStmt: in ToJS()
2624 DCHECK_NE(wasm::kWasmStmt, type); in FromJS()
2816 retval, sig->return_count() == 0 ? wasm::kWasmStmt : sig->GetReturn()); in BuildJSToWasmWrapper()