Lines Matching defs:psymtab

619   partial_symtab *psymtab = entry->per_cu.v.psymtab;
624 + psymtab->globals_offset),
625 psymtab->n_global_syms, info->cu_index,
630 + psymtab->statics_offset),
631 psymtab->n_static_syms, info->cu_index,
646 if they appeared in this psymtab. */
649 recursively_count_psymbols (partial_symtab *psymtab,
652 for (int i = 0; i < psymtab->number_of_dependencies; ++i)
653 if (psymtab->dependencies[i]->user != NULL)
654 recursively_count_psymbols (psymtab->dependencies[i],
657 psyms_seen += psymtab->n_global_syms;
658 psyms_seen += psymtab->n_static_syms;
662 if they appeared in this psymtab. */
666 partial_symtab *psymtab,
673 for (i = 0; i < psymtab->number_of_dependencies; ++i)
674 if (psymtab->dependencies[i]->user != NULL)
676 psymtab->dependencies[i],
682 + psymtab->globals_offset),
683 psymtab->n_global_syms, cu_index,
688 + psymtab->statics_offset),
689 psymtab->n_static_syms, cu_index,
903 as if they appeared in this psymtab. */
906 partial_symtab *psymtab,
910 for (int i = 0; i < psymtab->number_of_dependencies; ++i)
911 if (psymtab->dependencies[i]->user != NULL)
913 (objfile, psymtab->dependencies[i], psyms_seen, cu_index);
917 + psymtab->globals_offset),
918 psymtab->n_global_syms, cu_index, false, unit_kind::cu);
921 + psymtab->statics_offset),
922 psymtab->n_static_syms, cu_index, true, unit_kind::cu);
1273 partial_symtab *psymtab = entry->per_cu.v.psymtab;
1277 + psymtab->globals_offset),
1278 psymtab->n_global_syms, info->cu_index, false,
1282 + psymtab->statics_offset),
1283 psymtab->n_static_syms, info->cu_index, true,
1359 partial_symtab *psymtab = per_cu->v.psymtab;
1361 if (psymtab != NULL && psymtab->user == NULL)
1362 recursively_count_psymbols (psymtab, psyms_count);
1445 /* While we're scanning CU's create a table that maps a psymtab pointer
1461 partial_symtab *psymtab = per_cu->v.psymtab;
1463 if (psymtab != NULL)
1465 if (psymtab->user == NULL)
1466 recursively_write_psymbols (objfile, psymtab, &symtab,
1469 const auto insertpair = cu_index_htab.emplace (psymtab, i);
1542 partial_symtab *psymtab = per_cu->v.psymtab;
1547 if (psymtab == NULL)
1550 if (psymtab->user == NULL)
1551 nametable.recursively_write_psymbols (objfile, psymtab, psyms_seen, i);