summaryrefslogtreecommitdiff
path: root/gdb/stap-probe.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-11-22 21:45:53 -0700
committerTom Tromey <tom@tromey.com>2017-12-30 17:05:37 -0700
commite9d9f57e11db6427db347bc5b9b100071355e63f (patch)
treeb431b37b9a20e1a406b30be36aee0f36489ef5ec /gdb/stap-probe.h
parenta594729cfb10457e0046359d2dde0c28b4185449 (diff)
downloadbinutils-gdb-e9d9f57e11db6427db347bc5b9b100071355e63f.tar.gz
C++-ify parser_state
This mildly C++-ifies parser_state and stap_parse_info -- just enough to remove some cleanups. This version includes the changes implemented by Simon. Regression tested by the buildbot. gdb/ChangeLog 2017-12-30 Tom Tromey <tom@tromey.com> Simon Marchi <simon.marchi@ericsson.com> * stap-probe.h (struct stap_parse_info): Add constructor, destructor. * stap-probe.c (stap_parse_argument): Update. * rust-exp.y (rust_lex_tests): Update. * parser-defs.h (struct parser_state): Add constructor, destructor, release method. <expout>: Change type to expression_up. (null_post_parser): Change type. (initialize_expout, reallocate_expout): Remove. * parse.c (parser_state::parser_state): Rename from initialize_expout. (parser_state::release): Rename from reallocate_expout. (write_exp_elt, parse_exp_in_context_1, increase_expout_size): Update. (null_post_parser): Change type of "exp". * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update. * ada-lang.c (resolve, resolve_subexp) (replace_operator_with_call): Change type of "expp". * language.h (struct language_defn) <la_post_parser>: Change type of "expp".
Diffstat (limited to 'gdb/stap-probe.h')
-rw-r--r--gdb/stap-probe.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/gdb/stap-probe.h b/gdb/stap-probe.h
index c3327e6999e..5e88ff0d8af 100644
--- a/gdb/stap-probe.h
+++ b/gdb/stap-probe.h
@@ -28,6 +28,20 @@
struct stap_parse_info
{
+ stap_parse_info (const char *arg_, struct type *arg_type_,
+ size_t initial_size, const struct language_defn *lang,
+ struct gdbarch *gdbarch)
+ : arg (arg_),
+ pstate (initial_size, lang, gdbarch),
+ saved_arg (arg_),
+ arg_type (arg_type_),
+ gdbarch (gdbarch),
+ inside_paren_p (0)
+ {
+ }
+
+ DISABLE_COPY_AND_ASSIGN (stap_parse_info);
+
/* The probe's argument in a string format. */
const char *arg;