1 /* Assembly backend for the OpenRISC 1000.
2 Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
3 Contributed by Damjan Lampret <lampret@opencores.org>.
4 Modified bu Johan Rydberg, <johan.rydberg@netinsight.se>.
7 This file is part of GAS, the GNU Assembler.
9 GAS is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 GAS is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GAS; see the file COPYING. If not, write to
21 the Free Software Foundation, 51 Franklin Street - Fifth Floor,
22 Boston, MA 02110-1301, USA. */
24 /* tc-a29k.c used as a template. */
26 #include "safe-ctype.h"
28 #include "opcode/or32.h"
33 #ifndef REGISTER_PREFIX
34 #define REGISTER_PREFIX '%'
37 /* Make it easier to clone this machine desc into another one. */
38 #define machine_opcode or32_opcode
39 #define machine_opcodes or32_opcodes
40 #define machine_ip or32_ip
41 #define machine_it or32_it
43 /* Handle of the OPCODE hash table. */
44 static struct hash_control
*op_hash
= NULL
;
50 struct nlist
* nlistp
;
53 int reloc_offset
; /* Offset of reloc within insn. */
58 const pseudo_typeS md_pseudo_table
[] =
60 {"align", s_align_bytes
, 4 },
61 {"space", s_space
, 0 },
62 {"cputype", s_ignore
, 0 },
63 {"reg", s_lsym
, 0 }, /* Register equate, same as equ. */
64 {"sect", s_ignore
, 0 }, /* Creation of coff sections. */
65 {"proc", s_ignore
, 0 }, /* Start of a function. */
66 {"endproc", s_ignore
, 0 }, /* Function end. */
71 int md_short_jump_size
= 4;
72 int md_long_jump_size
= 4;
74 /* This array holds the chars that always start a comment.
75 If the pre-processor is disabled, these aren't very useful. */
76 const char comment_chars
[] = "#";
78 /* This array holds the chars that only start a comment at the beginning of
79 a line. If the line seems to have the form '# 123 filename'
80 .line and .file directives will appear in the pre-processed output. */
81 /* Note that input_file.c hand checks for '#' at the beginning of the
82 first line of the input file. This is because the compiler outputs
83 #NO_APP at the beginning of its output. */
84 /* Also note that comments like this one will always work. */
85 const char line_comment_chars
[] = "#";
87 /* We needed an unused char for line separation to work around the
88 lack of macros, using sed and such. */
89 const char line_separator_chars
[] = ";";
91 /* Chars that can be used to separate mant from exp in floating point nums. */
92 const char EXP_CHARS
[] = "eE";
94 /* Chars that mean this number is a floating point constant.
97 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
99 /* "l.jalr r9" precalculated opcode. */
100 static unsigned long jalr_r9_opcode
;
102 static void machine_ip (char *);
105 /* Set bits in machine opcode according to insn->encoding
106 description and passed operand. */
109 encode (const struct machine_opcode
*insn
,
110 unsigned long *opcode
,
111 signed long param_val
,
119 printf (" encode: opcode=%.8lx param_val=%.8lx abs=%.8lx param_ch=%c\n",
120 *opcode
, param_val
, abs (param_val
), param_ch
);
122 for (enc
= insn
->encoding
; *enc
!= '\0'; enc
++)
123 if (*enc
== param_ch
)
125 if (enc
- 2 >= insn
->encoding
&& (*(enc
- 2) == '0') && (*(enc
- 1) == 'x'))
133 for (enc
= insn
->encoding
; *enc
!= '\0';)
135 if ((*enc
== '0') && (*(enc
+ 1) == 'x'))
137 int tmp
= strtol (enc
, NULL
, 16);
140 *opcode
|= tmp
<< opc_pos
;
143 else if ((*enc
== '0') || (*enc
== '-'))
148 else if (*enc
== '1')
151 *opcode
|= 1 << opc_pos
;
154 else if (*enc
== param_ch
)
158 *opcode
|= ((param_val
>> param_pos
) & 0x1) << opc_pos
;
161 else if (ISALPHA (*enc
))
171 printf (" opcode=%.8lx\n", *opcode
);
175 /* This function is called once, at assembler startup time. It should
176 set up all the tables, etc., that the MD part of the assembler will
182 const char *retval
= NULL
;
187 /* Hash up all the opcodes for fast use later. */
188 op_hash
= hash_new ();
190 for (i
= 0; i
< or32_num_opcodes
; i
++)
192 const char *name
= machine_opcodes
[i
].name
;
200 retval
= hash_insert (op_hash
, name
, (void *) &machine_opcodes
[i
]);
203 fprintf (stderr
, "internal error: can't hash `%s': %s\n",
204 machine_opcodes
[i
].name
, retval
);
210 as_fatal (_("Broken assembler. No assembly attempted."));
212 encode (&machine_opcodes
[insn_index ("l.jalr")], &jalr_r9_opcode
, 9, 'B');
215 /* Returns non zero if instruction is to be used. */
218 check_invalid_opcode (unsigned long opcode
)
220 return opcode
== jalr_r9_opcode
;
223 /* Assemble a single instruction. Its label has already been handled
224 by the generic front end. We just parse opcode and operands, and
225 produce the bytes of data and relocation. */
228 md_assemble (char *str
)
233 printf ("NEW INSTRUCTION\n");
240 /* Put out the opcode. */
241 md_number_to_chars (toP
, the_insn
.opcode
, 4);
243 /* Put out the symbol-dependent stuff. */
244 if (the_insn
.reloc
!= BFD_RELOC_NONE
)
246 fix_new_exp (frag_now
,
247 (toP
- frag_now
->fr_literal
+ the_insn
.reloc_offset
),
255 /* This is true of the we have issued a "lo(" or "hi"(. */
256 static int waiting_for_shift
= 0;
258 static int mask_or_shift
= 0;
261 parse_operand (char *s
, expressionS
*operandp
, int opt
)
263 char *save
= input_line_pointer
;
267 printf (" PROCESS NEW OPERAND(%s) == %c (%d)\n", s
, opt
? opt
: '!', opt
);
270 input_line_pointer
= s
;
272 if (strncasecmp (s
, "HI(", 3) == 0)
274 waiting_for_shift
= 1;
275 mask_or_shift
= BFD_RELOC_HI16
;
277 input_line_pointer
+= 3;
279 else if (strncasecmp (s
, "LO(", 3) == 0)
281 mask_or_shift
= BFD_RELOC_LO16
;
283 input_line_pointer
+= 3;
288 if ((*s
== '(') && (*(s
+1) == 'r'))
291 if ((*s
== 'r') && ISDIGIT (*(s
+ 1)))
293 operandp
->X_add_number
= strtol (s
+ 1, NULL
, 10);
294 operandp
->X_op
= O_register
;
295 for (; (*s
!= ',') && (*s
!= '\0');)
297 input_line_pointer
= save
;
301 expression (operandp
);
303 if (operandp
->X_op
== O_absent
)
306 as_bad (_("missing operand"));
309 operandp
->X_add_number
= 0;
310 operandp
->X_op
= O_constant
;
314 new = input_line_pointer
;
315 input_line_pointer
= save
;
318 printf (" %s=parse_operand(%s): operandp->X_op = %u\n", new, s
, operandp
->X_op
);
324 /* Instruction parsing. Takes a string containing the opcode.
325 Operands are at input_line_pointer. Output is in the_insn.
326 Warnings or errors are generated. */
329 machine_ip (char *str
)
333 const struct machine_opcode
*insn
;
335 unsigned long opcode
;
336 expressionS the_operand
;
337 expressionS
*operand
= &the_operand
;
339 int reloc
= BFD_RELOC_NONE
;
342 printf ("machine_ip(%s)\n", str
);
346 for (; ISALNUM (*s
) || *s
== '.'; ++s
)
355 case ' ': /* FIXME-SOMEDAY more whitespace. */
360 as_bad (_("unknown opcode1: `%s'"), str
);
364 if ((insn
= (struct machine_opcode
*) hash_find (op_hash
, str
)) == NULL
)
366 as_bad (_("unknown opcode2 `%s'."), str
);
372 memset (&the_insn
, '\0', sizeof (the_insn
));
373 the_insn
.reloc
= BFD_RELOC_NONE
;
375 reloc
= BFD_RELOC_NONE
;
377 /* Build the opcode, checking as we go to make sure that the
380 If an operand matches, we modify the_insn or opcode appropriately,
381 and do a "continue". If an operand fails to match, we "break". */
382 if (insn
->args
[0] != '\0')
383 /* Prime the pump. */
384 s
= parse_operand (s
, operand
, insn
->args
[0] == 'I');
386 for (args
= insn
->args
;; ++args
)
389 printf (" args = %s\n", args
);
393 case '\0': /* End of args. */
394 /* We have have 0 args, do the bazoooka! */
395 if (args
== insn
->args
)
396 encode (insn
, &opcode
, 0, 0);
400 /* We are truly done. */
401 the_insn
.opcode
= opcode
;
402 if (check_invalid_opcode (opcode
))
403 as_bad (_("instruction not allowed: %s"), str
);
406 as_bad (_("too many operands: %s"), s
);
409 case ',': /* Must match a comma. */
412 reloc
= BFD_RELOC_NONE
;
414 /* Parse next operand. */
415 s
= parse_operand (s
, operand
, args
[1] == 'I');
417 printf (" ',' case: operand->X_add_number = %d, *args = %s, *s = %s\n",
418 operand
->X_add_number
, args
, s
);
424 case '(': /* Must match a (. */
425 s
= parse_operand (s
, operand
, args
[1] == 'I');
428 case ')': /* Must match a ). */
431 case 'r': /* A general register. */
434 if (operand
->X_op
!= O_register
)
435 break; /* Only registers. */
437 know (operand
->X_add_symbol
== 0);
438 know (operand
->X_op_symbol
== 0);
439 regno
= operand
->X_add_number
;
440 encode (insn
, &opcode
, regno
, *args
);
442 printf (" r: operand->X_op = %d\n", operand
->X_op
);
447 /* if (! ISALPHA (*args))
448 break; */ /* Only immediate values. */
453 printf ("mask_or_shift = %d\n", mask_or_shift
);
455 reloc
= mask_or_shift
;
459 if (strncasecmp (args
, "LO(", 3) == 0)
462 printf ("reloc_const\n");
464 reloc
= BFD_RELOC_LO16
;
466 else if (strncasecmp (args
, "HI(", 3) == 0)
469 printf ("reloc_consth\n");
471 reloc
= BFD_RELOC_HI16
;
475 operand
->X_op
= O_constant
;
479 printf (" default case: operand->X_add_number = %d, *args = %s, *s = %s\n", operand
->X_add_number
, args
, s
);
481 if (operand
->X_op
== O_constant
)
483 if (reloc
== BFD_RELOC_NONE
)
488 v
= abs (operand
->X_add_number
) & ~ mask
;
490 as_bad (_("call/jmp target out of range (1)"));
493 if (reloc
== BFD_RELOC_HI16
)
494 operand
->X_add_number
= ((operand
->X_add_number
>> 16) & 0xffff);
497 encode (insn
, &opcode
, operand
->X_add_number
, *args
);
498 /* the_insn.reloc = BFD_RELOC_NONE; */
502 if (reloc
== BFD_RELOC_NONE
)
503 the_insn
.reloc
= BFD_RELOC_32_GOT_PCREL
;
505 the_insn
.reloc
= reloc
;
507 /* the_insn.reloc = insn->reloc; */
509 printf (" reloc sym=%d\n", the_insn
.reloc
);
510 printf (" BFD_RELOC_NONE=%d\n", BFD_RELOC_NONE
);
512 the_insn
.exp
= *operand
;
514 /* the_insn.reloc_offset = 1; */
515 the_insn
.pcrel
= 1; /* Assume PC-relative jump. */
517 /* FIXME-SOON, Do we figure out whether abs later, after
519 if (reloc
== BFD_RELOC_LO16
|| reloc
== BFD_RELOC_HI16
)
522 encode (insn
, &opcode
, operand
->X_add_number
, *args
);
526 /* Types or values of args don't match. */
527 as_bad (_("invalid operands"));
532 /* This is identical to the md_atof in m68k.c. I think this is right,
535 Turn a string in input_line_pointer into a floating point constant
536 of type type, and store the appropriate bytes in *litP. The number
537 of LITTLENUMS emitted is stored in *sizeP . An error message is
538 returned, or NULL on OK. */
540 /* Equal to MAX_PRECISION in atof-ieee.c. */
541 #define MAX_LITTLENUMS 6
544 md_atof (int type
, char * litP
, int * sizeP
)
547 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
548 LITTLENUM_TYPE
*wordP
;
579 return _("Bad call to MD_ATOF()");
582 t
= atof_ieee (input_line_pointer
, type
, words
);
584 input_line_pointer
= t
;
586 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
588 for (wordP
= words
; prec
--;)
590 md_number_to_chars (litP
, (valueT
) (*wordP
++), sizeof (LITTLENUM_TYPE
));
591 litP
+= sizeof (LITTLENUM_TYPE
);
597 /* Write out big-endian. */
600 md_number_to_chars (char *buf
, valueT val
, int n
)
602 number_to_chars_bigendian (buf
, val
, n
);
606 md_apply_fix (fixS
* fixP
, valueT
* val
, segT seg ATTRIBUTE_UNUSED
)
608 char *buf
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
614 printf ("md_apply_fix val:%x\n", t_val
);
617 fixP
->fx_addnumber
= t_val
; /* Remember value for emit_reloc. */
619 know (fixP
->fx_size
== 4);
620 know (fixP
->fx_r_type
< BFD_RELOC_NONE
);
622 switch (fixP
->fx_r_type
)
624 case BFD_RELOC_32
: /* XXXXXXXX pattern in a word. */
626 printf ("reloc_const: val=%x\n", t_val
);
628 buf
[0] = t_val
>> 24;
629 buf
[1] = t_val
>> 16;
634 case BFD_RELOC_16
: /* XXXX0000 pattern in a word. */
636 printf ("reloc_const: val=%x\n", t_val
);
642 case BFD_RELOC_8
: /* XX000000 pattern in a word. */
644 printf ("reloc_const: val=%x\n", t_val
);
649 case BFD_RELOC_LO16
: /* 0000XXXX pattern in a word. */
651 printf ("reloc_const: val=%x\n", t_val
);
653 buf
[2] = t_val
>> 8; /* Holds bits 0000XXXX. */
657 case BFD_RELOC_HI16
: /* 0000XXXX pattern in a word. */
659 printf ("reloc_consth: val=%x\n", t_val
);
661 buf
[2] = t_val
>> 24; /* Holds bits XXXX0000. */
662 buf
[3] = t_val
>> 16;
665 case BFD_RELOC_32_GOT_PCREL
: /* 0000XXXX pattern in a word. */
668 else if (fixP
->fx_pcrel
)
670 long v
= t_val
>> 28;
672 if (v
!= 0 && v
!= -1)
673 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
674 _("call/jmp target out of range (2)"));
677 /* This case was supposed to be handled in machine_ip. */
680 buf
[0] |= (t_val
>> 26) & 0x03; /* Holds bits 0FFFFFFC of address. */
681 buf
[1] = t_val
>> 18;
682 buf
[2] = t_val
>> 10;
686 case BFD_RELOC_VTABLE_INHERIT
:
687 case BFD_RELOC_VTABLE_ENTRY
:
693 as_bad (_("bad relocation type: 0x%02x"), fixP
->fx_r_type
);
697 if (fixP
->fx_addsy
== (symbolS
*) NULL
)
701 /* Should never be called for or32. */
704 md_create_short_jump (char * ptr ATTRIBUTE_UNUSED
,
705 addressT from_addr ATTRIBUTE_UNUSED
,
706 addressT to_addr ATTRIBUTE_UNUSED
,
707 fragS
* frag ATTRIBUTE_UNUSED
,
708 symbolS
* to_symbol ATTRIBUTE_UNUSED
)
710 as_fatal ("or32_create_short_jmp\n");
713 /* Should never be called for or32. */
716 md_convert_frag (bfd
* headers ATTRIBUTE_UNUSED
,
717 segT seg ATTRIBUTE_UNUSED
,
718 fragS
* fragP ATTRIBUTE_UNUSED
)
720 as_fatal ("or32_convert_frag\n");
723 /* Should never be called for or32. */
726 md_create_long_jump (char * ptr ATTRIBUTE_UNUSED
,
727 addressT from_addr ATTRIBUTE_UNUSED
,
728 addressT to_addr ATTRIBUTE_UNUSED
,
729 fragS
* frag ATTRIBUTE_UNUSED
,
730 symbolS
* to_symbol ATTRIBUTE_UNUSED
)
732 as_fatal ("or32_create_long_jump\n");
735 /* Should never be called for or32. */
738 md_estimate_size_before_relax (fragS
* fragP ATTRIBUTE_UNUSED
,
739 segT segtype ATTRIBUTE_UNUSED
)
741 as_fatal ("or32_estimate_size_before_relax\n");
745 /* Translate internal representation of relocation info to target format.
747 On sparc/29k: first 4 bytes are normal unsigned long address, next three
748 bytes are index, most sig. byte first. Byte 7 is broken up with
749 bit 7 as external, bits 6 & 5 unused, and the lower
750 five bits as relocation type. Next 4 bytes are long addend. */
751 /* Thanx and a tip of the hat to Michael Bloom, mb@ttidca.tti.com. */
755 tc_aout_fix_to_chars (char *where
,
757 relax_addressT segment_address_in_file
)
762 printf ("tc_aout_fix_to_chars\n");
765 know (fixP
->fx_r_type
< BFD_RELOC_NONE
);
766 know (fixP
->fx_addsy
!= NULL
);
770 fixP
->fx_frag
->fr_address
+ fixP
->fx_where
- segment_address_in_file
,
773 r_symbolnum
= (S_IS_DEFINED (fixP
->fx_addsy
)
774 ? S_GET_TYPE (fixP
->fx_addsy
)
775 : fixP
->fx_addsy
->sy_number
);
777 where
[4] = (r_symbolnum
>> 16) & 0x0ff;
778 where
[5] = (r_symbolnum
>> 8) & 0x0ff;
779 where
[6] = r_symbolnum
& 0x0ff;
780 where
[7] = (((!S_IS_DEFINED (fixP
->fx_addsy
)) << 7) & 0x80) | (0 & 0x60) | (fixP
->fx_r_type
& 0x1F);
783 md_number_to_chars (&where
[8], fixP
->fx_addnumber
, 4);
786 #endif /* OBJ_AOUT */
788 const char *md_shortopts
= "";
790 struct option md_longopts
[] =
792 { NULL
, no_argument
, NULL
, 0 }
794 size_t md_longopts_size
= sizeof (md_longopts
);
797 md_parse_option (int c ATTRIBUTE_UNUSED
, char * arg ATTRIBUTE_UNUSED
)
803 md_show_usage (FILE * stream ATTRIBUTE_UNUSED
)
807 /* This is called when a line is unrecognized. This is used to handle
808 definitions of or32 style local labels. */
811 or32_unrecognized_line (int c
)
817 || ! ISDIGIT ((unsigned char) input_line_pointer
[0]))
820 s
= input_line_pointer
;
823 while (ISDIGIT ((unsigned char) *s
))
825 lab
= lab
* 10 + *s
- '0';
830 /* Not a label definition. */
833 if (dollar_label_defined (lab
))
835 as_bad (_("label \"$%d\" redefined"), lab
);
839 define_dollar_label (lab
);
840 colon (dollar_label_name (lab
, 0));
841 input_line_pointer
= s
+ 1;
846 /* Default the values of symbols known that should be "predefined". We
847 don't bother to predefine them unless you actually use one, since there
848 are a lot of them. */
851 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
856 /* Parse an operand that is machine-specific. */
859 md_operand (expressionS
*expressionP
)
862 printf (" md_operand(input_line_pointer = %s)\n", input_line_pointer
);
865 if (input_line_pointer
[0] == REGISTER_PREFIX
&& input_line_pointer
[1] == 'r')
867 /* We have a numeric register expression. No biggy. */
868 input_line_pointer
+= 2; /* Skip %r */
869 (void) expression (expressionP
);
871 if (expressionP
->X_op
!= O_constant
872 || expressionP
->X_add_number
> 255)
873 as_bad (_("Invalid expression after %%%%\n"));
874 expressionP
->X_op
= O_register
;
876 else if (input_line_pointer
[0] == '&')
878 /* We are taking the 'address' of a register...this one is not
879 in the manual, but it *is* in traps/fpsymbol.h! What they
880 seem to want is the register number, as an absolute number. */
881 input_line_pointer
++; /* Skip & */
882 (void) expression (expressionP
);
884 if (expressionP
->X_op
!= O_register
)
885 as_bad (_("invalid register in & expression"));
887 expressionP
->X_op
= O_constant
;
889 else if (input_line_pointer
[0] == '$'
890 && ISDIGIT ((unsigned char) input_line_pointer
[1]))
896 /* This is a local label. */
897 ++input_line_pointer
;
898 lab
= (long) get_absolute_expression ();
900 if (dollar_label_defined (lab
))
902 name
= dollar_label_name (lab
, 0);
903 sym
= symbol_find (name
);
907 name
= dollar_label_name (lab
, 1);
908 sym
= symbol_find_or_make (name
);
911 expressionP
->X_op
= O_symbol
;
912 expressionP
->X_add_symbol
= sym
;
913 expressionP
->X_add_number
= 0;
915 else if (input_line_pointer
[0] == '$')
919 int fieldnum
, fieldlimit
;
920 LITTLENUM_TYPE floatbuf
[8];
922 /* $float(), $doubleN(), or $extendN() convert floating values
924 s
= input_line_pointer
;
929 if (strncmp (s
, "double", sizeof "double" - 1) == 0)
931 s
+= sizeof "double" - 1;
935 else if (strncmp (s
, "float", sizeof "float" - 1) == 0)
937 s
+= sizeof "float" - 1;
941 else if (strncmp (s
, "extend", sizeof "extend" - 1) == 0)
943 s
+= sizeof "extend" - 1;
955 if (fieldnum
>= fieldlimit
)
964 s
= atof_ieee (s
, type
, floatbuf
);
975 input_line_pointer
= s
;
976 expressionP
->X_op
= O_constant
;
977 expressionP
->X_unsigned
= 1;
978 expressionP
->X_add_number
= ((floatbuf
[fieldnum
* 2]
979 << LITTLENUM_NUMBER_OF_BITS
)
980 + floatbuf
[fieldnum
* 2 + 1]);
984 /* Round up a section size to the appropriate boundary. */
987 md_section_align (segT segment ATTRIBUTE_UNUSED
, valueT size ATTRIBUTE_UNUSED
)
989 return size
; /* Byte alignment is fine. */
992 /* Exactly what point is a PC-relative offset relative TO?
993 On the 29000, they're relative to the address of the instruction,
994 which we have set up as the address of the fixup too. */
997 md_pcrel_from (fixS
*fixP
)
999 return fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
1002 /* Generate a reloc for a fixup. */
1005 tc_gen_reloc (asection
*seg ATTRIBUTE_UNUSED
, fixS
*fixp
)
1009 reloc
= xmalloc (sizeof (arelent
));
1010 reloc
->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
1011 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
1012 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1013 /* reloc->address = fixp->fx_frag->fr_address + fixp->fx_where + fixp->fx_addnumber;*/
1014 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
1016 if (reloc
->howto
== (reloc_howto_type
*) NULL
)
1018 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1019 _("reloc %d not supported by object file format"),
1020 (int) fixp
->fx_r_type
);
1024 if (fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
1025 reloc
->address
= fixp
->fx_offset
;
1027 reloc
->addend
= fixp
->fx_addnumber
;