1 /* Generic static probe support for GDB.
3 Copyright (C) 2012-2017 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "cli/cli-cmds.h"
24 #include "cli/cli-utils.h"
27 #include "progspace.h"
28 #include "filenames.h"
30 #include "gdb_regex.h"
32 #include "arch-utils.h"
39 #include "common/gdb_optional.h"
41 /* A helper for parse_probes that decodes a probe specification in
42 SEARCH_PSPACE. It appends matching SALs to RESULT. */
45 parse_probes_in_pspace (const struct probe_ops *probe_ops,
46 struct program_space *search_pspace,
47 const char *objfile_namestr,
50 std::vector<symtab_and_line> *result)
52 struct objfile *objfile;
54 ALL_PSPACE_OBJFILES (search_pspace, objfile)
56 if (!objfile->sf || !objfile->sf->sym_probe_fns)
60 && FILENAME_CMP (objfile_name (objfile), objfile_namestr) != 0
61 && FILENAME_CMP (lbasename (objfile_name (objfile)),
62 objfile_namestr) != 0)
65 const std::vector<probe *> &probes
66 = objfile->sf->sym_probe_fns->sym_get_probes (objfile);
68 for (struct probe *probe : probes)
70 if (probe_ops != &probe_ops_any && probe->pops != probe_ops)
73 if (provider && strcmp (probe->provider, provider) != 0)
76 if (strcmp (probe->name, name) != 0)
80 sal.pc = get_probe_address (probe, objfile);
82 sal.section = find_pc_overlay (sal.pc);
83 sal.pspace = search_pspace;
85 sal.objfile = objfile;
87 result->push_back (std::move (sal));
92 /* See definition in probe.h. */
94 std::vector<symtab_and_line>
95 parse_probes (const struct event_location *location,
96 struct program_space *search_pspace,
97 struct linespec_result *canonical)
100 char *objfile_namestr = NULL, *provider = NULL, *name, *p;
101 struct cleanup *cleanup;
102 const struct probe_ops *probe_ops;
103 const char *arg_start, *cs;
105 gdb_assert (event_location_type (location) == PROBE_LOCATION);
106 arg_start = get_probe_location (location);
109 probe_ops = probe_linespec_to_ops (&cs);
110 if (probe_ops == NULL)
111 error (_("'%s' is not a probe linespec"), arg_start);
114 arg = skip_spaces (arg);
116 error (_("argument to `%s' missing"), arg_start);
118 arg_end = skip_to_space (arg);
120 /* We make a copy here so we can write over parts with impunity. */
121 arg = savestring (arg, arg_end - arg);
122 cleanup = make_cleanup (xfree, arg);
124 /* Extract each word from the argument, separated by ":"s. */
125 p = strchr (arg, ':');
128 /* This is `-p name'. */
136 p = strchr (hold, ':');
139 /* This is `-p provider:name'. */
145 /* This is `-p objfile:provider:name'. */
147 objfile_namestr = arg;
154 error (_("no probe name specified"));
155 if (provider && *provider == '\0')
156 error (_("invalid provider name"));
157 if (objfile_namestr && *objfile_namestr == '\0')
158 error (_("invalid objfile name"));
160 std::vector<symtab_and_line> result;
161 if (search_pspace != NULL)
163 parse_probes_in_pspace (probe_ops, search_pspace, objfile_namestr,
164 provider, name, &result);
168 struct program_space *pspace;
171 parse_probes_in_pspace (probe_ops, pspace, objfile_namestr,
172 provider, name, &result);
177 throw_error (NOT_FOUND_ERROR,
178 _("No probe matching objfile=`%s', provider=`%s', name=`%s'"),
179 objfile_namestr ? objfile_namestr : _("<any>"),
180 provider ? provider : _("<any>"),
188 canon = savestring (arg_start, arg_end - arg_start);
189 make_cleanup (xfree, canon);
190 canonical->special_display = 1;
191 canonical->pre_expanded = 1;
192 canonical->location = new_probe_location (canon);
195 do_cleanups (cleanup);
200 /* See definition in probe.h. */
203 find_probes_in_objfile (struct objfile *objfile, const char *provider,
206 VEC (probe_p) *result = NULL;
208 if (!objfile->sf || !objfile->sf->sym_probe_fns)
211 const std::vector<probe *> &probes
212 = objfile->sf->sym_probe_fns->sym_get_probes (objfile);
213 for (struct probe *probe : probes)
215 if (strcmp (probe->provider, provider) != 0)
218 if (strcmp (probe->name, name) != 0)
221 VEC_safe_push (probe_p, result, probe);
227 /* See definition in probe.h. */
230 find_probe_by_pc (CORE_ADDR pc)
232 struct objfile *objfile;
233 struct bound_probe result;
235 result.objfile = NULL;
238 ALL_OBJFILES (objfile)
240 if (!objfile->sf || !objfile->sf->sym_probe_fns
241 || objfile->sect_index_text == -1)
244 /* If this proves too inefficient, we can replace with a hash. */
245 const std::vector<probe *> &probes
246 = objfile->sf->sym_probe_fns->sym_get_probes (objfile);
247 for (struct probe *probe : probes)
248 if (get_probe_address (probe, objfile) == pc)
250 result.objfile = objfile;
251 result.probe = probe;
261 /* Make a vector of probes matching OBJNAME, PROVIDER, and PROBE_NAME.
262 If POPS is not NULL, only probes of this certain probe_ops will match.
263 Each argument is a regexp, or NULL, which matches anything. */
265 static std::vector<bound_probe>
266 collect_probes (const std::string &objname, const std::string &provider,
267 const std::string &probe_name, const struct probe_ops *pops)
269 struct objfile *objfile;
270 std::vector<bound_probe> result;
271 gdb::optional<compiled_regex> obj_pat, prov_pat, probe_pat;
273 if (!provider.empty ())
274 prov_pat.emplace (provider.c_str (), REG_NOSUB,
275 _("Invalid provider regexp"));
276 if (!probe_name.empty ())
277 probe_pat.emplace (probe_name.c_str (), REG_NOSUB,
278 _("Invalid probe regexp"));
279 if (!objname.empty ())
280 obj_pat.emplace (objname.c_str (), REG_NOSUB,
281 _("Invalid object file regexp"));
283 ALL_OBJFILES (objfile)
285 if (! objfile->sf || ! objfile->sf->sym_probe_fns)
290 if (obj_pat->exec (objfile_name (objfile), 0, NULL, 0) != 0)
294 const std::vector<probe *> &probes
295 = objfile->sf->sym_probe_fns->sym_get_probes (objfile);
297 for (struct probe *probe : probes)
299 if (pops != NULL && probe->pops != pops)
303 && prov_pat->exec (probe->provider, 0, NULL, 0) != 0)
307 && probe_pat->exec (probe->name, 0, NULL, 0) != 0)
310 result.emplace_back (probe, objfile);
317 /* A qsort comparison function for bound_probe_s objects. */
320 compare_probes (const bound_probe &a, const bound_probe &b)
324 v = strcmp (a.probe->provider, b.probe->provider);
328 v = strcmp (a.probe->name, b.probe->name);
332 if (a.probe->address != b.probe->address)
333 return a.probe->address < b.probe->address;
335 return strcmp (objfile_name (a.objfile), objfile_name (b.objfile)) < 0;
338 /* Helper function that generate entries in the ui_out table being
339 crafted by `info_probes_for_ops'. */
342 gen_ui_out_table_header_info (const std::vector<bound_probe> &probes,
343 const struct probe_ops *p)
345 /* `headings' refers to the names of the columns when printing `info
347 VEC (info_probe_column_s) *headings = NULL;
349 info_probe_column_s *column;
350 size_t headings_size;
353 gdb_assert (p != NULL);
355 if (p->gen_info_probes_table_header == NULL
356 && p->gen_info_probes_table_values == NULL)
359 gdb_assert (p->gen_info_probes_table_header != NULL
360 && p->gen_info_probes_table_values != NULL);
362 c = make_cleanup (VEC_cleanup (info_probe_column_s), &headings);
363 p->gen_info_probes_table_header (&headings);
365 headings_size = VEC_length (info_probe_column_s, headings);
368 VEC_iterate (info_probe_column_s, headings, ix, column);
371 size_t size_max = strlen (column->print_name);
373 for (const bound_probe &probe : probes)
375 /* `probe_fields' refers to the values of each new field that this
376 probe will display. */
377 VEC (const_char_ptr) *probe_fields = NULL;
382 if (probe.probe->pops != p)
385 c2 = make_cleanup (VEC_cleanup (const_char_ptr), &probe_fields);
386 p->gen_info_probes_table_values (probe.probe, &probe_fields);
388 gdb_assert (VEC_length (const_char_ptr, probe_fields)
391 for (kx = 0; VEC_iterate (const_char_ptr, probe_fields, kx, val);
394 /* It is valid to have a NULL value here, which means that the
395 backend does not have something to write and this particular
396 field should be skipped. */
400 size_max = std::max (strlen (val), size_max);
405 current_uiout->table_header (size_max, ui_left,
406 column->field_name, column->print_name);
412 /* Helper function to print not-applicable strings for all the extra
413 columns defined in a probe_ops. */
416 print_ui_out_not_applicables (const struct probe_ops *pops)
419 VEC (info_probe_column_s) *headings = NULL;
420 info_probe_column_s *column;
423 if (pops->gen_info_probes_table_header == NULL)
426 c = make_cleanup (VEC_cleanup (info_probe_column_s), &headings);
427 pops->gen_info_probes_table_header (&headings);
430 VEC_iterate (info_probe_column_s, headings, ix, column);
432 current_uiout->field_string (column->field_name, _("n/a"));
437 /* Helper function to print extra information about a probe and an objfile
438 represented by PROBE. */
441 print_ui_out_info (struct probe *probe)
445 /* `values' refers to the actual values of each new field in the output
446 of `info probe'. `headings' refers to the names of each new field. */
447 VEC (const_char_ptr) *values = NULL;
448 VEC (info_probe_column_s) *headings = NULL;
449 info_probe_column_s *column;
452 gdb_assert (probe != NULL);
453 gdb_assert (probe->pops != NULL);
455 if (probe->pops->gen_info_probes_table_header == NULL
456 && probe->pops->gen_info_probes_table_values == NULL)
459 gdb_assert (probe->pops->gen_info_probes_table_header != NULL
460 && probe->pops->gen_info_probes_table_values != NULL);
462 c = make_cleanup (VEC_cleanup (info_probe_column_s), &headings);
463 make_cleanup (VEC_cleanup (const_char_ptr), &values);
465 probe->pops->gen_info_probes_table_header (&headings);
466 probe->pops->gen_info_probes_table_values (probe, &values);
468 gdb_assert (VEC_length (info_probe_column_s, headings)
469 == VEC_length (const_char_ptr, values));
472 VEC_iterate (info_probe_column_s, headings, ix, column);
475 const char *val = VEC_index (const_char_ptr, values, j++);
478 current_uiout->field_skip (column->field_name);
480 current_uiout->field_string (column->field_name, val);
486 /* Helper function that returns the number of extra fields which POPS will
490 get_number_extra_fields (const struct probe_ops *pops)
492 VEC (info_probe_column_s) *headings = NULL;
496 if (pops->gen_info_probes_table_header == NULL)
499 c = make_cleanup (VEC_cleanup (info_probe_column_s), &headings);
500 pops->gen_info_probes_table_header (&headings);
502 n = VEC_length (info_probe_column_s, headings);
509 /* Helper function that returns 1 if there is a probe in PROBES
510 featuring the given POPS. It returns 0 otherwise. */
513 exists_probe_with_pops (const std::vector<bound_probe> &probes,
514 const struct probe_ops *pops)
516 struct bound_probe *probe;
519 for (const bound_probe &probe : probes)
520 if (probe.probe->pops == pops)
526 /* Helper function that parses a probe linespec of the form [PROVIDER
527 [PROBE [OBJNAME]]] from the provided string STR. */
530 parse_probe_linespec (const char *str, std::string *provider,
531 std::string *probe_name, std::string *objname)
533 *probe_name = *objname = "";
535 *provider = extract_arg (&str);
536 if (!provider->empty ())
538 *probe_name = extract_arg (&str);
539 if (!probe_name->empty ())
540 *objname = extract_arg (&str);
544 /* See comment in probe.h. */
547 info_probes_for_ops (const char *arg, int from_tty,
548 const struct probe_ops *pops)
550 std::string provider, probe_name, objname;
551 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
553 int ui_out_extra_fields = 0;
555 size_t size_name = strlen ("Name");
556 size_t size_objname = strlen ("Object");
557 size_t size_provider = strlen ("Provider");
558 size_t size_type = strlen ("Type");
559 struct gdbarch *gdbarch = get_current_arch ();
561 parse_probe_linespec (arg, &provider, &probe_name, &objname);
563 std::vector<bound_probe> probes
564 = collect_probes (objname, provider, probe_name, pops);
568 /* If the probe_ops is NULL, it means the user has requested a "simple"
569 `info probes', i.e., she wants to print all information about all
570 probes. For that, we have to identify how many extra fields we will
571 need to add in the ui_out table.
573 To do that, we iterate over all probe_ops, querying each one about
574 its extra fields, and incrementing `ui_out_extra_fields' to reflect
575 that number. But note that we ignore the probe_ops for which no probes
576 are defined with the given search criteria. */
578 for (const probe_ops *po : all_probe_ops)
579 if (exists_probe_with_pops (probes, po))
580 ui_out_extra_fields += get_number_extra_fields (po);
583 ui_out_extra_fields = get_number_extra_fields (pops);
586 ui_out_emit_table table_emitter (current_uiout,
587 5 + ui_out_extra_fields,
588 probes.size (), "StaticProbes");
590 std::sort (probes.begin (), probes.end (), compare_probes);
592 /* What's the size of an address in our architecture? */
593 size_addr = gdbarch_addr_bit (gdbarch) == 64 ? 18 : 10;
595 /* Determining the maximum size of each field (`type', `provider',
596 `name' and `objname'). */
597 for (const bound_probe &probe : probes)
599 const char *probe_type = probe.probe->pops->type_name (probe.probe);
601 size_type = std::max (strlen (probe_type), size_type);
602 size_name = std::max (strlen (probe.probe->name), size_name);
603 size_provider = std::max (strlen (probe.probe->provider), size_provider);
604 size_objname = std::max (strlen (objfile_name (probe.objfile)),
608 current_uiout->table_header (size_type, ui_left, "type", _("Type"));
609 current_uiout->table_header (size_provider, ui_left, "provider",
611 current_uiout->table_header (size_name, ui_left, "name", _("Name"));
612 current_uiout->table_header (size_addr, ui_left, "addr", _("Where"));
616 /* We have to generate the table header for each new probe type
617 that we will print. Note that this excludes probe types not
618 having any defined probe with the search criteria. */
619 for (const probe_ops *po : all_probe_ops)
620 if (exists_probe_with_pops (probes, po))
621 gen_ui_out_table_header_info (probes, po);
624 gen_ui_out_table_header_info (probes, pops);
626 current_uiout->table_header (size_objname, ui_left, "object", _("Object"));
627 current_uiout->table_body ();
629 for (const bound_probe &probe : probes)
631 const char *probe_type = probe.probe->pops->type_name (probe.probe);
633 ui_out_emit_tuple tuple_emitter (current_uiout, "probe");
635 current_uiout->field_string ("type",probe_type);
636 current_uiout->field_string ("provider", probe.probe->provider);
637 current_uiout->field_string ("name", probe.probe->name);
638 current_uiout->field_core_addr ("addr", probe.probe->arch,
639 get_probe_address (probe.probe,
644 for (const probe_ops *po : all_probe_ops)
645 if (probe.probe->pops == po)
646 print_ui_out_info (probe.probe);
647 else if (exists_probe_with_pops (probes, po))
648 print_ui_out_not_applicables (po);
651 print_ui_out_info (probe.probe);
653 current_uiout->field_string ("object",
654 objfile_name (probe.objfile));
655 current_uiout->text ("\n");
658 any_found = !probes.empty ();
660 do_cleanups (cleanup);
663 current_uiout->message (_("No probes matched.\n"));
666 /* Implementation of the `info probes' command. */
669 info_probes_command (char *arg, int from_tty)
671 info_probes_for_ops (arg, from_tty, NULL);
674 /* Implementation of the `enable probes' command. */
677 enable_probes_command (const char *arg, int from_tty)
679 std::string provider, probe_name, objname;
680 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
682 parse_probe_linespec ((const char *) arg, &provider, &probe_name, &objname);
684 std::vector<bound_probe> probes
685 = collect_probes (objname, provider, probe_name, NULL);
688 current_uiout->message (_("No probes matched.\n"));
689 do_cleanups (cleanup);
693 /* Enable the selected probes, provided their backends support the
694 notion of enabling a probe. */
695 for (const bound_probe &probe: probes)
697 const struct probe_ops *pops = probe.probe->pops;
699 if (pops->enable_probe != NULL)
701 pops->enable_probe (probe.probe);
702 current_uiout->message (_("Probe %s:%s enabled.\n"),
703 probe.probe->provider, probe.probe->name);
706 current_uiout->message (_("Probe %s:%s cannot be enabled.\n"),
707 probe.probe->provider, probe.probe->name);
710 do_cleanups (cleanup);
713 /* Implementation of the `disable probes' command. */
716 disable_probes_command (const char *arg, int from_tty)
718 std::string provider, probe_name, objname;
719 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
721 parse_probe_linespec ((const char *) arg, &provider, &probe_name, &objname);
723 std::vector<bound_probe> probes
724 = collect_probes (objname, provider, probe_name, NULL /* pops */);
727 current_uiout->message (_("No probes matched.\n"));
728 do_cleanups (cleanup);
732 /* Disable the selected probes, provided their backends support the
733 notion of enabling a probe. */
734 for (const bound_probe &probe : probes)
736 const struct probe_ops *pops = probe.probe->pops;
738 if (pops->disable_probe != NULL)
740 pops->disable_probe (probe.probe);
741 current_uiout->message (_("Probe %s:%s disabled.\n"),
742 probe.probe->provider, probe.probe->name);
745 current_uiout->message (_("Probe %s:%s cannot be disabled.\n"),
746 probe.probe->provider, probe.probe->name);
749 do_cleanups (cleanup);
752 /* See comments in probe.h. */
755 get_probe_address (struct probe *probe, struct objfile *objfile)
757 return probe->pops->get_probe_address (probe, objfile);
760 /* See comments in probe.h. */
763 get_probe_argument_count (struct probe *probe, struct frame_info *frame)
765 return probe->pops->get_probe_argument_count (probe, frame);
768 /* See comments in probe.h. */
771 can_evaluate_probe_arguments (struct probe *probe)
773 return probe->pops->can_evaluate_probe_arguments (probe);
776 /* See comments in probe.h. */
779 evaluate_probe_argument (struct probe *probe, unsigned n,
780 struct frame_info *frame)
782 return probe->pops->evaluate_probe_argument (probe, n, frame);
785 /* See comments in probe.h. */
788 probe_safe_evaluate_at_pc (struct frame_info *frame, unsigned n)
790 struct bound_probe probe;
793 probe = find_probe_by_pc (get_frame_pc (frame));
797 n_args = get_probe_argument_count (probe.probe, frame);
801 return evaluate_probe_argument (probe.probe, n, frame);
804 /* See comment in probe.h. */
806 const struct probe_ops *
807 probe_linespec_to_ops (const char **linespecp)
809 for (const probe_ops *ops : all_probe_ops)
810 if (ops->is_linespec (linespecp))
816 /* See comment in probe.h. */
819 probe_is_linespec_by_keyword (const char **linespecp, const char *const *keywords)
821 const char *s = *linespecp;
822 const char *const *csp;
824 for (csp = keywords; *csp; csp++)
826 const char *keyword = *csp;
827 size_t len = strlen (keyword);
829 if (strncmp (s, keyword, len) == 0 && isspace (s[len]))
831 *linespecp += len + 1;
839 /* Implementation of `is_linespec' method for `struct probe_ops'. */
842 probe_any_is_linespec (const char **linespecp)
844 static const char *const keywords[] = { "-p", "-probe", NULL };
846 return probe_is_linespec_by_keyword (linespecp, keywords);
849 /* Dummy method used for `probe_ops_any'. */
852 probe_any_get_probes (std::vector<probe *> *probesp, struct objfile *objfile)
854 /* No probes can be provided by this dummy backend. */
857 /* Operations associated with a generic probe. */
859 const struct probe_ops probe_ops_any =
861 probe_any_is_linespec,
862 probe_any_get_probes,
865 /* See comments in probe.h. */
867 struct cmd_list_element **
868 info_probes_cmdlist_get (void)
870 static struct cmd_list_element *info_probes_cmdlist;
872 if (info_probes_cmdlist == NULL)
873 add_prefix_cmd ("probes", class_info, info_probes_command,
875 Show available static probes.\n\
876 Usage: info probes [all|TYPE [ARGS]]\n\
877 TYPE specifies the type of the probe, and can be one of the following:\n\
879 If you specify TYPE, there may be additional arguments needed by the\n\
881 If you do not specify any argument, or specify `all', then the command\n\
882 will show information about all types of probes."),
883 &info_probes_cmdlist, "info probes ",
884 0/*allow-unknown*/, &infolist);
886 return &info_probes_cmdlist;
891 /* This is called to compute the value of one of the $_probe_arg*
892 convenience variables. */
894 static struct value *
895 compute_probe_arg (struct gdbarch *arch, struct internalvar *ivar,
898 struct frame_info *frame = get_selected_frame (_("No frame selected"));
899 CORE_ADDR pc = get_frame_pc (frame);
900 int sel = (int) (uintptr_t) data;
901 struct bound_probe pc_probe;
902 const struct sym_probe_fns *pc_probe_fns;
905 /* SEL == -1 means "_probe_argc". */
906 gdb_assert (sel >= -1);
908 pc_probe = find_probe_by_pc (pc);
909 if (pc_probe.probe == NULL)
910 error (_("No probe at PC %s"), core_addr_to_string (pc));
912 n_args = get_probe_argument_count (pc_probe.probe, frame);
914 return value_from_longest (builtin_type (arch)->builtin_int, n_args);
917 error (_("Invalid probe argument %d -- probe has %u arguments available"),
920 return evaluate_probe_argument (pc_probe.probe, sel, frame);
923 /* This is called to compile one of the $_probe_arg* convenience
924 variables into an agent expression. */
927 compile_probe_arg (struct internalvar *ivar, struct agent_expr *expr,
928 struct axs_value *value, void *data)
930 CORE_ADDR pc = expr->scope;
931 int sel = (int) (uintptr_t) data;
932 struct bound_probe pc_probe;
933 const struct sym_probe_fns *pc_probe_fns;
935 struct frame_info *frame = get_selected_frame (NULL);
937 /* SEL == -1 means "_probe_argc". */
938 gdb_assert (sel >= -1);
940 pc_probe = find_probe_by_pc (pc);
941 if (pc_probe.probe == NULL)
942 error (_("No probe at PC %s"), core_addr_to_string (pc));
944 n_args = get_probe_argument_count (pc_probe.probe, frame);
948 value->kind = axs_rvalue;
949 value->type = builtin_type (expr->gdbarch)->builtin_int;
950 ax_const_l (expr, n_args);
954 gdb_assert (sel >= 0);
956 error (_("Invalid probe argument %d -- probe has %d arguments available"),
959 pc_probe.probe->pops->compile_to_ax (pc_probe.probe, expr, value, sel);
962 static const struct internalvar_funcs probe_funcs =
970 std::vector<const probe_ops *> all_probe_ops;
973 _initialize_probe (void)
975 all_probe_ops.push_back (&probe_ops_any);
977 create_internalvar_type_lazy ("_probe_argc", &probe_funcs,
978 (void *) (uintptr_t) -1);
979 create_internalvar_type_lazy ("_probe_arg0", &probe_funcs,
980 (void *) (uintptr_t) 0);
981 create_internalvar_type_lazy ("_probe_arg1", &probe_funcs,
982 (void *) (uintptr_t) 1);
983 create_internalvar_type_lazy ("_probe_arg2", &probe_funcs,
984 (void *) (uintptr_t) 2);
985 create_internalvar_type_lazy ("_probe_arg3", &probe_funcs,
986 (void *) (uintptr_t) 3);
987 create_internalvar_type_lazy ("_probe_arg4", &probe_funcs,
988 (void *) (uintptr_t) 4);
989 create_internalvar_type_lazy ("_probe_arg5", &probe_funcs,
990 (void *) (uintptr_t) 5);
991 create_internalvar_type_lazy ("_probe_arg6", &probe_funcs,
992 (void *) (uintptr_t) 6);
993 create_internalvar_type_lazy ("_probe_arg7", &probe_funcs,
994 (void *) (uintptr_t) 7);
995 create_internalvar_type_lazy ("_probe_arg8", &probe_funcs,
996 (void *) (uintptr_t) 8);
997 create_internalvar_type_lazy ("_probe_arg9", &probe_funcs,
998 (void *) (uintptr_t) 9);
999 create_internalvar_type_lazy ("_probe_arg10", &probe_funcs,
1000 (void *) (uintptr_t) 10);
1001 create_internalvar_type_lazy ("_probe_arg11", &probe_funcs,
1002 (void *) (uintptr_t) 11);
1004 add_cmd ("all", class_info, info_probes_command,
1006 Show information about all type of probes."),
1007 info_probes_cmdlist_get ());
1009 add_cmd ("probes", class_breakpoint, enable_probes_command, _("\
1011 Usage: enable probes [PROVIDER [NAME [OBJECT]]]\n\
1012 Each argument is a regular expression, used to select probes.\n\
1013 PROVIDER matches probe provider names.\n\
1014 NAME matches the probe names.\n\
1015 OBJECT matches the executable or shared library name.\n\
1016 If you do not specify any argument then the command will enable\n\
1017 all defined probes."),
1020 add_cmd ("probes", class_breakpoint, disable_probes_command, _("\
1022 Usage: disable probes [PROVIDER [NAME [OBJECT]]]\n\
1023 Each argument is a regular expression, used to select probes.\n\
1024 PROVIDER matches probe provider names.\n\
1025 NAME matches the probe names.\n\
1026 OBJECT matches the executable or shared library name.\n\
1027 If you do not specify any argument then the command will disable\n\
1028 all defined probes."),