mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-18 17:10:52 +00:00
(S32, Imm64, GPR)
This commit is contained in:
parent
3f35a74b84
commit
a057296618
@ -427,6 +427,9 @@ impl Emitter for Assembler {
|
||||
(Size::S32, Location::Imm32(x), Location::GPR(dst)) => {
|
||||
dynasm!(self ; b >after; data: ; .dword x as i32; after: ; ldr W(map_gpr(dst).x()), <data);
|
||||
}
|
||||
(Size::S32, Location::Imm64(x), Location::GPR(dst)) => {
|
||||
dynasm!(self ; b >after; data: ; .dword x as i32; after: ; ldr W(map_gpr(dst).x()), <data);
|
||||
}
|
||||
(Size::S64, Location::GPR(src), Location::GPR(dst)) => {
|
||||
dynasm!(self ; mov X(map_gpr(dst).x()), X(map_gpr(src).x()));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user