Home
last modified time | relevance | path

Searched refs:ctf_string (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dbtfout.cc841 ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head; in output_btf_strs() local
843 while (ctf_string) in output_btf_strs()
845 dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_string"); in output_btf_strs()
846 ctf_string = ctf_string->cts_next; in output_btf_strs()
849 ctf_string = ctfc->ctfc_aux_strtable.ctstab_head; in output_btf_strs()
850 while (ctf_string) in output_btf_strs()
852 dw2_asm_output_nstring (ctf_string->cts_str, -1, "btf_aux_string"); in output_btf_strs()
853 ctf_string = ctf_string->cts_next; in output_btf_strs()
H A Dctfc.cc261 ctf_string_t * ctf_string = ggc_cleared_alloc<ctf_string_t> (); in ctfc_strtable_append_str() local
263 ctf_string->cts_str = str; in ctfc_strtable_append_str()
264 ctf_string->cts_next = NULL; in ctfc_strtable_append_str()
267 str_table->ctstab_head = ctf_string; in ctfc_strtable_append_str()
271 str_table->ctstab_tail->cts_next = ctf_string; in ctfc_strtable_append_str()
273 str_table->ctstab_tail = ctf_string; in ctfc_strtable_append_str()
284 char * ctf_string; in ctfc_strtable_add_str() local
292 ctf_string = CONST_CAST (char *, str_table->ctstab_estr); in ctfc_strtable_add_str()
300 ctf_string = CONST_CAST (char *, ggc_strdup (name)); in ctfc_strtable_add_str()
302 ctfc_strtable_append_str (str_table, ctf_string); in ctfc_strtable_add_str()
[all …]
H A Dctfout.cc626 ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head; in output_ctf_strs() local
628 while (ctf_string) in output_ctf_strs()
630 dw2_asm_output_nstring (ctf_string->cts_str, -1, "ctf_string"); in output_ctf_strs()
631 ctf_string = ctf_string->cts_next; in output_ctf_strs()
H A Dctfc.h53 typedef struct GTY ((chain_next ("%h.cts_next"))) ctf_string struct
56 struct ctf_string * cts_next; /* A list node. */ argument