summaryrefslogtreecommitdiff
path: root/inc/loongarch64/efisetjmp_arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/loongarch64/efisetjmp_arch.h')
-rw-r--r--inc/loongarch64/efisetjmp_arch.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/inc/loongarch64/efisetjmp_arch.h b/inc/loongarch64/efisetjmp_arch.h
new file mode 100644
index 0000000..18aefaf
--- /dev/null
+++ b/inc/loongarch64/efisetjmp_arch.h
@@ -0,0 +1,23 @@
+#ifndef GNU_EFI_LOONGARCH64_SETJMP_H
+#define GNU_EFI_LOONGARCH64_SETJMP_H
+
+#define JMPBUF_ALIGN 8
+
+typedef struct {
+ /* GP regs */
+ UINT64 RA;
+ UINT64 SP;
+ UINT64 FP;
+
+ UINT64 S0;
+ UINT64 S1;
+ UINT64 S2;
+ UINT64 S3;
+ UINT64 S4;
+ UINT64 S5;
+ UINT64 S6;
+ UINT64 S7;
+ UINT64 S8;
+} ALIGN(JMPBUF_ALIGN) jmp_buf[1];
+
+#endif /* GNU_EFI_LOONGARCH64_SETJMP_H */