Home
last modified time | relevance | path

Searched refs:ctfc (Results 1 – 16 of 16) sorted by relevance

/dports/lang/gcc12-devel/gcc-12-20211205/gcc/
H A Dctfc.c67 return aux ? &(ctfc)->ctfc_aux_strtable : &(ctfc->ctfc_strtable); in ctfc_get_strtab()
325 ctf_add_string (ctfc, cuname, &(ctfc->ctfc_cuname_offset)); in ctf_add_cuname()
391 ctfc->ctfc_num_stypes++; in ctf_add_encoded()
411 ctfc->ctfc_num_stypes++; in ctf_add_reftype()
428 ctfc->ctfc_num_stypes++; in ctf_add_forward()
452 ctfc->ctfc_num_stypes++; in ctf_add_typedef()
487 ctfc->ctfc_num_stypes++; in ctf_add_slice()
539 ctfc->ctfc_num_stypes++; in ctf_add_array()
887 ctfc->ctfc_strlen++; in init_ctf_string_table()
947 if (ctfc) in ctfc_delete_container()
[all …]
H A Dctfout.c205 ctf_list_add_ctf_vars (ctfc, var); in ctf_preprocess_var()
278 ctf_preprocess (ctf_container_ref ctfc) in ctf_preprocess() argument
295 dvd_arg.dvd_arg_ctfc = ctfc; in ctf_preprocess()
321 dtd_arg.dtd_arg_ctfc = ctfc; in ctf_preprocess()
449 ctf_asm_preamble (ctfc); in output_ctf_header()
468 if (!ctfc_is_empty_container (ctfc)) in output_ctf_header()
471 == (ctfc->ctfc_num_types + ctfc->ctfc_num_stypes)); in output_ctf_header()
487 + ctfc_get_num_vlen_bytes (ctfc); in output_ctf_header()
529 var = ctfc->ctfc_gobjts_list[i]; in output_ctf_obj_info()
569 var = ctfc->ctfc_gobjts_list[i]; in output_ctf_objtidx()
[all …]
H A Ddwarf2ctf.c160 gen_ctf_void_type (ctf_container_ref ctfc) in gen_ctf_void_type() argument
178 gen_ctf_unknown_type (ctf_container_ref ctfc) in gen_ctf_unknown_type() argument
462 tid = gen_ctf_type (ctfc, tdef_type); in gen_ctf_typedef()
625 ctf_add_member_offset (ctfc, sou, in gen_ctf_sou_type()
808 if (ctf_dvd_lookup (ctfc, die)) in gen_ctf_variable()
816 ctfc->ctfc_num_global_objts += 1; in gen_ctf_variable()
835 ctfc->ctfc_num_global_funcs += 1; in gen_ctf_function()
852 if (ctf_type_exists (ctfc, die, &type_id)) in gen_ctf_type()
864 type_id = gen_ctf_typedef (ctfc, die); in gen_ctf_type()
896 type_id = gen_ctf_void_type (ctfc); in gen_ctf_type()
[all …]
H A Dbtfout.c518 btf_dtd_emit_preprocess_cb (ctfc, ctfc->ctfc_types_list[i]); in btf_emit_preprocess()
531 (ctfc); in btf_emit_preprocess()
536 btf_collect_datasec (ctfc); in btf_emit_preprocess()
791 if (!ctfc_is_empty_container (ctfc)) in output_btf_header()
803 + ctfc->ctfc_num_vlen_bytes; in output_btf_header()
808 + ctfc->ctfc_aux_strtable.ctstab_len; in output_btf_header()
824 output_btf_vars (ctf_container_ref ctfc) in output_btf_vars() argument
839 output_btf_strs (ctf_container_ref ctfc) in output_btf_strs() argument
867 btf_asm_sou_member (ctfc, dmd); in output_asm_btf_sou_fields()
966 btf_asm_type (ctfc, type); in output_asm_btf_type()
[all …]
H A Dctfc.h391 extern ctf_dtdef_ref ctf_dtd_lookup (const ctf_container_ref ctfc,
393 extern ctf_dvdef_ref ctf_dvd_lookup (const ctf_container_ref ctfc,
H A DMakefile.in1324 ctfc.o \
H A DChangeLog8072 * ctfc.h (enum ctf_dtu_d_union_enum): Remove redundant comma.
8522 * ctfc.c (ctfc_delete_container): Free hash table contents.
12761 * ctfc.h: Expose it here.
12765 * ctfc.c (ctf_lookup_tree_type): New function.
12766 * ctfc.h: Likewise.
12770 * ctfc.c (ctf_dtd_lookup): Function is no longer static.
12771 * ctfc.h: Analogous change.
19902 * Makefile.in: Add ctfc.*, ctfout.c and btfout.c files to
19906 * ctfc.c: Likewise.
19907 * ctfc.h: Likewise.
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/config/bpf/
H A Dcoreout.c169 ctf_container_ref ctfc = ctf_get_tu_ctfc (); in bpf_core_reloc_add() local
173 size_t strtab_len = ctfc_get_strtab_len (ctfc, CTF_STRTAB); in bpf_core_reloc_add()
174 ctf_add_string (ctfc, buf, &(bpfcr->bpfcr_astr_off), CTF_AUX_STRTAB); in bpf_core_reloc_add()
177 bpfcr->bpfcr_type = get_btf_id (ctf_lookup_tree_type (ctfc, type)); in bpf_core_reloc_add()
193 ctf_add_string (ctfc, section_name, &sec->name_offset, CTF_AUX_STRTAB); in bpf_core_reloc_add()
196 ctfc->ctfc_aux_strlen += strlen (section_name) + 1; in bpf_core_reloc_add()
209 bpf_core_get_sou_member_index (ctf_container_ref ctfc, const tree node) in bpf_core_get_sou_member_index() argument
221 ctf_dtdef_ref dtd = ctf_dtd_lookup (ctfc, die); in bpf_core_get_sou_member_index()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java106 Constructor[] ctfc = tfc.getConstructors(); in ProcDebuggerLocal() local
107 threadFactory = (ProcThreadFactory)ctfc[0].newInstance(this); in ProcDebuggerLocal()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java106 Constructor[] ctfc = tfc.getConstructors(); in ProcDebuggerLocal() local
107 threadFactory = (ProcThreadFactory)ctfc[0].newInstance(this); in ProcDebuggerLocal()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java106 Constructor[] ctfc = tfc.getConstructors(); in ProcDebuggerLocal() local
107 threadFactory = (ProcThreadFactory)ctfc[0].newInstance(this); in ProcDebuggerLocal()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java106 Constructor[] ctfc = tfc.getConstructors(); in ProcDebuggerLocal() local
107 threadFactory = (ProcThreadFactory)ctfc[0].newInstance(this); in ProcDebuggerLocal()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java106 Constructor[] ctfc = tfc.getConstructors(); in ProcDebuggerLocal() local
107 threadFactory = (ProcThreadFactory)ctfc[0].newInstance(this); in ProcDebuggerLocal()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java106 Constructor[] ctfc = tfc.getConstructors(); in ProcDebuggerLocal() local
107 threadFactory = (ProcThreadFactory)ctfc[0].newInstance(this); in ProcDebuggerLocal()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java106 Constructor[] ctfc = tfc.getConstructors(); in ProcDebuggerLocal() local
107 threadFactory = (ProcThreadFactory)ctfc[0].newInstance(this); in ProcDebuggerLocal()
/dports/lang/gcc12-devel/gcc-12-20211205/
H A DMD5SUMS5119 3fe5d78011b3878a960b8c88a8f93a22 gcc/ctfc.c
5120 1fafa802148e727575c1c9ce03369816 gcc/ctfc.h