Home
last modified time | relevance | path

Searched refs:sectype (Results 1 – 9 of 9) sorted by relevance

/toolchain/binutils/binutils-2.25/gas/config/
Dobj-macho.c173 unsigned int sectype, secattr, secalign; in obj_mach_o_make_or_get_sect() local
189 sectype = xlat->macho_sectype; in obj_mach_o_make_or_get_sect()
192 if ((sectype == BFD_MACH_O_S_ZEROFILL in obj_mach_o_make_or_get_sect()
193 || sectype == BFD_MACH_O_S_GB_ZEROFILL) in obj_mach_o_make_or_get_sect()
194 && sectype != usectype) in obj_mach_o_make_or_get_sect()
198 sectype = usectype; in obj_mach_o_make_or_get_sect()
220 sectype = usectype; in obj_mach_o_make_or_get_sect()
222 sectype = BFD_MACH_O_S_REGULAR; in obj_mach_o_make_or_get_sect()
266 msect->flags = sectype | secattr; in obj_mach_o_make_or_get_sect()
268 if (sectype == BFD_MACH_O_S_ZEROFILL in obj_mach_o_make_or_get_sect()
[all …]
/toolchain/binutils/binutils-2.25/ld/
Dldgram.y48 static enum section_type sectype; variable
1065 sectype,
1113 NOLOAD { sectype = noload_section; }
1114 | DSECT { sectype = noalloc_section; }
1115 | COPY { sectype = noalloc_section; }
1116 | INFO { sectype = noalloc_section; }
1117 | OVERLAY { sectype = noalloc_section; }
1122 | /* EMPTY */ { sectype = normal_section; }
1123 | '(' ')' { sectype = normal_section; }
Dldlang.h158 enum section_type sectype; member
Dldlang.c2362 switch (output->sectype) in lang_add_section()
3645 switch (os->sectype) in map_input_to_output_sections()
5083 if (os->sectype == overlay_section) in lang_size_sections_1()
5329 if (output_section_statement->sectype != noalloc_section in lang_size_sections_1()
5330 && (output_section_statement->sectype != noload_section in lang_size_sections_1()
6210 enum section_type sectype, in lang_enter_output_section_statement() argument
6227 os->sectype = sectype; in lang_enter_output_section_statement()
6228 if (sectype != noload_section) in lang_enter_output_section_statement()
7206 if (os->sectype == noload_section in lang_record_phdrs()
7475 l->os->sectype = normal_section; in lang_leave_overlay()
DChangeLog-91971485 sectype field.
1487 prototype to sectype.
1489 (sectype): New static variable.
1490 (opt_at): Use sectype rather than typebits.
1491 (type): Set sectype rather than typebits.
1495 * ldlang.c (lang_output_section_statement_lookup): Set sectype
1497 (wild_doit): Check sectype rather than loadable.
1500 sectype. Set sectype field rather than loadable field. Set flags
1501 field based on sectype.
DChangeLog-2007728 os->sectype rather than by looking for overlapping vmas.
DChangeLog-20101247 Use os->sectype to select sec flags for lang_data_statement.
/toolchain/binutils/binutils-2.25/gas/
Dread.c2935 char *sectype; in s_mri_sect()
2939 sectype = input_line_pointer; in s_mri_sect()
2941 if (*sectype == '\0') in s_mri_sect()
2943 else if (strcasecmp (sectype, "text") == 0) in s_mri_sect()
2945 else if (strcasecmp (sectype, "data") == 0) in s_mri_sect()
2947 else if (strcasecmp (sectype, "romdata") == 0) in s_mri_sect()
2950 as_warn (_("unrecognized section type `%s'"), sectype); in s_mri_sect()
/toolchain/binutils/binutils-2.25/binutils/
Dieee.c1195 bfd_vma sectype, secindx, offset, map; in parse_ieee_bb() local
1198 if (! ieee_read_number (info, pp, &sectype) in parse_ieee_bb()