Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dast-decoder.cc960 return ReduceStoreMem(p, kAstI32, MachineType::Int8()); in Reduce()
962 return ReduceStoreMem(p, kAstI32, MachineType::Int16()); in Reduce()
964 return ReduceStoreMem(p, kAstI32, MachineType::Int32()); in Reduce()
967 return ReduceStoreMem(p, kAstI64, MachineType::Int8()); in Reduce()
969 return ReduceStoreMem(p, kAstI64, MachineType::Int16()); in Reduce()
971 return ReduceStoreMem(p, kAstI64, MachineType::Int32()); in Reduce()
973 return ReduceStoreMem(p, kAstI64, MachineType::Int64()); in Reduce()
976 return ReduceStoreMem(p, kAstF32, MachineType::Float32()); in Reduce()
979 return ReduceStoreMem(p, kAstF64, MachineType::Float64()); in Reduce()
1080 void ReduceStoreMem(Production* p, LocalType type, MachineType mem_type) { in ReduceStoreMem() function in v8::internal::wasm::LR_WasmDecoder