• Home
  • Raw
  • Download

Lines Matching refs:howto

488   rel->howto = nlm_powerpc_howto_table + (l_rtype & 0xff);  in nlm_powerpc_read_reloc()
490 BFD_ASSERT (rel->howto->name != NULL in nlm_powerpc_read_reloc()
492 ? (rel->howto->complain_on_overflow in nlm_powerpc_read_reloc()
494 : (rel->howto->complain_on_overflow in nlm_powerpc_read_reloc()
496 && ((l_rtype >> 8) & 0x1f) == rel->howto->bitsize - 1); in nlm_powerpc_read_reloc()
588 rel->howto = & nlm_powerpc_howto; in nlm_powerpc_read_reloc()
669 || rel->howto == NULL in nlm_powerpc_write_import()
670 || rel->howto->rightshift != 0 in nlm_powerpc_write_import()
671 || rel->howto->size != 2 in nlm_powerpc_write_import()
672 || rel->howto->bitsize != 32 in nlm_powerpc_write_import()
673 || rel->howto->bitpos != 0 in nlm_powerpc_write_import()
674 || rel->howto->pc_relative in nlm_powerpc_write_import()
675 || (rel->howto->src_mask != 0xffffffff && rel->addend != 0) in nlm_powerpc_write_import()
676 || rel->howto->dst_mask != 0xffffffff) in nlm_powerpc_write_import()
741 reloc_howto_type *howto; in nlm_powerpc_write_reloc() local
773 for (howto = nlm_powerpc_howto_table; in nlm_powerpc_write_reloc()
774 howto < nlm_powerpc_howto_table + HOWTO_COUNT; in nlm_powerpc_write_reloc()
775 howto++) in nlm_powerpc_write_reloc()
777 if (howto->rightshift == rel->howto->rightshift in nlm_powerpc_write_reloc()
778 && howto->size == rel->howto->size in nlm_powerpc_write_reloc()
779 && howto->bitsize == rel->howto->bitsize in nlm_powerpc_write_reloc()
780 && howto->pc_relative == rel->howto->pc_relative in nlm_powerpc_write_reloc()
781 && howto->bitpos == rel->howto->bitpos in nlm_powerpc_write_reloc()
782 && (howto->partial_inplace == rel->howto->partial_inplace in nlm_powerpc_write_reloc()
783 || (! rel->howto->partial_inplace in nlm_powerpc_write_reloc()
785 && (howto->src_mask == rel->howto->src_mask in nlm_powerpc_write_reloc()
786 || (rel->howto->src_mask == 0 in nlm_powerpc_write_reloc()
788 && howto->dst_mask == rel->howto->dst_mask in nlm_powerpc_write_reloc()
789 && howto->pcrel_offset == rel->howto->pcrel_offset) in nlm_powerpc_write_reloc()
792 if (howto >= nlm_powerpc_howto_table + HOWTO_COUNT) in nlm_powerpc_write_reloc()
798 l_rtype = howto->type; in nlm_powerpc_write_reloc()
799 if (howto->complain_on_overflow == complain_overflow_signed) in nlm_powerpc_write_reloc()
801 l_rtype |= (howto->bitsize - 1) << 8; in nlm_powerpc_write_reloc()