Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dfunction-body-decoder.cc1158 len = DecodeStoreMem(kWasmI32, MachineType::Int8()); in DecodeFunctionBody()
1161 len = DecodeStoreMem(kWasmI32, MachineType::Int16()); in DecodeFunctionBody()
1164 len = DecodeStoreMem(kWasmI32, MachineType::Int32()); in DecodeFunctionBody()
1167 len = DecodeStoreMem(kWasmI64, MachineType::Int8()); in DecodeFunctionBody()
1170 len = DecodeStoreMem(kWasmI64, MachineType::Int16()); in DecodeFunctionBody()
1173 len = DecodeStoreMem(kWasmI64, MachineType::Int32()); in DecodeFunctionBody()
1176 len = DecodeStoreMem(kWasmI64, MachineType::Int64()); in DecodeFunctionBody()
1179 len = DecodeStoreMem(kWasmF32, MachineType::Float32()); in DecodeFunctionBody()
1182 len = DecodeStoreMem(kWasmF64, MachineType::Float64()); in DecodeFunctionBody()
1418 int DecodeStoreMem(ValueType type, MachineType mem_type) { in DecodeStoreMem() function in v8::internal::wasm::WasmFullDecoder