sim: ppc: fix some Wunused-function warnings
authorTom de Vries <tdevries@suse.de>
Wed, 19 May 2021 15:46:24 +0000 (17:46 +0200)
committerTom de Vries <tdevries@suse.de>
Wed, 19 May 2021 15:46:24 +0000 (17:46 +0200)
When compiling with --enable-werror and CFLAGS="-O0 -g -Wall", we run into:
...
In file included from src/sim/ppc/cpu.h:251:0,
                 from src/sim/ppc/emul_generic.h:24,
                 from src/sim/ppc/emul_generic.c:24:
src/sim/ppc/cpu.c:76:1: error: 'cpu_create' defined but not used \
  [-Werror=unused-function]
 cpu_create(psim *system,
 ^~~~~~~~~~
...

The function is defined as:
...
INLINE_CPU\
(cpu *)
cpu_create(psim *system,
...
which expands to:
...
static cpu * __attribute__((__unused__))
cpu_create(psim *system,
...

The problem is that gcc does not associate the attribute to the function.
I've filed a PR about this ( PR gcc/100670 ), which may or may not be valid.

Work around/fix this by modifying the INLINE_* definitions in inline.h to move
UNUSED to the start such that we have:
...
__attribute__((__unused__)) static cpu *
cpu_create(psim *system,
...

sim/ppc/inline.h

index 55de0bbfbed4afb832fbf57f7acaeb4a51550911..62c4d318e3f7f63028b3e72906b0a42737cbfdee 100644 (file)
 
 #if !defined(_SIM_ENDIAN_C_) && (SIM_ENDIAN_INLINE & INCLUDE_MODULE)
 # if (SIM_ENDIAN_INLINE & INLINE_MODULE)
-#  define INLINE_PSIM_ENDIAN(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_PSIM_ENDIAN(TYPE) static TYPE UNUSED
+#  define INLINE_PSIM_ENDIAN(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_PSIM_ENDIAN(TYPE) UNUSED static TYPE
 # else
-#  define INLINE_PSIM_ENDIAN(TYPE) static TYPE UNUSED
-#  define EXTERN_PSIM_ENDIAN(TYPE) static TYPE UNUSED
+#  define INLINE_PSIM_ENDIAN(TYPE) UNUSED static TYPE
+#  define EXTERN_PSIM_ENDIAN(TYPE) UNUSED static TYPE
 # endif
 #else
 # define INLINE_PSIM_ENDIAN(TYPE) TYPE
 
 #if !defined(_BITS_C_) && (BITS_INLINE & INCLUDE_MODULE)
 # if (BITS_INLINE & INLINE_MODULE)
-#  define INLINE_BITS(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_BITS(TYPE) static TYPE UNUSED
+#  define INLINE_BITS(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_BITS(TYPE) UNUSED static TYPE
 # else
-#  define INLINE_BITS(TYPE) static TYPE UNUSED
-#  define EXTERN_BITS(TYPE) static TYPE UNUSED
+#  define INLINE_BITS(TYPE) UNUSED static TYPE
+#  define EXTERN_BITS(TYPE) UNUSED static TYPE
 # endif
 #else
 # define INLINE_BITS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_CORE_C_) && (CORE_INLINE & INCLUDE_MODULE)
 # if (CORE_INLINE & INLINE_MODULE)
-#  define INLINE_CORE(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_CORE(TYPE) static TYPE UNUSED
+#  define INLINE_CORE(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_CORE(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_CORE(TYPE) static TYPE UNUSED
-#  define EXTERN_CORE(TYPE) static TYPE UNUSED
+#  define INLINE_CORE(TYPE) UNUSED static TYPE
+#  define EXTERN_CORE(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_CORE(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_VM_C_) && (VM_INLINE & INCLUDE_MODULE)
 # if (VM_INLINE & INLINE_MODULE)
-#  define INLINE_VM(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_VM(TYPE) static TYPE UNUSED
+#  define INLINE_VM(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_VM(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_VM(TYPE) static TYPE UNUSED
-#  define EXTERN_VM(TYPE) static TYPE UNUSED
+#  define INLINE_VM(TYPE) UNUSED static TYPE
+#  define EXTERN_VM(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_VM(TYPE) TYPE
 
 #if !defined(_CPU_C_) && (CPU_INLINE & INCLUDE_MODULE)
 # if (CPU_INLINE & INLINE_MODULE)
-#  define INLINE_CPU(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_CPU(TYPE) static TYPE UNUSED
+#  define INLINE_CPU(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_CPU(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_CPU(TYPE) static TYPE UNUSED
-#  define EXTERN_CPU(TYPE) static TYPE UNUSED
+#  define INLINE_CPU(TYPE) UNUSED static TYPE
+#  define EXTERN_CPU(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_CPU(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_MODEL_C_) && (MODEL_INLINE & INCLUDE_MODULE)
 # if (MODEL_INLINE & INLINE_MODULE)
-#  define INLINE_MODEL(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_MODEL(TYPE) static TYPE UNUSED
+#  define INLINE_MODEL(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_MODEL(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_MODEL(TYPE) static TYPE UNUSED
-#  define EXTERN_MODEL(TYPE) static TYPE UNUSED
+#  define INLINE_MODEL(TYPE) UNUSED static TYPE
+#  define EXTERN_MODEL(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_MODEL(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_EVENTS_C_) && (EVENTS_INLINE & INCLUDE_MODULE)
 # if (EVENTS_INLINE & INLINE_MODULE)
-#  define INLINE_EVENTS(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_EVENTS(TYPE) static TYPE UNUSED
+#  define INLINE_EVENTS(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_EVENTS(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_EVENTS(TYPE) static TYPE UNUSED
-#  define EXTERN_EVENTS(TYPE) static TYPE UNUSED
+#  define INLINE_EVENTS(TYPE) UNUSED static TYPE
+#  define EXTERN_EVENTS(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_EVENTS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_MON_C_) && (MON_INLINE & INCLUDE_MODULE)
 # if (MON_INLINE & INLINE_MODULE)
-#  define INLINE_MON(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_MON(TYPE) static TYPE UNUSED
+#  define INLINE_MON(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_MON(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_MON(TYPE) static TYPE UNUSED
-#  define EXTERN_MON(TYPE) static TYPE UNUSED
+#  define INLINE_MON(TYPE) UNUSED static TYPE
+#  define EXTERN_MON(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_MON(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_REGISTERS_C_) && (REGISTERS_INLINE & INCLUDE_MODULE)
 # if (REGISTERS_INLINE & INLINE_MODULE)
-#  define INLINE_REGISTERS(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_REGISTERS(TYPE) static TYPE UNUSED
+#  define INLINE_REGISTERS(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_REGISTERS(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_REGISTERS(TYPE) static TYPE UNUSED
-#  define EXTERN_REGISTERS(TYPE) static TYPE UNUSED
+#  define INLINE_REGISTERS(TYPE) UNUSED static TYPE
+#  define EXTERN_REGISTERS(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_REGISTERS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_INTERRUPTS_C_) && (INTERRUPTS_INLINE & INCLUDE_MODULE)
 # if (INTERRUPTS_INLINE & INLINE_MODULE)
-#  define INLINE_INTERRUPTS(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_INTERRUPTS(TYPE) static TYPE UNUSED
+#  define INLINE_INTERRUPTS(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_INTERRUPTS(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_INTERRUPTS(TYPE) static TYPE UNUSED
-#  define EXTERN_INTERRUPTS(TYPE) static TYPE UNUSED
+#  define INLINE_INTERRUPTS(TYPE) UNUSED static TYPE
+#  define EXTERN_INTERRUPTS(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_INTERRUPTS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_DEVICE_C_) && (DEVICE_INLINE & INCLUDE_MODULE)
 # if (DEVICE_INLINE & INLINE_MODULE)
-#  define INLINE_DEVICE(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_DEVICE(TYPE) static TYPE UNUSED
+#  define INLINE_DEVICE(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_DEVICE(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_DEVICE(TYPE) static TYPE UNUSED
-#  define EXTERN_DEVICE(TYPE) static TYPE UNUSED
+#  define INLINE_DEVICE(TYPE) UNUSED static TYPE
+#  define EXTERN_DEVICE(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_DEVICE(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_TREE_C_) && (TREE_INLINE & INCLUDE_MODULE)
 # if (TREE_INLINE & INLINE_MODULE)
-#  define INLINE_TREE(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_TREE(TYPE) static TYPE UNUSED
+#  define INLINE_TREE(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_TREE(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_TREE(TYPE) static TYPE UNUSED
-#  define EXTERN_TREE(TYPE) static TYPE UNUSED
+#  define INLINE_TREE(TYPE) UNUSED static TYPE
+#  define EXTERN_TREE(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_TREE(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_SPREG_C_) && (SPREG_INLINE & INCLUDE_MODULE)
 # if (SPREG_INLINE & INLINE_MODULE)
-#  define INLINE_SPREG(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_SPREG(TYPE) static TYPE UNUSED
+#  define INLINE_SPREG(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_SPREG(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_SPREG(TYPE) static TYPE UNUSED
-#  define EXTERN_SPREG(TYPE) static TYPE UNUSED
+#  define INLINE_SPREG(TYPE) UNUSED static TYPE
+#  define EXTERN_SPREG(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_SPREG(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_SEMANTICS_C_) && (SEMANTICS_INLINE & INCLUDE_MODULE)
 # if (SEMANTICS_INLINE & INLINE_MODULE)
-#  define PSIM_INLINE_SEMANTICS(TYPE) static INLINE TYPE UNUSED
-#  define PSIM_EXTERN_SEMANTICS(TYPE) static TYPE UNUSED
+#  define PSIM_INLINE_SEMANTICS(TYPE) UNUSED static INLINE TYPE
+#  define PSIM_EXTERN_SEMANTICS(TYPE) UNUSED static TYPE
 #else
-#  define PSIM_INLINE_SEMANTICS(TYPE) static TYPE UNUSED
-#  define PSIM_EXTERN_SEMANTICS(TYPE) static TYPE UNUSED
+#  define PSIM_INLINE_SEMANTICS(TYPE) UNUSED static TYPE
+#  define PSIM_EXTERN_SEMANTICS(TYPE) UNUSED static TYPE
 #endif
 #else
 # define PSIM_INLINE_SEMANTICS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_IDECODE_C_) && (IDECODE_INLINE & INCLUDE_MODULE)
 # if (IDECODE_INLINE & INLINE_MODULE)
-#  define PSIM_INLINE_IDECODE(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_IDECODE(TYPE) static TYPE UNUSED
+#  define PSIM_INLINE_IDECODE(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_IDECODE(TYPE) UNUSED static TYPE
 #else
-#  define PSIM_INLINE_IDECODE(TYPE) static TYPE UNUSED
-#  define EXTERN_IDECODE(TYPE) static TYPE UNUSED
+#  define PSIM_INLINE_IDECODE(TYPE) UNUSED static TYPE
+#  define EXTERN_IDECODE(TYPE) UNUSED static TYPE
 #endif
 #else
 # define PSIM_INLINE_IDECODE(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_ICACHE_C_) && (ICACHE_INLINE & INCLUDE_MODULE)
 # if (ICACHE_INLINE & INLINE_MODULE)
-#  define PSIM_INLINE_ICACHE(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_ICACHE(TYPE) static TYPE UNUSED
+#  define PSIM_INLINE_ICACHE(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_ICACHE(TYPE) UNUSED static TYPE
 #else
-#  define PSIM_INLINE_ICACHE(TYPE) static TYPE UNUSED
-#  define EXTERN_ICACHE(TYPE) static TYPE UNUSED
+#  define PSIM_INLINE_ICACHE(TYPE) UNUSED static TYPE
+#  define EXTERN_ICACHE(TYPE) UNUSED static TYPE
 #endif
 #else
 # define PSIM_INLINE_ICACHE(TYPE) TYPE
 
 #if !defined(_SUPPORT_C_) && (SUPPORT_INLINE & INCLUDE_MODULE)
 # if (SUPPORT_INLINE & INLINE_MODULE)
-#  define PSIM_INLINE_SUPPORT(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_SUPPORT(TYPE) static TYPE UNUSED
+#  define PSIM_INLINE_SUPPORT(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_SUPPORT(TYPE) UNUSED static TYPE
 #else
-#  define PSIM_INLINE_SUPPORT(TYPE) static TYPE UNUSED
-#  define EXTERN_SUPPORT(TYPE) static TYPE UNUSED
+#  define PSIM_INLINE_SUPPORT(TYPE) UNUSED static TYPE
+#  define EXTERN_SUPPORT(TYPE) UNUSED static TYPE
 #endif
 #else
 # define PSIM_INLINE_SUPPORT(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_OPTIONS_C_) && (OPTIONS_INLINE & INCLUDE_MODULE)
 # if (OPTIONS_INLINE & INLINE_MODULE)
-#  define INLINE_OPTIONS(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_OPTIONS(TYPE) static TYPE UNUSED
+#  define INLINE_OPTIONS(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_OPTIONS(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_OPTIONS(TYPE) static TYPE UNUSED
-#  define EXTERN_OPTIONS(TYPE) static TYPE UNUSED
+#  define INLINE_OPTIONS(TYPE) UNUSED static TYPE
+#  define EXTERN_OPTIONS(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_OPTIONS(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_OS_EMUL_C_) && (OS_EMUL_INLINE & INCLUDE_MODULE)
 # if (OS_EMUL_INLINE & INLINE_MODULE)
-#  define INLINE_OS_EMUL(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_OS_EMUL(TYPE) static TYPE UNUSED
+#  define INLINE_OS_EMUL(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_OS_EMUL(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_OS_EMUL(TYPE) static TYPE UNUSED
-#  define EXTERN_OS_EMUL(TYPE) static TYPE UNUSED
+#  define INLINE_OS_EMUL(TYPE) UNUSED static TYPE
+#  define EXTERN_OS_EMUL(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_OS_EMUL(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_PSIM_C_) && (PSIM_INLINE & INCLUDE_MODULE)
 # if (PSIM_INLINE & INLINE_MODULE)
-#  define INLINE_PSIM(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_PSIM(TYPE) static TYPE UNUSED
+#  define INLINE_PSIM(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_PSIM(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_PSIM(TYPE) static TYPE UNUSED
-#  define EXTERN_PSIM(TYPE) static TYPE UNUSED
+#  define INLINE_PSIM(TYPE) UNUSED static TYPE
+#  define EXTERN_PSIM(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_PSIM(TYPE) TYPE
 
 #if defined(_INLINE_C_) && !defined(_CAP_C_) && (CAP_INLINE & INCLUDE_MODULE)
 # if (CAP_INLINE & INLINE_MODULE)
-#  define INLINE_CAP(TYPE) static INLINE TYPE UNUSED
-#  define EXTERN_CAP(TYPE) static TYPE UNUSED
+#  define INLINE_CAP(TYPE) UNUSED static INLINE TYPE
+#  define EXTERN_CAP(TYPE) UNUSED static TYPE
 #else
-#  define INLINE_CAP(TYPE) static TYPE UNUSED
-#  define EXTERN_CAP(TYPE) static TYPE UNUSED
+#  define INLINE_CAP(TYPE) UNUSED static TYPE
+#  define EXTERN_CAP(TYPE) UNUSED static TYPE
 #endif
 #else
 # define INLINE_CAP(TYPE) TYPE
This page took 0.032053 seconds and 4 git commands to generate.