From 0058949f0e549b6cd3a96e5c04091ae4c35fc154 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 6 Jul 1999 23:50:45 +0000 Subject: * libhppa.h: Revert July 2, 1999 patch. --- bfd/libhppa.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'bfd/libhppa.h') diff --git a/bfd/libhppa.h b/bfd/libhppa.h index 7fc52e46b7..05256a201d 100644 --- a/bfd/libhppa.h +++ b/bfd/libhppa.h @@ -177,6 +177,21 @@ enum hppa_reloc_expr_type_alt }; +/* Relocations for function calls must be accompanied by parameter + relocation bits. These bits describe exactly where the caller has + placed the function's arguments and where it expects to find a return + value. + + Both ELF and SOM encode this information within the addend field + of the call relocation. (Note this could break very badly if one + was to make a call like bl foo + 0x12345678). + + The high order 10 bits contain parameter relocation information, + the low order 22 bits contain the constant offset. */ + +#define HPPA_R_ARG_RELOC(a) (((a) >> 22) & 0x3FF) +#define HPPA_R_CONSTANT(a) ((((int)(a)) << 10) >> 10) +#define HPPA_R_ADDEND(r,c) (((r) << 22) + ((c) & 0x3FFFFF)) #define HPPA_WIDE (0) /* PSW W-bit, need to check! FIXME */ /* These macros get bit fields using HP's numbering (MSB = 0), -- cgit v1.2.1