sim: v850: switch to standard (high-level) trace defines
authorMike Frysinger <vapier@gentoo.org>
Thu, 3 Nov 2022 13:58:23 +0000 (20:58 +0700)
committerMike Frysinger <vapier@gentoo.org>
Thu, 3 Nov 2022 15:21:04 +0000 (22:21 +0700)
The v850 port uses -DDEBUG to control whether to enable internal tracing.
We already have such options via the common trace framework, and those
can be controlled at build time via configure flags (which the v850 code
currently cannot).  So switch it over to WITH_TRACE_ANY_P to simplify the
v850 build code even if it doesn't (yet) respect any other trace options.

sim/v850/Makefile.in
sim/v850/sim-main.h
sim/v850/simops.c

index 4c2d278d0a59854191069fea8252d41b2db3cb77..ab4214526a4cb8431259f40be7f7ebf24e7ab73d 100644 (file)
@@ -27,8 +27,4 @@ SIM_OBJS = \
 # Generally this consists of simulator specific files included by sim-main.h.
 SIM_EXTRA_DEPS = v850_sim.h sim-main.h
 
-# List of flags to always pass to $(CC)
-SIM_EXTRA_CFLAGS = \
-       -DDEBUG
-
 ## COMMON_POST_CONFIG_FRAG
index 49b845dfe7aec93cf3cdb1709d0bb1d2b2e6b1ee..ab7e47aa240a556dd3860d4d8eb26a222e3ce7ab 100644 (file)
@@ -435,7 +435,7 @@ enum op_types
   OP_PUSHPOP3,
 };
 
-#ifdef DEBUG
+#if WITH_TRACE_ANY_P
 void trace_input (char *name, enum op_types type, int size);
 void trace_output (enum op_types result);
 void trace_result (int has_result, uint32_t result);
index 573ece54ec71b214ba4c1535442e6d1e218758bf..1d5403be561c7110ad9f8e9f60855c94786e9b1f 100644 (file)
@@ -39,7 +39,7 @@ int type2_regs[16] = { 3, 2, 1, 0, 27, 26, 25, 24, 31, 30, 29, 28, 23, 22, 20, 2
    that order in a push/pop instruction.  */
 int type3_regs[15] = { 2, 1, 0, 27, 26, 25, 24, 31, 30, 29, 28, 23, 22, 20, 21};
 
-#ifdef DEBUG
+#if WITH_TRACE_ANY_P
 #ifndef SIZE_INSTRUCTION
 #define SIZE_INSTRUCTION 18
 #endif