8295795: hsdis does not build with binutils 2.39+

Reviewed-by: ihse, djelinski
This commit is contained in:
Robbin Ehn 2023-10-23 13:12:52 +00:00
parent 99de9bb83f
commit c2efd77412
2 changed files with 83 additions and 36 deletions

View File

@ -134,7 +134,8 @@ AC_DEFUN([LIB_BUILD_BINUTILS],
BINUTILS_SRC="$with_binutils_src" BINUTILS_SRC="$with_binutils_src"
UTIL_FIXUP_PATH(BINUTILS_SRC) UTIL_FIXUP_PATH(BINUTILS_SRC)
BINUTILS_DIR="$CONFIGURESUPPORT_OUTPUTDIR/binutils" BINUTILS_BUILD_DIR="$CONFIGURESUPPORT_OUTPUTDIR/binutils"
BINUTILS_INSTALL_DIR="$CONFIGURESUPPORT_OUTPUTDIR/binutils-install"
if ! test -d $BINUTILS_SRC; then if ! test -d $BINUTILS_SRC; then
AC_MSG_ERROR([--with-binutils-src is not pointing to a directory]) AC_MSG_ERROR([--with-binutils-src is not pointing to a directory])
@ -143,15 +144,15 @@ AC_DEFUN([LIB_BUILD_BINUTILS],
AC_MSG_ERROR([--with-binutils-src does not look like a binutils source directory]) AC_MSG_ERROR([--with-binutils-src does not look like a binutils source directory])
fi fi
if ! test -d $BINUTILS_DIR; then if ! test -d $BINUTILS_BUILD_DIR; then
$MKDIR -p $BINUTILS_DIR $MKDIR -p $BINUTILS_BUILD_DIR
fi fi
if test -e $BINUTILS_DIR/bfd/libbfd.a && \ # We don't know the version, not checking for libsframe.a
test -e $BINUTILS_DIR/opcodes/libopcodes.a && \ if test -e $BINUTILS_INSTALL_DIR/lib/libbfd.a && \
test -e $BINUTILS_DIR/libiberty/libiberty.a && \ test -e $BINUTILS_INSTALL_DIR/lib/libopcodes.a && \
test -e $BINUTILS_DIR/zlib/libz.a; then test -e $BINUTILS_INSTALL_DIR/lib/libiberty.a; then
AC_MSG_NOTICE([Found binutils binaries in binutils source directory -- not building]) AC_MSG_NOTICE([Found binutils binaries in binutils install directory -- not building])
else else
# On Windows, we cannot build with the normal Microsoft CL, but must instead use # On Windows, we cannot build with the normal Microsoft CL, but must instead use
# a separate mingw toolchain. # a separate mingw toolchain.
@ -190,20 +191,26 @@ AC_DEFUN([LIB_BUILD_BINUTILS],
binutils_cflags="$binutils_cflags $MACHINE_FLAG $JVM_PICFLAG $C_O_FLAG_NORM" binutils_cflags="$binutils_cflags $MACHINE_FLAG $JVM_PICFLAG $C_O_FLAG_NORM"
AC_MSG_NOTICE([Running binutils configure]) AC_MSG_NOTICE([Running binutils configure])
AC_MSG_NOTICE([configure command line: cd $BINUTILS_DIR && $BINUTILS_SRC/configure --disable-nls CFLAGS="$binutils_cflags" CC="$binutils_cc" AR="$AR" $binutils_target]) AC_MSG_NOTICE([configure command line: cd $BINUTILS_BUILD_DIR && $BINUTILS_SRC/configure --disable-werror --prefix=$BINUTILS_INSTALL_DIR --enable-install-libiberty --with-system-zlib --without-zstd --disable-nls CFLAGS="$binutils_cflags" CC="$binutils_cc" AR="$AR" $binutils_target])
saved_dir=`pwd` saved_dir=`pwd`
cd "$BINUTILS_DIR" cd "$BINUTILS_BUILD_DIR"
$BINUTILS_SRC/configure --disable-nls CFLAGS="$binutils_cflags" CC="$binutils_cc" AR="$AR" $binutils_target $BINUTILS_SRC/configure --disable-werror --prefix=$BINUTILS_INSTALL_DIR --enable-install-libiberty --with-system-zlib --without-zstd --disable-nls CFLAGS="$binutils_cflags" CC="$binutils_cc" AR="$AR" $binutils_target
if test $? -ne 0 || ! test -e $BINUTILS_DIR/Makefile; then if test $? -ne 0 || ! test -e $BINUTILS_BUILD_DIR/Makefile; then
AC_MSG_NOTICE([Automatic building of binutils failed on configure. Try building it manually]) AC_MSG_NOTICE([Automatic building of binutils failed on configure. Try building it manually])
AC_MSG_ERROR([Cannot continue]) AC_MSG_ERROR([Cannot continue])
fi fi
AC_MSG_NOTICE([Running binutils make]) AC_MSG_NOTICE([Running binutils make])
$MAKE all-opcodes $MAKE all-opcodes all-libiberty
if test $? -ne 0; then if test $? -ne 0; then
AC_MSG_NOTICE([Automatic building of binutils failed on make. Try building it manually]) AC_MSG_NOTICE([Automatic building of binutils failed on make. Try building it manually])
AC_MSG_ERROR([Cannot continue]) AC_MSG_ERROR([Cannot continue])
fi fi
AC_MSG_NOTICE([Running binutils make install])
$MAKE install-opcodes install-libiberty
if test $? -ne 0; then
AC_MSG_NOTICE([Automatic building, install step, of binutils failed on make. Try building it manually])
AC_MSG_ERROR([Cannot continue])
fi
cd $saved_dir cd $saved_dir
AC_MSG_NOTICE([Building of binutils done]) AC_MSG_NOTICE([Building of binutils done])
fi fi
@ -223,41 +230,57 @@ AC_DEFUN([LIB_SETUP_HSDIS_BINUTILS],
# We need the binutils static libs and includes. # We need the binutils static libs and includes.
if test "x$with_binutils_src" != x; then if test "x$with_binutils_src" != x; then
# Try building the source first. If it succeeds, it sets $BINUTILS_DIR. # Try building the source first. If it succeeds, it sets $BINUTILS_INSTALL_DIR.
LIB_BUILD_BINUTILS LIB_BUILD_BINUTILS
fi fi
if test "x$with_binutils" != x; then if test "x$with_binutils" != x; then
BINUTILS_DIR="$with_binutils" BINUTILS_INSTALL_DIR="$with_binutils"
fi fi
binutils_system_error="" binutils_system_error=""
HSDIS_LDFLAGS=""
HSDIS_LIBS="" HSDIS_LIBS=""
if test "x$BINUTILS_DIR" = xsystem; then disasm_header="<dis-asm.h>"
if test "x$BINUTILS_INSTALL_DIR" = xsystem; then
AC_CHECK_LIB(bfd, bfd_openr, [ HSDIS_LIBS="-lbfd" ], [ binutils_system_error="libbfd not found" ]) AC_CHECK_LIB(bfd, bfd_openr, [ HSDIS_LIBS="-lbfd" ], [ binutils_system_error="libbfd not found" ])
AC_CHECK_LIB(opcodes, disassembler, [ HSDIS_LIBS="$HSDIS_LIBS -lopcodes" ], [ binutils_system_error="libopcodes not found" ]) AC_CHECK_LIB(opcodes, disassembler, [ HSDIS_LIBS="$HSDIS_LIBS -lopcodes" ], [ binutils_system_error="libopcodes not found" ])
AC_CHECK_LIB(z, deflate, [ HSDIS_LIBS="$HSDIS_LIBS -lz" ], [ binutils_system_error="libz not found" ])
# libiberty is not required on Ubuntu # libiberty is not required on Ubuntu
AC_CHECK_LIB(iberty, xmalloc, [ HSDIS_LIBS="$HSDIS_LIBS -liberty" ]) AC_CHECK_LIB(iberty, xmalloc, [ HSDIS_LIBS="$HSDIS_LIBS -liberty" ])
AC_CHECK_LIB(z, deflate, [ HSDIS_LIBS="$HSDIS_LIBS -lz" ], [ binutils_system_error="libz not found" ]) AC_CHECK_LIB(sframe, frame, [ HSDIS_LIBS="$HSDIS_LIBS -lsframe" ], )
HSDIS_CFLAGS="-DLIBARCH_$OPENJDK_TARGET_CPU_LEGACY_LIB" HSDIS_CFLAGS="-DLIBARCH_$OPENJDK_TARGET_CPU_LEGACY_LIB"
elif test "x$BINUTILS_DIR" != x; then elif test "x$BINUTILS_INSTALL_DIR" != x; then
if test -e $BINUTILS_DIR/bfd/libbfd.a && \ disasm_header="\"$BINUTILS_INSTALL_DIR/include/dis-asm.h\""
test -e $BINUTILS_DIR/opcodes/libopcodes.a && \ if test -e $BINUTILS_INSTALL_DIR/lib/libbfd.a && \
test -e $BINUTILS_DIR/libiberty/libiberty.a && \ test -e $BINUTILS_INSTALL_DIR/lib/libopcodes.a && \
test -e $BINUTILS_DIR/zlib/libz.a; then test -e $BINUTILS_INSTALL_DIR/lib/libiberty.a; then
HSDIS_CFLAGS="-DLIBARCH_$OPENJDK_TARGET_CPU_LEGACY_LIB" HSDIS_CFLAGS="-DLIBARCH_$OPENJDK_TARGET_CPU_LEGACY_LIB -I$BINUTILS_INSTALL_DIR/include"
if test -n "$BINUTILS_SRC"; then HSDIS_LIBS="$BINUTILS_INSTALL_DIR/lib/libbfd.a $BINUTILS_INSTALL_DIR/lib/libopcodes.a $BINUTILS_INSTALL_DIR/lib/libiberty.a"
HSDIS_CFLAGS="$HSDIS_CFLAGS -I$BINUTILS_SRC/include -I$BINUTILS_DIR/bfd" # If we have libsframe add it.
else if test -e $BINUTILS_INSTALL_DIR/lib/libsframe.a; then
HSDIS_CFLAGS="$HSDIS_CFLAGS -I$BINUTILS_DIR/include -I$BINUTILS_DIR/bfd" HSDIS_LIBS="$HSDIS_LIBS $BINUTILS_INSTALL_DIR/lib/libsframe.a"
fi fi
HSDIS_LDFLAGS="" AC_CHECK_LIB(z, deflate, [ HSDIS_LIBS="$HSDIS_LIBS -lz" ], AC_MSG_ERROR([libz not found]))
HSDIS_LIBS="$BINUTILS_DIR/bfd/libbfd.a $BINUTILS_DIR/opcodes/libopcodes.a $BINUTILS_DIR/libiberty/libiberty.a $BINUTILS_DIR/zlib/libz.a" else
AC_MSG_ERROR(["$BINUTILS_INSTALL_DIR/libs/ must contain libbfd.a, libopcodes.a, libiberty.a"])
fi fi
fi fi
AC_MSG_CHECKING([Checking binutils API])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include $disasm_header],[[void foo() {init_disassemble_info(0, 0, 0, 0);}]])],
[
AC_MSG_RESULT([New API])
HSDIS_CFLAGS="$HSDIS_CFLAGS -DBINUTILS_NEW_API"
],
[
AC_MSG_RESULT([Old API])
]
)
AC_MSG_CHECKING([for binutils to use with hsdis]) AC_MSG_CHECKING([for binutils to use with hsdis])
case "x$BINUTILS_DIR" in case "x$BINUTILS_INSTALL_DIR" in
xsystem) xsystem)
if test "x$OPENJDK_TARGET_OS" != xlinux; then if test "x$OPENJDK_TARGET_OS" != xlinux; then
AC_MSG_RESULT([invalid]) AC_MSG_RESULT([invalid])
@ -280,10 +303,10 @@ AC_DEFUN([LIB_SETUP_HSDIS_BINUTILS],
;; ;;
*) *)
if test "x$HSDIS_LIBS" != x; then if test "x$HSDIS_LIBS" != x; then
AC_MSG_RESULT([$BINUTILS_DIR]) AC_MSG_RESULT([$BINUTILS_INSTALL_DIR])
else else
AC_MSG_RESULT([invalid]) AC_MSG_RESULT([invalid])
AC_MSG_ERROR([$BINUTILS_DIR does not contain a proper binutils installation]) AC_MSG_ERROR([$BINUTILS_INSTALL_DIR does not contain a proper binutils installation])
fi fi
;; ;;
esac esac

View File

@ -49,14 +49,16 @@
HotSpot PrintAssembly option. HotSpot PrintAssembly option.
*/ */
#ifndef SYSTEM_BINUTILS
#include <config.h> /* required by bfd.h */
#endif
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <string.h> #include <string.h>
#ifndef SYSTEM_BINUTILS
/* defines for bfd.h */
#define PACKAGE "hsdis"
#define PACKAGE_VERSION 1
#endif
#include <bfd.h> #include <bfd.h>
#include <dis-asm.h> #include <dis-asm.h>
@ -555,12 +557,34 @@ static void parse_fake_insn(disassembler_ftype dfn,
dinfo->fprintf_func = fprintf_func; dinfo->fprintf_func = fprintf_func;
} }
static fprintf_ftype target_fprintf_func = NULL;
#ifdef BINUTILS_NEW_API
static int wrapper_fprintf_styled_ftype(void *v, enum disassembler_style style_unused, const char* fmt, ...) {
char buffer[1024] = {};
va_list args;
int r;
va_start(args, fmt);
r = vsnprintf(buffer, sizeof(buffer), fmt, args);
va_end(args);
if (target_fprintf_func != NULL) {
return target_fprintf_func(v, "%s", buffer);
}
return r;
}
#endif
static void init_disassemble_info_from_bfd(struct disassemble_info* dinfo, static void init_disassemble_info_from_bfd(struct disassemble_info* dinfo,
void *stream, void *stream,
fprintf_ftype fprintf_func, fprintf_ftype fprintf_func,
bfd* abfd, bfd* abfd,
char* disassembler_options) { char* disassembler_options) {
target_fprintf_func = fprintf_func;
#ifdef BINUTILS_NEW_API
init_disassemble_info(dinfo, stream, fprintf_func, wrapper_fprintf_styled_ftype);
#else
init_disassemble_info(dinfo, stream, fprintf_func); init_disassemble_info(dinfo, stream, fprintf_func);
#endif
dinfo->flavour = bfd_get_flavour(abfd); dinfo->flavour = bfd_get_flavour(abfd);
dinfo->arch = bfd_get_arch(abfd); dinfo->arch = bfd_get_arch(abfd);