]> Git Repo - qemu.git/commitdiff
linux-user/elfload: Rename MIPS GET_FEATURE() as GET_FEATURE_INSN()
authorPhilippe Mathieu-Daudé <[email protected]>
Mon, 14 Dec 2020 00:32:11 +0000 (01:32 +0100)
committerLaurent Vivier <[email protected]>
Thu, 17 Dec 2020 09:34:59 +0000 (10:34 +0100)
We want to add macros similar to GET_FEATURE().
As this one use the 'insn_flags' field, rename it
GET_FEATURE_INSN().

Reviewed-by: Richard Henderson <[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Message-Id: <20201214003215[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
linux-user/elfload.c

index aae28fd929dcbd01b343413f7a28dd7ca63fef8b..0e1d7e7677c8f8f4f5a5574db8f98dae805ebf60 100644 (file)
@@ -989,7 +989,7 @@ enum {
 
 #define ELF_HWCAP get_elf_hwcap()
 
-#define GET_FEATURE(_flag, _hwcap) \
+#define GET_FEATURE_INSN(_flag, _hwcap) \
     do { if (cpu->env.insn_flags & (_flag)) { hwcaps |= _hwcap; } } while (0)
 
 static uint32_t get_elf_hwcap(void)
@@ -997,13 +997,13 @@ static uint32_t get_elf_hwcap(void)
     MIPSCPU *cpu = MIPS_CPU(thread_cpu);
     uint32_t hwcaps = 0;
 
-    GET_FEATURE(ISA_MIPS32R6 | ISA_MIPS64R6, HWCAP_MIPS_R6);
-    GET_FEATURE(ASE_MSA, HWCAP_MIPS_MSA);
+    GET_FEATURE_INSN(ISA_MIPS32R6 | ISA_MIPS64R6, HWCAP_MIPS_R6);
+    GET_FEATURE_INSN(ASE_MSA, HWCAP_MIPS_MSA);
 
     return hwcaps;
 }
 
-#undef GET_FEATURE
+#undef GET_FEATURE_INSN
 
 #endif /* TARGET_MIPS */
 
This page took 0.031037 seconds and 4 git commands to generate.