aboutsummaryrefslogtreecommitdiff
path: root/gdb/stap-probe.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2020-12-15 18:35:13 -0700
committerTom Tromey <tom@tromey.com>2020-12-15 18:57:07 -0700
commitefd7ff149a42c865cac422e3bafdf386c91c5373 (patch)
tree1ad19dfafeaca30bc40c43adf55e826327ead802 /gdb/stap-probe.c
parent2adab65cc07f07a581d57b05dfbc100952fab748 (diff)
downloadgdb-efd7ff149a42c865cac422e3bafdf386c91c5373.zip
gdb-efd7ff149a42c865cac422e3bafdf386c91c5373.tar.gz
gdb-efd7ff149a42c865cac422e3bafdf386c91c5373.tar.bz2
Add expected type parameter to evaluate_expression
While working on the expression rewrite, I found a few spots that called the internal functions of the expression evaluator, just to pass in an expected type. This patch adds a parameter to evaluate_expression so that these functions can avoid this dependency. Regression tested on x86-64 Fedora 28. gdb/ChangeLog 2020-12-15 Tom Tromey <tom@tromey.com> * stap-probe.c (stap_probe::evaluate_argument): Use evaluate_expression. * dtrace-probe.c (dtrace_probe::evaluate_argument): Use evaluate_expression. * value.h (evaluate_expression): Add expect_type parameter. * objc-lang.c (print_object_command): Call evaluate_expression. * eval.c (evaluate_expression): Add expect_type parameter.
Diffstat (limited to 'gdb/stap-probe.c')
-rw-r--r--gdb/stap-probe.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/stap-probe.c b/gdb/stap-probe.c
index 9a70471..ffcded3 100644
--- a/gdb/stap-probe.c
+++ b/gdb/stap-probe.c
@@ -1389,12 +1389,10 @@ struct value *
stap_probe::evaluate_argument (unsigned n, struct frame_info *frame)
{
struct stap_probe_arg *arg;
- int pos = 0;
struct gdbarch *gdbarch = get_frame_arch (frame);
arg = this->get_arg_by_number (n, gdbarch);
- return evaluate_subexp_standard (arg->atype, arg->aexpr.get (), &pos,
- EVAL_NORMAL);
+ return evaluate_expression (arg->aexpr.get (), arg->atype);
}
/* Compile the probe's argument N (indexed from 0) to agent expression.