]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Remove strneq macro and use startswith.
authorMartin Liska <mliska@suse.cz>
Mon, 22 Mar 2021 13:56:16 +0000 (14:56 +0100)
committerMartin Liska <mliska@suse.cz>
Thu, 1 Apr 2021 13:00:56 +0000 (15:00 +0200)
bfd/ChangeLog:

* ecoff.c (strneq): Remove strneq and use startswith.
(_bfd_ecoff_slurp_armap): Likewise.

binutils/ChangeLog:

* elfcomm.h (strneq): Remove strneq and use startswith.
* readelf.c (ia64_process_unwind): Likewise.
(process_note): Likewise.

gas/ChangeLog:

* config/obj-coff.c (strneq): Remove strneq and use startswith.
(weak_is_altname): Likewise.
(obj_coff_section): Likewise.
* config/tc-cr16.c (process_label_constant): Likewise.
* config/tc-crx.c (strneq): Likewise.

include/ChangeLog:

* opcode/cr16.h (strneq): Remove strneq and use startswith.

ld/ChangeLog:

* ldbuildid.c (strneq): Remove strneq and use startswith.
(validate_build_id_style): Likewise.
(compute_build_id_size): Likewise.

opcodes/ChangeLog:

* arm-dis.c (strneq): Remove strneq and use startswith.
* cr16-dis.c (print_insn_cr16): Likewise.
* score-dis.c (streq): Likewise.
(strneq): Likewise.
* score7-dis.c (strneq): Likewise.

18 files changed:
bfd/ChangeLog
bfd/ecoff.c
binutils/ChangeLog
binutils/elfcomm.h
binutils/readelf.c
gas/ChangeLog
gas/config/obj-coff.c
gas/config/tc-cr16.c
gas/config/tc-crx.c
include/ChangeLog
include/opcode/cr16.h
ld/ChangeLog
ld/ldbuildid.c
opcodes/ChangeLog
opcodes/arm-dis.c
opcodes/cr16-dis.c
opcodes/score-dis.c
opcodes/score7-dis.c

index aa62c92213acd3c181efce99286f68abff490e31..4977dc92aa61e11753e93b440902e5c4f8f84a45 100644 (file)
@@ -1,3 +1,8 @@
+2021-04-01  Martin Liska  <mliska@suse.cz>
+
+       * ecoff.c (strneq): Remove strneq and use startswith.
+       (_bfd_ecoff_slurp_armap): Likewise.
+
 2021-04-01  Martin Liska  <mliska@suse.cz>
 
        * elf-bfd.h (bfd_section_is_ctf): Use startswith function.
index f09fc1dd0a6b46e49af16e3033daa7ca0bd7aa23..7844a50b39d93319c7312dad551b615e45afc88a 100644 (file)
@@ -46,7 +46,6 @@
 #include "libiberty.h"
 
 #define streq(a, b)    (strcmp ((a), (b)) == 0)
-#define strneq(a, b, n)        (strncmp ((a), (b), (n)) == 0)
 
 \f
 /* This stuff is somewhat copied from coffcode.h.  */
@@ -2870,14 +2869,14 @@ _bfd_ecoff_slurp_armap (bfd *abfd)
     return bfd_slurp_armap (abfd);
 
   /* See if the first element is an armap.  */
-  if (! strneq (nextname, ecoff_backend (abfd)->armap_start, ARMAP_START_LENGTH)
+  if (strncmp (nextname, ecoff_backend (abfd)->armap_start, ARMAP_START_LENGTH) != 0
       || nextname[ARMAP_HEADER_MARKER_INDEX] != ARMAP_MARKER
       || (nextname[ARMAP_HEADER_ENDIAN_INDEX] != ARMAP_BIG_ENDIAN
          && nextname[ARMAP_HEADER_ENDIAN_INDEX] != ARMAP_LITTLE_ENDIAN)
       || nextname[ARMAP_OBJECT_MARKER_INDEX] != ARMAP_MARKER
       || (nextname[ARMAP_OBJECT_ENDIAN_INDEX] != ARMAP_BIG_ENDIAN
          && nextname[ARMAP_OBJECT_ENDIAN_INDEX] != ARMAP_LITTLE_ENDIAN)
-      || ! strneq (nextname + ARMAP_END_INDEX, ARMAP_END, sizeof ARMAP_END - 1))
+      || strncmp (nextname + ARMAP_END_INDEX, ARMAP_END, sizeof ARMAP_END - 1) != 0)
     {
       abfd->has_armap = false;
       return true;
index 1ffbdf8fc72e71fcaa2a572fd9c0330e06c469c2..844dbf493a3bd75fc139f42998c54c1ca493510a 100644 (file)
@@ -1,3 +1,9 @@
+2021-04-01  Martin Liska  <mliska@suse.cz>
+
+       * elfcomm.h (strneq): Remove strneq and use startswith.
+       * readelf.c (ia64_process_unwind): Likewise.
+       (process_note): Likewise.
+
 2021-04-01  Martin Liska  <mliska@suse.cz>
 
        * dllwrap.c: Use startswith function.
index 04e909c2da33d0452df996aa7327bd9fe0d6fb26..921d42ca42598368f638fa29e093dc20ac32cfb2 100644 (file)
@@ -47,7 +47,6 @@ extern void byte_get_64 (const unsigned char *, elf_vma *, elf_vma *);
 
 /* This is just a bit of syntatic sugar.  */
 #define streq(a,b)       (strcmp ((a), (b)) == 0)
-#define strneq(a,b,n)    (strncmp ((a), (b), (n)) == 0)
 
 /* Structure to hold information about an archive file.  */
 
index 01fba0b20e6e7da4e2c3ab65bb529b87ec940e40..5bc59e4c5e285e5cca3d8dc58fd97e53418fc94c 100644 (file)
@@ -8235,8 +8235,8 @@ ia64_process_unwind (Filedata * filedata)
            }
        }
       else if (SECTION_NAME_VALID (unwsec)
-              && strneq (SECTION_NAME (unwsec),
-                         ELF_STRING_ia64_unwind_once, len))
+              && startswith (SECTION_NAME (unwsec),
+                             ELF_STRING_ia64_unwind_once))
        {
          /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO.  */
          len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
@@ -8245,8 +8245,8 @@ ia64_process_unwind (Filedata * filedata)
               i < filedata->file_header.e_shnum;
               ++i, ++sec)
            if (SECTION_NAME_VALID (sec)
-               && strneq (SECTION_NAME (sec),
-                          ELF_STRING_ia64_unwind_info_once, len2)
+               && startswith (SECTION_NAME (sec),
+                              ELF_STRING_ia64_unwind_info_once)
                && streq (SECTION_NAME (sec) + len2, suffix))
              break;
        }
@@ -8258,13 +8258,13 @@ ia64_process_unwind (Filedata * filedata)
          len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
          suffix = "";
          if (SECTION_NAME_VALID (unwsec)
-             && strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind, len))
+             && startswith (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind))
            suffix = SECTION_NAME (unwsec) + len;
          for (i = 0, sec = filedata->section_headers;
               i < filedata->file_header.e_shnum;
               ++i, ++sec)
            if (SECTION_NAME_VALID (sec)
-               && strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info, len2)
+               && startswith (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info)
                && streq (SECTION_NAME (sec) + len2, suffix))
              break;
        }
@@ -20449,7 +20449,7 @@ process_note (Elf_Internal_Note *  pnote,
     /* NetBSD-specific core file notes.  */
     return process_netbsd_elf_note (pnote);
 
-  else if (strneq (pnote->namedata, "SPU/", 4))
+  else if (startswith (pnote->namedata, "SPU/"))
     {
       /* SPU-specific core file notes.  */
       nt = pnote->namedata + 4;
index 98918d6e5c45fdd434633e962cd0da7ad2d48118..b011f1cab1a73802d0cc6c172c24af34229d1276 100644 (file)
@@ -1,3 +1,11 @@
+2021-04-01  Martin Liska  <mliska@suse.cz>
+
+       * config/obj-coff.c (strneq): Remove strneq and use startswith.
+       (weak_is_altname): Likewise.
+       (obj_coff_section): Likewise.
+       * config/tc-cr16.c (process_label_constant): Likewise.
+       * config/tc-crx.c (strneq): Likewise.
+
 2021-04-01  Martin Liska  <mliska@suse.cz>
 
        * as.c (select_emulation_mode): Use startswith.
index 3c008a3ef2d11b2d611b61822b505ee9d8371739..f3cc3273a4bb7b0f678a9d603e371094ca4eeda9 100644 (file)
@@ -33,7 +33,6 @@
 #endif
 
 #define streq(a,b)     (strcmp ((a), (b)) == 0)
-#define strneq(a,b,n)  (strncmp ((a), (b), (n)) == 0)
 
 /* I think this is probably always correct.  */
 #ifndef KEEP_RELOC_INFO
@@ -1058,7 +1057,7 @@ obj_coff_val (int ignore ATTRIBUTE_UNUSED)
 static int
 weak_is_altname (const char * name)
 {
-  return strneq (name, weak_altprefix, sizeof (weak_altprefix) - 1);
+  return startswith (name, weak_altprefix);
 }
 
 /* Return the name of the alternate symbol
@@ -1667,7 +1666,7 @@ obj_coff_section (int ignore ATTRIBUTE_UNUSED)
       /* Add SEC_LINK_ONCE and SEC_LINK_DUPLICATES_DISCARD to .gnu.linkonce
          sections so adjust_reloc_syms in write.c will correctly handle
          relocs which refer to non-local symbols in these sections.  */
-      if (strneq (name, ".gnu.linkonce", sizeof (".gnu.linkonce") - 1))
+      if (startswith (name, ".gnu.linkonce"))
        flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
 #endif
 
index 733b08e2b64707edb8eb3601e97f6fbbd7d4cd96..1f6b1fe8b6d08f5e43517b3ccda9416f8648426c 100644 (file)
@@ -905,34 +905,34 @@ process_label_constant (char *str, ins * cr16_ins)
       cr16_ins->rtype = BFD_RELOC_NONE;
       relocatable = 1;
 
-      if (strneq (input_line_pointer, "@c", 2))
+      if (startswith (input_line_pointer, "@c"))
        symbol_with_at = 1;
 
-      if (strneq (input_line_pointer, "@l", 2)
-         || strneq (input_line_pointer, ":l", 2))
+      if (startswith (input_line_pointer, "@l")
+         || startswith (input_line_pointer, ":l"))
        symbol_with_l = 1;
 
-      if (strneq (input_line_pointer, "@m", 2)
-         || strneq (input_line_pointer, ":m", 2))
+      if (startswith (input_line_pointer, "@m")
+         || startswith (input_line_pointer, ":m"))
        symbol_with_m = 1;
 
-      if (strneq (input_line_pointer, "@s", 2)
-         || strneq (input_line_pointer, ":s", 2))
+      if (startswith (input_line_pointer, "@s")
+         || startswith (input_line_pointer, ":s"))
        symbol_with_s = 1;
 
-      if (strneq (input_line_pointer, "@cGOT", 5)
-         || strneq (input_line_pointer, "@cgot", 5))
+      if (startswith (input_line_pointer, "@cGOT")
+         || startswith (input_line_pointer, "@cgot"))
        {
          if (GOT_symbol == NULL)
            GOT_symbol = symbol_find_or_make (GLOBAL_OFFSET_TABLE_NAME);
 
          symbol_with_at_gotc = 1;
        }
-      else if (strneq (input_line_pointer, "@GOT", 4)
-              || strneq (input_line_pointer, "@got", 4))
+      else if (startswith (input_line_pointer, "@GOT")
+              || startswith (input_line_pointer, "@got"))
        {
-         if ((strneq (input_line_pointer, "+", 1))
-             || (strneq (input_line_pointer, "-", 1)))
+         if ((startswith (input_line_pointer, "+"))
+             || (startswith (input_line_pointer, "-")))
            as_warn (_("GOT bad expression with %s."), input_line_pointer);
 
          if (GOT_symbol == NULL)
index a82acb5fa21b4c3d0015eb9fea82ca94fe3bd973..d33a0bf076657de368b766dfb93e557175238ad5 100644 (file)
@@ -43,7 +43,6 @@
 
 /* Utility macros for string comparison.  */
 #define streq(a, b)           (strcmp (a, b) == 0)
-#define strneq(a, b, c)       (strncmp (a, b, c) == 0)
 
 /* Assign a number NUM, shifted by SHIFT bytes, into a location
    pointed by index BYTE of array 'output_opcode'.  */
index ab3f029674b1bf8ac9500eb1ee7cc764c9305b1a..9eb5f0a7bedefe72e0b9f6c4e64999c0b1a397e7 100644 (file)
@@ -1,3 +1,7 @@
+2021-04-01  Martin Liska  <mliska@suse.cz>
+
+       * opcode/cr16.h (strneq): Remove strneq and use startswith.
+
 2021-03-31  Alan Modra  <amodra@gmail.com>
 
        * bfdlink.h: Replace bfd_boolean with bool throughout.
index a96b3374c8a0cecac0d7a434dd45a5c261468216..09e27122a17b53cd6da04f9fab9f9d1cd37bc7ed 100644 (file)
@@ -425,7 +425,6 @@ extern const char * cr16_no_op_insn[];
 
 /* Utility macros for string comparison.  */
 #define streq(a, b)           (strcmp (a, b) == 0)
-#define strneq(a, b, c)       (strncmp (a, b, c) == 0)
 
 /* Long long type handling.  */
 /* Replace all appearances of 'long long int' with LONGLONG.  */
index d2c3c04745c0e784e00f85d8d74b402f0f103ff6..7b8e411b7983a3949793aad294d4322cbc5acc73 100644 (file)
@@ -1,3 +1,9 @@
+2021-04-01  Martin Liska  <mliska@suse.cz>
+
+       * ldbuildid.c (strneq): Remove strneq and use startswith.
+       (validate_build_id_style): Likewise.
+       (compute_build_id_size): Likewise.
+
 2021-03-31  Alan Modra  <amodra@gmail.com>
 
        * sysdep.h (POISON_BFD_BOOLEAN): Define.
index c0e91bcefc975716a4a499a42495e818fb3ecc49..0642ec07aa94a30b870c43544cf1b59a938d689b 100644 (file)
 #endif
 
 #define streq(a,b)     strcmp ((a), (b)) == 0
-#define strneq(a,b,n)  strncmp ((a), (b), (n)) == 0
 
 bool
 validate_build_id_style (const char *style)
 {
   if ((streq (style, "md5")) || (streq (style, "sha1"))
-      || (streq (style, "uuid")) || (strneq (style, "0x", 2)))
+      || (streq (style, "uuid")) || (startswith (style, "0x")))
     return true;
 
   return false;
@@ -51,7 +50,7 @@ compute_build_id_size (const char *style)
   if (streq (style, "sha1"))
     return 160 / 8;
 
-  if (strneq (style, "0x", 2))
+  if (startswith (style, "0x"))
     {
       bfd_size_type size = 0;
       /* ID is in string form (hex).  Count the bytes.  */
@@ -156,7 +155,7 @@ generate_build_id (bfd *abfd,
              (size_t) size < sizeof (UUID) ? (size_t) size : sizeof (UUID));
 #endif /* __MINGW32__ */
     }
-  else if (strneq (style, "0x", 2))
+  else if (startswith (style, "0x"))
     {
       /* ID is in string form (hex).  Convert to bits.  */
       const char *id = style + 2;
index d89e8766574b4d20a90d60518a3a9b6b79a68896..a08e57abe73300e8d04ee694af9b78966022df2c 100644 (file)
@@ -1,3 +1,11 @@
+2021-04-01  Martin Liska  <mliska@suse.cz>
+
+       * arm-dis.c (strneq): Remove strneq and use startswith.
+       * cr16-dis.c (print_insn_cr16): Likewise.
+       * score-dis.c (streq): Likewise.
+       (strneq): Likewise.
+       * score7-dis.c (strneq): Likewise.
+
 2021-04-01  Alan Modra  <amodra@gmail.com>
 
        PR 27675
index 797998722cf7524fd9b8433695d4952b0e6b3ebb..413091983b6718c719e36df865bb9e78275ed68c 100644 (file)
 #include "elf/arm.h"
 #include "mach-o.h"
 
-/* FIXME: Belongs in global header.  */
-#ifndef strneq
-#define strneq(a,b,n)  (strncmp ((a), (b), (n)) == 0)
-#endif
-
 /* Cached mapping symbol state.  */
 enum map_type
 {
index d5840cb81f810431a6521c8674b48f47c1c3610c..ac855523fa9858a5824f7228f095122a04246242 100644 (file)
@@ -800,7 +800,7 @@ print_insn_cr16 (bfd_vma memaddr, struct disassemble_info *info)
   /* If found, print the instruction's mnemonic and arguments.  */
   if (is_decoded > 0 && (cr16_words[0] != 0 || cr16_words[1] != 0))
     {
-      if (strneq (instruction->mnemonic, "cinv", 4))
+      if (startswith (instruction->mnemonic, "cinv"))
        info->fprintf_func (info->stream,"%s",
                            getcinvstring (instruction->mnemonic));
       else
index c1b9227e8c2ff3a9d19feb139161657833ef05a3..3ec5c6a36eba141dc1186f3e925d484849a00eee 100644 (file)
@@ -477,14 +477,6 @@ static struct score_opcode score_opcodes[] =
 };
 \f
 
-#ifndef streq
-#define streq(a,b)    (strcmp ((a), (b)) == 0)
-#endif
-
-#ifndef strneq
-#define strneq(a,b,n)    (strncmp ((a), (b), (n)) == 0)
-#endif
-
 #ifndef NUM_ELEM
 #define NUM_ELEM(a)     (sizeof (a) / sizeof (a)[0])
 #endif
index 53873079594c0abc28e2a19645082d62ff09d526..6ffc7f6fa7390f1aa28ce7fc9bd81ec25fc160ea 100644 (file)
 #define streq(a,b)    (strcmp ((a), (b)) == 0)
 #endif
 
-#ifndef strneq
-#define strneq(a,b,n)    (strncmp ((a), (b), (n)) == 0)
-#endif
-
 #ifndef NUM_ELEM
 #define NUM_ELEM(a)     (sizeof (a) / sizeof (a)[0])
 #endif