+23
−0
Loading
Several interlinked changes here: - the predicate SupportsFastUnalignedAccesses is renamed as SupportsFastUnalignedFPAccesses, as this is the sense that is needed - we already assume that unaligned integer accesses are supported. - DataView accessors that use this predicate are rewritten to test that the access type is an FP access before using this predicate - In Wasm, the uses of this predicate only pertain to when FP accesses are used to implement inlined/unrolled memory.copy and memory.fill, so move the predicate so that it guards this case only, not all cases. Differential Revision: https://phabricator.services.mozilla.com/D123356