]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Merge tag 'elfutils-0.177' into mjw/RH-DTS dts-0.177
authorMark Wielaard <mark@klomp.org>
Tue, 9 Jun 2020 16:21:36 +0000 (18:21 +0200)
committerMark Wielaard <mark@klomp.org>
Tue, 9 Jun 2020 16:21:36 +0000 (18:21 +0200)
elfutils 0.177 release

Conflicts:
libebl/eblopenbackend.c Removed try_dlopen and csky.
tests/run-strip-reloc.sh Removed csky tests.

1  2 
backends/Makefile.am
configure.ac
libdwelf/Makefile.am
libebl/eblopenbackend.c
src/Makefile.am
tests/Makefile.am
tests/run-addrcfi.sh

index 3a4e56efa0bf7eb24756adbdf850cda5998d9160,175468f66ccfb93deaf3a6d7927a5db19fdf5b13..2c0c7f0b92fe176c22d0e1aae63daaa772675443
@@@ -38,10 -38,10 +38,11 @@@ libebl_pic = libebl_i386_pic.a libebl_s
             libebl_ia64_pic.a libebl_alpha_pic.a libebl_arm_pic.a    \
             libebl_aarch64_pic.a libebl_sparc_pic.a libebl_ppc_pic.a \
             libebl_ppc64_pic.a libebl_s390_pic.a libebl_tilegx_pic.a \
-            libebl_m68k_pic.a libebl_bpf_pic.a libebl_riscv_pic.a
+            libebl_m68k_pic.a libebl_bpf_pic.a libebl_riscv_pic.a    \
+            libebl_csky_pic.a
  noinst_LIBRARIES = $(libebl_pic)
  noinst_DATA = $(libebl_pic:_pic.a=.so)
 +lib_LIBRARIES = libebl_static_pic.a
  
  
  libelf = ../libelf/libelf.so
diff --cc configure.ac
index 54ad07ab7967882e40e78306b082cc51c6b2c520,c443fa3b0596f21cfa46231b409fb7b1187a324e..3afc51ea70ceb2b649eeec4d63497c243e219630
@@@ -17,14 -17,8 +17,14 @@@ dnl  GNU General Public License for mor
  dnl
  dnl  You should have received a copy of the GNU General Public License
  dnl  along with this program.  If not, see <http://www.gnu.org/licenses/>.
- AC_INIT([elfutils],[0.176],[https://sourceware.org/bugzilla],[elfutils],[http://elfutils.org/])
+ AC_INIT([elfutils],[0.177],[https://sourceware.org/bugzilla],[elfutils],[http://elfutils.org/])
  
 +dnl Workaround for older autoconf < 2.64
 +m4_ifndef([AC_PACKAGE_URL],
 +         [AC_DEFINE([PACKAGE_URL], ["http://elfutils.org/"],
 +                    [Define to home page for this package])
 +          AC_SUBST([PACKAGE_URL], ["http://elfutils.org/"])])
 +
  dnl Workaround for older autoconf < 2.64
  m4_ifndef([AC_PACKAGE_URL],
           [AC_DEFINE([PACKAGE_URL], ["http://elfutils.org/"],
index da418e6eaef787205d9b52d1cafe9d98591a69c4,a35a2873cdf2de4ff5315ce67cb51e9c47263069..dd7adf079dd0b7c801ec86ffe1023a505eba9dce
@@@ -39,10 -39,10 +39,11 @@@ noinst_LIBRARIES = libdwelf.a libdwelf_
  pkginclude_HEADERS = libdwelf.h
  noinst_HEADERS = libdwelfP.h
  
 +libdwelf_a_CFLAGS = -fPIC -fvisibility=hidden $(AM_CFLAGS)
  libdwelf_a_SOURCES = dwelf_elf_gnu_debuglink.c dwelf_dwarf_gnu_debugaltlink.c \
                     dwelf_elf_gnu_build_id.c dwelf_scn_gnu_compressed_size.c \
-                    dwelf_strtab.c dwelf_elf_begin.c
+                    dwelf_strtab.c dwelf_elf_begin.c \
+                    dwelf_elf_e_machine_string.c
  
  libdwelf = $(libdw)
  
index 74251eaa1248ce02c65f12245eec1080318305d5,01711f5e7bd48b7230e9767248ab672f932ae194..9431897bede4469b9b6532a6b7b702464f181913
@@@ -65,84 -57,85 +65,85 @@@ static const struc
    int data;
  } machines[] =
  {
 -  { "i386", "elf_i386", "i386", 4, EM_386, ELFCLASS32, ELFDATA2LSB },
 -  { "ia64", "elf_ia64", "ia64", 4, EM_IA_64, ELFCLASS64, ELFDATA2LSB },
 -  { "alpha", "elf_alpha", "alpha", 5, EM_ALPHA, ELFCLASS64, ELFDATA2LSB },
 -  { "x86_64", "elf_x86_64", "x86_64", 6, EM_X86_64, ELFCLASS64, ELFDATA2LSB },
 -  { "ppc", "elf_ppc", "ppc", 3, EM_PPC, ELFCLASS32, ELFDATA2MSB },
 -  { "ppc64", "elf_ppc64", "ppc64", 5, EM_PPC64, ELFCLASS64, ELFDATA2MSB },
 -  { "tilegx", "elf_tilegx", "tilegx", 6, EM_TILEGX, ELFCLASS64, ELFDATA2LSB },
 +  { i386_init, "elf_i386", "i386", 4, EM_386, ELFCLASS32, ELFDATA2LSB },
 +  { ia64_init, "elf_ia64", "ia64", 4, EM_IA_64, ELFCLASS64, ELFDATA2LSB },
 +  { NULL, "elf_alpha", "alpha", 5, EM_ALPHA, ELFCLASS64, ELFDATA2LSB },
 +  { x86_64_init, "elf_x86_64", "x86_64", 6, EM_X86_64, ELFCLASS64, ELFDATA2LSB },
 +  { ppc_init, "elf_ppc", "ppc", 3, EM_PPC, ELFCLASS32, ELFDATA2MSB },
 +  { ppc64_init, "elf_ppc64", "ppc64", 5, EM_PPC64, ELFCLASS64, ELFDATA2MSB },
 +  { NULL, "elf_tilegx", "tilegx", 6, EM_TILEGX, ELFCLASS64, ELFDATA2LSB },
    // XXX class and machine fields need to be filled in for all archs.
 -  { "sh", "elf_sh", "sh", 2, EM_SH, 0, 0 },
 -  { "arm", "ebl_arm", "arm", 3, EM_ARM, 0, 0 },
 -  { "sparc", "elf_sparcv9", "sparc", 5, EM_SPARCV9, 0, 0 },
 -  { "sparc", "elf_sparc", "sparc", 5, EM_SPARC, 0, 0 },
 -  { "sparc", "elf_sparcv8plus", "sparc", 5, EM_SPARC32PLUS, 0, 0 },
 -  { "s390", "ebl_s390", "s390", 4, EM_S390, 0, 0 },
 -
 -  { "m32", "elf_m32", "m32", 3, EM_M32, 0, 0 },
 -  { "m68k", "elf_m68k", "m68k", 4, EM_68K, ELFCLASS32, ELFDATA2MSB },
 -  { "m88k", "elf_m88k", "m88k", 4, EM_88K, 0, 0 },
 -  { "i860", "elf_i860", "i860", 4, EM_860, 0, 0 },
 -  { "s370", "ebl_s370", "s370", 4, EM_S370, 0, 0 },
 -  { "parisc", "elf_parisc", "parisc", 6, EM_PARISC, 0, 0 },
 -  { "vpp500", "elf_vpp500", "vpp500", 5, EM_VPP500, 0, 0 },
 -  { "sparc", "elf_v8plus", "v8plus", 6, EM_SPARC32PLUS, 0, 0 },
 -  { "i960", "elf_i960", "i960", 4, EM_960, 0, 0 },
 -  { "v800", "ebl_v800", "v800", 4, EM_V800, 0, 0 },
 -  { "fr20", "ebl_fr20", "fr20", 4, EM_FR20, 0, 0 },
 -  { "rh32", "ebl_rh32", "rh32", 4, EM_RH32, 0, 0 },
 -  { "rce", "ebl_rce", "rce", 3, EM_RCE, 0, 0 },
 -  { "tricore", "elf_tricore", "tricore", 7, EM_TRICORE, 0, 0 },
 -  { "arc", "elf_arc", "arc", 3, EM_ARC, 0, 0 },
 -  { "h8", "elf_h8_300", "h8_300", 6, EM_H8_300, 0, 0 },
 -  { "h8", "elf_h8_300h", "h8_300h", 6, EM_H8_300H, 0, 0 },
 -  { "h8", "elf_h8s", "h8s", 6, EM_H8S, 0, 0 },
 -  { "h8", "elf_h8_500", "h8_500", 6, EM_H8_500, 0, 0 },
 -  { "coldfire", "elf_coldfire", "coldfire", 8, EM_COLDFIRE, 0, 0 },
 -  { "m68k", "elf_68hc12", "68hc12", 6, EM_68HC12, 0, 0 },
 -  { "mma", "elf_mma", "mma", 3, EM_MMA, 0, 0 },
 -  { "pcp", "elf_pcp", "pcp", 3, EM_PCP, 0, 0 },
 -  { "ncpu", "elf_ncpu", "ncpu", 4, EM_NCPU, 0, 0 },
 -  { "ndr1", "elf_ndr1", "ndr1", 4, EM_NDR1, 0, 0 },
 -  { "starcore", "elf_starcore", "starcore", 8, EM_STARCORE, 0, 0 },
 -  { "me16", "elf_me16", "em16", 4, EM_ME16, 0, 0 },
 -  { "st100", "elf_st100", "st100", 5, EM_ST100, 0, 0 },
 -  { "tinyj", "elf_tinyj", "tinyj", 5, EM_TINYJ, 0, 0 },
 -  { "pdsp", "elf_pdsp", "pdsp", 4, EM_PDSP, 0, 0 },
 -  { "fx66", "elf_fx66", "fx66", 4, EM_FX66, 0, 0 },
 -  { "st9plus", "elf_st9plus", "st9plus", 7, EM_ST9PLUS, 0, 0 },
 -  { "st7", "elf_st7", "st7", 3, EM_ST7, 0, 0 },
 -  { "m68k", "elf_68hc16", "68hc16", 6, EM_68HC16, 0, 0 },
 -  { "m68k", "elf_68hc11", "68hc11", 6, EM_68HC11, 0, 0 },
 -  { "m68k", "elf_68hc08", "68hc08", 6, EM_68HC08, 0, 0 },
 -  { "m68k", "elf_68hc05", "68hc05", 6, EM_68HC05, 0, 0 },
 -  { "svx", "elf_svx", "svx", 3, EM_SVX, 0, 0 },
 -  { "st19", "elf_st19", "st19", 4, EM_ST19, 0, 0 },
 -  { "vax", "elf_vax", "vax", 3, EM_VAX, 0, 0 },
 -  { "cris", "elf_cris", "cris", 4, EM_CRIS, 0, 0 },
 -  { "javelin", "elf_javelin", "javelin", 7, EM_JAVELIN, 0, 0 },
 -  { "firepath", "elf_firepath", "firepath", 8, EM_FIREPATH, 0, 0 },
 -  { "zsp", "elf_zsp", "zsp", 3, EM_ZSP, 0, 0 },
 -  { "mmix", "elf_mmix", "mmix", 4, EM_MMIX, 0, 0 },
 -  { "hunay", "elf_huany", "huany", 5, EM_HUANY, 0, 0 },
 -  { "prism", "elf_prism", "prism", 5, EM_PRISM, 0, 0 },
 -  { "avr", "elf_avr", "avr", 3, EM_AVR, 0, 0 },
 -  { "fr30", "elf_fr30", "fr30", 4, EM_FR30, 0, 0 },
 -  { "dv10", "elf_dv10", "dv10", 4, EM_D10V, 0, 0 },
 -  { "dv30", "elf_dv30", "dv30", 4, EM_D30V, 0, 0 },
 -  { "v850", "elf_v850", "v850", 4, EM_V850, 0, 0 },
 -  { "m32r", "elf_m32r", "m32r", 4, EM_M32R, 0, 0 },
 -  { "mn10300", "elf_mn10300", "mn10300", 7, EM_MN10300, 0, 0 },
 -  { "mn10200", "elf_mn10200", "mn10200", 7, EM_MN10200, 0, 0 },
 -  { "pj", "elf_pj", "pj", 2, EM_PJ, 0, 0 },
 -  { "openrisc", "elf_openrisc", "openrisc", 8, EM_OPENRISC, 0, 0 },
 -  { "arc", "elf_arc_a5", "arc_a5", 6, EM_ARC_A5, 0, 0 },
 -  { "xtensa", "elf_xtensa", "xtensa", 6, EM_XTENSA, 0, 0 },
 -  { "aarch64", "elf_aarch64", "aarch64", 7, EM_AARCH64, ELFCLASS64, 0 },
 -  { "bpf", "elf_bpf", "bpf", 3, EM_BPF, 0, 0 },
 -  { "riscv", "elf_riscv", "riscv", 5, EM_RISCV, ELFCLASS64, ELFDATA2LSB },
 -  { "riscv", "elf_riscv", "riscv", 5, EM_RISCV, ELFCLASS32, ELFDATA2LSB },
 -  { "csky", "elf_csky", "csky", 4, EM_CSKY, ELFCLASS32, ELFDATA2LSB },
 +  { NULL, "elf_sh", "sh", 2, EM_SH, 0, 0 },
 +  { NULL, "ebl_arm", "arm", 3, EM_ARM, 0, 0 },
 +  { NULL, "elf_sparcv9", "sparc", 5, EM_SPARCV9, 0, 0 },
 +  { NULL, "elf_sparc", "sparc", 5, EM_SPARC, 0, 0 },
 +  { NULL, "elf_sparcv8plus", "sparc", 5, EM_SPARC32PLUS, 0, 0 },
 +  { s390_init, "ebl_s390", "s390", 4, EM_S390, 0, 0 },
 +
 +  { NULL, "elf_m32", "m32", 3, EM_M32, 0, 0 },
 +  { NULL, "elf_m68k", "m68k", 4, EM_68K, ELFCLASS32, ELFDATA2MSB },
 +  { NULL, "elf_m88k", "m88k", 4, EM_88K, 0, 0 },
 +  { NULL, "elf_i860", "i860", 4, EM_860, 0, 0 },
 +  { NULL, "ebl_s370", "s370", 4, EM_S370, 0, 0 },
 +  { NULL, "elf_parisc", "parisc", 6, EM_PARISC, 0, 0 },
 +  { NULL, "elf_vpp500", "vpp500", 5, EM_VPP500, 0, 0 },
 +  { NULL, "elf_v8plus", "v8plus", 6, EM_SPARC32PLUS, 0, 0 },
 +  { NULL, "elf_i960", "i960", 4, EM_960, 0, 0 },
 +  { NULL, "ebl_v800", "v800", 4, EM_V800, 0, 0 },
 +  { NULL, "ebl_fr20", "fr20", 4, EM_FR20, 0, 0 },
 +  { NULL, "ebl_rh32", "rh32", 4, EM_RH32, 0, 0 },
 +  { NULL, "ebl_rce", "rce", 3, EM_RCE, 0, 0 },
 +  { NULL, "elf_tricore", "tricore", 7, EM_TRICORE, 0, 0 },
 +  { NULL, "elf_arc", "arc", 3, EM_ARC, 0, 0 },
 +  { NULL, "elf_h8_300", "h8_300", 6, EM_H8_300, 0, 0 },
 +  { NULL, "elf_h8_300h", "h8_300h", 6, EM_H8_300H, 0, 0 },
 +  { NULL, "elf_h8s", "h8s", 6, EM_H8S, 0, 0 },
 +  { NULL, "elf_h8_500", "h8_500", 6, EM_H8_500, 0, 0 },
 +  { NULL, "elf_coldfire", "coldfire", 8, EM_COLDFIRE, 0, 0 },
 +  { NULL, "elf_68hc12", "68hc12", 6, EM_68HC12, 0, 0 },
 +  { NULL, "elf_mma", "mma", 3, EM_MMA, 0, 0 },
 +  { NULL, "elf_pcp", "pcp", 3, EM_PCP, 0, 0 },
 +  { NULL, "elf_ncpu", "ncpu", 4, EM_NCPU, 0, 0 },
 +  { NULL, "elf_ndr1", "ndr1", 4, EM_NDR1, 0, 0 },
 +  { NULL, "elf_starcore", "starcore", 8, EM_STARCORE, 0, 0 },
 +  { NULL, "elf_me16", "em16", 4, EM_ME16, 0, 0 },
 +  { NULL, "elf_st100", "st100", 5, EM_ST100, 0, 0 },
 +  { NULL, "elf_tinyj", "tinyj", 5, EM_TINYJ, 0, 0 },
 +  { NULL, "elf_pdsp", "pdsp", 4, EM_PDSP, 0, 0 },
 +  { NULL, "elf_fx66", "fx66", 4, EM_FX66, 0, 0 },
 +  { NULL, "elf_st9plus", "st9plus", 7, EM_ST9PLUS, 0, 0 },
 +  { NULL, "elf_st7", "st7", 3, EM_ST7, 0, 0 },
 +  { NULL, "elf_68hc16", "68hc16", 6, EM_68HC16, 0, 0 },
 +  { NULL, "elf_68hc11", "68hc11", 6, EM_68HC11, 0, 0 },
 +  { NULL, "elf_68hc08", "68hc08", 6, EM_68HC08, 0, 0 },
 +  { NULL, "elf_68hc05", "68hc05", 6, EM_68HC05, 0, 0 },
 +  { NULL, "elf_svx", "svx", 3, EM_SVX, 0, 0 },
 +  { NULL, "elf_st19", "st19", 4, EM_ST19, 0, 0 },
 +  { NULL, "elf_vax", "vax", 3, EM_VAX, 0, 0 },
 +  { NULL, "elf_cris", "cris", 4, EM_CRIS, 0, 0 },
 +  { NULL, "elf_javelin", "javelin", 7, EM_JAVELIN, 0, 0 },
 +  { NULL, "elf_firepath", "firepath", 8, EM_FIREPATH, 0, 0 },
 +  { NULL, "elf_zsp", "zsp", 3, EM_ZSP, 0, 0 },
 +  { NULL, "elf_mmix", "mmix", 4, EM_MMIX, 0, 0 },
 +  { NULL, "elf_huany", "huany", 5, EM_HUANY, 0, 0 },
 +  { NULL, "elf_prism", "prism", 5, EM_PRISM, 0, 0 },
 +  { NULL, "elf_avr", "avr", 3, EM_AVR, 0, 0 },
 +  { NULL, "elf_fr30", "fr30", 4, EM_FR30, 0, 0 },
 +  { NULL, "elf_dv10", "dv10", 4, EM_D10V, 0, 0 },
 +  { NULL, "elf_dv30", "dv30", 4, EM_D30V, 0, 0 },
 +  { NULL, "elf_v850", "v850", 4, EM_V850, 0, 0 },
 +  { NULL, "elf_m32r", "m32r", 4, EM_M32R, 0, 0 },
 +  { NULL, "elf_mn10300", "mn10300", 7, EM_MN10300, 0, 0 },
 +  { NULL, "elf_mn10200", "mn10200", 7, EM_MN10200, 0, 0 },
 +  { NULL, "elf_pj", "pj", 2, EM_PJ, 0, 0 },
 +  { NULL, "elf_openrisc", "openrisc", 8, EM_OPENRISC, 0, 0 },
 +  { NULL, "elf_arc_a5", "arc_a5", 6, EM_ARC_A5, 0, 0 },
 +  { NULL, "elf_xtensa", "xtensa", 6, EM_XTENSA, 0, 0 },
 +  { aarch64_init, "elf_aarch64", "aarch64", 7, EM_AARCH64, ELFCLASS64, 0 },
 +  { bpf_init, "elf_bpf", "bpf", 3, EM_BPF, 0, 0 },
 +  { NULL, "elf_riscv", "riscv", 5, EM_RISCV, ELFCLASS64, ELFDATA2LSB },
 +  { NULL, "elf_riscv", "riscv", 5, EM_RISCV, ELFCLASS32, ELFDATA2LSB },
++  { NULL, "elf_csky", "csky", 4, EM_CSKY, ELFCLASS32, ELFDATA2LSB },
  };
  #define nmachines (sizeof (machines) / sizeof (machines[0]))
  
@@@ -259,7 -252,50 +260,6 @@@ fill_defaults (Ebl *result
    result->sysvhash_entrysize = sizeof (Elf32_Word);
  }
  
 -static Ebl *
 -try_dlopen (const char *dsoname, Elf *elf, GElf_Half machine, size_t cnt,
 -          Ebl *result)
 -{
 -  void *h = dlopen (dsoname, RTLD_LAZY);
 -
 -  if (h != NULL)
 -    {
 -      /* We managed to load the object.  Now see whether the
 -       initialization function likes our file.  */
 -      static const char version[] = MODVERSION;
 -      const char *modversion;
 -      ebl_bhinit_t initp;
 -
 -      // We use a static number to help the compiler see we don't
 -      // overflow the stack with an arbitrary number.
 -      assert (machines[cnt].prefix_len <= MAX_PREFIX_LEN);
 -      char symname[MAX_PREFIX_LEN + sizeof "_init"];
 -
 -      strcpy (mempcpy (symname, machines[cnt].prefix,
 -                     machines[cnt].prefix_len), "_init");
 -
 -      initp = (ebl_bhinit_t) dlsym (h, symname);
 -      if (initp != NULL
 -        && (modversion = initp (elf, machine, result, sizeof (Ebl)))
 -        && strcmp (version, modversion) == 0)
 -      {
 -        /* We found a module to handle our file.  */
 -        result->dlhandle = h;
 -        result->elf = elf;
 -
 -        /* A few entries are mandatory.  */
 -        assert (result->destr != NULL);
 -
 -        return result;
 -      }
 -
 -      /* Not the module we need.  */
 -      (void) dlclose (h);
 -    }
 -
 -  return NULL;
 -}
--
  /* Find an appropriate backend for the file associated with ELF.  */
  static Ebl *
  openbackend (Elf *elf, const char *emulation, GElf_Half machine)
  #ifndef LIBEBL_SUBDIR
  # define LIBEBL_SUBDIR PACKAGE
  #endif
- #define ORIGINDIR "$ORIGIN/../$LIB/" LIBEBL_SUBDIR "/"
+ /* This works if libebl has been staticly linked into a binary.
+    It might also work for shared libraries when installed in
+    ${prefix}/lib/ or ${prefix}/lib64/, but not for multiarch
+    library installs like ${prefix}/lib/i386-linux-gnu/  */
+ #define BINORIGINDIR "$ORIGIN/../$LIB/" LIBEBL_SUBDIR "/"
+ /* This works if libebl has been linked into a shared library,
+    just look in the subdir.  */
+ #define LIBORIGINDIR "$ORIGIN/" LIBEBL_SUBDIR "/"
  
 -      /* Give it a try.  At least the machine type matches.  First
 -           try to load the module from the (bin) origin path.  */
 -      char dsoname[100];
 -      strcpy (stpcpy (stpcpy (dsoname, BINORIGINDIR "libebl_"),
 -                      machines[cnt].dsoname),
 -              ".so");
 -      if (try_dlopen (dsoname, elf, machine, cnt, result) != NULL)
 -        return result;
 -
 -      /* Retry with the (lib) origin path.  */
 -      strcpy (stpcpy (stpcpy (dsoname, LIBORIGINDIR "libebl_"),
 -                      machines[cnt].dsoname),
 -              ".so");
 -      if (try_dlopen (dsoname, elf, machine, cnt, result) != NULL)
 -        return result;
 -
 -      /* Try without an explicit path (LD_LIBRARY_PATH or RPATH).  */
 -      strcpy (stpcpy (stpcpy (dsoname, "libebl_"),
 -                      machines[cnt].dsoname),
 -              ".so");
 -      if (try_dlopen (dsoname, elf, machine, cnt, result) != NULL)
 -        return result;
 +      ebl_bhinit_t initp = machines[cnt].initptr;
 +      if (1)
 +        {
 +          static const char version[] = MODVERSION;
 +          const char *modversion;
 +          if (initp != NULL
 +              && (modversion = initp (elf, machine, result, sizeof (Ebl)))
 +              && strcmp (version, modversion) == 0)
 +            {
 +              /* We found a module to handle our file.  */
 +              result->dlhandle = NULL;
 +              result->elf = elf;
 +
 +              /* A few entries are mandatory.  */
-               assert (result->name != NULL);
 +              assert (result->destr != NULL);
 +
 +              return result;
 +            }
 +        }
  
        /* We cannot find a DSO but the emulation/machine ID matches.
           Return that information.  */
diff --cc src/Makefile.am
Simple merge
Simple merge
index 76db7d2d3c918b96a67a7e9580a4e927c5f51934,64fa24d7be81b4e1fc13ea42684b3ebdc4ce7c25..e9f55644cc15fc54aebae1486cfc68a70b95bef0
@@@ -3671,3 -3747,46 +3671,4 @@@ testrun_compare ${abs_builddir}/addrcf
        control reg66 (%fsw): undefined
  handle_cfi no CFI (.debug_frame): no error
  EOF
 -# EM_CSKY (function bar 0x8440)
 -testfiles testfilecsky
 -testrun_compare ${abs_builddir}/addrcfi -e testfilecsky 0x8440 <<\EOF
 -dwarf_cfi_addrframe (.eh_frame): no matching address range
 -.debug_frame has 0x8440 => [0x8440, 0x844a):
 -      return address in reg15
 -      CFA location expression: bregx(14)
 -      integer reg0 (r0): undefined
 -      integer reg1 (r1): undefined
 -      integer reg2 (r2): undefined
 -      integer reg3 (r3): undefined
 -      integer reg4 (r4): same_value
 -      integer reg5 (r5): same_value
 -      integer reg6 (r6): same_value
 -      integer reg7 (r7): same_value
 -      integer reg8 (r8): same_value
 -      integer reg9 (r9): same_value
 -      integer reg10 (r10): same_value
 -      integer reg11 (r11): same_value
 -      integer reg12 (r12): undefined
 -      integer reg13 (r13): undefined
 -      integer reg14 (sp): location expression: call_frame_cfa stack_value
 -      integer reg15 (lr): same_value
 -      integer reg16 (r16): same_value
 -      integer reg17 (r17): same_value
 -      integer reg18 (r18): undefined
 -      integer reg19 (r19): undefined
 -      integer reg20 (r20): undefined
 -      integer reg21 (r21): undefined
 -      integer reg22 (r22): undefined
 -      integer reg23 (r23): undefined
 -      integer reg24 (r24): undefined
 -      integer reg25 (r25): undefined
 -      integer reg26 (r26): undefined
 -      integer reg27 (r27): undefined
 -      integer reg28 (r28): undefined
 -      integer reg29 (r29): undefined
 -      integer reg30 (r30): undefined
 -      integer reg31 (tls): undefined
 -      integer reg36 (hi): undefined
 -      integer reg37 (lo): undefined
 -EOF