Home | History | Annotate | Download | only in perf

Lines Matching refs:new_section

6818 Section *new_section(TCCState *s1, const char *name, int sh_type, int sh_flags)
6901 return new_section(s1, name, SHT_PROGBITS, SHF_ALLOC);
18364 sr = new_section(tcc_state, buf, SHT_REL, symtab->sh_flags);
18795 s1->got = new_section(s1, ".got", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
19016 symtab = new_section(s1, symtab_name, sh_type, sh_flags);
19018 strtab = new_section(s1, strtab_name, SHT_STRTAB, sh_flags);
19025 hash = new_section(s1, hash_name, SHT_HASH, hash_sh_flags);
19257 interp = new_section(s1, ".interp", SHT_PROGBITS, SHF_ALLOC);
19270 dynamic = new_section(s1, ".dynamic", SHT_DYNAMIC,
19276 s1->plt = new_section(s1, ".plt", SHT_PROGBITS,
19410 strsec = new_section(s1, ".shstrtab", SHT_STRTAB, 0);
19857 uint8_t new_section; /* true if section 's' was added */
19960 s = new_section(s1, sh_name, sh->sh_type, sh->sh_flags);
19965 sm_table[i].new_section = 1;
19999 if (!s || !sm_table[i].new_section)
20844 text_section = new_section(s, ".text", SHT_PROGBITS, SHF_ALLOC | SHF_EXECINSTR);
20845 data_section = new_section(s, ".data", SHT_PROGBITS, SHF_ALLOC | SHF_WRITE);
20846 bss_section = new_section(s, ".bss", SHT_NOBITS, SHF_ALLOC | SHF_WRITE);
21148 bounds_section = new_section(s, ".bounds",
21150 lbounds_section = new_section(s, ".lbounds",
21162 stab_section = new_section(s, ".stab", SHT_PROGBITS, 0);
21164 stabstr_section = new_section(s, ".stabstr", SHT_STRTAB, 0);