summaryrefslogtreecommitdiffstats
path: root/src/arch/x86_64/include
diff options
context:
space:
mode:
authorMichael Brown2015-04-07 07:40:42 +0200
committerMichael Brown2015-04-07 07:40:42 +0200
commitfb2bedcff3ab30ca2a4bed1aa821d1b1c8f9cfae (patch)
tree32ef3704cf0266ce3846566ae09a7aaa36a05418 /src/arch/x86_64/include
parent[libc] Fix typo in longjmp() (diff)
downloadipxe-fb2bedcff3ab30ca2a4bed1aa821d1b1c8f9cfae.tar.gz
ipxe-fb2bedcff3ab30ca2a4bed1aa821d1b1c8f9cfae.tar.xz
ipxe-fb2bedcff3ab30ca2a4bed1aa821d1b1c8f9cfae.zip
[libc] Add x86_64 versions of setjmp() and longjmp()
None of the x86_64 builds currently have any way of invoking these functions. They are included only to avoid introducing unnecessary architecture-specific dependencies into the self-test suite. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/x86_64/include')
-rw-r--r--src/arch/x86_64/include/setjmp.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/arch/x86_64/include/setjmp.h b/src/arch/x86_64/include/setjmp.h
new file mode 100644
index 000000000..69835d9fa
--- /dev/null
+++ b/src/arch/x86_64/include/setjmp.h
@@ -0,0 +1,34 @@
+#ifndef _SETJMP_H
+#define _SETJMP_H
+
+FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+
+#include <stdint.h>
+
+/** A jump buffer */
+typedef struct {
+ /** Saved return address */
+ uint64_t retaddr;
+ /** Saved stack pointer */
+ uint64_t stack;
+ /** Saved %rbx */
+ uint64_t rbx;
+ /** Saved %rbp */
+ uint64_t rbp;
+ /** Saved %r12 */
+ uint64_t r12;
+ /** Saved %r13 */
+ uint64_t r13;
+ /** Saved %r14 */
+ uint64_t r14;
+ /** Saved %r15 */
+ uint64_t r15;
+} jmp_buf[1];
+
+extern int __asmcall __attribute__ (( returns_twice ))
+setjmp ( jmp_buf env );
+
+extern void __asmcall __attribute__ (( noreturn ))
+longjmp ( jmp_buf env, int val );
+
+#endif /* _SETJMP_H */