1 /* tc-bfin.c -- Assembler for the ADI Blackfin.
2 Copyright 2005, 2006, 2007
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
23 #include "struc-symbol.h"
24 #include "bfin-defs.h"
26 #include "safe-ctype.h"
28 #include "dwarf2dbg.h"
31 #include "elf/common.h"
34 extern int yyparse (void);
35 struct yy_buffer_state
;
36 typedef struct yy_buffer_state
*YY_BUFFER_STATE
;
37 extern YY_BUFFER_STATE
yy_scan_string (const char *yy_str
);
38 extern void yy_delete_buffer (YY_BUFFER_STATE b
);
39 static parse_state
parse (char *line
);
40 static void bfin_s_bss
PARAMS ((int));
41 static int md_chars_to_number
PARAMS ((char *, int));
43 /* Global variables. */
44 struct bfin_insn
*insn
;
47 extern struct obstack mempool
;
50 /* Flags to set in the elf header */
51 #define DEFAULT_FLAGS 0
53 static flagword bfin_flags
= DEFAULT_FLAGS
;
54 static const char *bfin_pic_flag
= (const char *)0;
63 static const struct bfin_reg_entry bfin_reg_info
[] = {
185 {"sftreset", REG_sftreset
},
186 {"omode", REG_omode
},
187 {"excause", REG_excause
},
188 {"emucause", REG_emucause
},
189 {"idle_req", REG_idle_req
},
190 {"hwerrcause", REG_hwerrcause
},
194 {"ASTAT", REG_ASTAT
},
200 {"CYCLES", REG_CYCLES
},
201 {"CYCLES2", REG_CYCLES2
},
203 {"SEQSTAT", REG_SEQSTAT
},
204 {"SYSCFG", REG_SYSCFG
},
209 {"EMUDAT", REG_EMUDAT
},
213 /* Blackfin specific function to handle FD-PIC pointer initializations. */
216 bfin_pic_ptr (int nbytes
)
224 #ifdef md_flush_pending_output
225 md_flush_pending_output ();
228 if (is_it_end_of_statement ())
230 demand_empty_rest_of_line ();
235 md_cons_align (nbytes
);
240 bfd_reloc_code_real_type reloc_type
= BFD_RELOC_BFIN_FUNCDESC
;
242 if (strncasecmp (input_line_pointer
, "funcdesc(", 9) == 0)
244 input_line_pointer
+= 9;
246 if (*input_line_pointer
== ')')
247 input_line_pointer
++;
249 as_bad (_("missing ')'"));
252 error ("missing funcdesc in picptr");
256 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, 4, &exp
, 0,
259 while (*input_line_pointer
++ == ',');
261 input_line_pointer
--; /* Put terminator back into stream. */
262 demand_empty_rest_of_line ();
266 bfin_s_bss (int ignore ATTRIBUTE_UNUSED
)
270 temp
= get_absolute_expression ();
271 subseg_set (bss_section
, (subsegT
) temp
);
272 demand_empty_rest_of_line ();
275 const pseudo_typeS md_pseudo_table
[] = {
276 {"align", s_align_bytes
, 0},
279 {"picptr", bfin_pic_ptr
, 4},
280 {"code", obj_elf_section
, 0},
285 {"pdata", s_ignore
, 0},
286 {"var", s_ignore
, 0},
287 {"bss", bfin_s_bss
, 0},
291 /* Characters that are used to denote comments and line separators. */
292 const char comment_chars
[] = "";
293 const char line_comment_chars
[] = "#";
294 const char line_separator_chars
[] = ";";
296 /* Characters that can be used to separate the mantissa from the
297 exponent in floating point numbers. */
298 const char EXP_CHARS
[] = "eE";
300 /* Characters that mean this number is a floating point constant.
301 As in 0f12.456 or 0d1.2345e12. */
302 const char FLT_CHARS
[] = "fFdDxX";
304 /* Define bfin-specific command-line options (there are none). */
305 const char *md_shortopts
= "";
307 #define OPTION_FDPIC (OPTION_MD_BASE)
309 struct option md_longopts
[] =
311 { "mfdpic", no_argument
, NULL
, OPTION_FDPIC
},
312 { NULL
, no_argument
, NULL
, 0 },
315 size_t md_longopts_size
= sizeof (md_longopts
);
319 md_parse_option (int c ATTRIBUTE_UNUSED
, char *arg ATTRIBUTE_UNUSED
)
327 bfin_flags
|= EF_BFIN_FDPIC
;
328 bfin_pic_flag
= "-mfdpic";
336 md_show_usage (FILE * stream ATTRIBUTE_UNUSED
)
338 fprintf (stream
, _(" BFIN specific command line options:\n"));
341 /* Perform machine-specific initializations. */
345 /* Set the ELF flags if desired. */
347 bfd_set_private_flags (stdoutput
, bfin_flags
);
349 /* Set the default machine type. */
350 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_bfin
, 0))
351 as_warn (_("Could not set architecture and machine."));
353 /* Ensure that lines can begin with '(', for multiple
354 register stack pops. */
355 lex_type
['('] = LEX_BEGIN_NAME
;
358 record_alignment (text_section
, 2);
359 record_alignment (data_section
, 2);
360 record_alignment (bss_section
, 2);
364 obstack_init (&mempool
);
367 extern int debug_codeselection
;
368 debug_codeselection
= 1;
374 /* Perform the main parsing, and assembly of the input here. Also,
375 call the required routines for alignment and fixups here.
376 This is called for every line that contains real assembly code. */
379 md_assemble (char *line
)
382 extern char *current_inputline
;
384 struct bfin_insn
*tmp_insn
;
386 static size_t buffer_len
= 0;
390 if (len
+ 2 > buffer_len
)
393 free (current_inputline
);
394 buffer_len
= len
+ 40;
395 current_inputline
= xmalloc (buffer_len
);
397 memcpy (current_inputline
, line
, len
);
398 current_inputline
[len
] = ';';
399 current_inputline
[len
+ 1] = '\0';
401 state
= parse (current_inputline
);
402 if (state
== NO_INSN_GENERATED
)
405 for (insn_size
= 0, tmp_insn
= insn
; tmp_insn
; tmp_insn
= tmp_insn
->next
)
406 if (!tmp_insn
->reloc
|| !tmp_insn
->exp
->symbol
)
410 toP
= frag_more (insn_size
);
412 last_insn_size
= insn_size
;
419 if (insn
->reloc
&& insn
->exp
->symbol
)
421 char *prev_toP
= toP
- 2;
424 case BFD_RELOC_BFIN_24_PCREL_JUMP_L
:
425 case BFD_RELOC_24_PCREL
:
426 case BFD_RELOC_BFIN_16_LOW
:
427 case BFD_RELOC_BFIN_16_HIGH
:
434 /* Following if condition checks for the arithmetic relocations.
435 If the case then it doesn't required to generate the code.
436 It has been assumed that, their ID will be contiguous. */
437 if ((BFD_ARELOC_BFIN_PUSH
<= insn
->reloc
438 && BFD_ARELOC_BFIN_COMP
>= insn
->reloc
)
439 || insn
->reloc
== BFD_RELOC_BFIN_16_IMM
)
443 if (insn
->reloc
== BFD_ARELOC_BFIN_CONST
444 || insn
->reloc
== BFD_ARELOC_BFIN_PUSH
)
448 (prev_toP
- frag_now
->fr_literal
),
449 size
, insn
->exp
->symbol
, insn
->exp
->value
,
450 insn
->pcrel
, insn
->reloc
);
454 md_number_to_chars (toP
, insn
->value
, 2);
460 printf (" %02x%02x", ((unsigned char *) &insn
->value
)[0],
461 ((unsigned char *) &insn
->value
)[1]);
467 dwarf2_emit_insn (insn_size
);
471 /* Parse one line of instructions, and generate opcode for it.
472 To parse the line, YACC and LEX are used, because the instruction set
473 syntax doesn't confirm to the AT&T assembly syntax.
474 To call a YACC & LEX generated parser, we must provide the input via
475 a FILE stream, otherwise stdin is used by default. Below the input
476 to the function will be put into a temporary file, then the generated
477 parser uses the temporary file for parsing. */
483 YY_BUFFER_STATE buffstate
;
485 buffstate
= yy_scan_string (line
);
487 /* our lex requires setting the start state to keyword
488 every line as the first word may be a keyword.
489 Fixes a bug where we could not have keywords as labels. */
492 /* Call yyparse here. */
494 if (state
== SEMANTIC_ERROR
)
496 as_bad (_("Parse failed."));
500 yy_delete_buffer (buffstate
);
504 /* We need to handle various expressions properly.
505 Such as, [SP--] = 34, concerned by md_assemble(). */
508 md_operand (expressionS
* expressionP
)
510 if (*input_line_pointer
== '[')
512 as_tsktsk ("We found a '['!");
513 input_line_pointer
++;
514 expression (expressionP
);
518 /* Handle undefined symbols. */
520 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
522 return (symbolS
*) 0;
526 md_estimate_size_before_relax (fragS
* fragP ATTRIBUTE_UNUSED
,
527 segT segment ATTRIBUTE_UNUSED
)
532 /* Convert from target byte order to host byte order. */
535 md_chars_to_number (char *val
, int n
)
539 for (retval
= 0; n
--;)
548 md_apply_fix (fixS
*fixP
, valueT
*valueP
, segT seg ATTRIBUTE_UNUSED
)
550 char *where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
552 long value
= *valueP
;
555 switch (fixP
->fx_r_type
)
557 case BFD_RELOC_BFIN_GOT
:
558 case BFD_RELOC_BFIN_GOT17M4
:
559 case BFD_RELOC_BFIN_FUNCDESC_GOT17M4
:
560 fixP
->fx_no_overflow
= 1;
561 newval
= md_chars_to_number (where
, 2);
562 newval
|= 0x0 & 0x7f;
563 md_number_to_chars (where
, newval
, 2);
566 case BFD_RELOC_BFIN_10_PCREL
:
569 if (value
< -1024 || value
> 1022)
570 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
571 _("pcrel too far BFD_RELOC_BFIN_10"));
573 /* 11 bit offset even numbered, so we remove right bit. */
575 newval
= md_chars_to_number (where
, 2);
576 newval
|= value
& 0x03ff;
577 md_number_to_chars (where
, newval
, 2);
580 case BFD_RELOC_BFIN_12_PCREL_JUMP
:
581 case BFD_RELOC_BFIN_12_PCREL_JUMP_S
:
582 case BFD_RELOC_12_PCREL
:
586 if (value
< -4096 || value
> 4094)
587 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far BFD_RELOC_BFIN_12"));
588 /* 13 bit offset even numbered, so we remove right bit. */
590 newval
= md_chars_to_number (where
, 2);
591 newval
|= value
& 0xfff;
592 md_number_to_chars (where
, newval
, 2);
595 case BFD_RELOC_BFIN_16_LOW
:
596 case BFD_RELOC_BFIN_16_HIGH
:
597 fixP
->fx_done
= FALSE
;
600 case BFD_RELOC_BFIN_24_PCREL_JUMP_L
:
601 case BFD_RELOC_BFIN_24_PCREL_CALL_X
:
602 case BFD_RELOC_24_PCREL
:
606 if (value
< -16777216 || value
> 16777214)
607 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far BFD_RELOC_BFIN_24"));
609 /* 25 bit offset even numbered, so we remove right bit. */
613 md_number_to_chars (where
- 2, value
>> 16, 1);
614 md_number_to_chars (where
, value
, 1);
615 md_number_to_chars (where
+ 1, value
>> 8, 1);
618 case BFD_RELOC_BFIN_5_PCREL
: /* LSETUP (a, b) : "a" */
621 if (value
< 4 || value
> 30)
622 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far BFD_RELOC_BFIN_5"));
624 newval
= md_chars_to_number (where
, 1);
625 newval
= (newval
& 0xf0) | (value
& 0xf);
626 md_number_to_chars (where
, newval
, 1);
629 case BFD_RELOC_BFIN_11_PCREL
: /* LSETUP (a, b) : "b" */
633 if (value
< 4 || value
> 2046)
634 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far BFD_RELOC_BFIN_11_PCREL"));
635 /* 11 bit unsigned even, so we remove right bit. */
637 newval
= md_chars_to_number (where
, 2);
638 newval
|= value
& 0x03ff;
639 md_number_to_chars (where
, newval
, 2);
643 if (value
< -0x80 || value
>= 0x7f)
644 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("rel too far BFD_RELOC_8"));
645 md_number_to_chars (where
, value
, 1);
648 case BFD_RELOC_BFIN_16_IMM
:
650 if (value
< -0x8000 || value
>= 0x7fff)
651 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("rel too far BFD_RELOC_16"));
652 md_number_to_chars (where
, value
, 2);
656 md_number_to_chars (where
, value
, 4);
659 case BFD_RELOC_BFIN_PLTPC
:
660 md_number_to_chars (where
, value
, 2);
663 case BFD_RELOC_BFIN_FUNCDESC
:
664 case BFD_RELOC_VTABLE_INHERIT
:
665 case BFD_RELOC_VTABLE_ENTRY
:
666 fixP
->fx_done
= FALSE
;
670 if ((BFD_ARELOC_BFIN_PUSH
> fixP
->fx_r_type
) || (BFD_ARELOC_BFIN_COMP
< fixP
->fx_r_type
))
672 fprintf (stderr
, "Relocation %d not handled in gas." " Contact support.\n", fixP
->fx_r_type
);
678 fixP
->fx_done
= TRUE
;
682 /* Round up a section size to the appropriate boundary. */
684 md_section_align (segment
, size
)
688 int boundary
= bfd_get_section_alignment (stdoutput
, segment
);
689 return ((size
+ (1 << boundary
) - 1) & (-1 << boundary
));
694 md_atof (int type
, char * litP
, int * sizeP
)
696 return ieee_md_atof (type
, litP
, sizeP
, FALSE
);
700 /* If while processing a fixup, a reloc really needs to be created
701 then it is done here. */
704 tc_gen_reloc (seg
, fixp
)
705 asection
*seg ATTRIBUTE_UNUSED
;
710 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
711 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
712 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
713 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
715 reloc
->addend
= fixp
->fx_offset
;
716 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
718 if (reloc
->howto
== (reloc_howto_type
*) NULL
)
720 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
721 /* xgettext:c-format. */
722 _("reloc %d not supported by object file format"),
723 (int) fixp
->fx_r_type
);
733 /* The location from which a PC relative jump should be calculated,
734 given a PC relative reloc. */
737 md_pcrel_from_section (fixP
, sec
)
741 if (fixP
->fx_addsy
!= (symbolS
*) NULL
742 && (!S_IS_DEFINED (fixP
->fx_addsy
)
743 || S_GET_SEGMENT (fixP
->fx_addsy
) != sec
))
745 /* The symbol is undefined (or is defined but not in this section).
746 Let the linker figure it out. */
749 return fixP
->fx_frag
->fr_address
+ fixP
->fx_where
;
752 /* Return true if the fix can be handled by GAS, false if it must
753 be passed through to the linker. */
756 bfin_fix_adjustable (fixS
*fixP
)
758 switch (fixP
->fx_r_type
)
760 /* Adjust_reloc_syms doesn't know about the GOT. */
761 case BFD_RELOC_BFIN_GOT
:
762 case BFD_RELOC_BFIN_GOT17M4
:
763 case BFD_RELOC_BFIN_FUNCDESC_GOT17M4
:
764 case BFD_RELOC_BFIN_PLTPC
:
765 /* We need the symbol name for the VTABLE entries. */
766 case BFD_RELOC_VTABLE_INHERIT
:
767 case BFD_RELOC_VTABLE_ENTRY
:
776 /* Handle the LOOP_BEGIN and LOOP_END statements.
777 Parse the Loop_Begin/Loop_End and create a label. */
779 bfin_start_line_hook ()
781 bfd_boolean maybe_begin
= FALSE
;
782 bfd_boolean maybe_end
= FALSE
;
784 char *c1
, *label_name
;
786 char *c
= input_line_pointer
;
796 /* Look for Loop_Begin or Loop_End statements. */
798 if (*c
!= 'L' && *c
!= 'l')
802 if (*c
!= 'O' && *c
!= 'o')
806 if (*c
!= 'O' && *c
!= 'o')
810 if (*c
!= 'P' && *c
!= 'p')
818 if (*c
== 'E' || *c
== 'e')
820 else if (*c
== 'B' || *c
== 'b')
828 if (*c
!= 'N' && *c
!= 'n')
832 if (*c
!= 'D' && *c
!= 'd')
839 if (*c
!= 'E' && *c
!= 'e')
843 if (*c
!= 'G' && *c
!= 'g')
847 if (*c
!= 'I' && *c
!= 'i')
851 if (*c
!= 'N' && *c
!= 'n')
856 while (ISSPACE (*c
)) c
++;
858 while (ISALPHA (*c
) || ISDIGIT (*c
) || *c
== '_') c
++;
860 if (input_line_pointer
[-1] == '\n')
861 bump_line_counters ();
864 bump_line_counters ();
866 input_line_pointer
= c
;
869 label_name
= (char *) xmalloc ((c
- c1
) + strlen ("__END") + 5);
871 strcat (label_name
, "L$L$");
872 strncat (label_name
, c1
, c
-c1
);
873 strcat (label_name
, "__END");
875 else /* maybe_begin. */
877 label_name
= (char *) xmalloc ((c
- c1
) + strlen ("__BEGIN") + 5);
879 strcat (label_name
, "L$L$");
880 strncat (label_name
, c1
, c
-c1
);
881 strcat (label_name
, "__BEGIN");
884 line_label
= colon (label_name
);
886 /* Loop_End follows the last instruction in the loop.
887 Adjust label address. */
889 ((struct local_symbol
*) line_label
)->lsy_value
-= last_insn_size
;
892 /* Special extra functions that help bfin-parse.y perform its job. */
896 struct obstack mempool
;
899 conscode (INSTR_T head
, INSTR_T tail
)
908 conctcode (INSTR_T head
, INSTR_T tail
)
910 INSTR_T temp
= (head
);
921 note_reloc (INSTR_T code
, Expr_Node
* symbol
, int reloc
, int pcrel
)
923 /* Assert that the symbol is not an operator. */
924 assert (symbol
->type
== Expr_Node_Reloc
);
926 return note_reloc1 (code
, symbol
->value
.s_value
, reloc
, pcrel
);
931 note_reloc1 (INSTR_T code
, const char *symbol
, int reloc
, int pcrel
)
934 code
->exp
= mkexpr (0, symbol_find_or_make (symbol
));
940 note_reloc2 (INSTR_T code
, const char *symbol
, int reloc
, int value
, int pcrel
)
943 code
->exp
= mkexpr (value
, symbol_find_or_make (symbol
));
949 gencode (unsigned long x
)
951 INSTR_T cell
= (INSTR_T
) obstack_alloc (&mempool
, sizeof (struct bfin_insn
));
952 memset (cell
, 0, sizeof (struct bfin_insn
));
964 return (void *) obstack_alloc (&mempool
, n
);
968 Expr_Node_Create (Expr_Node_Type type
,
969 Expr_Node_Value value
,
970 Expr_Node
*Left_Child
,
971 Expr_Node
*Right_Child
)
975 Expr_Node
*node
= (Expr_Node
*) allocate (sizeof (Expr_Node
));
978 node
->Left_Child
= Left_Child
;
979 node
->Right_Child
= Right_Child
;
983 static const char *con
= ".__constant";
984 static const char *op
= ".__operator";
985 static INSTR_T
Expr_Node_Gen_Reloc_R (Expr_Node
* head
);
986 INSTR_T
Expr_Node_Gen_Reloc (Expr_Node
*head
, int parent_reloc
);
989 Expr_Node_Gen_Reloc (Expr_Node
* head
, int parent_reloc
)
991 /* Top level reloction expression generator VDSP style.
992 If the relocation is just by itself, generate one item
993 else generate this convoluted expression. */
995 INSTR_T note
= NULL_CODE
;
996 INSTR_T note1
= NULL_CODE
;
997 int pcrel
= 1; /* Is the parent reloc pcrelative?
998 This calculation here and HOWTO should match. */
1002 /* If it's 32 bit quantity then 16bit code needs to be added. */
1005 if (head
->type
== Expr_Node_Constant
)
1007 /* If note1 is not null code, we have to generate a right
1008 aligned value for the constant. Otherwise the reloc is
1009 a part of the basic command and the yacc file
1011 value
= head
->value
.i_value
;
1013 switch (parent_reloc
)
1015 /* Some relocations will need to allocate extra words. */
1016 case BFD_RELOC_BFIN_16_IMM
:
1017 case BFD_RELOC_BFIN_16_LOW
:
1018 case BFD_RELOC_BFIN_16_HIGH
:
1019 note1
= conscode (gencode (value
), NULL_CODE
);
1022 case BFD_RELOC_BFIN_PLTPC
:
1023 note1
= conscode (gencode (value
), NULL_CODE
);
1027 case BFD_RELOC_BFIN_GOT
:
1028 case BFD_RELOC_BFIN_GOT17M4
:
1029 case BFD_RELOC_BFIN_FUNCDESC_GOT17M4
:
1030 note1
= conscode (gencode (value
), NULL_CODE
);
1033 case BFD_RELOC_24_PCREL
:
1034 case BFD_RELOC_BFIN_24_PCREL_JUMP_L
:
1035 case BFD_RELOC_BFIN_24_PCREL_CALL_X
:
1036 /* These offsets are even numbered pcrel. */
1037 note1
= conscode (gencode (value
>> 1), NULL_CODE
);
1043 if (head
->type
== Expr_Node_Constant
)
1045 else if (head
->type
== Expr_Node_Reloc
)
1047 note
= note_reloc1 (gencode (0), head
->value
.s_value
, parent_reloc
, pcrel
);
1048 if (note1
!= NULL_CODE
)
1049 note
= conscode (note1
, note
);
1051 else if (head
->type
== Expr_Node_Binop
1052 && (head
->value
.op_value
== Expr_Op_Type_Add
1053 || head
->value
.op_value
== Expr_Op_Type_Sub
)
1054 && head
->Left_Child
->type
== Expr_Node_Reloc
1055 && head
->Right_Child
->type
== Expr_Node_Constant
)
1057 int val
= head
->Right_Child
->value
.i_value
;
1058 if (head
->value
.op_value
== Expr_Op_Type_Sub
)
1060 note
= conscode (note_reloc2 (gencode (0), head
->Left_Child
->value
.s_value
,
1061 parent_reloc
, val
, 0),
1063 if (note1
!= NULL_CODE
)
1064 note
= conscode (note1
, note
);
1068 /* Call the recursive function. */
1069 note
= note_reloc1 (gencode (0), op
, parent_reloc
, pcrel
);
1070 if (note1
!= NULL_CODE
)
1071 note
= conscode (note1
, note
);
1072 note
= conctcode (Expr_Node_Gen_Reloc_R (head
), note
);
1078 Expr_Node_Gen_Reloc_R (Expr_Node
* head
)
1086 case Expr_Node_Constant
:
1087 note
= conscode (note_reloc2 (gencode (0), con
, BFD_ARELOC_BFIN_CONST
, head
->value
.i_value
, 0), NULL_CODE
);
1089 case Expr_Node_Reloc
:
1090 note
= conscode (note_reloc (gencode (0), head
, BFD_ARELOC_BFIN_PUSH
, 0), NULL_CODE
);
1092 case Expr_Node_Binop
:
1093 note1
= conctcode (Expr_Node_Gen_Reloc_R (head
->Left_Child
), Expr_Node_Gen_Reloc_R (head
->Right_Child
));
1094 switch (head
->value
.op_value
)
1096 case Expr_Op_Type_Add
:
1097 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_ADD
, 0), NULL_CODE
));
1099 case Expr_Op_Type_Sub
:
1100 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_SUB
, 0), NULL_CODE
));
1102 case Expr_Op_Type_Mult
:
1103 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_MULT
, 0), NULL_CODE
));
1105 case Expr_Op_Type_Div
:
1106 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_DIV
, 0), NULL_CODE
));
1108 case Expr_Op_Type_Mod
:
1109 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_MOD
, 0), NULL_CODE
));
1111 case Expr_Op_Type_Lshift
:
1112 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_LSHIFT
, 0), NULL_CODE
));
1114 case Expr_Op_Type_Rshift
:
1115 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_RSHIFT
, 0), NULL_CODE
));
1117 case Expr_Op_Type_BAND
:
1118 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_AND
, 0), NULL_CODE
));
1120 case Expr_Op_Type_BOR
:
1121 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_OR
, 0), NULL_CODE
));
1123 case Expr_Op_Type_BXOR
:
1124 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_XOR
, 0), NULL_CODE
));
1126 case Expr_Op_Type_LAND
:
1127 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_LAND
, 0), NULL_CODE
));
1129 case Expr_Op_Type_LOR
:
1130 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_LOR
, 0), NULL_CODE
));
1133 fprintf (stderr
, "%s:%d:Unknown operator found for arithmetic" " relocation", __FILE__
, __LINE__
);
1138 case Expr_Node_Unop
:
1139 note1
= conscode (Expr_Node_Gen_Reloc_R (head
->Left_Child
), NULL_CODE
);
1140 switch (head
->value
.op_value
)
1142 case Expr_Op_Type_NEG
:
1143 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_NEG
, 0), NULL_CODE
));
1145 case Expr_Op_Type_COMP
:
1146 note
= conctcode (note1
, conscode (note_reloc1 (gencode (0), op
, BFD_ARELOC_BFIN_COMP
, 0), NULL_CODE
));
1149 fprintf (stderr
, "%s:%d:Unknown operator found for arithmetic" " relocation", __FILE__
, __LINE__
);
1153 fprintf (stderr
, "%s:%d:Unknown node expression found during " "arithmetic relocation generation", __FILE__
, __LINE__
);
1159 /* Blackfin opcode generation. */
1161 /* These functions are called by the generated parser
1162 (from bfin-parse.y), the register type classification
1163 happens in bfin-lex.l. */
1165 #include "bfin-aux.h"
1166 #include "opcode/bfin.h"
1168 #define INIT(t) t c_code = init_##t
1169 #define ASSIGN(x) c_code.opcode |= ((x & c_code.mask_##x)<<c_code.bits_##x)
1170 #define ASSIGN_R(x) c_code.opcode |= (((x ? (x->regno & CODE_MASK) : 0) & c_code.mask_##x)<<c_code.bits_##x)
1172 #define HI(x) ((x >> 16) & 0xffff)
1173 #define LO(x) ((x ) & 0xffff)
1175 #define GROUP(x) ((x->regno & CLASS_MASK) >> 4)
1177 #define GEN_OPCODE32() \
1178 conscode (gencode (HI (c_code.opcode)), \
1179 conscode (gencode (LO (c_code.opcode)), NULL_CODE))
1181 #define GEN_OPCODE16() \
1182 conscode (gencode (c_code.opcode), NULL_CODE)
1185 /* 32 BIT INSTRUCTIONS. */
1188 /* DSP32 instruction generation. */
1191 bfin_gen_dsp32mac (int op1
, int MM
, int mmod
, int w1
, int P
,
1192 int h01
, int h11
, int h00
, int h10
, int op0
,
1193 REG_T dst
, REG_T src0
, REG_T src1
, int w0
)
1209 /* If we have full reg assignments, mask out LSB to encode
1210 single or simultaneous even/odd register moves. */
1220 return GEN_OPCODE32 ();
1224 bfin_gen_dsp32mult (int op1
, int MM
, int mmod
, int w1
, int P
,
1225 int h01
, int h11
, int h00
, int h10
, int op0
,
1226 REG_T dst
, REG_T src0
, REG_T src1
, int w0
)
1251 return GEN_OPCODE32 ();
1255 bfin_gen_dsp32alu (int HL
, int aopcde
, int aop
, int s
, int x
,
1256 REG_T dst0
, REG_T dst1
, REG_T src0
, REG_T src1
)
1270 return GEN_OPCODE32 ();
1274 bfin_gen_dsp32shift (int sopcde
, REG_T dst0
, REG_T src0
,
1275 REG_T src1
, int sop
, int HLs
)
1287 return GEN_OPCODE32 ();
1291 bfin_gen_dsp32shiftimm (int sopcde
, REG_T dst0
, int immag
,
1292 REG_T src1
, int sop
, int HLs
)
1294 INIT (DSP32ShiftImm
);
1304 return GEN_OPCODE32 ();
1310 bfin_gen_loopsetup (Expr_Node
* psoffset
, REG_T c
, int rop
,
1311 Expr_Node
* peoffset
, REG_T reg
)
1313 int soffset
, eoffset
;
1316 soffset
= (EXPR_VALUE (psoffset
) >> 1);
1318 eoffset
= (EXPR_VALUE (peoffset
) >> 1);
1325 conscode (gencode (HI (c_code
.opcode
)),
1326 conctcode (Expr_Node_Gen_Reloc (psoffset
, BFD_RELOC_BFIN_5_PCREL
),
1327 conctcode (gencode (LO (c_code
.opcode
)), Expr_Node_Gen_Reloc (peoffset
, BFD_RELOC_BFIN_11_PCREL
))));
1334 bfin_gen_calla (Expr_Node
* addr
, int S
)
1342 case 0 : reloc
= BFD_RELOC_BFIN_24_PCREL_JUMP_L
; break;
1343 case 1 : reloc
= BFD_RELOC_24_PCREL
; break;
1344 case 2 : reloc
= BFD_RELOC_BFIN_PLTPC
; break;
1350 val
= EXPR_VALUE (addr
) >> 1;
1351 high_val
= val
>> 16;
1353 return conscode (gencode (HI (c_code
.opcode
) | (high_val
& 0xff)),
1354 Expr_Node_Gen_Reloc (addr
, reloc
));
1358 bfin_gen_linkage (int R
, int framesize
)
1365 return GEN_OPCODE32 ();
1369 /* Load and Store. */
1372 bfin_gen_ldimmhalf (REG_T reg
, int H
, int S
, int Z
, Expr_Node
* phword
, int reloc
)
1375 unsigned val
= EXPR_VALUE (phword
);
1383 grp
= (GROUP (reg
));
1387 return conscode (gencode (HI (c_code
.opcode
)), Expr_Node_Gen_Reloc (phword
, BFD_RELOC_BFIN_16_IMM
));
1389 else if (reloc
== 1)
1391 return conscode (gencode (HI (c_code
.opcode
)), Expr_Node_Gen_Reloc (phword
, IS_H (*reg
) ? BFD_RELOC_BFIN_16_HIGH
: BFD_RELOC_BFIN_16_LOW
));
1398 return GEN_OPCODE32 ();
1402 bfin_gen_ldstidxi (REG_T ptr
, REG_T reg
, int W
, int sz
, int Z
, Expr_Node
* poffset
)
1406 if (!IS_PREG (*ptr
) || (!IS_DREG (*reg
) && !Z
))
1408 fprintf (stderr
, "Warning: possible mixup of Preg/Dreg\n");
1419 if (poffset
->type
!= Expr_Node_Constant
)
1421 /* a GOT relocation such as R0 = [P5 + symbol@GOT] */
1422 /* distinguish between R0 = [P5 + symbol@GOT] and
1423 P5 = [P5 + _current_shared_library_p5_offset_]
1425 if (poffset
->type
== Expr_Node_Reloc
1426 && !strcmp (poffset
->value
.s_value
,
1427 "_current_shared_library_p5_offset_"))
1429 return conscode (gencode (HI (c_code
.opcode
)),
1430 Expr_Node_Gen_Reloc(poffset
, BFD_RELOC_16
));
1432 else if (poffset
->type
!= Expr_Node_GOT_Reloc
)
1435 return conscode (gencode (HI (c_code
.opcode
)),
1436 Expr_Node_Gen_Reloc(poffset
->Left_Child
,
1437 poffset
->value
.i_value
));
1443 { // load/store access size
1445 value
= EXPR_VALUE (poffset
) >> 2;
1448 value
= EXPR_VALUE (poffset
) >> 1;
1451 value
= EXPR_VALUE (poffset
);
1457 offset
= (value
& 0xffff);
1459 return GEN_OPCODE32 ();
1465 bfin_gen_ldst (REG_T ptr
, REG_T reg
, int aop
, int sz
, int Z
, int W
)
1469 if (!IS_PREG (*ptr
) || (!IS_DREG (*reg
) && !Z
))
1471 fprintf (stderr
, "Warning: possible mixup of Preg/Dreg\n");
1482 return GEN_OPCODE16 ();
1486 bfin_gen_ldstii (REG_T ptr
, REG_T reg
, Expr_Node
* poffset
, int W
, int op
)
1493 if (!IS_PREG (*ptr
))
1495 fprintf (stderr
, "Warning: possible mixup of Preg/Dreg\n");
1503 value
= EXPR_VALUE (poffset
) >> 1;
1507 value
= EXPR_VALUE (poffset
) >> 2;
1519 return GEN_OPCODE16 ();
1523 bfin_gen_ldstiifp (REG_T sreg
, Expr_Node
* poffset
, int W
)
1525 /* Set bit 4 if it's a Preg. */
1526 int reg
= (sreg
->regno
& CODE_MASK
) | (IS_PREG (*sreg
) ? 0x8 : 0x0);
1527 int offset
= ((~(EXPR_VALUE (poffset
) >> 2)) & 0x1f) + 1;
1533 return GEN_OPCODE16 ();
1537 bfin_gen_ldstpmod (REG_T ptr
, REG_T reg
, int aop
, int W
, REG_T idx
)
1547 return GEN_OPCODE16 ();
1551 bfin_gen_dspldst (REG_T i
, REG_T reg
, int aop
, int W
, int m
)
1561 return GEN_OPCODE16 ();
1565 bfin_gen_logi2op (int opc
, int src
, int dst
)
1573 return GEN_OPCODE16 ();
1577 bfin_gen_brcc (int T
, int B
, Expr_Node
* poffset
)
1584 offset
= ((EXPR_VALUE (poffset
) >> 1));
1586 return conscode (gencode (c_code
.opcode
), Expr_Node_Gen_Reloc (poffset
, BFD_RELOC_BFIN_10_PCREL
));
1590 bfin_gen_ujump (Expr_Node
* poffset
)
1595 offset
= ((EXPR_VALUE (poffset
) >> 1));
1598 return conscode (gencode (c_code
.opcode
),
1599 Expr_Node_Gen_Reloc (
1600 poffset
, BFD_RELOC_BFIN_12_PCREL_JUMP_S
));
1604 bfin_gen_alu2op (REG_T dst
, REG_T src
, int opc
)
1612 return GEN_OPCODE16 ();
1616 bfin_gen_compi2opd (REG_T dst
, int src
, int op
)
1624 return GEN_OPCODE16 ();
1628 bfin_gen_compi2opp (REG_T dst
, int src
, int op
)
1636 return GEN_OPCODE16 ();
1640 bfin_gen_dagmodik (REG_T i
, int op
)
1647 return GEN_OPCODE16 ();
1651 bfin_gen_dagmodim (REG_T i
, REG_T m
, int op
, int br
)
1660 return GEN_OPCODE16 ();
1664 bfin_gen_ptr2op (REG_T dst
, REG_T src
, int opc
)
1672 return GEN_OPCODE16 ();
1676 bfin_gen_comp3op (REG_T src0
, REG_T src1
, REG_T dst
, int opc
)
1685 return GEN_OPCODE16 ();
1689 bfin_gen_ccflag (REG_T x
, int y
, int opc
, int I
, int G
)
1699 return GEN_OPCODE16 ();
1703 bfin_gen_ccmv (REG_T src
, REG_T dst
, int T
)
1716 return GEN_OPCODE16 ();
1720 bfin_gen_cc2stat (int cbit
, int op
, int D
)
1728 return GEN_OPCODE16 ();
1732 bfin_gen_regmv (REG_T src
, REG_T dst
)
1745 return GEN_OPCODE16 ();
1749 bfin_gen_cc2dreg (int op
, REG_T reg
)
1756 return GEN_OPCODE16 ();
1760 bfin_gen_progctrl (int prgfunc
, int poprnd
)
1767 return GEN_OPCODE16 ();
1771 bfin_gen_cactrl (REG_T reg
, int a
, int op
)
1779 return GEN_OPCODE16 ();
1783 bfin_gen_pushpopmultiple (int dr
, int pr
, int d
, int p
, int W
)
1785 INIT (PushPopMultiple
);
1793 return GEN_OPCODE16 ();
1797 bfin_gen_pushpopreg (REG_T reg
, int W
)
1803 grp
= (GROUP (reg
));
1807 return GEN_OPCODE16 ();
1810 /* Pseudo Debugging Support. */
1813 bfin_gen_pseudodbg (int fn
, int reg
, int grp
)
1821 return GEN_OPCODE16 ();
1825 bfin_gen_pseudodbg_assert (int dbgop
, REG_T regtest
, int expected
)
1827 INIT (PseudoDbg_Assert
);
1833 return GEN_OPCODE32 ();
1836 /* Multiple instruction generation. */
1839 bfin_gen_multi_instr (INSTR_T dsp32
, INSTR_T dsp16_grp1
, INSTR_T dsp16_grp2
)
1843 /* If it's a 0, convert into MNOP. */
1847 SET_MULTI_INSTRUCTION_BIT (dsp32
);
1851 dsp32
= gencode (0xc803);
1852 walk
= gencode (0x1800);
1858 dsp16_grp1
= gencode (0x0000);
1863 dsp16_grp2
= gencode (0x0000);
1866 walk
->next
= dsp16_grp1
;
1867 dsp16_grp1
->next
= dsp16_grp2
;
1868 dsp16_grp2
->next
= NULL_CODE
;
1874 bfin_gen_loop (Expr_Node
*expr
, REG_T reg
, int rop
, REG_T preg
)
1876 const char *loopsym
;
1877 char *lbeginsym
, *lendsym
;
1878 Expr_Node_Value lbeginval
, lendval
;
1879 Expr_Node
*lbegin
, *lend
;
1881 loopsym
= expr
->value
.s_value
;
1882 lbeginsym
= (char *) xmalloc (strlen (loopsym
) + strlen ("__BEGIN") + 5);
1883 lendsym
= (char *) xmalloc (strlen (loopsym
) + strlen ("__END") + 5);
1888 strcat (lbeginsym
, "L$L$");
1889 strcat (lbeginsym
, loopsym
);
1890 strcat (lbeginsym
, "__BEGIN");
1892 strcat (lendsym
, "L$L$");
1893 strcat (lendsym
, loopsym
);
1894 strcat (lendsym
, "__END");
1896 lbeginval
.s_value
= lbeginsym
;
1897 lendval
.s_value
= lendsym
;
1899 lbegin
= Expr_Node_Create (Expr_Node_Reloc
, lbeginval
, NULL
, NULL
);
1900 lend
= Expr_Node_Create (Expr_Node_Reloc
, lendval
, NULL
, NULL
);
1901 return bfin_gen_loopsetup(lbegin
, reg
, rop
, lend
, preg
);
1905 bfin_eol_in_insn (char *line
)
1907 /* Allow a new-line to appear in the middle of a multi-issue instruction. */
1914 /* A semi-colon followed by a newline is always the end of a line. */
1915 if (line
[-1] == ';')
1918 if (line
[-1] == '|')
1921 /* If the || is on the next line, there might be leading whitespace. */
1923 while (*temp
== ' ' || *temp
== '\t') temp
++;
1932 bfin_start_label (char *ptr
)
1935 while (!ISSPACE (*ptr
) && !is_end_of_line
[(unsigned char) *ptr
])
1939 if (*ptr
== '(' || *ptr
== '[')
1946 bfin_force_relocation (struct fix
*fixp
)
1948 if (fixp
->fx_r_type
==BFD_RELOC_BFIN_16_LOW
1949 || fixp
->fx_r_type
== BFD_RELOC_BFIN_16_HIGH
)
1952 return generic_force_reloc (fixp
);