fixup! a64/fastmem: Implement fastmem on 128 bit memory access.

This commit is contained in:
Markus Wick 2021-05-28 23:01:29 +02:00 committed by merry
parent e82685223a
commit 36c3b289a0

View file

@ -1120,6 +1120,7 @@ void A64EmitX64::EmitA64ReadMemory128(A64EmitContext& ctx, IR::Inst* inst) {
// Use page table // Use page table
ASSERT(conf.page_table); ASSERT(conf.page_table);
const auto src_ptr = EmitVAddrLookup(code, ctx, 128, abort, vaddr); const auto src_ptr = EmitVAddrLookup(code, ctx, 128, abort, vaddr);
require_abort_handling = true;
code.movups(value, xword[src_ptr]); code.movups(value, xword[src_ptr]);
} }
code.L(end); code.L(end);