[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 03/12] target/sparc: Define an enumeration for accessing env->
From: |
Richard Henderson |
Subject: |
[PATCH v3 03/12] target/sparc: Define an enumeration for accessing env->regwptr |
Date: |
Wed, 6 Nov 2019 12:33:09 +0100 |
Signed-off-by: Richard Henderson <address@hidden>
Message-Id: <address@hidden>
Signed-off-by: Laurent Vivier <address@hidden>
---
target/sparc/cpu.h | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/target/sparc/cpu.h b/target/sparc/cpu.h
index 778aa8e073..ae97c7d9f7 100644
--- a/target/sparc/cpu.h
+++ b/target/sparc/cpu.h
@@ -13,6 +13,39 @@
/*#define EXCP_INTERRUPT 0x100*/
+/* Windowed register indexes. */
+enum {
+ WREG_O0,
+ WREG_O1,
+ WREG_O2,
+ WREG_O3,
+ WREG_O4,
+ WREG_O5,
+ WREG_O6,
+ WREG_O7,
+
+ WREG_L0,
+ WREG_L1,
+ WREG_L2,
+ WREG_L3,
+ WREG_L4,
+ WREG_L5,
+ WREG_L6,
+ WREG_L7,
+
+ WREG_I0,
+ WREG_I1,
+ WREG_I2,
+ WREG_I3,
+ WREG_I4,
+ WREG_I5,
+ WREG_I6,
+ WREG_I7,
+
+ WREG_SP = WREG_O6,
+ WREG_FP = WREG_I6,
+};
+
/* trap definitions */
#ifndef TARGET_SPARC64
#define TT_TFAULT 0x01
--
2.17.1
- [PATCH v3 00/12] linux-user sparc fixes, Richard Henderson, 2019/11/06
- [PATCH v3 02/12] tests/tcg/multiarch/linux-test: Fix error check for shmat, Richard Henderson, 2019/11/06
- [PATCH v3 01/12] scripts/qemu-binfmt-conf: Update for sparc64, Richard Henderson, 2019/11/06
- [PATCH v3 03/12] target/sparc: Define an enumeration for accessing env->regwptr,
Richard Henderson <=
- [PATCH v3 04/12] linux-user/sparc: Use WREG constants in sparc/target_cpu.h, Richard Henderson, 2019/11/06
- [PATCH v3 06/12] linux-user/sparc: Use WREG_SP constant in sparc/signal.c, Richard Henderson, 2019/11/06
- [PATCH v3 05/12] linux-user/sparc: Begin using WREG constants in sparc/signal.c, Richard Henderson, 2019/11/06
- [PATCH v3 07/12] linux-user/sparc: Fix WREG usage in setup_frame, Richard Henderson, 2019/11/06
- [PATCH v3 08/12] linux-user/sparc64: Fix target_signal_frame, Richard Henderson, 2019/11/06
- [PATCH v3 09/12] linux-user: Rename cpu_clone_regs to cpu_clone_regs_child, Richard Henderson, 2019/11/06
- [PATCH v3 10/12] linux-user: Introduce cpu_clone_regs_parent, Richard Henderson, 2019/11/06
- [PATCH v3 11/12] linux-user/sparc: Fix cpu_clone_regs_*, Richard Henderson, 2019/11/06
- [PATCH v3 12/12] linux-user/alpha: Set r20 secondary return value, Richard Henderson, 2019/11/06
- Re: [PATCH v3 00/12] linux-user sparc fixes, Laurent Vivier, 2019/11/06