+2021-01-09 Tom Tromey <tom@tromey.com>
+
+ * tracepoint.h (class collection_list) <append_exp>: Take a
+ std::string.
+ * tracepoint.c (collection_list::append_exp): Take a std::string.
+ (encode_actions_1): Update.
+
2021-01-08 Tom Tromey <tromey@adacore.com>
* parse.c (parse_expression): Add void_context_p parameter. Use
return str_list;
}
-/* Add the printed expression EXP to *LIST. */
+/* Add the expression STR to M_COMPUTED. */
void
-collection_list::append_exp (struct expression *exp)
+collection_list::append_exp (std::string &&str)
{
- string_file tmp_stream;
-
- print_expression (exp, &tmp_stream);
-
- m_computed.push_back (std::move (tmp_stream.string ()));
+ m_computed.push_back (std::move (str));
}
void
{
unsigned long addr;
+ const char *exp_start = action_exp;
expression_up exp = parse_exp_1 (&action_exp, tloc->address,
block_for_pc (tloc->address),
1);
memrange_absolute, addr,
TYPE_LENGTH (exp->elts[1].type),
tloc->address);
- collect->append_exp (exp.get ());
+ collect->append_exp (std::string (exp_start,
+ action_exp));
break;
case OP_VAR_VALUE:
collect->add_ax_registers (aexpr.get ());
collect->add_aexpr (std::move (aexpr));
- collect->append_exp (exp.get ());
+ collect->append_exp (std::string (exp_start,
+ action_exp));
break;
} /* switch */
} /* do */
void add_wholly_collected (const char *print_name);
- void append_exp (struct expression *exp);
+ void append_exp (std::string &&exp);
/* Add AEXPR to the list, taking ownership. */
void add_aexpr (agent_expr_up aexpr);