mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
load/store from any float register
This commit is contained in:
parent
1becbbd61b
commit
f9c53fc237
3 changed files with 39 additions and 12 deletions
|
@ -420,6 +420,12 @@ pub trait Assembler<GeneralReg: RegTrait, FloatReg: RegTrait>: Sized + Copy {
|
|||
offset: i32,
|
||||
);
|
||||
|
||||
fn mov_mem64_offset32_freg64(
|
||||
buf: &mut Vec<'_, u8>,
|
||||
dst: GeneralReg,
|
||||
offset: i32,
|
||||
src: FloatReg,
|
||||
);
|
||||
fn mov_freg64_stack32(buf: &mut Vec<'_, u8>, dst: FloatReg, offset: i32);
|
||||
fn mov_reg64_stack32(buf: &mut Vec<'_, u8>, dst: GeneralReg, offset: i32);
|
||||
fn mov_stack32_freg64(buf: &mut Vec<'_, u8>, offset: i32, src: FloatReg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue