Lines Matching defs:pcs
117 A line table entry can have multiple PCs for a given source line.
119 from the line table PCS. Construct one line table entry object per
123 build_line_table_tuple_from_pcs (int line, const std::vector<CORE_ADDR> &pcs)
127 if (pcs.size () < 1)
130 gdbpy_ref<> tuple (PyTuple_New (pcs.size ()));
135 for (i = 0; i < pcs.size (); ++i)
137 CORE_ADDR pc = pcs[i];
159 std::vector<CORE_ADDR> pcs;
168 pcs = find_pcs_for_symtab_line (symtab, py_line, &best_entry);
175 return build_line_table_tuple_from_pcs (py_line, pcs);