|
@@ -177,7 +177,9 @@ pub extern "C-unwind" fn save_context(f: extern "C" fn(&mut Context, *mut ()), p
|
|
|
"
|
|
|
mv t0, sp
|
|
|
add sp, sp, -0x210
|
|
|
+ .cfi_def_cfa_offset 0x210
|
|
|
sd ra, 0x200(sp)
|
|
|
+ .cfi_offset ra, -16
|
|
|
",
|
|
|
code!(save_gp),
|
|
|
code!(save_fp),
|
|
@@ -187,6 +189,8 @@ pub extern "C-unwind" fn save_context(f: extern "C" fn(&mut Context, *mut ()), p
|
|
|
jalr t0
|
|
|
ld ra, 0x200(sp)
|
|
|
add sp, sp, 0x210
|
|
|
+ .cfi_def_cfa_offset 0
|
|
|
+ .cfi_restore ra
|
|
|
ret
|
|
|
",
|
|
|
options(noreturn)
|
|
@@ -198,7 +202,9 @@ pub extern "C-unwind" fn save_context(f: extern "C" fn(&mut Context, *mut ()), p
|
|
|
"
|
|
|
mv t0, sp
|
|
|
add sp, sp, -0x110
|
|
|
+ .cfi_def_cfa_offset 0x110
|
|
|
sd ra, 0x100(sp)
|
|
|
+ .cfi_offset ra, -16
|
|
|
",
|
|
|
code!(save_gp),
|
|
|
"
|
|
@@ -207,6 +213,8 @@ pub extern "C-unwind" fn save_context(f: extern "C" fn(&mut Context, *mut ()), p
|
|
|
jalr t0
|
|
|
ld ra, 0x100(sp)
|
|
|
add sp, sp, 0x110
|
|
|
+ .cfi_def_cfa_offset 0
|
|
|
+ .cfi_restore ra
|
|
|
ret
|
|
|
",
|
|
|
options(noreturn)
|