Home
last modified time | relevance | path

Searched refs:bss_sec (Results 1 – 5 of 5) sorted by relevance

/toolchain/binutils/binutils-2.27/bfd/
Dnlm32-ppc.c443 asection *code_sec, *data_sec, *bss_sec; in nlm_powerpc_read_reloc() local
458 bss_sec = bfd_get_section_by_name (abfd, NLM_UNINITIALIZED_DATA_NAME); in nlm_powerpc_read_reloc()
474 sec = bss_sec; in nlm_powerpc_read_reloc()
735 asection *code_sec, *data_sec, *bss_sec; in nlm_powerpc_write_reloc() local
747 bss_sec = bfd_get_section_by_name (abfd, NLM_UNINITIALIZED_DATA_NAME); in nlm_powerpc_write_reloc()
762 else if (symsec == bss_sec) in nlm_powerpc_write_reloc()
Dnlmcode.h1313 asection *bss_sec; in nlm_compute_section_file_positions() local
1320 bss_sec = bfd_get_section_by_name (abfd, NLM_UNINITIALIZED_DATA_NAME); in nlm_compute_section_file_positions()
1321 if (bss_sec == NULL) in nlm_compute_section_file_positions()
1327 bss_sec = bfd_get_section_by_name (abfd, NLM_UNINITIALIZED_DATA_NAME); in nlm_compute_section_file_positions()
1482 sym->section = bss_sec; in nlm_compute_section_file_positions()
1484 sym->value = bss_sec->size + add; in nlm_compute_section_file_positions()
1486 add = BFD_ALIGN (add, 1 << bss_sec->alignment_power); in nlm_compute_section_file_positions()
1497 bss_sec->size += add; in nlm_compute_section_file_positions()
Dcoff64-rs6000.c730 asection *bss_sec = NULL; in xcoff64_write_object_contents() local
845 bss_sec = current; in xcoff64_write_object_contents()
939 if (bss_sec) in xcoff64_write_object_contents()
941 internal_a.bsize = bss_sec->size; in xcoff64_write_object_contents()
942 if (internal_a.bsize && bss_sec->vma < internal_a.data_start) in xcoff64_write_object_contents()
943 internal_a.data_start = bss_sec->vma; in xcoff64_write_object_contents()
987 if (bss_sec != NULL) in xcoff64_write_object_contents()
988 internal_a.o_snbss = bss_sec->target_index; in xcoff64_write_object_contents()
Dcoffcode.h3629 asection *bss_sec = NULL; in coff_write_object_contents() local
3847 bss_sec = current; in coff_write_object_contents()
4275 if (bss_sec) in coff_write_object_contents()
4277 internal_a.bsize = bss_sec->size; in coff_write_object_contents()
4278 if (internal_a.bsize && bss_sec->vma < internal_a.data_start) in coff_write_object_contents()
4279 internal_a.data_start = bss_sec->vma; in coff_write_object_contents()
4322 if (bss_sec != NULL) in coff_write_object_contents()
4323 internal_a.o_snbss = bss_sec->target_index; in coff_write_object_contents()
/toolchain/binutils/binutils-2.27/binutils/
Dnlmconv.c171 asection *text_sec, *bss_sec, *data_sec; in main() local
394 bss_sec = bfd_get_section_by_name (outbfd, NLM_UNINITIALIZED_DATA_NAME); in main()
395 if (bss_sec == NULL) in main()
397 bss_sec = bfd_make_section_with_flags (outbfd, in main()
400 if (bss_sec == NULL in main()
401 || ! bfd_set_section_alignment (outbfd, bss_sec, 1)) in main()
436 align = 1 << bss_sec->alignment_power; in main()
439 if (! bfd_set_section_vma (outbfd, bss_sec, vma)) in main()
505 sym->section = bss_sec; in main()
506 sym->value = bfd_get_section_size (bss_sec); in main()
[all …]