Searched refs:sals (Results 1 - 25 of 30) sorted by relevance

12

/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dexpand-sals.exp18 set srcfile expand-sals.cc
19 if { [prepare_for_testing "failed to prepare" expand-sals $srcfile {debug c++}] } {
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dexpand-sals.exp18 set srcfile expand-sals.cc
19 if { [prepare_for_testing "failed to prepare" expand-sals $srcfile {debug c++}] } {
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dlinespec.h42 /* This is the location corresponding to the sals contained in this
49 std::vector<symtab_and_line> sals; member in struct:linespec_sals
77 /* The sals. The vector will be freed by the destructor. */
H A Dmacrocmd.c253 std::vector<symtab_and_line> sals
256 if (!sals.empty ())
257 ms = sal_macro_scope (sals[0]);
251 std::vector<symtab_and_line> sals local
H A Dbreak-catch-throw.c192 std::vector<symtab_and_line> sals;
201 sals = parse_probes (location.get (), filter_pspace, NULL);
215 sals = self->ops->decode_location (self, location.get (),
227 update_breakpoint_locations (self, filter_pspace, sals, {});
190 std::vector<symtab_and_line> sals; local
H A Dbreakpoint.c8737 gdb::array_view<const symtab_and_line> sals,
8764 gdb_assert (!sals.empty ());
8766 for (const auto &sal : sals)
8780 if (&sal == &sals[0])
8873 gdb::array_view<const symtab_and_line> sals,
8887 sals, std::move (location),
8938 create_breakpoint_sal (gdbarch, lsal.sals,
8987 trying to expand the list of sals to include all other
8993 lsal.sals = {sal};
9041 breakpoint_sals_to_pc (std::vector<symtab_and_line> &sals)
8728 init_breakpoint_sal(struct breakpoint *b, struct gdbarch *gdbarch, gdb::array_view<const symtab_and_line> sals, event_location_up &&location, gdb::unique_xmalloc_ptr<char> filter, gdb::unique_xmalloc_ptr<char> cond_string, gdb::unique_xmalloc_ptr<char> extra_string, enum bptype type, enum bpdisp disposition, int thread, int task, int ignore_count, const struct breakpoint_ops *ops, int from_tty, int enabled, int internal, unsigned flags, int display_canonical) argument
8864 create_breakpoint_sal(struct gdbarch *gdbarch, gdb::array_view<const symtab_and_line> sals, event_location_up &&location, gdb::unique_xmalloc_ptr<char> filter, gdb::unique_xmalloc_ptr<char> cond_string, gdb::unique_xmalloc_ptr<char> extra_string, enum bptype type, enum bpdisp disposition, int thread, int task, int ignore_count, const struct breakpoint_ops *ops, int from_tty, int enabled, int internal, unsigned flags, int display_canonical) argument
9047 check_fast_tracepoint_sals(struct gdbarch *gdbarch, gdb::array_view<const symtab_and_line> sals) argument
9163 std::vector<symtab_and_line> sals; local
11013 std::vector<symtab_and_line> sals local
11282 gdb::array_view<symtab_and_line> sals; local
12738 std::vector<symtab_and_line> sals = parse_probes (location, search_pspace, NULL); local
13039 std::vector<symtab_and_line> sals = decode_static_tracepoint_spec (&s); local
13476 update_breakpoint_locations(struct breakpoint *b, struct program_space *filter_pspace, gdb::array_view<const symtab_and_line> sals, gdb::array_view<const symtab_and_line> sals_end) argument
13606 std::vector<symtab_and_line> sals; local
13695 std::vector<symtab_and_line> sals = location_to_sals (b, b->location.get (), local
[all...]
H A Dlinespec.c1034 std::vector<symtab_and_line> *sals,
1038 sals->push_back (*sal);
1046 sals->size ());
1047 canonical = &self->canonical_names[sals->size () - 1];
1395 /* Given FILTERS, a list of canonical names, filter the sals in RESULT
1415 lsal.sals.push_back ((*result)[j]);
1418 if (!lsal.sals.empty ())
1437 lsal.sals = std::move (*result);
2225 std::vector<symtab_and_line> sals;
2226 add_sal_to_sals (self, &sals,
1033 add_sal_to_sals(struct linespec_state *self, std::vector<symtab_and_line> *sals, struct symtab_and_line *sal, const char *symname, int literal_canonical) argument
2224 std::vector<symtab_and_line> sals; local
2235 std::vector<symtab_and_line> sals; local
3301 std::vector<symtab_and_line> sals local
3320 std::vector<symtab_and_line> sals local
4121 std::vector<symtab_and_line> sals; local
[all...]
H A Dsource.c1454 gdb::array_view<symtab_and_line> sals;
1467 sals = curr_sal;
1473 sals = decoded_sals;
1480 for (const auto &sal : sals)
1541 if (annotation_level > 0 && sals.size () == 1)
1448 gdb::array_view<symtab_and_line> sals; local
H A Dstack.c2885 std::vector<symtab_and_line> sals
2888 gdb::def_vector<function_bounds> func_bounds (sals.size ());
2889 for (size_t i = 0; i < sals.size (); i++)
2891 if (sals[i].pspace != current_program_space)
2893 else if (sals[i].pc == 0
2894 || find_pc_partial_function (sals[i].pc, NULL,
2902 for (size_t i = 0; (i < sals.size () && !found); i++)
2882 std::vector<symtab_and_line> sals local
H A Dtracepoint.c2368 std::vector<symtab_and_line> sals local
2370 sal = sals[0];
2500 std::vector<symtab_and_line> sals local
2503 if (sals.empty ())
2510 resolve_sal_pc (&sals[0]);
2511 block = block_for_pc (sals[0].pc);
H A Dbreakpoint.h1254 gdb::array_view<const symtab_and_line> sals,
H A Dinfcmd.c1086 std::vector<symtab_and_line> sals
1088 if (sals.size () != 1)
1091 symtab_and_line &sal = sals[0];
1083 std::vector<symtab_and_line> sals local
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dlinespec.h42 /* This is the location corresponding to the sals contained in this
49 std::vector<symtab_and_line> sals; member in struct:linespec_sals
77 /* The sals. The vector will be freed by the destructor. */
H A Dbreak-catch-throw.c214 std::vector<symtab_and_line> sals;
222 sals = parse_probes (locspec.get (), filter_pspace, NULL);
233 sals = this->decode_location_spec (locspec.get (), filter_pspace);
244 update_breakpoint_locations (this, filter_pspace, sals, {});
212 std::vector<symtab_and_line> sals; local
H A Dmacrocmd.c252 std::vector<symtab_and_line> sals
255 if (!sals.empty ())
256 ms = sal_macro_scope (sals[0]);
250 std::vector<symtab_and_line> sals local
H A Dlinespec.c1059 std::vector<symtab_and_line> *sals,
1063 sals->push_back (*sal);
1071 sals->size ());
1072 canonical = &self->canonical_names[sals->size () - 1];
1342 /* Given FILTERS, a list of canonical names, filter the sals in RESULT
1362 lsal.sals.push_back ((*result)[j]);
1365 if (!lsal.sals.empty ())
1384 lsal.sals = std::move (*result);
2168 std::vector<symtab_and_line> sals;
2169 add_sal_to_sals (self, &sals,
1058 add_sal_to_sals(struct linespec_state *self, std::vector<symtab_and_line> *sals, struct symtab_and_line *sal, const char *symname, int literal_canonical) argument
2167 std::vector<symtab_and_line> sals; local
2178 std::vector<symtab_and_line> sals; local
3222 std::vector<symtab_and_line> sals local
3241 std::vector<symtab_and_line> sals local
4033 std::vector<symtab_and_line> sals; local
[all...]
H A Dbreakpoint.c8411 gdb::array_view<const symtab_and_line> sals,
8439 gdb_assert (!sals.empty ());
8472 else if (target_static_tracepoint_marker_at (sals[0].pc, &marker))
8483 for (const auto &sal : sals)
8538 gdb::array_view<const symtab_and_line> sals,
8552 sals,
8605 create_breakpoint_sal (gdbarch, lsal.sals,
8654 trying to expand the list of sals to include all other
8660 lsal.sals = {sal};
8708 breakpoint_sals_to_pc (std::vector<symtab_and_line> &sals)
8401 code_breakpoint(struct gdbarch *gdbarch_, enum bptype type_, gdb::array_view<const symtab_and_line> sals, location_spec_up &&locspec_, gdb::unique_xmalloc_ptr<char> filter_, gdb::unique_xmalloc_ptr<char> cond_string_, gdb::unique_xmalloc_ptr<char> extra_string_, enum bpdisp disposition_, int thread_, int task_, int ignore_count_, int from_tty, int enabled_, unsigned flags, int display_canonical_) argument
8529 create_breakpoint_sal(struct gdbarch *gdbarch, gdb::array_view<const symtab_and_line> sals, location_spec_up &&locspec, gdb::unique_xmalloc_ptr<char> filter, gdb::unique_xmalloc_ptr<char> cond_string, gdb::unique_xmalloc_ptr<char> extra_string, enum bptype type, enum bpdisp disposition, int thread, int task, int ignore_count, int from_tty, int enabled, int internal, unsigned flags, int display_canonical) argument
8714 check_fast_tracepoint_sals(struct gdbarch *gdbarch, gdb::array_view<const symtab_and_line> sals) argument
8893 std::vector<symtab_and_line> sals; local
10608 std::vector<symtab_and_line> sals local
10721 gdb::array_view<symtab_and_line> sals; local
12001 std::vector<symtab_and_line> sals local
12226 std::vector<symtab_and_line> sals = decode_static_tracepoint_spec (&s); local
12659 update_breakpoint_locations(code_breakpoint *b, struct program_space *filter_pspace, gdb::array_view<const symtab_and_line> sals, gdb::array_view<const symtab_and_line> sals_end) argument
12788 std::vector<symtab_and_line> sals; local
12874 std::vector<symtab_and_line> sals = location_spec_to_sals (locspec.get (), local
[all...]
H A Dsource.c1514 gdb::array_view<symtab_and_line> sals;
1527 sals = curr_sal;
1533 sals = decoded_sals;
1540 for (const auto &sal : sals)
1601 if (annotation_level > 0 && sals.size () == 1)
1508 gdb::array_view<symtab_and_line> sals; local
H A Dbreakpoint.h854 gdb::array_view<const symtab_and_line> sals,
1417 gdb::array_view<const symtab_and_line> sals,
H A Dstack.c2879 std::vector<symtab_and_line> sals
2882 gdb::def_vector<function_bounds> func_bounds (sals.size ());
2883 for (size_t i = 0; i < sals.size (); i++)
2885 if (sals[i].pspace != current_program_space)
2887 else if (sals[i].pc == 0
2888 || find_pc_partial_function (sals[i].pc, NULL,
2896 for (size_t i = 0; (i < sals.size () && !found); i++)
2876 std::vector<symtab_and_line> sals local
H A Dtracepoint.c2345 std::vector<symtab_and_line> sals local
2347 sal = sals[0];
2479 std::vector<symtab_and_line> sals local
2482 if (sals.empty ())
2489 resolve_sal_pc (&sals[0]);
2490 block = block_for_pc (sals[0].pc);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/cli/
H A Dcli-cmds.c70 static void ambiguous_line_spec (gdb::array_view<const symtab_and_line> sals,
959 std::vector<symtab_and_line> sals = decode_line_1 (location.get (),
963 filter_sals (sals);
964 if (sals.empty ())
969 if (sals.size () > 1)
971 ambiguous_line_spec (sals,
976 sal = sals[0];
1224 std::vector<symtab_and_line> sals;
1234 sals = decode_line_1 (location.get (), DECODE_LINE_LIST_MODE,
1236 filter_sals (sals);
954 std::vector<symtab_and_line> sals = decode_line_1 (location.get (), local
1219 std::vector<symtab_and_line> sals; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/cli/
H A Dcli-cmds.c71 static void ambiguous_line_spec (gdb::array_view<const symtab_and_line> sals,
997 std::vector<symtab_and_line> sals = decode_line_1 (locspec.get (),
1001 filter_sals (sals);
1002 if (sals.empty ())
1007 if (sals.size () > 1)
1009 ambiguous_line_spec (sals,
1014 sal = sals[0];
1254 std::vector<symtab_and_line> sals;
1273 sals = decode_line_1 (locspec.get (), DECODE_LINE_LIST_MODE,
1275 filter_sals (sals);
992 std::vector<symtab_and_line> sals = decode_line_1 (locspec.get (), local
1249 std::vector<symtab_and_line> sals; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/
H A Dpython.c868 gdb::array_view<symtab_and_line> sals;
874 sals = decoded_sals;
880 sals = def_sal;
890 if (!sals.empty ())
892 result.reset (PyTuple_New (sals.size ()));
895 for (size_t i = 0; i < sals.size (); ++i)
897 PyObject *obj = symtab_and_line_to_sal_object (sals[i]);
866 gdb::array_view<symtab_and_line> sals; local
/netbsd-current/external/gpl3/gdb/dist/gdb/python/
H A Dpython.c893 gdb::array_view<symtab_and_line> sals;
899 sals = decoded_sals;
905 sals = def_sal;
915 if (!sals.empty ())
917 result.reset (PyTuple_New (sals.size ()));
920 for (size_t i = 0; i < sals.size (); ++i)
922 PyObject *obj = symtab_and_line_to_sal_object (sals[i]);
891 gdb::array_view<symtab_and_line> sals; local

Completed in 504 milliseconds

12