summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-11-09 10:31:53 +0700
committerMike Frysinger <vapier@gentoo.org>2022-11-11 01:44:21 +0700
commit2ce92948fca5b6112748c201efe44bd603b01a4c (patch)
treeec42abcc783e0576690fa88045e856bbd9eba1c3
parent6ee0b6ea1e8c52b8562d9d7c3ac6da3c5bed2d0e (diff)
downloadbinutils-gdb-users/vapier/sim/cpu-uni.tar.gz
[wip] always compile in cgen logicusers/vapier/sim/cpu-uni
see if sizeof cgen structs differ in some way.
-rw-r--r--sim/common/cgen-cpu.h2
-rw-r--r--sim/common/cgen-defs.h3
-rw-r--r--sim/common/cgen-scache.h2
-rw-r--r--sim/common/sim-cpu.h6
4 files changed, 7 insertions, 6 deletions
diff --git a/sim/common/cgen-cpu.h b/sim/common/cgen-cpu.h
index d65e0dba0b2..6b0f85cf2f6 100644
--- a/sim/common/cgen-cpu.h
+++ b/sim/common/cgen-cpu.h
@@ -105,6 +105,6 @@ typedef struct {
/* Shorthand macro for fetching registers.
CPU_CGEN_HW is defined in cpu.h. */
-#define CPU(x) (CPU_CGEN_HW (current_cpu)->x)
+//#define CPU(x) (CPU_CGEN_HW (current_cpu)->x)
#endif /* CGEN_CPU_H */
diff --git a/sim/common/cgen-defs.h b/sim/common/cgen-defs.h
index b9e0c06f39d..ff01705aef1 100644
--- a/sim/common/cgen-defs.h
+++ b/sim/common/cgen-defs.h
@@ -20,6 +20,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#ifndef CGEN_DEFS_H
#define CGEN_DEFS_H
+#include "opcode/cgen.h"
+#include "cgen-types.h"
+
/* Compute number of longs required to hold N bits. */
#define HOST_LONGS_FOR_BITS(n) \
(((n) + sizeof (long) * 8 - 1) / sizeof (long) * 8)
diff --git a/sim/common/cgen-scache.h b/sim/common/cgen-scache.h
index 104392032b0..29e808323d5 100644
--- a/sim/common/cgen-scache.h
+++ b/sim/common/cgen-scache.h
@@ -20,6 +20,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#ifndef CGEN_SCACHE_H
#define CGEN_SCACHE_H
+#include "cgen-types.h"
+
/* When caching bb's, instructions are extracted into "chains".
SCACHE_MAP is a hash table into these chains. */
diff --git a/sim/common/sim-cpu.h b/sim/common/sim-cpu.h
index 90e294eb3c6..8994a19866d 100644
--- a/sim/common/sim-cpu.h
+++ b/sim/common/sim-cpu.h
@@ -28,9 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* Type of function to return an insn name. */
typedef const char * (CPU_INSN_NAME_FN) (sim_cpu *, int);
-#ifdef CGEN_ARCH
-# include "cgen-cpu.h"
-#endif
+#include "cgen-cpu.h"
/* Types for register access functions.
These routines implement the sim_{fetch,store}_register interface. */
@@ -123,11 +121,9 @@ struct _sim_cpu {
PC_STORE_FN *pc_store;
#define CPU_PC_STORE(c) ((c)->pc_store)
-#ifdef CGEN_ARCH
/* Static parts of cgen. */
CGEN_CPU cgen_cpu;
#define CPU_CGEN_CPU(cpu) ((cpu)->cgen_cpu)
-#endif
/* Pointer for sim target to store arbitrary cpu data. Normally the
target should define a struct and use it here. */