Home | History | Annotate | Download | only in bfd

Lines Matching refs:howto

87   HOWTO (0,	                /* Type.  */
102 HOWTO (1, /* Type. */
117 HOWTO (2, /* Type. */
132 HOWTO (3, /* Type. */
147 HOWTO (4, /* Type. */
162 HOWTO (5, /* Type. */
177 HOWTO (6, /* Type. */
194 HOWTO (8, /* Type. */
211 HOWTO (0xa, /* Type. */
228 HOWTO (0xc, /* Type. */
243 HOWTO (0xd, /* Type. */
260 HOWTO (0xf, /* Type. */
278 HOWTO (0x12, /* Type. */
293 HOWTO (0x13, /* Type. */
308 HOWTO (0x14, /* Type. */
323 HOWTO (0x15, /* Type. */
338 HOWTO (0x16, /* Type. */
353 HOWTO (0x17, /* Type. */
368 HOWTO (0x18, /* Type. */
383 HOWTO (0x19, /* Type. */
398 HOWTO (0x1a, /* Type. */
413 HOWTO (0x1b, /* Type. */
489 rel->howto = nlm_powerpc_howto_table + (l_rtype & 0xff);
491 BFD_ASSERT (rel->howto->name != NULL
493 ? (rel->howto->complain_on_overflow
495 : (rel->howto->complain_on_overflow
497 && ((l_rtype >> 8) & 0x1f) == rel->howto->bitsize - 1);
522 HOWTO (0, /* Type. */
589 rel->howto = & nlm_powerpc_howto;
670 || rel->howto == NULL
671 || rel->howto->rightshift != 0
672 || rel->howto->size != 2
673 || rel->howto->bitsize != 32
674 || rel->howto->bitpos != 0
675 || rel->howto->pc_relative
676 || (rel->howto->src_mask != 0xffffffff && rel->addend != 0)
677 || rel->howto->dst_mask != 0xffffffff)
742 reloc_howto_type *howto;
774 for (howto = nlm_powerpc_howto_table;
775 howto < nlm_powerpc_howto_table + HOWTO_COUNT;
776 howto++)
778 if (howto->rightshift == rel->howto->rightshift
779 && howto->size == rel->howto->size
780 && howto->bitsize == rel->howto->bitsize
781 && howto->pc_relative == rel->howto->pc_relative
782 && howto->bitpos == rel->howto->bitpos
783 && (howto->partial_inplace == rel->howto->partial_inplace
784 || (! rel->howto->partial_inplace
786 && (howto->src_mask == rel->howto->src_mask
787 || (rel->howto->src_mask == 0
789 && howto->dst_mask == rel->howto->dst_mask
790 && howto->pcrel_offset == rel->howto->pcrel_offset)
793 if (howto >= nlm_powerpc_howto_table + HOWTO_COUNT)
799 l_rtype = howto->type;
800 if (howto->complain_on_overflow == complain_overflow_signed)
802 l_rtype |= (howto->bitsize - 1) << 8;