From: Ian Lance Taylor Date: Wed, 10 Aug 1994 17:15:05 +0000 (+0000) Subject: * aoutx.h (adjust_z_magic): Make sure data section is padded to X-Git-Tag: gdb-4_18~13835 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1f99f606800e26b291c513f3704516b0ce29439;p=external%2Fbinutils.git * aoutx.h (adjust_z_magic): Make sure data section is padded to page boundary when the VMA is set by the calling program. From Eric Youngdale . --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ae2ebf4..9b60e1d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +Wed Aug 10 13:09:38 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) + + * aoutx.h (adjust_z_magic): Make sure data section is padded to + page boundary when the VMA is set by the calling program. From + Eric Youngdale . + Mon Aug 8 17:18:49 1994 Stan Shebs (shebs@andros.cygnus.com) Update to ns32k support, from Ian Dall (dall@hfrd.dsto.gov.au). diff --git a/bfd/aoutx.h b/bfd/aoutx.h index f350cb4..f634845 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -848,20 +848,34 @@ adjust_z_magic (abfd, execp) ? adata(abfd).exec_bytes_size : adata(abfd).zmagic_disk_block_size); if (! obj_textsec(abfd)->user_set_vma) - /* ?? Do we really need to check for relocs here? */ - obj_textsec(abfd)->vma = ((abfd->flags & HAS_RELOC) - ? 0 - : (ztih - ? (abdp->default_text_vma - + adata(abfd).exec_bytes_size) - : abdp->default_text_vma)); - /* Could take strange alignment of text section into account here? */ - + { + /* ?? Do we really need to check for relocs here? */ + obj_textsec(abfd)->vma = ((abfd->flags & HAS_RELOC) + ? 0 + : (ztih + ? (abdp->default_text_vma + + adata(abfd).exec_bytes_size) + : abdp->default_text_vma)); + text_pad = 0; + } + else + { + /* The .text section is being loaded at an unusual address. We + may need to pad it such that the .data section starts at a page + boundary. */ + if (ztih) + text_pad = ((obj_textsec (abfd)->filepos - obj_textsec (abfd)->vma) + & (adata (abfd).page_size - 1)); + else + text_pad = ((- obj_textsec (abfd)->vma) + & (adata (abfd).page_size - 1)); + } + /* Find start of data. */ if (ztih) { text_end = obj_textsec (abfd)->filepos + obj_textsec (abfd)->_raw_size; - text_pad = BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; + text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; } else { @@ -869,7 +883,7 @@ adjust_z_magic (abfd, execp) filepos == page_size, and this case is the same as the ztih case. */ text_end = obj_textsec (abfd)->_raw_size; - text_pad = BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; + text_pad += BFD_ALIGN (text_end, adata (abfd).page_size) - text_end; text_end += obj_textsec (abfd)->filepos; } obj_textsec(abfd)->_raw_size += text_pad; @@ -3010,6 +3024,7 @@ aout_link_check_ar_symbols (abfd, info, pneeded) if (h->type == bfd_link_hash_undefined) { bfd *symbfd; + unsigned int power; symbfd = h->u.undef.abfd; if (symbfd == (bfd *) NULL) @@ -3029,6 +3044,22 @@ aout_link_check_ar_symbols (abfd, info, pneeded) symbol. It is already on the undefs list. */ h->type = bfd_link_hash_common; h->u.c.size = value; + if (h->u.c.size != value) + { + /* The size did not fit in the bitfield. */ + bfd_set_error (bfd_error_bad_value); + return false; + } + + /* FIXME: This isn't quite right. The maximum + alignment of a common symbol should be set by the + architecture of the output file, not of the input + file. */ + power = bfd_log2 (value); + if (power > bfd_get_arch_info (abfd)->section_align_power) + power = bfd_get_arch_info (abfd)->section_align_power; + h->u.c.alignment_power = power; + h->u.c.section = bfd_make_section_old_way (symbfd, "COMMON"); } @@ -3259,6 +3290,17 @@ aout_link_add_symbols (abfd, info) (struct bfd_link_hash_entry **) sym_hash))) return false; + /* Restrict the maximum alignment of a common symbol based on + the architecture, since a.out has no way to represent + alignment requirements of a section in a .o file. FIXME: + This isn't quite right: it should use the architecture of the + output file, not the input files. */ + if ((*sym_hash)->root.type == bfd_link_hash_common + && ((*sym_hash)->root.u.c.alignment_power > + bfd_get_arch_info (abfd)->section_align_power)) + (*sym_hash)->root.u.c.alignment_power = + bfd_get_arch_info (abfd)->section_align_power; + if (type == (N_INDR | N_EXT) || type == N_WARNING) ++sym_hash; }