Lines Matching refs:fixp
863 tc_gen_reloc (asection *seg ATTRIBUTE_UNUSED, fixS *fixp) in tc_gen_reloc() argument
868 if (fixp->fx_addsy) in tc_gen_reloc()
869 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy); in tc_gen_reloc()
870 else if (fixp->fx_subsy) in tc_gen_reloc()
871 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_subsy); in tc_gen_reloc()
874 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where; in tc_gen_reloc()
875 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type); in tc_gen_reloc()
878 as_bad_where (fixp->fx_file, fixp->fx_line, in tc_gen_reloc()
880 (int) fixp->fx_r_type); in tc_gen_reloc()
883 reloc->addend = fixp->fx_addnumber; in tc_gen_reloc()
902 md_pcrel_from (fixS *fixp) in md_pcrel_from() argument
904 return fixp->fx_frag->fr_address + fixp->fx_where; in md_pcrel_from()