Skip to content
Snippets Groups Projects
  1. Jun 07, 2019
    • Nick Alcock's avatar
      libctf: avoid strndup · 942d35f7
      Nick Alcock authored
      Not all platforms have it.  Use libiberty xstrndup() instead.
      
      (The include of libiberty.h happens in an unusual place due to the
      requirements of synchronization of most source files between this
      project and another that does not use libiberty.  It serves to pull
      libiberty.h in for all source files in libctf/, which does the trick.)
      
      Tested on x86_64-pc-linux-gnu, x86_64-unknown-freebsd12.0,
      sparc-sun-solaris2.11, i686-pc-cygwin, i686-w64-mingw32.
      
      libctf/
      	* ctf-decls.h: Include <libiberty.h>.
      	* ctf-lookup.c (ctf_lookup_by_name): Call xstrndup(), not strndup().
      942d35f7
    • Nick Alcock's avatar
      libctf: explicitly cast more size_t types used in printf()s · 595a4d43
      Nick Alcock authored
      Unsigned long will always be adequate (the only cases involving an
      ssize_t are cases in which no error can be generated, or in which
      negative output would require a seriously corrupted file: the latter has
      been rewritten on a branch in any case).
      
      Tested on x86_64-pc-linux-gnu, x86_64-unknown-freebsd12.0,
      sparc-sun-solaris2.11, i686-pc-cygwin, i686-w64-mingw32.
      
      libctf/
      	* ctf-dump.c (ctf_dump_format_type): Cast size_t's used in printf()s.
      	(ctf_dump_objts): Likewise.
      	(ctf_dump_funcs): Likewise.
      	(ctf_dump_member): Likewise.
      	(ctf_dump_str): Likewise.
      595a4d43
    • Nick Alcock's avatar
      libctf: mark various args as unused in the !HAVE_MMAP case · f5e73be1
      Nick Alcock authored
      Tested on x86_64-pc-linux-gnu, x86_64-unknown-freebsd12.0,
      sparc-sun-solaris2.11, i686-pc-cygwin, i686-w64-mingw32.
      
      libctf/
      	* ctf-archive.c (arc_mmap_header): Mark fd as potentially unused.
      	* ctf-subr.c (ctf_data_protect): Mark both args as potentially unused.
      f5e73be1
    • GDB Administrator's avatar
      Automatic date update in version.in · bec3a0c8
      GDB Administrator authored
      bec3a0c8
  2. Jun 06, 2019
    • Руслан Ижбулатов's avatar
      Apply substitute-path to relative filenames as well · 4fa0265e
      Руслан Ижбулатов authored
      When source file path is relative to the build directory (which
      is considered a good practice and is enforced in certain buildsystems,
      such as meson), gdb only applies substitute-path to the build directory
      path. Then gdb appends the source file path to the rewritten build
      directory path, and tries to access that.
      
      This fails if either two of the following conditions are true:
      a) The user didn't specify substitute-path for the build directory.
         This is highly likely, since path substitution for build directories
         is not documented anywhere, and since gdb does not tell[0] the user
         the path to the build directory, just the source file path.
      b) The source file path changed.
         This can also easily happen, since a source path that is relative
         to the build directory can include any number of directory names
         that are not part of the program source tree (starting with the
         name of the root directory of the source tree). Gdb will not apply
         substitute-path to that relative path, thus there is no way for
         the user to tell gdb about these changes.
      
      This commit changes the code to apply substitute-path to all filenames,
      both relative and absolute. This way it is possible to do things like:
      
      set substitute-path ../foobar-1.0 /src/my/foobar-1.0
      
      which is completely in line with the user expectations.
      
      This might break unusual cases where build directory path is also
      relative (is that even possible?) and happens to match the path
      to the source directory (i.e. happens to match a substitution rule).
      
      [0]: There's a "maintenance info symtabs" command that does show the names
           of the build directories, but normal users are not required to
           know or use that.
      
      gdb/ChangeLog
      2019-06-06  Руслан Ижбулатов <lrn1986@gmail.com>
      
      	* source.c (find_and_open_source): Also rewrite relative file
      	names.
      4fa0265e
    • Amos Bird's avatar
      Add thread-exit annotation. · 1a3da2cd
      Amos Bird authored
      gdb/ChangeLog
      2019-04-26  Amos Bird  <amosbird@gmail.com>
      
      	* annotate.c (annotate_thread_exited): Add "thread-exited"
      	annotation.
      
      gdb/doc/ChangeLog
      2019-06-06  Amos Bird  <amosbird@gmail.com>
      
      	* annotate.texinfo (Multi-threaded Apps): Add entry for thread-exited
      	annotation.
      
      gdb/testsuite/ChangeLog
      2019-06-06  Amos Bird  <amosbird@gmail.com>
      
      	* gdb.base/annota1.exp (thread_switch): Add test for
      	thread-exited annotation.
      1a3da2cd
    • H.J. Lu's avatar
      gas: Add .enqcmd and noenqcmd directives · dd455cf5
      H.J. Lu authored
      2019-06-06  Lili Cui  <lili.cui@intel.com>
      
      	* config/tc-i386.c (cpu_arch): Add .enqcmd.
      	(cpu_noarch): Add noenqcmd.
      	* doc/c-i386.texi: Document noenqcmd.
      dd455cf5
    • H.J. Lu's avatar
      gas: Correct ChangeLog for commit 5d79adc4 · 8d01b531
      H.J. Lu authored
      8d01b531
    • Tom Tromey's avatar
      Add timestamps to "maint time" output · 3847a7bf
      Tom Tromey authored
      Currently "maint time" will print the amount of time a command took.
      Sometimes, though, it's useful to have a timestamp as well -- for
      example if one is correlating a gdb log with some other log.
      
      This patch adds a timestamp to the start and end of each command when
      this setting is in effect.
      
      This also removes a "//" comment and changes scoped_command_stats to
      use DISABLE_COPY_AND_ASSIGN; two minor things I noticed while working
      on the patch.
      
      Tested on x86-64 Fedora 29.
      
      gdb/ChangeLog
      2019-06-06  Tom Tromey  <tromey@adacore.com>
      
      	* maint.h (class scoped_command_stats): Use
      	DISABLE_COPY_AND_ASSIGN.
      	<print_time>: New method.
      	* maint.c (scoped_command_stats, ~scoped_command_stats): Call
      	print_time.
      	(scoped_command_stats::print_time): New method.
      
      gdb/testsuite/ChangeLog
      2019-06-06  Tom Tromey  <tromey@adacore.com>
      
      	* gdb.base/maint.exp: Expect command started/finished output.
      3847a7bf
    • Sudakshina Das's avatar
      [BFD, AArch64] Fix PT_GNU_PROPERTY alignment issue · 237df8fe
      Sudakshina Das authored
      If the new GNU property section was being created by the linker
      (this will happen only if none of the inputs have any GNU property
      section but the command line to the linker forces a bti with
      --force-bti), the alignment of the section and hence the program
      header of PT_GNU_PROPERTY type was not being set correctly. This
      patch fixes this issue.
      
      bfd/ChangeLog:
      
      2019-06-06  Sudakshina Das  <sudi.das@arm.com>
      
      	* elfxx-aarch64.c (_bfd_aarch64_elf_link_setup_gnu_properties): Set
      	alignment of the new gnu property section.
      
      ld/ChangeLog:
      
      2019-06-06  Sudakshina Das  <sudi.das@arm.com>
      
      	* testsuite/ld-aarch64/aarch64-elf.exp: Add new tests.
      	* testsuite/ld-aarch64/property-bti-pac4-a.d: New test.
      	* testsuite/ld-aarch64/property-bti-pac4-b.d: New test.
      	* testsuite/ld-aarch64/property-bti-pac4.s: New test.
      237df8fe
    • Sudakshina Das's avatar
      [LD, AArch64] Move ELF options behind -z · 8bf6d176
      Sudakshina Das authored
      This patch moves the current AArch64 ld options of --force-bti
      and --pac-plt to -z force-bti and -z pac-plt since these are
      ELF specific options.
      
      *** bfd/ChangeLog ***
      
      2019-06-06  Sudakshina Das  <sudi.das@arm.com>
      
      	* bfd-in.h: Change comment.
      	* bfd-in2.h: Regenerate.
      	* elfnn-aarch64.c (elfNN_aarch64_merge_gnu_properties): Update warning.
      	* elfxx-aarch64.c (_bfd_aarch64_elf_link_setup_gnu_properties):
      	Likwise.
      
      *** ld/ChangeLog ***
      
      2019-06-06  Sudakshina Das  <sudi.das@arm.com>
      
      	* NEWS: Update options names.
      	* emultempl/aarch64elf.em (OPTION_FORCE_BTI, OPTION_PAC_PLT): Remove.
      	(PARSE_AND_LIST_LONGOPTS): Remove force-bti and pac-plt.
      	(PARSE_AND_LIST_OPTIONS): Update to -z.
      	(PARSE_AND_LIST_ARGS_CASE_Z_AARCH64): New.
      	(PARSE_AND_LIST_ARGS_CASE_Z): Add PARSE_AND_LIST_ARGS_CASE_Z_AARCH64.
      	(PARSE_AND_LIST_ARGS_CASES): Move cases for these options.
      	* testsuite/ld-aarch64/bti-pac-plt-1.d: Update option.
      	* testsuite/ld-aarch64/bti-pac-plt-2.d: Likewise.
      	* testsuite/ld-aarch64/bti-plt-1.d: Likewise.
      	* testsuite/ld-aarch64/bti-plt-2.d: Likewise.
      	* testsuite/ld-aarch64/bti-plt-3.d: Likewise.
      	* testsuite/ld-aarch64/bti-plt-4.d: Likewise.
      	* testsuite/ld-aarch64/bti-plt-6.d: Likewise.
      	* testsuite/ld-aarch64/bti-plt-7.d: Likewise.
      	* testsuite/ld-aarch64/bti-warn.d: Likewise.
      	* testsuite/ld-aarch64/pac-plt-1.d: Likewise.
      	* testsuite/ld-aarch64/pac-plt-2.d: Likewise.
      8bf6d176
    • GDB Administrator's avatar
      Automatic date update in version.in · 811731b2
      GDB Administrator authored
      811731b2
  3. Jun 05, 2019
    • H.J. Lu's avatar
      i386: Check vector length for EVEX vextractfXX and vinsertfXX · 12efd68d
      H.J. Lu authored
      Since not all vector lengths are supported by EVEX vextractfXX and
      vinsertfXX, decode them only with supported vector lengths.
      
      gas/
      
      	PR binutils/24633
      	* testsuite/gas/i386/disassem.s: Add tests for invalid vector
      	lengths for EVEX vextractfXX and vinsertfXX.
      	* testsuite/gas/i386/x86-64-disassem.s: Likewise.
      	* testsuite/gas/i386/disassem.d: Updated.
      	* testsuite/gas/i386/x86-64-disassem.d: Likewise.
      
      opcodes/
      
      	PR binutils/24633
      	* i386-dis-evex.h (evex_table): Update EVEX_W_0F3A18_P_2,
      	EVEX_W_0F3A19_P_2, EVEX_W_0F3A1A_P_2 and EVEX_W_0F3A1B_P_2.
      	(evex_len_table): EVEX_LEN_0F3A18_P_2_W_0,
      	EVEX_LEN_0F3A18_P_2_W_1, EVEX_LEN_0F3A19_P_2_W_0,
      	EVEX_LEN_0F3A19_P_2_W_1, EVEX_LEN_0F3A1A_P_2_W_0,
      	EVEX_LEN_0F3A1A_P_2_W_1, EVEX_LEN_0F3A1B_P_2_W_0,
      	EVEX_LEN_0F3A1B_P_2_W_1.
      	* i386-dis.c (EVEX_LEN_0F3A18_P_2_W_0): New enum.
      	(EVEX_LEN_0F3A18_P_2_W_1): Likewise.
      	(EVEX_LEN_0F3A19_P_2_W_0): Likewise.
      	(EVEX_LEN_0F3A19_P_2_W_1): Likewise.
      	(EVEX_LEN_0F3A1A_P_2_W_0): Likewise.
      	(EVEX_LEN_0F3A1A_P_2_W_1): Likewise.
      	(EVEX_LEN_0F3A1B_P_2_W_0): Likewise.
      	(EVEX_LEN_0F3A1B_P_2_W_1): Likewise.
      12efd68d
    • Nick Alcock's avatar
      libctf: eschew %zi format specifier · 62d8e3b7
      Nick Alcock authored
      Too many platforms don't support it, and we can always safely use %lu or
      %li anyway, because the only uses are in debugging output.
      
      libctf/
      	* ctf-archive.c (ctf_arc_write): Eschew %zi format specifier.
      	(ctf_arc_open_by_offset): Likewise.
      	* ctf-create.c (ctf_add_type): Likewise.
      62d8e3b7
    • Andrew Burgess's avatar
      gdb/testsuite: Improve comments in recently added test · 0088ba59
      Andrew Burgess authored
      Remove the use of 'I' within some comments in a recently added test.
      
      gdb/testsuite/ChangeLog:
      
      	* gdb.arch/riscv-unwind-long-insn-6.s: Remove use of 'I' in
      	comment.
      	* gdb.arch/riscv-unwind-long-insn-8.s: Likewise.
      0088ba59
    • Andrew Burgess's avatar
      gdb/riscv: Don't error when decoding a 6 or 8 byte instruction · 312617a3
      Andrew Burgess authored
      If the RISC-V prologue scanner finds a 6 or 8 byte instruction we
      currently throw an internal error, which is not great for the user.
      
      A mechanism already exists in the prologue scanner to leave
      instructions marked as unknown so that we can stop the prologue scan
      without raising an error, this is used for all 2 and 4 byte
      instructions that are not part of the small set the prologue scanner
      actually understands.
      
      This commit changes GDB so that all 6 and 8 byte instructions are
      marked as unknown, rather than causing an error.
      
      gdb/ChangeLog:
      
      	* riscv-tdep.c (riscv_insn::decode): Gracefully ignore
      	instructions of lengths 6 or 8 bytes.
      
      gdb/testsuite/ChangeLog:
      
      	* gdb.arch/riscv-unwind-long-insn-6.s: New file.
      	* gdb.arch/riscv-unwind-long-insn-8.s: New file.
      	* gdb.arch/riscv-unwind-long-insn.c: New file.
      	* gdb.arch/riscv-unwind-long-insn.exp: New file.
      312617a3
    • GDB Administrator's avatar
      Automatic date update in version.in · fbe4d665
      GDB Administrator authored
      fbe4d665
  4. Jun 04, 2019
    • Pedro Alves's avatar
      Introduce and use make_unique_xstrdup · b02f78f9
      Pedro Alves authored
      Adds an utility function to make it shorter to write the common case
      of wrapping an xstrdup with a unique_xmalloc_ptr, and uses it
      throughout.
      
      Note: I tried to put this in common/common-utils.h near skip_spaces,
      etc. but that is included in common/common-defs.h before
      common/gdb_unique_ptr.h is included, so it would fail to compile
      because gdb::unique_xmalloc_ptr isn't defined at that point yet.  I
      tried moving the gdb_unique_ptr.h inclusion before common-utils.h, but
      that doesn't work because gdb_unique_ptr.h depends on common-utils.h
      for xfree.
      
      gdb/ChangeLog:
      2019-06-04  Pedro Alves  <palves@redhat.com>
      
      	* common/gdb_unique_ptr.h (make_unique_xstrdup): New.
      
      	* ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
      	* breakpoint.c (condition_completer): Likewise.
      	* cli/cli-dump.c (scan_expression): Likewise.
      	* common/filestuff.c (mkdir_recursive): Likewise.
      	* common/gdb_tilde_expand.c (gdb_tilde_expand_up)
      	* common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
      	(gdb_abspath): Likewise.
      	* compile/compile-cplus-types.c
      	(compile_cplus_instance::decl_name): Likewise.
      	* completer.c (complete_explicit_location):
      	(signal_completer, reg_or_group_completer_1): Likewise.
      	* cp-support.c (cp_remove_params_if_any): Likewise.
      	* fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
      	* guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
      	* infcmd.c (strip_bg_char): Likewise.
      	* linespec.c (copy_token_string): Likewise.
      	* mi/mi-main.c (output_cores): Likewise.
      	* psymtab.c (psymtab_search_name):
      	* symfile.c (test_set_ext_lang_command): Likewise.
      	* target.c (target_fileio_read_stralloc): Likewise.
      	* tui/tui-regs.c (tui_reggroup_completer): Likewise.
      	* value.c (complete_internalvar): Likewise.
      
      gdb/gdbserver/ChangeLog:
      2019-06-04  Pedro Alves  <palves@redhat.com>
      
      	* server.c (captured_main): Use make_unique_xstrdup.
      b02f78f9
    • Pedro Alves's avatar
      Fix paths to ChangeLog files · d3238f7d
      Pedro Alves authored
      d3238f7d
    • Tom Tromey's avatar
      Use CHAR_BIT instead of NBBY in libctf · 76fad999
      Tom Tromey authored
      On x86-64 Fedora 29, I tried to build a mingw-hosted gdb that targets
      ppc-linux.  You can do this with:
      
          ../binutils-gdb/configure --host=i686-w64-mingw32 --target=ppc-linux \
              --disable-{binutils,gas,gold,gprof,ld}
      
      The build failed with these errors in libctf:
      
      In file included from ../../binutils-gdb/libctf/ctf-create.c:20:
      ../../binutils-gdb/libctf/ctf-create.c: In function 'ctf_add_encoded':
      ../../binutils-gdb/libctf/ctf-create.c:803:59: error: 'NBBY' undeclared (first use in this function)
         dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, NBBY) / NBBY);
                                                                 ^~~~
      ../../binutils-gdb/libctf/ctf-impl.h:254:42: note: in definition of macro 'P2ROUNDUP'
       #define P2ROUNDUP(x, align)  (-(-(x) & -(align)))
                                                ^~~~~
      ../../binutils-gdb/libctf/ctf-create.c:803:59: note: each undeclared identifier is reported only once for each function it appears in
         dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, NBBY) / NBBY);
                                                                 ^~~~
      ../../binutils-gdb/libctf/ctf-impl.h:254:42: note: in definition of macro 'P2ROUNDUP'
       #define P2ROUNDUP(x, align)  (-(-(x) & -(align)))
                                                ^~~~~
      ../../binutils-gdb/libctf/ctf-create.c: In function 'ctf_add_slice':
      ../../binutils-gdb/libctf/ctf-create.c:862:59: error: 'NBBY' undeclared (first use in this function)
         dtd->dtd_data.ctt_size = clp2 (P2ROUNDUP (ep->cte_bits, NBBY) / NBBY);
                                                                 ^~~~
      ../../binutils-gdb/libctf/ctf-impl.h:254:42: note: in definition of macro 'P2ROUNDUP'
       #define P2ROUNDUP(x, align)  (-(-(x) & -(align)))
                                                ^~~~~
      ../../binutils-gdb/libctf/ctf-create.c: In function 'ctf_add_member_offset':
      ../../binutils-gdb/libctf/ctf-create.c:1341:21: error: 'NBBY' undeclared (first use in this function)
            off += lsize * NBBY;
                           ^~~~
      ../../binutils-gdb/libctf/ctf-create.c: In function 'ctf_add_type':
      ../../binutils-gdb/libctf/ctf-create.c:1822:16: warning: unknown conversion type character 'z' in format [-Wformat=]
         ctf_dprintf ("Conflict for type %s against ID %lx: "
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ../../binutils-gdb/libctf/ctf-create.c:1823:35: note: format string is defined here
               "union size differs, old %zi, new %zi\n",
                                         ^
      ../../binutils-gdb/libctf/ctf-create.c:1822:16: warning: unknown conversion type character 'z' in format [-Wformat=]
         ctf_dprintf ("Conflict for type %s against ID %lx: "
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ../../binutils-gdb/libctf/ctf-create.c:1823:44: note: format string is defined here
               "union size differs, old %zi, new %zi\n",
                                                  ^
      ../../binutils-gdb/libctf/ctf-create.c:1822:16: warning: too many arguments for format [-Wformat-extra-args]
         ctf_dprintf ("Conflict for type %s against ID %lx: "
                      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      
      This patch fixes the actual errors in here.  I did not try to fix the
      printf warnings, though I think someone ought to.
      
      Ok?
      
      libctf/ChangeLog
      2019-06-04  Tom Tromey  <tromey@adacore.com>
      
      	* ctf-create.c (ctf_add_encoded, ctf_add_slice)
      	(ctf_add_member_offset): Use CHAR_BIT, not NBBY.
      76fad999
    • H.J. Lu's avatar
      i386: Check for reserved VEX.vvvv and EVEX.vvvv · 63c6fc6c
      H.J. Lu authored
      If VEX.vvvv and EVEX.vvvv are reserved, they must be all 1s, which are
      all 0s in inverted form.  Add check for unused VEX.vvvv and EVEX.vvvv
      when disassembling VEX and EVEX instructions.
      
      gas/
      
      	PR binutils/24626
      	* testsuite/gas/i386/disassem.s: Add tests for reserved VEX.vvvv
      	and EVEX.vvvv.
      	* testsuite/gas/i386/x86-64-disassem.s: Likewise.
      	* testsuite/gas/i386/disassem.d: Updated.
      	* testsuite/gas/i386/x86-64-disassem.d: Likewise.
      
      opcodes/
      
      	PR binutils/24626
      	* i386-dis.c (print_insn): Check for unused VEX.vvvv and
      	EVEX.vvvv when disassembling VEX and EVEX instructions.
      	(OP_VEX): Set vex.register_specifier to 0 after readding
      	vex.register_specifier.
      	(OP_Vex_2src_1): Likewise.
      	(OP_Vex_2src_2): Likewise.
      	(OP_LWP_E): Likewise.
      	(OP_EX_Vex): Don't check vex.register_specifier.
      	(OP_XMM_Vex): Likewise.
      63c6fc6c
    • Nick Alcock's avatar
      libctf: work on platforms without O_CLOEXEC. · ad118caa
      Nick Alcock authored
      (Not tested on any such platforms, since I don't have access to any at
      the moment.  Testing encouraged.)
      
      libctf/
      	* configure.ac: Check for O_CLOEXEC.
      	* ctf-decls.h (O_CLOEXEC): Define (to 0), if need be.
      	* config.h.in: Regenerate.
      ad118caa
    • Nick Alcock's avatar
      libctf: look for BSD versus GNU qsort_r signatures · 6b22174f
      Nick Alcock authored
      We cannot just look for any declaration of qsort_r, because some
      operating systems have a qsort_r that has a different prototype
      but which still has a pair of pointers in the right places (the last two
      args are interchanged): so use AC_LINK_IFELSE to check for both
      known variants of qsort_r(), and swap their args into a consistent order
      in a suitable inline function.  (The code for this is taken almost
      unchanged from gnulib.)
      
      (Now we are not using AC_LIBOBJ any more, we can use a better name for
      the qsort_r replacement as well.)
      
      libctf/
      	* qsort_r.c: Rename to...
      	* ctf-qsort_r.c: ... this.
      	(_quicksort): Define to ctf_qsort_r.
      	* ctf-decls.h (qsort_r): Remove.
      	(ctf_qsort_r): Add.
      	(struct ctf_qsort_arg): New, transport the real ARG and COMPAR.
      	(ctf_qsort_compar_thunk): Rearrange the arguments to COMPAR.
      	* Makefile.am (libctf_a_LIBADD): Remove.
      	(libctf_a_SOURCES): New, add ctf-qsort_r.c.
      	* ctf-archive.c (ctf_arc_write): Call ctf_qsort_r, not qsort_r.
      	* ctf-create.c (ctf_update): Likewise.
      	* configure.ac: Check for BSD versus GNU qsort_r signature.
      	* Makefile.in: Regenerate.
      	* config.h.in: Likewise.
      	* configure: Likewise.
      6b22174f
    • Nick Alcock's avatar
      libctf: fix use-after-free in function dumping · 941accce
      Nick Alcock authored
      This is actually a free-before-initializing (i.e. a free of garbage).
      
      libctf/
      	* ctf-dump.c (ctf_dump_funcs): Free in the right place.
      941accce
    • Nick Alcock's avatar
      libctf: fix the type of ctf_enum.cte_value · a610aa4f
      Nick Alcock authored
      This stops the file format from depending on the size of the host int.
      (It does mean that we cannot encode enums with a value > 2^32 on
      platforms with an int > 2^32: this will be fixed in the next format
      revision.)
      
      include/
      	* ctf.h (ctf_enum.cte_value): Fix type to int32_t.
      a610aa4f
    • H.J. Lu's avatar
      Enable Intel AVX512_VP2INTERSECT insn · 9186c494
      H.J. Lu authored
      This patch enables support for VP2INTERSECT in binutils.  Please refer to
      
      https://software.intel.com/sites/default/files/managed/c5/15/architecture-instruction-set-extensions-programming-reference.pdf
      
      for VP2INTERSECT details.
      
      Make check-gas is ok.
      
      gas/
      
      2019-06-04  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
      	    Lili Cui  <lili.cui@intel.com>
      
      	* config/tc-i386.c (cpu_arch): Add .avx512_vp2intersect.
      	(cpu_noarch): Likewise.
      	* doc/c-i386.texi: Document avx512_vp2intersect.
      	* testsuite/gas/i386/i386.exp: Run vp2intersect tests.
      	* testsuite/gas/i386/vp2intersect-intel.d: New test.
      	* testsuite/gas/i386/vp2intersect.d: Likewise.
      	* testsuite/gas/i386/vp2intersect.s: Likewise.
      	* testsuite/gas/i386/vp2intersect-inval-bcast.l: Likewise.
      	* testsuite/gas/i386/vp2intersect-inval-bcast.s: Likewise.
      	* testsuite/gas/i386/x86-64-vp2intersect-intel.d: Likewise.
      	* testsuite/gas/i386/x86-64-vp2intersect.d: Likewise.
      	* testsuite/gas/i386/x86-64-vp2intersect.s: Likewise.
      	* testsuite/gas/i386/x86-64-vp2intersect-inval-bcast.l: Likewise.
      	* testsuite/gas/i386/x86-64-vp2intersect-inval-bcast.s: Likewise.
      
      opcodes/
      
      2019-06-04  Igor Tsimbalist  <igor.v.tsimbalist@intel.com>
      	    Lili Cui  <lili.cui@intel.com>
      
      	* i386-dis.c (enum): Add PREFIX_EVEX_0F3868, EVEX_W_0F3868_P_3.
      	* i386-dis-evex.h (evex_table): Add AVX512_VP2INTERSECT
      	instructions.
      	* i386-gen.c (cpu_flag_init): Add CPU_AVX512_VP2INTERSECT_FLAGS,
      	CPU_ANY_AVX512_VP2INTERSECT_FLAGS.
      	(cpu_flags): Add CpuAVX512_VP2INTERSECT.
      	* i386-opc.h (enum): Add CpuAVX512_VP2INTERSECT.
      	(i386_cpu_flags): Add cpuavx512_vp2intersect.
      	* i386-opc.tbl: Add AVX512_VP2INTERSECT insns.
      	* i386-init.h: Regenerated.
      	* i386-tbl.h: Likewise.
      9186c494
    • H.J. Lu's avatar
      Add support for Intel ENQCMD[S] instructions · 5d79adc4
      H.J. Lu authored
      This patch enables support for ENQCMD[S] in binutils.  Please refer to
      
      https://software.intel.com/sites/default/files/managed/c5/15/architecture-instruction-set-extensions-programming-reference.pdf
      
      for ENQCMD[S] details.
      
      Make check-gas is ok.
      
      gas/ChangeLog:
      
      2019-06-04  Xuepeng Guo  <xuepeng.guo@intel.com>
      	    Lili Cui  <lili.cui@intel.com>
      
      	* doc/c-i386.texi: Document enqcmd.
      	* testsuite/gas/i386/enqcmd-intel.d: New file.
      	* testsuite/gas/i386/enqcmd-inval.l: Likewise.
      	* testsuite/gas/i386/enqcmd-inval.s: Likewise.
      	* testsuite/gas/i386/enqcmd.d: Likewise.
      	* testsuite/gas/i386/enqcmd.s: Likewise.
      	* testsuite/gas/i386/x86-64-enqcmd-intel.d: Likewise.
      	* testsuite/gas/i386/x86-64-enqcmd-inval.l: Likewise.
      	* testsuite/gas/i386/x86-64-enqcmd-inval.s: Likewise.
      	* testsuite/gas/i386/x86-64-enqcmd.d: Likewise.
      	* testsuite/gas/i386/x86-64-enqcmd.s: Likewise.
      	* testsuite/gas/i386/i386.exp: Run enqcmd-intel, enqcmd-inval,
      	enqcmd, x86-64-enqcmd-intel, x86-64-enqcmd-inval,
      	and x86-64-enqcmd.
      
      opcodes/ChangeLog:
      
      2019-06-04  Xuepeng Guo  <xuepeng.guo@intel.com>
      	    Lili Cui  <lili.cui@intel.com>
      
      	* i386-dis.c (enum): Add MOD_0F38F8_PREFIX_1 and
      	MOD_0F38F8_PREFIX_3.
      	(prefix_table): New instructions (see prefix above).
      	(mod_table): New instructions (see prefix above).
      	* i386-gen.c (cpu_flag_init): Add entries for enqcmd.
      	(cpu_flags): Add a bitfield for enqmcd.
      	* i386-init.h: Regenerated.
      	* i386-opc.h (enum): Add CpuENQCMD.
      	(i386_cpu_flags): Add a bitfield for cpuenqcmd.
      	* i386-opc.tbl: Add enqcmd and enqcmds instructions.
      	* i386-init.h: Regenerated.
      	* i386-tbl.h: Regenerated.
      5d79adc4
    • Christian Biesinger via gdb-patches's avatar
      Add an objfile getter to gdb.Type · e1f2e1a2
      This allows users of the Python API to find the objfile where a type
      was defined.
      
      gdb/ChangeLog:
      
      gdb/ChangeLog
      2019-06-04  Christian Biesinger  <cbiesinger@google.com>
      
      	Add objfile property to gdb.Type.
      	* gdb/NEWS: Mention Python API addition.
      	* gdb/python/py-type.c (typy_get_objfile): New method.
      
      gdb/doc/ChangeLog
      2019-06-04  Christian Biesinger  <cbiesinger@google.com>
      
      	* gdb/doc/python.texi: Document new gdb.Type.objfile property.
      
      gdb/testsuite/ChangeLog
      2019-06-04  Christian Biesinger  <cbiesinger@google.com>
      
      	* gdb/testsuite/gdb.python/py-type.exp: Test for new
      	  gdb.Type.objfile property.
      e1f2e1a2
    • Alan Hayward's avatar
      Remove an unnecessary set of parentheses in the arm-dis.c source file. · a9d96ab9
      Alan Hayward authored
      	* arm-dis.c (is_mve_unpredictable): Remove spurious paranthesis.
      a9d96ab9
    • GDB Administrator's avatar
      Automatic date update in version.in · 1ff30553
      GDB Administrator authored
      1ff30553
  5. Jun 03, 2019
  6. Jun 02, 2019
  7. Jun 01, 2019
Loading