Searched refs:kWasmF64 (Results 1 – 13 of 13) sorted by relevance
/external/v8/src/wasm/ |
D | wasm-opcodes.h | 40 const ValueType kWasmF64 = MachineRepresentation::kFloat64; variable 463 V(i_dd, kWasmI32, kWasmF64, kWasmF64) \ 464 V(i_d, kWasmI32, kWasmF64) \ 471 V(l_d, kWasmI64, kWasmF64) \ 474 V(f_d, kWasmF32, kWasmF64) \ 477 V(d_dd, kWasmF64, kWasmF64, kWasmF64) \ 478 V(d_d, kWasmF64, kWasmF64) \ 479 V(d_f, kWasmF64, kWasmF32) \ 480 V(d_i, kWasmF64, kWasmI32) \ 481 V(d_l, kWasmF64, kWasmI64) \ [all …]
|
D | wasm-interpreter.h | 40 V(f64, kWasmF64, double)
|
D | wasm-debug.cc | 98 CASE_ARG_TYPE(kWasmF64, double) in Execute() 152 CASE_RET_TYPE(kWasmF64, double) in Execute()
|
D | wasm-module-builder.cc | 425 DCHECK_EQ(kWasmF64, global.type); in WriteTo() 454 case kWasmF64: { in WriteTo()
|
D | function-body-decoder-impl.h | 142 *result = kWasmF64; in decode_local_type()
|
D | wasm-module-builder.h | 193 case kWasmF64: in WasmTemporary()
|
D | function-body-decoder.cc | 213 type = kWasmF64; in DecodeLocals() 660 case kWasmF64: in DefaultValue() 1054 Push(kWasmF64, BUILD(Float64Constant, operand.value)); in DecodeFunctionBody() 1155 len = DecodeLoadMem(kWasmF64, MachineType::Float64()); in DecodeFunctionBody() 1182 len = DecodeStoreMem(kWasmF64, MachineType::Float64()); in DecodeFunctionBody()
|
D | wasm-interpreter.cc | 1094 case kWasmF64: in InitLocals() 1447 } else if (type == kWasmF64) { in Execute() 1468 } else if (type == kWasmF64) { in Execute() 1733 case kWasmF64: in TraceValueStack()
|
D | module-decoder.cc | 86 return kWasmF64; in TypeOf() 1066 return kWasmF64; in consume_value_type()
|
D | wasm-module.cc | 1463 case kWasmF64: in WriteGlobalValue() 1684 size_t size = (global.type == kWasmI64 || global.type == kWasmF64) in InitGlobals() 1876 case kWasmF64: in ProcessExports()
|
/external/v8/src/asmjs/ |
D | asm-wasm-builder.cc | 587 case kWasmF64: in VisitConditional() 975 if (TypeOf(expr->value()) == kWasmF64 && expr->target()->IsProperty() && in EmitAssignment() 1083 ValueType type = is_float ? kWasmF64 : kWasmI32; in VisitForeignVariable() 1167 DCHECK_EQ(kWasmF64, call_type); in VisitStdlibFunction() 1173 DCHECK_EQ(kWasmF64, call_type); in VisitStdlibFunction() 1179 DCHECK_EQ(kWasmF64, call_type); in VisitStdlibFunction() 1185 DCHECK_EQ(kWasmF64, call_type); in VisitStdlibFunction() 1191 DCHECK_EQ(kWasmF64, call_type); in VisitStdlibFunction() 1197 DCHECK_EQ(kWasmF64, call_type); in VisitStdlibFunction() 1203 DCHECK_EQ(kWasmF64, call_type); in VisitStdlibFunction() [all …]
|
/external/v8/src/compiler/ |
D | wasm-linkage.cc | 34 case kWasmF64: in MachineTypeFor() 211 return type == kWasmF32 || type == kWasmF64; in IsFloatingPoint() 214 if (kPointerSize < 8 && (type == kWasmI64 || type == kWasmF64)) { in Words()
|
D | wasm-compiler.cc | 275 case wasm::kWasmF64: in GetTrapValue() 2484 case wasm::kWasmF64: in ToJS() 2646 case wasm::kWasmF64: in FromJS()
|