MIPS: Define aliases for MSYMBOL_TARGET_FLAG macros
authorMaciej W. Rozycki <macro@codesourcery.com>
Fri, 12 Dec 2014 16:36:10 +0000 (16:36 +0000)
committerMaciej W. Rozycki <macro@codesourcery.com>
Fri, 12 Dec 2014 16:36:10 +0000 (16:36 +0000)
* mips-tdep.h (MSYMBOL_TARGET_FLAG_MIPS16): New macro.
(MSYMBOL_TARGET_FLAG_MICROMIPS): Likewise.
* mips-tdep.c (mips_elf_make_msymbol_special): Use the new
macros.
(msymbol_is_mips, msymbol_is_mips16, msymbol_is_micromips):
Likewise.

gdb/ChangeLog
gdb/mips-tdep.c
gdb/mips-tdep.h

index 9b9d176..a54e2c1 100644 (file)
@@ -1,3 +1,12 @@
+2014-12-12  Maciej W. Rozycki  <macro@codesourcery.com>
+
+       * mips-tdep.h (MSYMBOL_TARGET_FLAG_MIPS16): New macro.
+       (MSYMBOL_TARGET_FLAG_MICROMIPS): Likewise.
+       * mips-tdep.c (mips_elf_make_msymbol_special): Use the new
+       macros.
+       (msymbol_is_mips, msymbol_is_mips16, msymbol_is_micromips):
+       Likewise.
+
 2014-12-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
 
        * completer.c: Include "target.h", "reggroups.h", and
index 5a5a716..eb99910 100644 (file)
@@ -379,12 +379,12 @@ mips_elf_make_msymbol_special (asymbol * sym, struct minimal_symbol *msym)
 
   if (ELF_ST_IS_MICROMIPS (st_other))
     {
-      MSYMBOL_TARGET_FLAG_2 (msym) = 1;
+      MSYMBOL_TARGET_FLAG_MICROMIPS (msym) = 1;
       SET_MSYMBOL_VALUE_ADDRESS (msym, MSYMBOL_VALUE_RAW_ADDRESS (msym) | 1);
     }
   else if (ELF_ST_IS_MIPS16 (st_other))
     {
-      MSYMBOL_TARGET_FLAG_1 (msym) = 1;
+      MSYMBOL_TARGET_FLAG_MIPS16 (msym) = 1;
       SET_MSYMBOL_VALUE_ADDRESS (msym, MSYMBOL_VALUE_RAW_ADDRESS (msym) | 1);
     }
 }
@@ -394,7 +394,8 @@ mips_elf_make_msymbol_special (asymbol * sym, struct minimal_symbol *msym)
 static int
 msymbol_is_mips (struct minimal_symbol *msym)
 {
-  return !(MSYMBOL_TARGET_FLAG_1 (msym) | MSYMBOL_TARGET_FLAG_2 (msym));
+  return !(MSYMBOL_TARGET_FLAG_MIPS16 (msym)
+          | MSYMBOL_TARGET_FLAG_MICROMIPS (msym));
 }
 
 /* Return one iff MSYM refers to MIPS16 code.  */
@@ -402,7 +403,7 @@ msymbol_is_mips (struct minimal_symbol *msym)
 static int
 msymbol_is_mips16 (struct minimal_symbol *msym)
 {
-  return MSYMBOL_TARGET_FLAG_1 (msym);
+  return MSYMBOL_TARGET_FLAG_MIPS16 (msym);
 }
 
 /* Return one iff MSYM refers to microMIPS code.  */
@@ -410,7 +411,7 @@ msymbol_is_mips16 (struct minimal_symbol *msym)
 static int
 msymbol_is_micromips (struct minimal_symbol *msym)
 {
-  return MSYMBOL_TARGET_FLAG_2 (msym);
+  return MSYMBOL_TARGET_FLAG_MICROMIPS (msym);
 }
 
 /* Set the ISA bit in the main symbol too, complementing the corresponding
index b42f2d6..186f158 100644 (file)
@@ -48,6 +48,10 @@ enum mips_isa
     ISA_MICROMIPS
   };
 
+/* Corresponding MSYMBOL_TARGET_FLAG aliases.  */
+#define MSYMBOL_TARGET_FLAG_MIPS16 MSYMBOL_TARGET_FLAG_1
+#define MSYMBOL_TARGET_FLAG_MICROMIPS MSYMBOL_TARGET_FLAG_2
+
 /* Return the MIPS ISA's register size.  Just a short cut to the BFD
    architecture's word size.  */
 extern int mips_isa_regsize (struct gdbarch *gdbarch);