Files
wasmtime/cranelift/codegen/src
Chris Fallin 073c727a74 x64 and aarch64: carry MemFlags on loads/stores; don't emit trap info unless an op can trap.
This end result was previously enacted by carrying a `SourceLoc` on
every load/store, which was somewhat cumbersome, and only indirectly
encoded metadata about a memory reference (can it trap) by its presence
or absence. We have a type for this -- `MemFlags` -- that tells us
everything we might want to know about a load or store, and we should
plumb it through to code emission instead.

This PR attaches a `MemFlags` to an `Amode` on x64, and puts it on load
and store `Inst` variants on aarch64. These two choices seem to factor
things out in the nicest way: there are relatively few load/store insts
on aarch64 but many addressing modes, while the opposite is true on x64.
2020-11-17 11:43:06 -08:00
..
2020-11-11 12:36:17 +01:00
2020-10-31 21:11:50 +01:00
2020-09-22 12:49:42 +02:00
2020-07-17 12:03:17 +02:00
2020-04-15 17:21:28 -07:00
2019-10-24 17:20:12 -07:00
2020-07-16 14:56:11 +03:00