From: Jeff Law Date: Wed, 3 May 1995 19:10:55 +0000 (+0000) Subject: * config/tc-hppa.c (md_apply_fix): Do nothing for an out of range X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4829cd65a78a9ea370e6c59d17bfecb0dc16ee0d;p=binutils-gdb.git * config/tc-hppa.c (md_apply_fix): Do nothing for an out of range PC relative call since those only occur in cases where the linker can fix them up. (hppa_force_relocation): Force relocations for out of range PC relative calls. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 7d4a3508460..333f12577c4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,11 @@ +Wed May 3 13:08:53 1995 Jeff Law (law@snake.cs.utah.edu) + + * config/tc-hppa.c (md_apply_fix): Do nothing for an out of range + PC relative call since those only occur in cases where the linker + can fix them up. + (hppa_force_relocation): Force relocations for out of range PC + relative calls. + Tue May 2 16:34:47 1995 Jeff Law (law@snake.cs.utah.edu) * configure (hppa*-*-lites*): Handle just like hppa*-*-*elf*. diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index 234e86d45f6..a856242860e 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -236,9 +236,9 @@ struct pa_it handles the L/R notation and returns the correct value to put into the instruction register field. The correct value to put into the instruction is - encoded in the structure 'pa_89_fp_reg_struct'. */ + encoded in the structure 'pa_11_fp_reg_struct'. */ -struct pa_89_fp_reg_struct +struct pa_11_fp_reg_struct { /* The register number. */ char number_part; @@ -499,9 +499,9 @@ static void pa_spnum PARAMS ((int)); static void pa_subspace PARAMS ((int)); static void pa_param PARAMS ((int)); static void pa_undefine_label PARAMS ((void)); -static int need_89_opcode PARAMS ((struct pa_it *, - struct pa_89_fp_reg_struct *)); -static int pa_parse_number PARAMS ((char **, struct pa_89_fp_reg_struct *)); +static int need_pa11_opcode PARAMS ((struct pa_it *, + struct pa_11_fp_reg_struct *)); +static int pa_parse_number PARAMS ((char **, struct pa_11_fp_reg_struct *)); static label_symbol_struct *pa_get_label PARAMS ((void)); static sd_chain_struct *create_new_space PARAMS ((char *, int, int, int, int, int, @@ -562,10 +562,6 @@ static struct call_info *last_call_info; /* The last call description (for actual calls). */ static struct call_desc last_call_desc; -/* Relaxation isn't supported for the PA yet. */ -const relax_typeS md_relax_table[] = -{0}; - /* Jumps are always the same size -- one instruction. */ int md_short_jump_size = 4; int md_long_jump_size = 4; @@ -1265,6 +1261,10 @@ md_begin () last_call_info = NULL; call_info_root = NULL; + /* Set the default machine type. */ + if (!bfd_set_arch_mach (stdoutput, bfd_arch_hppa, 10)) + as_warn ("could not set architecture and machine"); + /* Folding of text and data segments fails miserably on the PA. Warn user and disable "-R" option. */ if (flag_readonly_data_in_text) @@ -1451,6 +1451,14 @@ pa_ip (str) the_insn.reloc = R_HPPA_NONE; + /* If this instruction is specific to a particular architecture, + then set a new architecture. */ + if (bfd_get_mach (stdoutput) < insn->arch) + { + if (!bfd_set_arch_mach (stdoutput, bfd_arch_hppa, insn->arch)) + as_warn ("could not update architecture and machine"); + } + /* Build the opcode, checking as we go to make sure that the operands match. */ for (args = insn->args;; ++args) @@ -2298,7 +2306,7 @@ pa_ip (str) /* Handle L/R register halves like 't'. */ case 'v': { - struct pa_89_fp_reg_struct result; + struct pa_11_fp_reg_struct result; pa_parse_number (&s, &result); CHECK_FIELD (result.number_part, 31, 0, 0); @@ -2307,7 +2315,7 @@ pa_ip (str) /* 0x30 opcodes are FP arithmetic operation opcodes and need to be turned into 0x38 opcodes. This is not necessary for loads/stores. */ - if (need_89_opcode (&the_insn, &result) + if (need_pa11_opcode (&the_insn, &result) && ((opcode & 0xfc000000) == 0x30000000)) opcode |= 1 << 27; @@ -2317,12 +2325,12 @@ pa_ip (str) /* Handle L/R register halves like 'b'. */ case 'E': { - struct pa_89_fp_reg_struct result; + struct pa_11_fp_reg_struct result; pa_parse_number (&s, &result); CHECK_FIELD (result.number_part, 31, 0, 0); opcode |= result.number_part << 21; - if (need_89_opcode (&the_insn, &result)) + if (need_pa11_opcode (&the_insn, &result)) { opcode |= (result.l_r_select & 1) << 7; opcode |= 1 << 27; @@ -2333,12 +2341,12 @@ pa_ip (str) /* Handle L/R register halves like 'x'. */ case 'X': { - struct pa_89_fp_reg_struct result; + struct pa_11_fp_reg_struct result; pa_parse_number (&s, &result); CHECK_FIELD (result.number_part, 31, 0, 0); opcode |= (result.number_part & 0x1f) << 16; - if (need_89_opcode (&the_insn, &result)) + if (need_pa11_opcode (&the_insn, &result)) { opcode |= (result.l_r_select & 1) << 12; opcode |= 1 << 27; @@ -2349,7 +2357,7 @@ pa_ip (str) /* Handle a 5 bit register field at 10. */ case '4': { - struct pa_89_fp_reg_struct result; + struct pa_11_fp_reg_struct result; pa_parse_number (&s, &result); CHECK_FIELD (result.number_part, 31, 0, 0); @@ -2364,7 +2372,7 @@ pa_ip (str) /* Handle a 5 bit register field at 15. */ case '6': { - struct pa_89_fp_reg_struct result; + struct pa_11_fp_reg_struct result; pa_parse_number (&s, &result); CHECK_FIELD (result.number_part, 31, 0, 0); @@ -2379,7 +2387,7 @@ pa_ip (str) /* Handle a 5 bit register field at 31. */ case '7': { - struct pa_89_fp_reg_struct result; + struct pa_11_fp_reg_struct result; pa_parse_number (&s, &result); CHECK_FIELD (result.number_part, 31, 0, 0); @@ -2394,7 +2402,7 @@ pa_ip (str) /* Handle a 5 bit register field at 20. */ case '8': { - struct pa_89_fp_reg_struct result; + struct pa_11_fp_reg_struct result; pa_parse_number (&s, &result); CHECK_FIELD (result.number_part, 31, 0, 0); @@ -2409,7 +2417,7 @@ pa_ip (str) /* Handle a 5 bit register field at 25. */ case '9': { - struct pa_89_fp_reg_struct result; + struct pa_11_fp_reg_struct result; pa_parse_number (&s, &result); CHECK_FIELD (result.number_part, 31, 0, 0); @@ -2873,20 +2881,21 @@ md_apply_fix (fixP, valp) new_val = hppa_field_adjust (*valp, 0, hppa_fixP->fx_r_field); /* Handle pc-relative exceptions from above. */ -#define stub_needed(CALLER, CALLEE) \ +#define arg_reloc_stub_needed(CALLER, CALLEE) \ ((CALLEE) && (CALLER) && ((CALLEE) != (CALLER))) if ((fmt == 12 || fmt == 17) && fixP->fx_addsy && fixP->fx_pcrel - && !stub_needed (((obj_symbol_type *) - fixP->fx_addsy->bsym)->tc_data.hppa_arg_reloc, - hppa_fixP->fx_arg_reloc) + && !arg_reloc_stub_needed (((obj_symbol_type *) + fixP->fx_addsy->bsym)->tc_data.hppa_arg_reloc, + hppa_fixP->fx_arg_reloc) + && (*valp > -262144 && *valp < 262143) && S_GET_SEGMENT (fixP->fx_addsy) == hppa_fixP->segment && !(fixP->fx_subsy && S_GET_SEGMENT (fixP->fx_subsy) != hppa_fixP->segment)) new_val = hppa_field_adjust (*valp, 0, hppa_fixP->fx_r_field); -#undef stub_needed +#undef arg_reloc_stub_needed switch (fmt) { @@ -3009,7 +3018,7 @@ is_end_of_statement () static int pa_parse_number (s, result) char **s; - struct pa_89_fp_reg_struct *result; + struct pa_11_fp_reg_struct *result; { int num; char *name; @@ -3242,15 +3251,24 @@ reg_name_search (name) /* Return nonzero if the given INSN and L/R information will require - a new PA-89 opcode. */ + a new PA-1.1 opcode. */ static int -need_89_opcode (insn, result) +need_pa11_opcode (insn, result) struct pa_it *insn; - struct pa_89_fp_reg_struct *result; + struct pa_11_fp_reg_struct *result; { if (result->l_r_select == 1 && !(insn->fpof1 == DBL && insn->fpof2 == DBL)) - return TRUE; + { + /* If this instruction is specific to a particular architecture, + then set a new architecture. */ + if (bfd_get_mach (stdoutput) < pa11) + { + if (!bfd_set_arch_mach (stdoutput, bfd_arch_hppa, pa11)) + as_warn ("could not update architecture and machine"); + } + return TRUE; + } else return FALSE; } @@ -4248,7 +4266,17 @@ pa_code (unused) where