qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [5655] Sparc32 BSD user support
@ 2008-11-09  9:31 Blue Swirl
  0 siblings, 0 replies; only message in thread
From: Blue Swirl @ 2008-11-09  9:31 UTC (permalink / raw)
  To: qemu-devel

Revision: 5655
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5655
Author:   blueswir1
Date:     2008-11-09 09:31:37 +0000 (Sun, 09 Nov 2008)

Log Message:
-----------
Sparc32 BSD user support

Added Paths:
-----------
    trunk/bsd-user/sparc/
    trunk/bsd-user/sparc/syscall.h
    trunk/bsd-user/sparc/target_signal.h

Added: trunk/bsd-user/sparc/syscall.h
===================================================================
--- trunk/bsd-user/sparc/syscall.h	                        (rev 0)
+++ trunk/bsd-user/sparc/syscall.h	2008-11-09 09:31:37 UTC (rev 5655)
@@ -0,0 +1,9 @@
+struct target_pt_regs {
+	abi_ulong psr;
+	abi_ulong pc;
+	abi_ulong npc;
+	abi_ulong y;
+	abi_ulong u_regs[16];
+};
+
+#define UNAME_MACHINE "sun4"

Added: trunk/bsd-user/sparc/target_signal.h
===================================================================
--- trunk/bsd-user/sparc/target_signal.h	                        (rev 0)
+++ trunk/bsd-user/sparc/target_signal.h	2008-11-09 09:31:37 UTC (rev 5655)
@@ -0,0 +1,27 @@
+#ifndef TARGET_SIGNAL_H
+#define TARGET_SIGNAL_H
+
+#include "cpu.h"
+
+/* this struct defines a stack used during syscall handling */
+
+typedef struct target_sigaltstack {
+	abi_ulong ss_sp;
+	abi_long ss_flags;
+	abi_ulong ss_size;
+} target_stack_t;
+
+
+#ifndef UREG_I6
+#define UREG_I6        6
+#endif
+#ifndef UREG_FP
+#define UREG_FP        UREG_I6
+#endif
+
+static inline abi_ulong get_sp_from_cpustate(CPUSPARCState *state)
+{
+    return state->regwptr[UREG_FP];
+}
+
+#endif /* TARGET_SIGNAL_H */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-11-09  9:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-09  9:31 [Qemu-devel] [5655] Sparc32 BSD user support Blue Swirl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).