]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit - gdb/dwarf2/loc.c
Remove get_frame_cfa from dwarf_expr_context
authorZoran Zaric <Zoran.Zaric@amd.com>
Fri, 9 Oct 2020 10:22:23 +0000 (11:22 +0100)
committerZoran Zaric <zoran.zaric@amd.com>
Thu, 5 Aug 2021 15:39:27 +0000 (16:39 +0100)
commit6c7779b34b38ca71df9460c07bc4c03d01dfaa0b
tree4a2d0ea8953c4544e6c23f6cc36c206df391e611
parent62e37eac1c5b9e4805d40715e7570f7146caa788
Remove get_frame_cfa from dwarf_expr_context

Following the idea of merging the evaluators, the get_frame_cfa method
can be moved from dwarf_expr_executor and dwarf_evaluate_loc_desc
classes to their base class dwarf_expr_context. Once this is done,
it becomes apparent that the method is only called once and it can be
inlined.

It is also necessary to check if the frame context information was
provided before the DW_OP_call_frame_cfa operation is executed.

gdb/ChangeLog:

* dwarf2/expr.c (dwarf_expr_context::get_frame_cfa): Remove
method.
(dwarf_expr_context::execute_stack_op): Call frame context info
check for DW_OP_call_frame_cfa. Remove use of get_frame_cfa.
* dwarf2/expr.h (dwarf_expr_context::get_frame_cfa): Remove
method.
* dwarf2/frame.c (dwarf_expr_context::get_frame_cfa): Remove
method.
* dwarf2/loc.c (dwarf_expr_context::get_frame_cfa): Remove
method.
gdb/dwarf2/expr.c
gdb/dwarf2/expr.h
gdb/dwarf2/frame.c
gdb/dwarf2/loc.c