diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-05 10:32:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-11-05 10:32:53 +0000 |
commit | 0e77f36f442fd6cf2c6cbbc7c4dd3e5e6960a37c (patch) | |
tree | d08c0e0c8ee670abd81819c16d39df23a5c1e6e9 /gnu | |
parent | 3075586f884042cbd8c79a190bcdd777afc68629 (diff) |
Handle relocation of misaligned symbols. Handle all three cases by the same
macro for clarity; pk
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/ld/sparc/md.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/gnu/usr.bin/ld/sparc/md.c b/gnu/usr.bin/ld/sparc/md.c index c5b200ded67..824feecf436 100644 --- a/gnu/usr.bin/ld/sparc/md.c +++ b/gnu/usr.bin/ld/sparc/md.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: md.c,v 1.4 1996/08/22 01:24:21 deraadt Exp $ + * $Id: md.c,v 1.5 1997/11/05 10:32:52 deraadt Exp $ */ #include <sys/param.h> @@ -138,26 +138,28 @@ md_relocate(r, relocation, addr, relocatable_output) relocation <<= RELOC_TARGET_BITPOS(r); mask <<= RELOC_TARGET_BITPOS(r); +#define RELOCATE(type) \ + { \ + type ad; \ + (void)memcpy(&ad, addr, sizeof(ad)); \ + if (RELOC_MEMORY_ADD_P(r)) \ + relocation += (mask & ad); \ + ad &= ~mask; \ + ad |= relocation; \ + (void)memcpy(addr, &ad, sizeof(ad)); \ + } + switch (RELOC_TARGET_SIZE(r)) { case 0: - if (RELOC_MEMORY_ADD_P(r)) - relocation += (mask & *(u_char *) (addr)); - *(u_char *) (addr) &= ~mask; - *(u_char *) (addr) |= relocation; + RELOCATE(u_char) break; case 1: - if (RELOC_MEMORY_ADD_P(r)) - relocation += (mask & *(u_short *) (addr)); - *(u_short *) (addr) &= ~mask; - *(u_short *) (addr) |= relocation; + RELOCATE(u_short) break; case 2: - if (RELOC_MEMORY_ADD_P(r)) - relocation += (mask & *(u_long *) (addr)); - *(u_long *) (addr) &= ~mask; - *(u_long *) (addr) |= relocation; + RELOCATE(u_long) break; default: errx(1, "Unimplemented relocation field length: %d", |