1 /* tc-avr.c -- Assembler code for the ATMEL AVR
3 Copyright 1999, 2000, 2001, 2002, 2004, 2005, 2006
4 Free Software Foundation, Inc.
5 Contributed by Denis Chertykov <denisc@overta.ru>
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. */
25 #include "safe-ctype.h"
32 int insn_size
; /* In words. */
34 unsigned int bin_opcode
;
37 #define AVR_INSN(NAME, CONSTR, OPCODE, SIZE, ISA, BIN) \
38 {#NAME, CONSTR, SIZE, ISA, BIN},
40 struct avr_opcodes_s avr_opcodes
[] =
42 #include "opcode/avr.h"
46 const char comment_chars
[] = ";";
47 const char line_comment_chars
[] = "#";
48 const char line_separator_chars
[] = "$";
50 const char *md_shortopts
= "m:";
58 /* XXX - devices that don't seem to exist (renamed, replaced with larger
59 ones, or planned but never produced), left here for compatibility.
60 TODO: hide them in show_mcu_list output? */
62 static struct mcu_type_s mcu_types
[] =
64 {"avr1", AVR_ISA_TINY1
, bfd_mach_avr1
},
65 {"avr2", AVR_ISA_TINY2
, bfd_mach_avr2
},
66 {"avr3", AVR_ISA_M103
, bfd_mach_avr3
},
67 {"avr4", AVR_ISA_M8
, bfd_mach_avr4
},
68 {"avr5", AVR_ISA_ALL
, bfd_mach_avr5
},
69 {"avr6", AVR_ISA_ALL
, bfd_mach_avr6
},
70 {"at90s1200", AVR_ISA_1200
, bfd_mach_avr1
},
71 {"attiny10", AVR_ISA_TINY1
, bfd_mach_avr1
}, /* XXX -> tn11 */
72 {"attiny11", AVR_ISA_TINY1
, bfd_mach_avr1
},
73 {"attiny12", AVR_ISA_TINY1
, bfd_mach_avr1
},
74 {"attiny15", AVR_ISA_TINY1
, bfd_mach_avr1
},
75 {"attiny28", AVR_ISA_TINY1
, bfd_mach_avr1
},
76 {"at90s2313", AVR_ISA_2xxx
, bfd_mach_avr2
},
77 {"at90s2323", AVR_ISA_2xxx
, bfd_mach_avr2
},
78 {"at90s2333", AVR_ISA_2xxx
, bfd_mach_avr2
}, /* XXX -> 4433 */
79 {"at90s2343", AVR_ISA_2xxx
, bfd_mach_avr2
},
80 {"attiny22", AVR_ISA_2xxx
, bfd_mach_avr2
}, /* XXX -> 2343 */
81 {"attiny26", AVR_ISA_2xxx
, bfd_mach_avr2
},
82 {"at90s4433", AVR_ISA_2xxx
, bfd_mach_avr2
},
83 {"at90s4414", AVR_ISA_2xxx
, bfd_mach_avr2
}, /* XXX -> 8515 */
84 {"at90s4434", AVR_ISA_2xxx
, bfd_mach_avr2
}, /* XXX -> 8535 */
85 {"at90s8515", AVR_ISA_2xxx
, bfd_mach_avr2
},
86 {"at90s8535", AVR_ISA_2xxx
, bfd_mach_avr2
},
87 {"at90c8534", AVR_ISA_2xxx
, bfd_mach_avr2
},
88 {"at86rf401", AVR_ISA_2xxx
, bfd_mach_avr2
},
89 {"attiny13", AVR_ISA_TINY2
, bfd_mach_avr2
},
90 {"attiny2313", AVR_ISA_TINY2
, bfd_mach_avr2
},
91 {"attiny261", AVR_ISA_TINY2
, bfd_mach_avr2
},
92 {"attiny461", AVR_ISA_TINY2
, bfd_mach_avr2
},
93 {"attiny861", AVR_ISA_TINY2
, bfd_mach_avr2
},
94 {"attiny24", AVR_ISA_TINY2
, bfd_mach_avr2
},
95 {"attiny44", AVR_ISA_TINY2
, bfd_mach_avr2
},
96 {"attiny84", AVR_ISA_TINY2
, bfd_mach_avr2
},
97 {"attiny25", AVR_ISA_TINY2
, bfd_mach_avr2
},
98 {"attiny45", AVR_ISA_TINY2
, bfd_mach_avr2
},
99 {"attiny85", AVR_ISA_TINY2
, bfd_mach_avr2
},
100 {"atmega603", AVR_ISA_M603
, bfd_mach_avr3
}, /* XXX -> m103 */
101 {"atmega103", AVR_ISA_M103
, bfd_mach_avr3
},
102 {"at43usb320", AVR_ISA_M103
, bfd_mach_avr3
},
103 {"at43usb355", AVR_ISA_M603
, bfd_mach_avr3
},
104 {"at76c711", AVR_ISA_M603
, bfd_mach_avr3
},
105 {"atmega48", AVR_ISA_PWMx
, bfd_mach_avr4
},
106 {"atmega8", AVR_ISA_M8
, bfd_mach_avr4
},
107 {"atmega83", AVR_ISA_M8
, bfd_mach_avr4
}, /* XXX -> m8535 */
108 {"atmega85", AVR_ISA_M8
, bfd_mach_avr4
}, /* XXX -> m8 */
109 {"atmega88", AVR_ISA_PWMx
, bfd_mach_avr4
},
110 {"atmega8515", AVR_ISA_M8
, bfd_mach_avr4
},
111 {"atmega8535", AVR_ISA_M8
, bfd_mach_avr4
},
112 {"atmega8hva", AVR_ISA_PWMx
, bfd_mach_avr4
},
113 {"at90pwm1", AVR_ISA_PWMx
, bfd_mach_avr4
},
114 {"at90pwm2", AVR_ISA_PWMx
, bfd_mach_avr4
},
115 {"at90pwm3", AVR_ISA_PWMx
, bfd_mach_avr4
},
116 {"atmega16", AVR_ISA_M323
, bfd_mach_avr5
},
117 {"atmega161", AVR_ISA_M161
, bfd_mach_avr5
},
118 {"atmega162", AVR_ISA_M323
, bfd_mach_avr5
},
119 {"atmega163", AVR_ISA_M161
, bfd_mach_avr5
},
120 {"atmega164p", AVR_ISA_M323
, bfd_mach_avr5
},
121 {"atmega165", AVR_ISA_M323
, bfd_mach_avr5
},
122 {"atmega165p", AVR_ISA_M323
, bfd_mach_avr5
},
123 {"atmega168", AVR_ISA_M323
, bfd_mach_avr5
},
124 {"atmega169", AVR_ISA_M323
, bfd_mach_avr5
},
125 {"atmega169p", AVR_ISA_M323
, bfd_mach_avr5
},
126 {"atmega32", AVR_ISA_M323
, bfd_mach_avr5
},
127 {"atmega323", AVR_ISA_M323
, bfd_mach_avr5
},
128 {"atmega324p", AVR_ISA_M323
, bfd_mach_avr5
},
129 {"atmega325", AVR_ISA_M323
, bfd_mach_avr5
},
130 {"atmega325p", AVR_ISA_M323
, bfd_mach_avr5
},
131 {"atmega329", AVR_ISA_M323
, bfd_mach_avr5
},
132 {"atmega329p", AVR_ISA_M323
, bfd_mach_avr5
},
133 {"atmega3250", AVR_ISA_M323
, bfd_mach_avr5
},
134 {"atmega3250p",AVR_ISA_M323
, bfd_mach_avr5
},
135 {"atmega3290", AVR_ISA_M323
, bfd_mach_avr5
},
136 {"atmega3290p",AVR_ISA_M323
, bfd_mach_avr5
},
137 {"atmega406", AVR_ISA_M323
, bfd_mach_avr5
},
138 {"atmega64", AVR_ISA_M323
, bfd_mach_avr5
},
139 {"atmega640", AVR_ISA_M323
, bfd_mach_avr5
},
140 {"atmega644", AVR_ISA_M323
, bfd_mach_avr5
},
141 {"atmega644p", AVR_ISA_M323
, bfd_mach_avr5
},
142 {"atmega128", AVR_ISA_M128
, bfd_mach_avr5
},
143 {"atmega1280", AVR_ISA_M128
, bfd_mach_avr5
},
144 {"atmega1281", AVR_ISA_M128
, bfd_mach_avr5
},
145 {"atmega645", AVR_ISA_M323
, bfd_mach_avr5
},
146 {"atmega649", AVR_ISA_M323
, bfd_mach_avr5
},
147 {"atmega6450", AVR_ISA_M323
, bfd_mach_avr5
},
148 {"atmega6490", AVR_ISA_M323
, bfd_mach_avr5
},
149 {"atmega16hva",AVR_ISA_M323
, bfd_mach_avr5
},
150 {"at90can32" , AVR_ISA_M323
, bfd_mach_avr5
},
151 {"at90can64" , AVR_ISA_M323
, bfd_mach_avr5
},
152 {"at90can128", AVR_ISA_M128
, bfd_mach_avr5
},
153 {"at90usb82", AVR_ISA_M323
, bfd_mach_avr5
},
154 {"at90usb162", AVR_ISA_M323
, bfd_mach_avr5
},
155 {"at90usb646", AVR_ISA_M323
, bfd_mach_avr5
},
156 {"at90usb647", AVR_ISA_M323
, bfd_mach_avr5
},
157 {"at90usb1286",AVR_ISA_M128
, bfd_mach_avr5
},
158 {"at90usb1287",AVR_ISA_M128
, bfd_mach_avr5
},
159 {"at94k", AVR_ISA_94K
, bfd_mach_avr5
},
160 {"atmega2560", AVR_ISA_ALL
, bfd_mach_avr6
},
161 {"atmega2561", AVR_ISA_ALL
, bfd_mach_avr6
},
165 /* Current MCU type. */
166 static struct mcu_type_s default_mcu
= {"avr2", AVR_ISA_2xxx
,bfd_mach_avr2
};
167 static struct mcu_type_s
* avr_mcu
= & default_mcu
;
169 /* AVR target-specific switches. */
172 int all_opcodes
; /* -mall-opcodes: accept all known AVR opcodes. */
173 int no_skip_bug
; /* -mno-skip-bug: no warnings for skipping 2-word insns. */
174 int no_wrap
; /* -mno-wrap: reject rjmp/rcall with 8K wrap-around. */
177 static struct avr_opt_s avr_opt
= { 0, 0, 0 };
179 const char EXP_CHARS
[] = "eE";
180 const char FLT_CHARS
[] = "dD";
182 static void avr_set_arch (int);
184 /* The target specific pseudo-ops which we support. */
185 const pseudo_typeS md_pseudo_table
[] =
187 {"arch", avr_set_arch
, 0},
191 #define LDI_IMMEDIATE(x) (((x) & 0xf) | (((x) << 4) & 0xf00))
193 #define EXP_MOD_NAME(i) exp_mod[i].name
194 #define EXP_MOD_RELOC(i) exp_mod[i].reloc
195 #define EXP_MOD_NEG_RELOC(i) exp_mod[i].neg_reloc
196 #define HAVE_PM_P(i) exp_mod[i].have_pm
201 bfd_reloc_code_real_type reloc
;
202 bfd_reloc_code_real_type neg_reloc
;
206 static struct exp_mod_s exp_mod
[] =
208 {"hh8", BFD_RELOC_AVR_HH8_LDI
, BFD_RELOC_AVR_HH8_LDI_NEG
, 1},
209 {"pm_hh8", BFD_RELOC_AVR_HH8_LDI_PM
, BFD_RELOC_AVR_HH8_LDI_PM_NEG
, 0},
210 {"hi8", BFD_RELOC_AVR_HI8_LDI
, BFD_RELOC_AVR_HI8_LDI_NEG
, 1},
211 {"pm_hi8", BFD_RELOC_AVR_HI8_LDI_PM
, BFD_RELOC_AVR_HI8_LDI_PM_NEG
, 0},
212 {"lo8", BFD_RELOC_AVR_LO8_LDI
, BFD_RELOC_AVR_LO8_LDI_NEG
, 1},
213 {"pm_lo8", BFD_RELOC_AVR_LO8_LDI_PM
, BFD_RELOC_AVR_LO8_LDI_PM_NEG
, 0},
214 {"hlo8", BFD_RELOC_AVR_HH8_LDI
, BFD_RELOC_AVR_HH8_LDI_NEG
, 0},
215 {"hhi8", BFD_RELOC_AVR_MS8_LDI
, BFD_RELOC_AVR_MS8_LDI_NEG
, 0},
218 /* A union used to store indicies into the exp_mod[] array
219 in a hash table which expects void * data types. */
226 /* Opcode hash table. */
227 static struct hash_control
*avr_hash
;
229 /* Reloc modifiers hash control (hh8,hi8,lo8,pm_xx). */
230 static struct hash_control
*avr_mod_hash
;
232 #define OPTION_MMCU 'm'
235 OPTION_ALL_OPCODES
= OPTION_MD_BASE
+ 1,
240 struct option md_longopts
[] =
242 { "mmcu", required_argument
, NULL
, OPTION_MMCU
},
243 { "mall-opcodes", no_argument
, NULL
, OPTION_ALL_OPCODES
},
244 { "mno-skip-bug", no_argument
, NULL
, OPTION_NO_SKIP_BUG
},
245 { "mno-wrap", no_argument
, NULL
, OPTION_NO_WRAP
},
246 { NULL
, no_argument
, NULL
, 0 }
249 size_t md_longopts_size
= sizeof (md_longopts
);
251 /* Display nicely formatted list of known MCU names. */
254 show_mcu_list (FILE *stream
)
258 fprintf (stream
, _("Known MCU names:"));
261 for (i
= 0; mcu_types
[i
].name
; i
++)
263 int len
= strlen (mcu_types
[i
].name
);
268 fprintf (stream
, " %s", mcu_types
[i
].name
);
271 fprintf (stream
, "\n %s", mcu_types
[i
].name
);
276 fprintf (stream
, "\n");
282 while (*s
== ' ' || *s
== '\t')
287 /* Extract one word from FROM and copy it to TO. */
290 extract_word (char *from
, char *to
, int limit
)
296 /* Drop leading whitespace. */
297 from
= skip_space (from
);
300 /* Find the op code end. */
301 for (op_start
= op_end
= from
; *op_end
!= 0 && is_part_of_name (*op_end
);)
303 to
[size
++] = *op_end
++;
304 if (size
+ 1 >= limit
)
313 md_estimate_size_before_relax (fragS
*fragp ATTRIBUTE_UNUSED
,
314 asection
*seg ATTRIBUTE_UNUSED
)
321 md_show_usage (FILE *stream
)
325 " -mmcu=[avr-name] select microcontroller variant\n"
326 " [avr-name] can be:\n"
327 " avr1 - AT90S1200, ATtiny1x, ATtiny28\n"
328 " avr2 - AT90S2xxx, AT90S4xxx, AT90S8xxx, ATtiny22\n"
329 " avr3 - ATmega103, ATmega603\n"
330 " avr4 - ATmega83, ATmega85\n"
331 " avr5 - ATmega161, ATmega163, ATmega32, AT94K\n"
332 " or immediate microcontroller name.\n"));
334 _(" -mall-opcodes accept all AVR opcodes, even if not supported by MCU\n"
335 " -mno-skip-bug disable warnings for skipping two-word instructions\n"
336 " (default for avr4, avr5)\n"
337 " -mno-wrap reject rjmp/rcall instructions with 8K wrap-around\n"
338 " (default for avr3, avr5)\n"));
339 show_mcu_list (stream
);
343 avr_set_arch (int dummy ATTRIBUTE_UNUSED
)
347 input_line_pointer
= extract_word (input_line_pointer
, str
, 20);
348 md_parse_option (OPTION_MMCU
, str
);
349 bfd_set_arch_mach (stdoutput
, TARGET_ARCH
, avr_mcu
->mach
);
353 md_parse_option (int c
, char *arg
)
360 char *s
= alloca (strlen (arg
) + 1);
367 *t
= TOLOWER (*arg1
++);
371 for (i
= 0; mcu_types
[i
].name
; ++i
)
372 if (strcmp (mcu_types
[i
].name
, s
) == 0)
375 if (!mcu_types
[i
].name
)
377 show_mcu_list (stderr
);
378 as_fatal (_("unknown MCU: %s\n"), arg
);
381 /* It is OK to redefine mcu type within the same avr[1-5] bfd machine
382 type - this for allows passing -mmcu=... via gcc ASM_SPEC as well
383 as .arch ... in the asm output at the same time. */
384 if (avr_mcu
== &default_mcu
|| avr_mcu
->mach
== mcu_types
[i
].mach
)
385 avr_mcu
= &mcu_types
[i
];
387 as_fatal (_("redefinition of mcu type `%s' to `%s'"),
388 avr_mcu
->name
, mcu_types
[i
].name
);
391 case OPTION_ALL_OPCODES
:
392 avr_opt
.all_opcodes
= 1;
394 case OPTION_NO_SKIP_BUG
:
395 avr_opt
.no_skip_bug
= 1;
406 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
411 /* Turn a string in input_line_pointer into a floating point constant
412 of type TYPE, and store the appropriate bytes in *LITP. The number
413 of LITTLENUMS emitted is stored in *SIZEP. An error message is
414 returned, or NULL on OK. */
417 md_atof (int type
, char *litP
, int *sizeP
)
420 LITTLENUM_TYPE words
[4];
421 LITTLENUM_TYPE
*wordP
;
434 return _("bad call to md_atof");
437 t
= atof_ieee (input_line_pointer
, type
, words
);
439 input_line_pointer
= t
;
441 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
443 /* This loop outputs the LITTLENUMs in REVERSE order. */
444 for (wordP
= words
+ prec
- 1; prec
--;)
446 md_number_to_chars (litP
, (valueT
) (*wordP
--), sizeof (LITTLENUM_TYPE
));
447 litP
+= sizeof (LITTLENUM_TYPE
);
454 md_convert_frag (bfd
*abfd ATTRIBUTE_UNUSED
,
455 asection
*sec ATTRIBUTE_UNUSED
,
456 fragS
*fragP ATTRIBUTE_UNUSED
)
465 struct avr_opcodes_s
*opcode
;
467 avr_hash
= hash_new ();
469 /* Insert unique names into hash table. This hash table then provides a
470 quick index to the first opcode with a particular name in the opcode
472 for (opcode
= avr_opcodes
; opcode
->name
; opcode
++)
473 hash_insert (avr_hash
, opcode
->name
, (char *) opcode
);
475 avr_mod_hash
= hash_new ();
477 for (i
= 0; i
< ARRAY_SIZE (exp_mod
); ++i
)
482 hash_insert (avr_mod_hash
, EXP_MOD_NAME (i
), m
.ptr
);
485 bfd_set_arch_mach (stdoutput
, TARGET_ARCH
, avr_mcu
->mach
);
488 /* Resolve STR as a constant expression and return the result.
489 If result greater than MAX then error. */
492 avr_get_constant (char *str
, int max
)
496 str
= skip_space (str
);
497 input_line_pointer
= str
;
500 if (ex
.X_op
!= O_constant
)
501 as_bad (_("constant value required"));
503 if (ex
.X_add_number
> max
|| ex
.X_add_number
< 0)
504 as_bad (_("number must be less than %d"), max
+ 1);
506 return ex
.X_add_number
;
509 /* Parse for ldd/std offset. */
512 avr_offset_expression (expressionS
*exp
)
514 char *str
= input_line_pointer
;
519 str
= extract_word (str
, op
, sizeof (op
));
521 input_line_pointer
= tmp
;
524 /* Warn about expressions that fail to use lo8 (). */
525 if (exp
->X_op
== O_constant
)
527 int x
= exp
->X_add_number
;
529 if (x
< -255 || x
> 255)
530 as_warn (_("constant out of 8-bit range: %d"), x
);
534 /* Parse ordinary expression. */
537 parse_exp (char *s
, expressionS
*op
)
539 input_line_pointer
= s
;
541 if (op
->X_op
== O_absent
)
542 as_bad (_("missing operand"));
543 return input_line_pointer
;
546 /* Parse special expressions (needed for LDI command):
551 where xx is: hh, hi, lo. */
553 static bfd_reloc_code_real_type
554 avr_ldi_expression (expressionS
*exp
)
556 char *str
= input_line_pointer
;
560 int linker_stubs_should_be_generated
= 0;
564 str
= extract_word (str
, op
, sizeof (op
));
570 m
.ptr
= hash_find (avr_mod_hash
, op
);
578 str
= skip_space (str
);
582 bfd_reloc_code_real_type reloc_to_return
;
587 if (strncmp ("pm(", str
, 3) == 0
588 || strncmp ("gs(",str
,3) == 0
589 || strncmp ("-(gs(",str
,5) == 0
590 || strncmp ("-(pm(", str
, 5) == 0)
598 as_bad (_("illegal expression"));
600 if (str
[0] == 'g' || str
[2] == 'g')
601 linker_stubs_should_be_generated
= 1;
613 if (*str
== '-' && *(str
+ 1) == '(')
620 input_line_pointer
= str
;
625 if (*input_line_pointer
!= ')')
627 as_bad (_("`)' required"));
630 input_line_pointer
++;
635 neg_p
? EXP_MOD_NEG_RELOC (mod
) : EXP_MOD_RELOC (mod
);
636 if (linker_stubs_should_be_generated
)
638 switch (reloc_to_return
)
640 case BFD_RELOC_AVR_LO8_LDI_PM
:
641 reloc_to_return
= BFD_RELOC_AVR_LO8_LDI_GS
;
643 case BFD_RELOC_AVR_HI8_LDI_PM
:
644 reloc_to_return
= BFD_RELOC_AVR_HI8_LDI_GS
;
648 as_warn (_("expression dangerous with linker stubs"));
651 return reloc_to_return
;
656 input_line_pointer
= tmp
;
659 /* Warn about expressions that fail to use lo8 (). */
660 if (exp
->X_op
== O_constant
)
662 int x
= exp
->X_add_number
;
664 if (x
< -255 || x
> 255)
665 as_warn (_("constant out of 8-bit range: %d"), x
);
668 return BFD_RELOC_AVR_LDI
;
671 /* Parse one instruction operand.
672 Return operand bitmask. Also fixups can be generated. */
675 avr_operand (struct avr_opcodes_s
*opcode
,
681 unsigned int op_mask
= 0;
682 char *str
= skip_space (*line
);
686 /* Any register operand. */
692 if (*str
== 'r' || *str
== 'R')
696 str
= extract_word (str
, r_name
, sizeof (r_name
));
698 if (ISDIGIT (r_name
[1]))
700 if (r_name
[2] == '\0')
701 op_mask
= r_name
[1] - '0';
702 else if (r_name
[1] != '0'
703 && ISDIGIT (r_name
[2])
704 && r_name
[3] == '\0')
705 op_mask
= (r_name
[1] - '0') * 10 + r_name
[2] - '0';
710 op_mask
= avr_get_constant (str
, 31);
711 str
= input_line_pointer
;
719 if (op_mask
< 16 || op_mask
> 23)
720 as_bad (_("register r16-r23 required"));
726 as_bad (_("register number above 15 required"));
732 as_bad (_("even register number required"));
737 if ((op_mask
& 1) || op_mask
< 24)
738 as_bad (_("register r24, r26, r28 or r30 required"));
739 op_mask
= (op_mask
- 24) >> 1;
744 as_bad (_("register name or number from 0 to 31 required"));
753 str
= skip_space (str
+ 1);
762 as_bad (_("pointer register (X, Y or Z) required"));
764 str
= skip_space (str
+ 1);
769 as_bad (_("cannot both predecrement and postincrement"));
773 /* avr1 can do "ld r,Z" and "st Z,r" but no other pointer
774 registers, no predecrement, no postincrement. */
775 if (!avr_opt
.all_opcodes
&& (op_mask
& 0x100F)
776 && !(avr_mcu
->isa
& AVR_ISA_SRAM
))
777 as_bad (_("addressing mode not supported"));
783 as_bad (_("can't predecrement"));
785 if (! (*str
== 'z' || *str
== 'Z'))
786 as_bad (_("pointer register Z required"));
788 str
= skip_space (str
+ 1);
799 char c
= TOLOWER (*str
++);
804 as_bad (_("pointer register (Y or Z) required"));
805 str
= skip_space (str
);
808 input_line_pointer
= str
;
809 avr_offset_expression (& op_expr
);
810 str
= input_line_pointer
;
811 fix_new_exp (frag_now
, where
, 3,
812 &op_expr
, FALSE
, BFD_RELOC_AVR_6
);
818 str
= parse_exp (str
, &op_expr
);
819 fix_new_exp (frag_now
, where
, opcode
->insn_size
* 2,
820 &op_expr
, FALSE
, BFD_RELOC_AVR_CALL
);
824 str
= parse_exp (str
, &op_expr
);
825 fix_new_exp (frag_now
, where
, opcode
->insn_size
* 2,
826 &op_expr
, TRUE
, BFD_RELOC_AVR_13_PCREL
);
830 str
= parse_exp (str
, &op_expr
);
831 fix_new_exp (frag_now
, where
, opcode
->insn_size
* 2,
832 &op_expr
, TRUE
, BFD_RELOC_AVR_7_PCREL
);
836 str
= parse_exp (str
, &op_expr
);
837 fix_new_exp (frag_now
, where
+ 2, opcode
->insn_size
* 2,
838 &op_expr
, FALSE
, BFD_RELOC_16
);
843 bfd_reloc_code_real_type r_type
;
845 input_line_pointer
= str
;
846 r_type
= avr_ldi_expression (&op_expr
);
847 str
= input_line_pointer
;
848 fix_new_exp (frag_now
, where
, 3,
849 &op_expr
, FALSE
, r_type
);
857 x
= ~avr_get_constant (str
, 255);
858 str
= input_line_pointer
;
859 op_mask
|= (x
& 0xf) | ((x
<< 4) & 0xf00);
864 input_line_pointer
= str
;
865 avr_offset_expression (& op_expr
);
866 str
= input_line_pointer
;
867 fix_new_exp (frag_now
, where
, 3,
868 & op_expr
, FALSE
, BFD_RELOC_AVR_6_ADIW
);
876 x
= avr_get_constant (str
, 7);
877 str
= input_line_pointer
;
888 x
= avr_get_constant (str
, 63);
889 str
= input_line_pointer
;
890 op_mask
|= (x
& 0xf) | ((x
& 0x30) << 5);
898 x
= avr_get_constant (str
, 31);
899 str
= input_line_pointer
;
908 as_bad (_("unknown constraint `%c'"), *op
);
915 /* Parse instruction operands.
916 Return binary opcode. */
919 avr_operands (struct avr_opcodes_s
*opcode
, char **line
)
921 char *op
= opcode
->constraints
;
922 unsigned int bin
= opcode
->bin_opcode
;
923 char *frag
= frag_more (opcode
->insn_size
* 2);
925 int where
= frag
- frag_now
->fr_literal
;
926 static unsigned int prev
= 0; /* Previous opcode. */
928 /* Opcode have operands. */
931 unsigned int reg1
= 0;
932 unsigned int reg2
= 0;
933 int reg1_present
= 0;
934 int reg2_present
= 0;
936 /* Parse first operand. */
937 if (REGISTER_P (*op
))
939 reg1
= avr_operand (opcode
, where
, op
, &str
);
942 /* Parse second operand. */
955 if (REGISTER_P (*op
))
958 str
= skip_space (str
);
960 as_bad (_("`,' required"));
961 str
= skip_space (str
);
963 reg2
= avr_operand (opcode
, where
, op
, &str
);
966 if (reg1_present
&& reg2_present
)
967 reg2
= (reg2
& 0xf) | ((reg2
<< 5) & 0x200);
968 else if (reg2_present
)
976 /* Detect undefined combinations (like ld r31,Z+). */
977 if (!avr_opt
.all_opcodes
&& AVR_UNDEF_P (bin
))
978 as_warn (_("undefined combination of operands"));
980 if (opcode
->insn_size
== 2)
982 /* Warn if the previous opcode was cpse/sbic/sbis/sbrc/sbrs
983 (AVR core bug, fixed in the newer devices). */
984 if (!(avr_opt
.no_skip_bug
||
985 (avr_mcu
->isa
& (AVR_ISA_MUL
| AVR_ISA_MOVW
)))
986 && AVR_SKIP_P (prev
))
987 as_warn (_("skipping two-word instruction"));
989 bfd_putl32 ((bfd_vma
) bin
, frag
);
992 bfd_putl16 ((bfd_vma
) bin
, frag
);
999 /* GAS will call this function for each section at the end of the assembly,
1000 to permit the CPU backend to adjust the alignment of a section. */
1003 md_section_align (asection
*seg
, valueT addr
)
1005 int align
= bfd_get_section_alignment (stdoutput
, seg
);
1006 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
1009 /* If you define this macro, it should return the offset between the
1010 address of a PC relative fixup and the position from which the PC
1011 relative adjustment should be made. On many processors, the base
1012 of a PC relative instruction is the next instruction, so this
1013 macro would return the length of an instruction. */
1016 md_pcrel_from_section (fixS
*fixp
, segT sec
)
1018 if (fixp
->fx_addsy
!= (symbolS
*) NULL
1019 && (!S_IS_DEFINED (fixp
->fx_addsy
)
1020 || (S_GET_SEGMENT (fixp
->fx_addsy
) != sec
)))
1023 return fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1026 /* GAS will call this for each fixup. It should store the correct
1027 value in the object file. */
1030 md_apply_fix (fixS
*fixP
, valueT
* valP
, segT seg
)
1032 unsigned char *where
;
1036 if (fixP
->fx_addsy
== (symbolS
*) NULL
)
1039 else if (fixP
->fx_pcrel
)
1041 segT s
= S_GET_SEGMENT (fixP
->fx_addsy
);
1043 if (s
== seg
|| s
== absolute_section
)
1045 value
+= S_GET_VALUE (fixP
->fx_addsy
);
1050 /* We don't actually support subtracting a symbol. */
1051 if (fixP
->fx_subsy
!= (symbolS
*) NULL
)
1052 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("expression too complex"));
1054 switch (fixP
->fx_r_type
)
1057 fixP
->fx_no_overflow
= 1;
1059 case BFD_RELOC_AVR_7_PCREL
:
1060 case BFD_RELOC_AVR_13_PCREL
:
1063 case BFD_RELOC_AVR_CALL
:
1069 /* Fetch the instruction, insert the fully resolved operand
1070 value, and stuff the instruction back again. */
1071 where
= (unsigned char *) fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
1072 insn
= bfd_getl16 (where
);
1074 switch (fixP
->fx_r_type
)
1076 case BFD_RELOC_AVR_7_PCREL
:
1078 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1079 _("odd address operand: %ld"), value
);
1081 /* Instruction addresses are always right-shifted by 1. */
1083 --value
; /* Correct PC. */
1085 if (value
< -64 || value
> 63)
1086 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1087 _("operand out of range: %ld"), value
);
1088 value
= (value
<< 3) & 0x3f8;
1089 bfd_putl16 ((bfd_vma
) (value
| insn
), where
);
1092 case BFD_RELOC_AVR_13_PCREL
:
1094 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1095 _("odd address operand: %ld"), value
);
1097 /* Instruction addresses are always right-shifted by 1. */
1099 --value
; /* Correct PC. */
1101 if (value
< -2048 || value
> 2047)
1103 /* No wrap for devices with >8K of program memory. */
1104 if ((avr_mcu
->isa
& AVR_ISA_MEGA
) || avr_opt
.no_wrap
)
1105 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1106 _("operand out of range: %ld"), value
);
1110 bfd_putl16 ((bfd_vma
) (value
| insn
), where
);
1114 bfd_putl16 ((bfd_vma
) value
, where
);
1118 bfd_putl16 ((bfd_vma
) value
, where
);
1121 case BFD_RELOC_AVR_16_PM
:
1122 bfd_putl16 ((bfd_vma
) (value
>> 1), where
);
1125 case BFD_RELOC_AVR_LDI
:
1127 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1128 _("operand out of range: %ld"), value
);
1129 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (value
), where
);
1132 case BFD_RELOC_AVR_6
:
1133 if ((value
> 63) || (value
< 0))
1134 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1135 _("operand out of range: %ld"), value
);
1136 bfd_putl16 ((bfd_vma
) insn
| ((value
& 7) | ((value
& (3 << 3)) << 7) | ((value
& (1 << 5)) << 8)), where
);
1139 case BFD_RELOC_AVR_6_ADIW
:
1140 if ((value
> 63) || (value
< 0))
1141 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1142 _("operand out of range: %ld"), value
);
1143 bfd_putl16 ((bfd_vma
) insn
| (value
& 0xf) | ((value
& 0x30) << 2), where
);
1146 case BFD_RELOC_AVR_LO8_LDI
:
1147 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (value
), where
);
1150 case BFD_RELOC_AVR_HI8_LDI
:
1151 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (value
>> 8), where
);
1154 case BFD_RELOC_AVR_MS8_LDI
:
1155 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (value
>> 24), where
);
1158 case BFD_RELOC_AVR_HH8_LDI
:
1159 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (value
>> 16), where
);
1162 case BFD_RELOC_AVR_LO8_LDI_NEG
:
1163 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (-value
), where
);
1166 case BFD_RELOC_AVR_HI8_LDI_NEG
:
1167 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (-value
>> 8), where
);
1170 case BFD_RELOC_AVR_MS8_LDI_NEG
:
1171 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (-value
>> 24), where
);
1174 case BFD_RELOC_AVR_HH8_LDI_NEG
:
1175 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (-value
>> 16), where
);
1178 case BFD_RELOC_AVR_LO8_LDI_PM
:
1179 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (value
>> 1), where
);
1182 case BFD_RELOC_AVR_HI8_LDI_PM
:
1183 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (value
>> 9), where
);
1186 case BFD_RELOC_AVR_HH8_LDI_PM
:
1187 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (value
>> 17), where
);
1190 case BFD_RELOC_AVR_LO8_LDI_PM_NEG
:
1191 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (-value
>> 1), where
);
1194 case BFD_RELOC_AVR_HI8_LDI_PM_NEG
:
1195 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (-value
>> 9), where
);
1198 case BFD_RELOC_AVR_HH8_LDI_PM_NEG
:
1199 bfd_putl16 ((bfd_vma
) insn
| LDI_IMMEDIATE (-value
>> 17), where
);
1202 case BFD_RELOC_AVR_CALL
:
1206 x
= bfd_getl16 (where
);
1208 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1209 _("odd address operand: %ld"), value
);
1211 x
|= ((value
& 0x10000) | ((value
<< 3) & 0x1f00000)) >> 16;
1212 bfd_putl16 ((bfd_vma
) x
, where
);
1213 bfd_putl16 ((bfd_vma
) (value
& 0xffff), where
+ 2);
1218 as_fatal (_("line %d: unknown relocation type: 0x%x"),
1219 fixP
->fx_line
, fixP
->fx_r_type
);
1225 switch (fixP
->fx_r_type
)
1227 case -BFD_RELOC_AVR_HI8_LDI_NEG
:
1228 case -BFD_RELOC_AVR_HI8_LDI
:
1229 case -BFD_RELOC_AVR_LO8_LDI_NEG
:
1230 case -BFD_RELOC_AVR_LO8_LDI
:
1231 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1232 _("only constant expression allowed"));
1241 /* GAS will call this to generate a reloc, passing the resulting reloc
1242 to `bfd_install_relocation'. This currently works poorly, as
1243 `bfd_install_relocation' often does the wrong thing, and instances of
1244 `tc_gen_reloc' have been written to work around the problems, which
1245 in turns makes it difficult to fix `bfd_install_relocation'. */
1247 /* If while processing a fixup, a reloc really needs to be created
1248 then it is done here. */
1251 tc_gen_reloc (asection
*seg ATTRIBUTE_UNUSED
,
1256 if (fixp
->fx_addsy
&& fixp
->fx_subsy
)
1260 if ((S_GET_SEGMENT (fixp
->fx_addsy
) != S_GET_SEGMENT (fixp
->fx_subsy
))
1261 || S_GET_SEGMENT (fixp
->fx_addsy
) == undefined_section
)
1263 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1264 "Difference of symbols in different sections is not supported");
1268 /* We are dealing with two symbols defined in the same section.
1269 Let us fix-up them here. */
1270 value
+= S_GET_VALUE (fixp
->fx_addsy
);
1271 value
-= S_GET_VALUE (fixp
->fx_subsy
);
1273 /* When fx_addsy and fx_subsy both are zero, md_apply_fix
1274 only takes it's second operands for the fixup value. */
1275 fixp
->fx_addsy
= NULL
;
1276 fixp
->fx_subsy
= NULL
;
1277 md_apply_fix (fixp
, (valueT
*) &value
, NULL
);
1282 reloc
= xmalloc (sizeof (arelent
));
1284 reloc
->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
1285 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
1287 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1288 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
1289 if (reloc
->howto
== (reloc_howto_type
*) NULL
)
1291 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1292 _("reloc %d not supported by object file format"),
1293 (int) fixp
->fx_r_type
);
1297 if (fixp
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
1298 || fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
1299 reloc
->address
= fixp
->fx_offset
;
1301 reloc
->addend
= fixp
->fx_offset
;
1307 md_assemble (char *str
)
1309 struct avr_opcodes_s
*opcode
;
1312 str
= skip_space (extract_word (str
, op
, sizeof (op
)));
1315 as_bad (_("can't find opcode "));
1317 opcode
= (struct avr_opcodes_s
*) hash_find (avr_hash
, op
);
1321 as_bad (_("unknown opcode `%s'"), op
);
1325 /* Special case for opcodes with optional operands (lpm, elpm) -
1326 version with operands exists in avr_opcodes[] in the next entry. */
1328 if (*str
&& *opcode
->constraints
== '?')
1331 if (!avr_opt
.all_opcodes
&& (opcode
->isa
& avr_mcu
->isa
) != opcode
->isa
)
1332 as_bad (_("illegal opcode %s for mcu %s"), opcode
->name
, avr_mcu
->name
);
1334 /* We used to set input_line_pointer to the result of get_operands,
1335 but that is wrong. Our caller assumes we don't change it. */
1337 char *t
= input_line_pointer
;
1339 avr_operands (opcode
, &str
);
1340 if (*skip_space (str
))
1341 as_bad (_("garbage at end of line"));
1342 input_line_pointer
= t
;
1346 /* Flag to pass `pm' mode between `avr_parse_cons_expression' and
1347 `avr_cons_fix_new'. */
1348 static int exp_mod_pm
= 0;
1350 /* Parse special CONS expression: pm (expression)
1351 or alternatively: gs (expression).
1352 These are used for addressing program memory.
1353 Relocation: BFD_RELOC_AVR_16_PM. */
1356 avr_parse_cons_expression (expressionS
*exp
, int nbytes
)
1362 tmp
= input_line_pointer
= skip_space (input_line_pointer
);
1366 char *pm_name1
= "pm";
1367 char *pm_name2
= "gs";
1368 int len
= strlen (pm_name1
);
1369 /* len must be the same for both pm identifiers. */
1371 if (strncasecmp (input_line_pointer
, pm_name1
, len
) == 0
1372 || strncasecmp (input_line_pointer
, pm_name2
, len
) == 0)
1374 input_line_pointer
= skip_space (input_line_pointer
+ len
);
1376 if (*input_line_pointer
== '(')
1378 input_line_pointer
= skip_space (input_line_pointer
+ 1);
1382 if (*input_line_pointer
== ')')
1383 ++input_line_pointer
;
1386 as_bad (_("`)' required"));
1393 input_line_pointer
= tmp
;
1401 avr_cons_fix_new (fragS
*frag
,
1406 if (exp_mod_pm
== 0)
1409 fix_new_exp (frag
, where
, nbytes
, exp
, FALSE
, BFD_RELOC_16
);
1410 else if (nbytes
== 4)
1411 fix_new_exp (frag
, where
, nbytes
, exp
, FALSE
, BFD_RELOC_32
);
1413 as_bad (_("illegal %srelocation size: %d"), "", nbytes
);
1418 fix_new_exp (frag
, where
, nbytes
, exp
, FALSE
, BFD_RELOC_AVR_16_PM
);
1420 as_bad (_("illegal %srelocation size: %d"), "`pm' ", nbytes
);