This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 57ffc61c6dc Upload SFrame spec files as well new c85555b1a86 gdb: move type_map_instance to compile/compile.c new 6ad66f21fc6 gdb: move compile_instance to compile/compile.h new 83b6e1f1c52 gdb: remove language.h include from frame.h new b23bf9f7241 gdb: move sect_offset and cu_offset to dwarf2/types.h new 1298c32f01b gdb: move call site types to call-site.h new 43e8c9ce203 gdb: move frame_info_ptr to frame.{c,h} new 848ab2ae8af gdb: add frame_id::user_created_p new f649a718522 gdb: add user-created frames to stash new d015d3206e1 gdb: add create_new_frame(frame_id) overload new bc2cbe815bd gdb: make it possible to restore selected user-created frames new 836a8d37104 gdb: make user-created frames reinflatable new 93e39555dd0 gdb: make frame_info_ptr grab frame level and id on construction new 908de5e6715 gdb: make frame_info_ptr auto-reinflatable
The 13 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/Makefile.in | 2 +- gdb/aarch64-tdep.c | 1 + gdb/amd64-tdep.c | 1 + gdb/arm-tdep.c | 1 + gdb/c-lang.c | 1 - gdb/c-lang.h | 2 + gdb/compile/compile-c.h | 1 + gdb/compile/compile-cplus.h | 1 + gdb/compile/compile-internal.h | 129 ---------------- gdb/compile/compile.c | 13 ++ gdb/compile/compile.h | 116 +++++++++++++++ gdb/cp-abi.c | 1 + gdb/cp-support.c | 1 + gdb/dwarf2/abbrev-cache.h | 1 - gdb/dwarf2/attribute.h | 2 +- gdb/dwarf2/call-site.h | 244 +++++++++++++++++++++++++++++++ gdb/dwarf2/comp-unit-head.h | 5 +- gdb/dwarf2/cooked-index.h | 2 +- gdb/dwarf2/expr.h | 2 +- gdb/dwarf2/line-header.h | 2 - gdb/dwarf2/types.h | 40 +++++ gdb/expop.h | 1 + gdb/f-lang.h | 1 + gdb/frame-id.h | 4 + gdb/frame-info.c | 65 -------- gdb/frame-info.h | 211 -------------------------- gdb/frame.c | 127 ++++++++++++++-- gdb/frame.h | 206 +++++++++++++++++++++++++- gdb/gdbtypes.h | 229 ----------------------------- gdb/gnu-v3-abi.c | 1 + gdb/go-lang.h | 1 + gdb/infcall.c | 3 - gdb/infcmd.c | 2 - gdb/language.c | 1 - gdb/m2-typeprint.c | 1 + gdb/mi/mi-cmd-stack.c | 2 - gdb/namespace.c | 1 + gdb/ppc-sysv-tdep.c | 1 + gdb/python/py-disasm.c | 1 + gdb/python/py-frame.c | 1 + gdb/stack.c | 16 -- gdb/symtab.c | 1 + gdb/symtab.h | 1 + gdb/testsuite/gdb.base/frame-view.c | 80 ++++++++++ gdb/testsuite/gdb.base/frame-view.exp | 108 ++++++++++++++ gdb/testsuite/gdb.base/frame-view.py | 41 ++++++ gdb/thread.c | 1 + gdb/unittests/frame_info_ptr-selftests.c | 76 ++++++++++ 48 files changed, 1065 insertions(+), 686 deletions(-) create mode 100644 gdb/dwarf2/call-site.h create mode 100644 gdb/dwarf2/types.h delete mode 100644 gdb/frame-info.c delete mode 100644 gdb/frame-info.h create mode 100644 gdb/testsuite/gdb.base/frame-view.c create mode 100644 gdb/testsuite/gdb.base/frame-view.exp create mode 100644 gdb/testsuite/gdb.base/frame-view.py create mode 100644 gdb/unittests/frame_info_ptr-selftests.c