3817683a5b7994b2ca4900bab9b9788587c32cd9
[deliverable/binutils-gdb.git] / gas / config / tc-avr.c
1 /* tc-avr.c -- Assembler code for the ATMEL AVR
2
3 Copyright 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
5 Contributed by Denis Chertykov <denisc@overta.ru>
6
7 This file is part of GAS, the GNU Assembler.
8
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 3, or (at your option)
12 any later version.
13
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.
18
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. */
23
24 #include "as.h"
25 #include "safe-ctype.h"
26 #include "subsegs.h"
27
28 struct avr_opcodes_s
29 {
30 char * name;
31 char * constraints;
32 int insn_size; /* In words. */
33 int isa;
34 unsigned int bin_opcode;
35 };
36
37 #define AVR_INSN(NAME, CONSTR, OPCODE, SIZE, ISA, BIN) \
38 {#NAME, CONSTR, SIZE, ISA, BIN},
39
40 struct avr_opcodes_s avr_opcodes[] =
41 {
42 #include "opcode/avr.h"
43 {NULL, NULL, 0, 0, 0}
44 };
45
46 const char comment_chars[] = ";";
47 const char line_comment_chars[] = "#";
48 const char line_separator_chars[] = "$";
49
50 const char *md_shortopts = "m:";
51 struct mcu_type_s
52 {
53 char *name;
54 int isa;
55 int mach;
56 };
57
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? */
61
62 static struct mcu_type_s mcu_types[] =
63 {
64 {"avr1", AVR_ISA_TINY1, bfd_mach_avr1},
65 {"avr2", AVR_ISA_TINY2, bfd_mach_avr2},
66 {"avr3", AVR_ISA_AVR3, 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 {"attiny11", AVR_ISA_TINY1, bfd_mach_avr1},
72 {"attiny12", AVR_ISA_TINY1, bfd_mach_avr1},
73 {"attiny15", AVR_ISA_TINY1, bfd_mach_avr1},
74 {"attiny28", AVR_ISA_TINY1, bfd_mach_avr1},
75 {"at90s2313", AVR_ISA_2xxx, bfd_mach_avr2},
76 {"at90s2323", AVR_ISA_2xxx, bfd_mach_avr2},
77 {"at90s2333", AVR_ISA_2xxx, bfd_mach_avr2}, /* XXX -> 4433 */
78 {"at90s2343", AVR_ISA_2xxx, bfd_mach_avr2},
79 {"attiny22", AVR_ISA_2xxx, bfd_mach_avr2}, /* XXX -> 2343 */
80 {"attiny26", AVR_ISA_2xxe, bfd_mach_avr2},
81 {"at90s4433", AVR_ISA_2xxx, bfd_mach_avr2},
82 {"at90s4414", AVR_ISA_2xxx, bfd_mach_avr2}, /* XXX -> 8515 */
83 {"at90s4434", AVR_ISA_2xxx, bfd_mach_avr2}, /* XXX -> 8535 */
84 {"at90s8515", AVR_ISA_2xxx, bfd_mach_avr2},
85 {"at90s8535", AVR_ISA_2xxx, bfd_mach_avr2},
86 {"at90c8534", AVR_ISA_2xxx, bfd_mach_avr2},
87 {"at86rf401", AVR_ISA_RF401, bfd_mach_avr2},
88 {"attiny13", AVR_ISA_TINY2, bfd_mach_avr2},
89 {"attiny2313", AVR_ISA_TINY2, bfd_mach_avr2},
90 {"attiny261", AVR_ISA_TINY2, bfd_mach_avr2},
91 {"attiny461", AVR_ISA_TINY2, bfd_mach_avr2},
92 {"attiny861", AVR_ISA_TINY2, bfd_mach_avr2},
93 {"attiny24", AVR_ISA_TINY2, bfd_mach_avr2},
94 {"attiny44", AVR_ISA_TINY2, bfd_mach_avr2},
95 {"attiny84", AVR_ISA_TINY2, bfd_mach_avr2},
96 {"attiny25", AVR_ISA_TINY2, bfd_mach_avr2},
97 {"attiny45", AVR_ISA_TINY2, bfd_mach_avr2},
98 {"attiny85", AVR_ISA_TINY2, bfd_mach_avr2},
99 {"attiny43u", AVR_ISA_TINY2, bfd_mach_avr2},
100 {"attiny48", AVR_ISA_TINY2, bfd_mach_avr2},
101 {"attiny88", AVR_ISA_TINY2, bfd_mach_avr2},
102 {"atmega103", AVR_ISA_M103, bfd_mach_avr3},
103 {"at43usb320", AVR_ISA_M103, bfd_mach_avr3},
104 {"at43usb355", AVR_ISA_M603, bfd_mach_avr3},
105 {"at76c711", AVR_ISA_M603, bfd_mach_avr3},
106 {"at90usb82", AVR_ISA_USB162, bfd_mach_avr3},
107 {"at90usb162", AVR_ISA_USB162, bfd_mach_avr3},
108 {"atmega48", AVR_ISA_PWMx, bfd_mach_avr4},
109 {"atmega48p", AVR_ISA_PWMx, bfd_mach_avr4},
110 {"atmega8", AVR_ISA_M8, bfd_mach_avr4},
111 {"atmega88", AVR_ISA_PWMx, bfd_mach_avr4},
112 {"atmega88p", AVR_ISA_PWMx, bfd_mach_avr4},
113 {"atmega8515", AVR_ISA_M8, bfd_mach_avr4},
114 {"atmega8535", AVR_ISA_M8, bfd_mach_avr4},
115 {"atmega8hva", AVR_ISA_PWMx, bfd_mach_avr4},
116 {"at90pwm1", AVR_ISA_PWMx, bfd_mach_avr4},
117 {"at90pwm2", AVR_ISA_PWMx, bfd_mach_avr4},
118 {"at90pwm2b", AVR_ISA_PWMx, bfd_mach_avr4},
119 {"at90pwm3", AVR_ISA_PWMx, bfd_mach_avr4},
120 {"at90pwm3b", AVR_ISA_PWMx, bfd_mach_avr4},
121 {"atmega16", AVR_ISA_M323, bfd_mach_avr5},
122 {"atmega161", AVR_ISA_M161, bfd_mach_avr5},
123 {"atmega162", AVR_ISA_M323, bfd_mach_avr5},
124 {"atmega163", AVR_ISA_M161, bfd_mach_avr5},
125 {"atmega164p", AVR_ISA_M323, bfd_mach_avr5},
126 {"atmega165", AVR_ISA_M323, bfd_mach_avr5},
127 {"atmega165p", AVR_ISA_M323, bfd_mach_avr5},
128 {"atmega168", AVR_ISA_M323, bfd_mach_avr5},
129 {"atmega168p", AVR_ISA_M323, bfd_mach_avr5},
130 {"atmega169", AVR_ISA_M323, bfd_mach_avr5},
131 {"atmega169p", AVR_ISA_M323, bfd_mach_avr5},
132 {"atmega32", AVR_ISA_M323, bfd_mach_avr5},
133 {"atmega323", AVR_ISA_M323, bfd_mach_avr5},
134 {"atmega324p", AVR_ISA_M323, bfd_mach_avr5},
135 {"atmega325", AVR_ISA_M323, bfd_mach_avr5},
136 {"atmega325p", AVR_ISA_M323, bfd_mach_avr5},
137 {"atmega328p", AVR_ISA_M323, bfd_mach_avr5},
138 {"atmega329", AVR_ISA_M323, bfd_mach_avr5},
139 {"atmega329p", AVR_ISA_M323, bfd_mach_avr5},
140 {"atmega3250", AVR_ISA_M323, bfd_mach_avr5},
141 {"atmega3250p",AVR_ISA_M323, bfd_mach_avr5},
142 {"atmega3290", AVR_ISA_M323, bfd_mach_avr5},
143 {"atmega3290p",AVR_ISA_M323, bfd_mach_avr5},
144 {"atmega32hvb",AVR_ISA_M323, bfd_mach_avr5},
145 {"atmega406", AVR_ISA_M323, bfd_mach_avr5},
146 {"atmega64", AVR_ISA_M323, bfd_mach_avr5},
147 {"atmega640", AVR_ISA_M323, bfd_mach_avr5},
148 {"atmega644", AVR_ISA_M323, bfd_mach_avr5},
149 {"atmega644p", AVR_ISA_M323, bfd_mach_avr5},
150 {"atmega128", AVR_ISA_M128, bfd_mach_avr5},
151 {"atmega1280", AVR_ISA_M128, bfd_mach_avr5},
152 {"atmega1281", AVR_ISA_M128, bfd_mach_avr5},
153 {"atmega1284p",AVR_ISA_M128, bfd_mach_avr5},
154 {"atmega645", AVR_ISA_M323, bfd_mach_avr5},
155 {"atmega649", AVR_ISA_M323, bfd_mach_avr5},
156 {"atmega6450", AVR_ISA_M323, bfd_mach_avr5},
157 {"atmega6490", AVR_ISA_M323, bfd_mach_avr5},
158 {"atmega16hva",AVR_ISA_M323, bfd_mach_avr5},
159 {"at90can32" , AVR_ISA_M323, bfd_mach_avr5},
160 {"at90can64" , AVR_ISA_M323, bfd_mach_avr5},
161 {"at90can128", AVR_ISA_M128, bfd_mach_avr5},
162 {"at90pwm216", AVR_ISA_M323, bfd_mach_avr5},
163 {"at90pwm316", AVR_ISA_M323, bfd_mach_avr5},
164 {"atmega32c1", AVR_ISA_M323, bfd_mach_avr5},
165 {"atmega32m1", AVR_ISA_M323, bfd_mach_avr5},
166 {"at90usb646", AVR_ISA_M323, bfd_mach_avr5},
167 {"at90usb647", AVR_ISA_M323, bfd_mach_avr5},
168 {"at90usb1286",AVR_ISA_M128, bfd_mach_avr5},
169 {"at90usb1287",AVR_ISA_M128, bfd_mach_avr5},
170 {"at94k", AVR_ISA_94K, bfd_mach_avr5},
171 {"atmega2560", AVR_ISA_ALL, bfd_mach_avr6},
172 {"atmega2561", AVR_ISA_ALL, bfd_mach_avr6},
173 {NULL, 0, 0}
174 };
175
176 /* Current MCU type. */
177 static struct mcu_type_s default_mcu = {"avr2", AVR_ISA_2xxx,bfd_mach_avr2};
178 static struct mcu_type_s * avr_mcu = & default_mcu;
179
180 /* AVR target-specific switches. */
181 struct avr_opt_s
182 {
183 int all_opcodes; /* -mall-opcodes: accept all known AVR opcodes. */
184 int no_skip_bug; /* -mno-skip-bug: no warnings for skipping 2-word insns. */
185 int no_wrap; /* -mno-wrap: reject rjmp/rcall with 8K wrap-around. */
186 };
187
188 static struct avr_opt_s avr_opt = { 0, 0, 0 };
189
190 const char EXP_CHARS[] = "eE";
191 const char FLT_CHARS[] = "dD";
192
193 static void avr_set_arch (int);
194
195 /* The target specific pseudo-ops which we support. */
196 const pseudo_typeS md_pseudo_table[] =
197 {
198 {"arch", avr_set_arch, 0},
199 { NULL, NULL, 0}
200 };
201
202 #define LDI_IMMEDIATE(x) (((x) & 0xf) | (((x) << 4) & 0xf00))
203
204 #define EXP_MOD_NAME(i) exp_mod[i].name
205 #define EXP_MOD_RELOC(i) exp_mod[i].reloc
206 #define EXP_MOD_NEG_RELOC(i) exp_mod[i].neg_reloc
207 #define HAVE_PM_P(i) exp_mod[i].have_pm
208
209 struct exp_mod_s
210 {
211 char * name;
212 bfd_reloc_code_real_type reloc;
213 bfd_reloc_code_real_type neg_reloc;
214 int have_pm;
215 };
216
217 static struct exp_mod_s exp_mod[] =
218 {
219 {"hh8", BFD_RELOC_AVR_HH8_LDI, BFD_RELOC_AVR_HH8_LDI_NEG, 1},
220 {"pm_hh8", BFD_RELOC_AVR_HH8_LDI_PM, BFD_RELOC_AVR_HH8_LDI_PM_NEG, 0},
221 {"hi8", BFD_RELOC_AVR_HI8_LDI, BFD_RELOC_AVR_HI8_LDI_NEG, 1},
222 {"pm_hi8", BFD_RELOC_AVR_HI8_LDI_PM, BFD_RELOC_AVR_HI8_LDI_PM_NEG, 0},
223 {"lo8", BFD_RELOC_AVR_LO8_LDI, BFD_RELOC_AVR_LO8_LDI_NEG, 1},
224 {"pm_lo8", BFD_RELOC_AVR_LO8_LDI_PM, BFD_RELOC_AVR_LO8_LDI_PM_NEG, 0},
225 {"hlo8", BFD_RELOC_AVR_HH8_LDI, BFD_RELOC_AVR_HH8_LDI_NEG, 0},
226 {"hhi8", BFD_RELOC_AVR_MS8_LDI, BFD_RELOC_AVR_MS8_LDI_NEG, 0},
227 };
228
229 /* A union used to store indicies into the exp_mod[] array
230 in a hash table which expects void * data types. */
231 typedef union
232 {
233 void * ptr;
234 int index;
235 } mod_index;
236
237 /* Opcode hash table. */
238 static struct hash_control *avr_hash;
239
240 /* Reloc modifiers hash control (hh8,hi8,lo8,pm_xx). */
241 static struct hash_control *avr_mod_hash;
242
243 #define OPTION_MMCU 'm'
244 enum options
245 {
246 OPTION_ALL_OPCODES = OPTION_MD_BASE + 1,
247 OPTION_NO_SKIP_BUG,
248 OPTION_NO_WRAP
249 };
250
251 struct option md_longopts[] =
252 {
253 { "mmcu", required_argument, NULL, OPTION_MMCU },
254 { "mall-opcodes", no_argument, NULL, OPTION_ALL_OPCODES },
255 { "mno-skip-bug", no_argument, NULL, OPTION_NO_SKIP_BUG },
256 { "mno-wrap", no_argument, NULL, OPTION_NO_WRAP },
257 { NULL, no_argument, NULL, 0 }
258 };
259
260 size_t md_longopts_size = sizeof (md_longopts);
261
262 /* Display nicely formatted list of known MCU names. */
263
264 static void
265 show_mcu_list (FILE *stream)
266 {
267 int i, x;
268
269 fprintf (stream, _("Known MCU names:"));
270 x = 1000;
271
272 for (i = 0; mcu_types[i].name; i++)
273 {
274 int len = strlen (mcu_types[i].name);
275
276 x += len + 1;
277
278 if (x < 75)
279 fprintf (stream, " %s", mcu_types[i].name);
280 else
281 {
282 fprintf (stream, "\n %s", mcu_types[i].name);
283 x = len + 2;
284 }
285 }
286
287 fprintf (stream, "\n");
288 }
289
290 static inline char *
291 skip_space (char *s)
292 {
293 while (*s == ' ' || *s == '\t')
294 ++s;
295 return s;
296 }
297
298 /* Extract one word from FROM and copy it to TO. */
299
300 static char *
301 extract_word (char *from, char *to, int limit)
302 {
303 char *op_start;
304 char *op_end;
305 int size = 0;
306
307 /* Drop leading whitespace. */
308 from = skip_space (from);
309 *to = 0;
310
311 /* Find the op code end. */
312 for (op_start = op_end = from; *op_end != 0 && is_part_of_name (*op_end);)
313 {
314 to[size++] = *op_end++;
315 if (size + 1 >= limit)
316 break;
317 }
318
319 to[size] = 0;
320 return op_end;
321 }
322
323 int
324 md_estimate_size_before_relax (fragS *fragp ATTRIBUTE_UNUSED,
325 asection *seg ATTRIBUTE_UNUSED)
326 {
327 abort ();
328 return 0;
329 }
330
331 void
332 md_show_usage (FILE *stream)
333 {
334 fprintf (stream,
335 _("AVR options:\n"
336 " -mmcu=[avr-name] select microcontroller variant\n"
337 " [avr-name] can be:\n"
338 " avr1 - AT90S1200, ATtiny1x, ATtiny28\n"
339 " avr2 - AT90S2xxx, AT90S4xxx, AT90S8xxx, ATtiny22\n"
340 " avr3 - ATmega103\n"
341 " avr4 - ATmega8, ATmega88\n"
342 " avr5 - ATmega161, ATmega163, ATmega32, AT94K\n"
343 " or immediate microcontroller name.\n"));
344 fprintf (stream,
345 _(" -mall-opcodes accept all AVR opcodes, even if not supported by MCU\n"
346 " -mno-skip-bug disable warnings for skipping two-word instructions\n"
347 " (default for avr4, avr5)\n"
348 " -mno-wrap reject rjmp/rcall instructions with 8K wrap-around\n"
349 " (default for avr3, avr5)\n"));
350 show_mcu_list (stream);
351 }
352
353 static void
354 avr_set_arch (int dummy ATTRIBUTE_UNUSED)
355 {
356 char str[20];
357
358 input_line_pointer = extract_word (input_line_pointer, str, 20);
359 md_parse_option (OPTION_MMCU, str);
360 bfd_set_arch_mach (stdoutput, TARGET_ARCH, avr_mcu->mach);
361 }
362
363 int
364 md_parse_option (int c, char *arg)
365 {
366 switch (c)
367 {
368 case OPTION_MMCU:
369 {
370 int i;
371 char *s = alloca (strlen (arg) + 1);
372
373 {
374 char *t = s;
375 char *arg1 = arg;
376
377 do
378 *t = TOLOWER (*arg1++);
379 while (*t++);
380 }
381
382 for (i = 0; mcu_types[i].name; ++i)
383 if (strcmp (mcu_types[i].name, s) == 0)
384 break;
385
386 if (!mcu_types[i].name)
387 {
388 show_mcu_list (stderr);
389 as_fatal (_("unknown MCU: %s\n"), arg);
390 }
391
392 /* It is OK to redefine mcu type within the same avr[1-5] bfd machine
393 type - this for allows passing -mmcu=... via gcc ASM_SPEC as well
394 as .arch ... in the asm output at the same time. */
395 if (avr_mcu == &default_mcu || avr_mcu->mach == mcu_types[i].mach)
396 avr_mcu = &mcu_types[i];
397 else
398 as_fatal (_("redefinition of mcu type `%s' to `%s'"),
399 avr_mcu->name, mcu_types[i].name);
400 return 1;
401 }
402 case OPTION_ALL_OPCODES:
403 avr_opt.all_opcodes = 1;
404 return 1;
405 case OPTION_NO_SKIP_BUG:
406 avr_opt.no_skip_bug = 1;
407 return 1;
408 case OPTION_NO_WRAP:
409 avr_opt.no_wrap = 1;
410 return 1;
411 }
412
413 return 0;
414 }
415
416 symbolS *
417 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
418 {
419 return NULL;
420 }
421
422 char *
423 md_atof (int type, char *litP, int *sizeP)
424 {
425 return ieee_md_atof (type, litP, sizeP, FALSE);
426 }
427
428 void
429 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
430 asection *sec ATTRIBUTE_UNUSED,
431 fragS *fragP ATTRIBUTE_UNUSED)
432 {
433 abort ();
434 }
435
436 void
437 md_begin (void)
438 {
439 unsigned int i;
440 struct avr_opcodes_s *opcode;
441
442 avr_hash = hash_new ();
443
444 /* Insert unique names into hash table. This hash table then provides a
445 quick index to the first opcode with a particular name in the opcode
446 table. */
447 for (opcode = avr_opcodes; opcode->name; opcode++)
448 hash_insert (avr_hash, opcode->name, (char *) opcode);
449
450 avr_mod_hash = hash_new ();
451
452 for (i = 0; i < ARRAY_SIZE (exp_mod); ++i)
453 {
454 mod_index m;
455
456 m.index = i + 10;
457 hash_insert (avr_mod_hash, EXP_MOD_NAME (i), m.ptr);
458 }
459
460 bfd_set_arch_mach (stdoutput, TARGET_ARCH, avr_mcu->mach);
461 }
462
463 /* Resolve STR as a constant expression and return the result.
464 If result greater than MAX then error. */
465
466 static unsigned int
467 avr_get_constant (char *str, int max)
468 {
469 expressionS ex;
470
471 str = skip_space (str);
472 input_line_pointer = str;
473 expression (& ex);
474
475 if (ex.X_op != O_constant)
476 as_bad (_("constant value required"));
477
478 if (ex.X_add_number > max || ex.X_add_number < 0)
479 as_bad (_("number must be positive and less than %d"), max + 1);
480
481 return ex.X_add_number;
482 }
483
484 /* Parse for ldd/std offset. */
485
486 static void
487 avr_offset_expression (expressionS *exp)
488 {
489 char *str = input_line_pointer;
490 char *tmp;
491 char op[8];
492
493 tmp = str;
494 str = extract_word (str, op, sizeof (op));
495
496 input_line_pointer = tmp;
497 expression (exp);
498
499 /* Warn about expressions that fail to use lo8 (). */
500 if (exp->X_op == O_constant)
501 {
502 int x = exp->X_add_number;
503
504 if (x < -255 || x > 255)
505 as_warn (_("constant out of 8-bit range: %d"), x);
506 }
507 }
508
509 /* Parse ordinary expression. */
510
511 static char *
512 parse_exp (char *s, expressionS *op)
513 {
514 input_line_pointer = s;
515 expression (op);
516 if (op->X_op == O_absent)
517 as_bad (_("missing operand"));
518 return input_line_pointer;
519 }
520
521 /* Parse special expressions (needed for LDI command):
522 xx8 (address)
523 xx8 (-address)
524 pm_xx8 (address)
525 pm_xx8 (-address)
526 where xx is: hh, hi, lo. */
527
528 static bfd_reloc_code_real_type
529 avr_ldi_expression (expressionS *exp)
530 {
531 char *str = input_line_pointer;
532 char *tmp;
533 char op[8];
534 int mod;
535 int linker_stubs_should_be_generated = 0;
536
537 tmp = str;
538
539 str = extract_word (str, op, sizeof (op));
540
541 if (op[0])
542 {
543 mod_index m;
544
545 m.ptr = hash_find (avr_mod_hash, op);
546 mod = m.index;
547
548 if (mod)
549 {
550 int closes = 0;
551
552 mod -= 10;
553 str = skip_space (str);
554
555 if (*str == '(')
556 {
557 bfd_reloc_code_real_type reloc_to_return;
558 int neg_p = 0;
559
560 ++str;
561
562 if (strncmp ("pm(", str, 3) == 0
563 || strncmp ("gs(",str,3) == 0
564 || strncmp ("-(gs(",str,5) == 0
565 || strncmp ("-(pm(", str, 5) == 0)
566 {
567 if (HAVE_PM_P (mod))
568 {
569 ++mod;
570 ++closes;
571 }
572 else
573 as_bad (_("illegal expression"));
574
575 if (str[0] == 'g' || str[2] == 'g')
576 linker_stubs_should_be_generated = 1;
577
578 if (*str == '-')
579 {
580 neg_p = 1;
581 ++closes;
582 str += 5;
583 }
584 else
585 str += 3;
586 }
587
588 if (*str == '-' && *(str + 1) == '(')
589 {
590 neg_p ^= 1;
591 ++closes;
592 str += 2;
593 }
594
595 input_line_pointer = str;
596 expression (exp);
597
598 do
599 {
600 if (*input_line_pointer != ')')
601 {
602 as_bad (_("`)' required"));
603 break;
604 }
605 input_line_pointer++;
606 }
607 while (closes--);
608
609 reloc_to_return =
610 neg_p ? EXP_MOD_NEG_RELOC (mod) : EXP_MOD_RELOC (mod);
611 if (linker_stubs_should_be_generated)
612 {
613 switch (reloc_to_return)
614 {
615 case BFD_RELOC_AVR_LO8_LDI_PM:
616 reloc_to_return = BFD_RELOC_AVR_LO8_LDI_GS;
617 break;
618 case BFD_RELOC_AVR_HI8_LDI_PM:
619 reloc_to_return = BFD_RELOC_AVR_HI8_LDI_GS;
620 break;
621
622 default:
623 as_warn (_("expression dangerous with linker stubs"));
624 }
625 }
626 return reloc_to_return;
627 }
628 }
629 }
630
631 input_line_pointer = tmp;
632 expression (exp);
633
634 /* Warn about expressions that fail to use lo8 (). */
635 if (exp->X_op == O_constant)
636 {
637 int x = exp->X_add_number;
638
639 if (x < -255 || x > 255)
640 as_warn (_("constant out of 8-bit range: %d"), x);
641 }
642
643 return BFD_RELOC_AVR_LDI;
644 }
645
646 /* Parse one instruction operand.
647 Return operand bitmask. Also fixups can be generated. */
648
649 static unsigned int
650 avr_operand (struct avr_opcodes_s *opcode,
651 int where,
652 char *op,
653 char **line)
654 {
655 expressionS op_expr;
656 unsigned int op_mask = 0;
657 char *str = skip_space (*line);
658
659 switch (*op)
660 {
661 /* Any register operand. */
662 case 'w':
663 case 'd':
664 case 'r':
665 case 'a':
666 case 'v':
667 if (*str == 'r' || *str == 'R')
668 {
669 char r_name[20];
670
671 str = extract_word (str, r_name, sizeof (r_name));
672 op_mask = 0xff;
673 if (ISDIGIT (r_name[1]))
674 {
675 if (r_name[2] == '\0')
676 op_mask = r_name[1] - '0';
677 else if (r_name[1] != '0'
678 && ISDIGIT (r_name[2])
679 && r_name[3] == '\0')
680 op_mask = (r_name[1] - '0') * 10 + r_name[2] - '0';
681 }
682 }
683 else
684 {
685 op_mask = avr_get_constant (str, 31);
686 str = input_line_pointer;
687 }
688
689 if (op_mask <= 31)
690 {
691 switch (*op)
692 {
693 case 'a':
694 if (op_mask < 16 || op_mask > 23)
695 as_bad (_("register r16-r23 required"));
696 op_mask -= 16;
697 break;
698
699 case 'd':
700 if (op_mask < 16)
701 as_bad (_("register number above 15 required"));
702 op_mask -= 16;
703 break;
704
705 case 'v':
706 if (op_mask & 1)
707 as_bad (_("even register number required"));
708 op_mask >>= 1;
709 break;
710
711 case 'w':
712 if ((op_mask & 1) || op_mask < 24)
713 as_bad (_("register r24, r26, r28 or r30 required"));
714 op_mask = (op_mask - 24) >> 1;
715 break;
716 }
717 break;
718 }
719 as_bad (_("register name or number from 0 to 31 required"));
720 break;
721
722 case 'e':
723 {
724 char c;
725
726 if (*str == '-')
727 {
728 str = skip_space (str + 1);
729 op_mask = 0x1002;
730 }
731 c = TOLOWER (*str);
732 if (c == 'x')
733 op_mask |= 0x100c;
734 else if (c == 'y')
735 op_mask |= 0x8;
736 else if (c != 'z')
737 as_bad (_("pointer register (X, Y or Z) required"));
738
739 str = skip_space (str + 1);
740 if (*str == '+')
741 {
742 ++str;
743 if (op_mask & 2)
744 as_bad (_("cannot both predecrement and postincrement"));
745 op_mask |= 0x1001;
746 }
747
748 /* avr1 can do "ld r,Z" and "st Z,r" but no other pointer
749 registers, no predecrement, no postincrement. */
750 if (!avr_opt.all_opcodes && (op_mask & 0x100F)
751 && !(avr_mcu->isa & AVR_ISA_SRAM))
752 as_bad (_("addressing mode not supported"));
753 }
754 break;
755
756 case 'z':
757 if (*str == '-')
758 as_bad (_("can't predecrement"));
759
760 if (! (*str == 'z' || *str == 'Z'))
761 as_bad (_("pointer register Z required"));
762
763 str = skip_space (str + 1);
764
765 if (*str == '+')
766 {
767 ++str;
768 op_mask |= 1;
769 }
770
771 /* attiny26 can do "lpm" and "lpm r,Z" but not "lpm r,Z+". */
772 if (!avr_opt.all_opcodes
773 && (op_mask & 0x0001)
774 && !(avr_mcu->isa & AVR_ISA_MOVW))
775 as_bad (_("postincrement not supported"));
776 break;
777
778 case 'b':
779 {
780 char c = TOLOWER (*str++);
781
782 if (c == 'y')
783 op_mask |= 0x8;
784 else if (c != 'z')
785 as_bad (_("pointer register (Y or Z) required"));
786 str = skip_space (str);
787 if (*str++ == '+')
788 {
789 input_line_pointer = str;
790 avr_offset_expression (& op_expr);
791 str = input_line_pointer;
792 fix_new_exp (frag_now, where, 3,
793 &op_expr, FALSE, BFD_RELOC_AVR_6);
794 }
795 }
796 break;
797
798 case 'h':
799 str = parse_exp (str, &op_expr);
800 fix_new_exp (frag_now, where, opcode->insn_size * 2,
801 &op_expr, FALSE, BFD_RELOC_AVR_CALL);
802 break;
803
804 case 'L':
805 str = parse_exp (str, &op_expr);
806 fix_new_exp (frag_now, where, opcode->insn_size * 2,
807 &op_expr, TRUE, BFD_RELOC_AVR_13_PCREL);
808 break;
809
810 case 'l':
811 str = parse_exp (str, &op_expr);
812 fix_new_exp (frag_now, where, opcode->insn_size * 2,
813 &op_expr, TRUE, BFD_RELOC_AVR_7_PCREL);
814 break;
815
816 case 'i':
817 str = parse_exp (str, &op_expr);
818 fix_new_exp (frag_now, where + 2, opcode->insn_size * 2,
819 &op_expr, FALSE, BFD_RELOC_16);
820 break;
821
822 case 'M':
823 {
824 bfd_reloc_code_real_type r_type;
825
826 input_line_pointer = str;
827 r_type = avr_ldi_expression (&op_expr);
828 str = input_line_pointer;
829 fix_new_exp (frag_now, where, 3,
830 &op_expr, FALSE, r_type);
831 }
832 break;
833
834 case 'n':
835 {
836 unsigned int x;
837
838 x = ~avr_get_constant (str, 255);
839 str = input_line_pointer;
840 op_mask |= (x & 0xf) | ((x << 4) & 0xf00);
841 }
842 break;
843
844 case 'K':
845 input_line_pointer = str;
846 avr_offset_expression (& op_expr);
847 str = input_line_pointer;
848 fix_new_exp (frag_now, where, 3,
849 & op_expr, FALSE, BFD_RELOC_AVR_6_ADIW);
850 break;
851
852 case 'S':
853 case 's':
854 {
855 unsigned int x;
856
857 x = avr_get_constant (str, 7);
858 str = input_line_pointer;
859 if (*op == 'S')
860 x <<= 4;
861 op_mask |= x;
862 }
863 break;
864
865 case 'P':
866 {
867 unsigned int x;
868
869 x = avr_get_constant (str, 63);
870 str = input_line_pointer;
871 op_mask |= (x & 0xf) | ((x & 0x30) << 5);
872 }
873 break;
874
875 case 'p':
876 {
877 unsigned int x;
878
879 x = avr_get_constant (str, 31);
880 str = input_line_pointer;
881 op_mask |= x << 3;
882 }
883 break;
884
885 case '?':
886 break;
887
888 default:
889 as_bad (_("unknown constraint `%c'"), *op);
890 }
891
892 *line = str;
893 return op_mask;
894 }
895
896 /* Parse instruction operands.
897 Return binary opcode. */
898
899 static unsigned int
900 avr_operands (struct avr_opcodes_s *opcode, char **line)
901 {
902 char *op = opcode->constraints;
903 unsigned int bin = opcode->bin_opcode;
904 char *frag = frag_more (opcode->insn_size * 2);
905 char *str = *line;
906 int where = frag - frag_now->fr_literal;
907 static unsigned int prev = 0; /* Previous opcode. */
908
909 /* Opcode have operands. */
910 if (*op)
911 {
912 unsigned int reg1 = 0;
913 unsigned int reg2 = 0;
914 int reg1_present = 0;
915 int reg2_present = 0;
916
917 /* Parse first operand. */
918 if (REGISTER_P (*op))
919 reg1_present = 1;
920 reg1 = avr_operand (opcode, where, op, &str);
921 ++op;
922
923 /* Parse second operand. */
924 if (*op)
925 {
926 if (*op == ',')
927 ++op;
928
929 if (*op == '=')
930 {
931 reg2 = reg1;
932 reg2_present = 1;
933 }
934 else
935 {
936 if (REGISTER_P (*op))
937 reg2_present = 1;
938
939 str = skip_space (str);
940 if (*str++ != ',')
941 as_bad (_("`,' required"));
942 str = skip_space (str);
943
944 reg2 = avr_operand (opcode, where, op, &str);
945 }
946
947 if (reg1_present && reg2_present)
948 reg2 = (reg2 & 0xf) | ((reg2 << 5) & 0x200);
949 else if (reg2_present)
950 reg2 <<= 4;
951 }
952 if (reg1_present)
953 reg1 <<= 4;
954 bin |= reg1 | reg2;
955 }
956
957 /* Detect undefined combinations (like ld r31,Z+). */
958 if (!avr_opt.all_opcodes && AVR_UNDEF_P (bin))
959 as_warn (_("undefined combination of operands"));
960
961 if (opcode->insn_size == 2)
962 {
963 /* Warn if the previous opcode was cpse/sbic/sbis/sbrc/sbrs
964 (AVR core bug, fixed in the newer devices). */
965 if (!(avr_opt.no_skip_bug ||
966 (avr_mcu->isa & (AVR_ISA_MUL | AVR_ISA_MOVW)))
967 && AVR_SKIP_P (prev))
968 as_warn (_("skipping two-word instruction"));
969
970 bfd_putl32 ((bfd_vma) bin, frag);
971 }
972 else
973 bfd_putl16 ((bfd_vma) bin, frag);
974
975 prev = bin;
976 *line = str;
977 return bin;
978 }
979
980 /* GAS will call this function for each section at the end of the assembly,
981 to permit the CPU backend to adjust the alignment of a section. */
982
983 valueT
984 md_section_align (asection *seg, valueT addr)
985 {
986 int align = bfd_get_section_alignment (stdoutput, seg);
987 return ((addr + (1 << align) - 1) & (-1 << align));
988 }
989
990 /* If you define this macro, it should return the offset between the
991 address of a PC relative fixup and the position from which the PC
992 relative adjustment should be made. On many processors, the base
993 of a PC relative instruction is the next instruction, so this
994 macro would return the length of an instruction. */
995
996 long
997 md_pcrel_from_section (fixS *fixp, segT sec)
998 {
999 if (fixp->fx_addsy != (symbolS *) NULL
1000 && (!S_IS_DEFINED (fixp->fx_addsy)
1001 || (S_GET_SEGMENT (fixp->fx_addsy) != sec)))
1002 return 0;
1003
1004 return fixp->fx_frag->fr_address + fixp->fx_where;
1005 }
1006
1007 /* GAS will call this for each fixup. It should store the correct
1008 value in the object file. */
1009
1010 void
1011 md_apply_fix (fixS *fixP, valueT * valP, segT seg)
1012 {
1013 unsigned char *where;
1014 unsigned long insn;
1015 long value = *valP;
1016
1017 if (fixP->fx_addsy == (symbolS *) NULL)
1018 fixP->fx_done = 1;
1019
1020 else if (fixP->fx_pcrel)
1021 {
1022 segT s = S_GET_SEGMENT (fixP->fx_addsy);
1023
1024 if (s == seg || s == absolute_section)
1025 {
1026 value += S_GET_VALUE (fixP->fx_addsy);
1027 fixP->fx_done = 1;
1028 }
1029 }
1030
1031 /* We don't actually support subtracting a symbol. */
1032 if (fixP->fx_subsy != (symbolS *) NULL)
1033 as_bad_where (fixP->fx_file, fixP->fx_line, _("expression too complex"));
1034
1035 switch (fixP->fx_r_type)
1036 {
1037 default:
1038 fixP->fx_no_overflow = 1;
1039 break;
1040 case BFD_RELOC_AVR_7_PCREL:
1041 case BFD_RELOC_AVR_13_PCREL:
1042 case BFD_RELOC_32:
1043 case BFD_RELOC_16:
1044 case BFD_RELOC_AVR_CALL:
1045 break;
1046 }
1047
1048 if (fixP->fx_done)
1049 {
1050 /* Fetch the instruction, insert the fully resolved operand
1051 value, and stuff the instruction back again. */
1052 where = (unsigned char *) fixP->fx_frag->fr_literal + fixP->fx_where;
1053 insn = bfd_getl16 (where);
1054
1055 switch (fixP->fx_r_type)
1056 {
1057 case BFD_RELOC_AVR_7_PCREL:
1058 if (value & 1)
1059 as_bad_where (fixP->fx_file, fixP->fx_line,
1060 _("odd address operand: %ld"), value);
1061
1062 /* Instruction addresses are always right-shifted by 1. */
1063 value >>= 1;
1064 --value; /* Correct PC. */
1065
1066 if (value < -64 || value > 63)
1067 as_bad_where (fixP->fx_file, fixP->fx_line,
1068 _("operand out of range: %ld"), value);
1069 value = (value << 3) & 0x3f8;
1070 bfd_putl16 ((bfd_vma) (value | insn), where);
1071 break;
1072
1073 case BFD_RELOC_AVR_13_PCREL:
1074 if (value & 1)
1075 as_bad_where (fixP->fx_file, fixP->fx_line,
1076 _("odd address operand: %ld"), value);
1077
1078 /* Instruction addresses are always right-shifted by 1. */
1079 value >>= 1;
1080 --value; /* Correct PC. */
1081
1082 if (value < -2048 || value > 2047)
1083 {
1084 /* No wrap for devices with >8K of program memory. */
1085 if ((avr_mcu->isa & AVR_ISA_MEGA) || avr_opt.no_wrap)
1086 as_bad_where (fixP->fx_file, fixP->fx_line,
1087 _("operand out of range: %ld"), value);
1088 }
1089
1090 value &= 0xfff;
1091 bfd_putl16 ((bfd_vma) (value | insn), where);
1092 break;
1093
1094 case BFD_RELOC_32:
1095 bfd_putl16 ((bfd_vma) value, where);
1096 break;
1097
1098 case BFD_RELOC_16:
1099 bfd_putl16 ((bfd_vma) value, where);
1100 break;
1101
1102 case BFD_RELOC_AVR_16_PM:
1103 bfd_putl16 ((bfd_vma) (value >> 1), where);
1104 break;
1105
1106 case BFD_RELOC_AVR_LDI:
1107 if (value > 255)
1108 as_bad_where (fixP->fx_file, fixP->fx_line,
1109 _("operand out of range: %ld"), value);
1110 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (value), where);
1111 break;
1112
1113 case BFD_RELOC_AVR_6:
1114 if ((value > 63) || (value < 0))
1115 as_bad_where (fixP->fx_file, fixP->fx_line,
1116 _("operand out of range: %ld"), value);
1117 bfd_putl16 ((bfd_vma) insn | ((value & 7) | ((value & (3 << 3)) << 7) | ((value & (1 << 5)) << 8)), where);
1118 break;
1119
1120 case BFD_RELOC_AVR_6_ADIW:
1121 if ((value > 63) || (value < 0))
1122 as_bad_where (fixP->fx_file, fixP->fx_line,
1123 _("operand out of range: %ld"), value);
1124 bfd_putl16 ((bfd_vma) insn | (value & 0xf) | ((value & 0x30) << 2), where);
1125 break;
1126
1127 case BFD_RELOC_AVR_LO8_LDI:
1128 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (value), where);
1129 break;
1130
1131 case BFD_RELOC_AVR_HI8_LDI:
1132 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (value >> 8), where);
1133 break;
1134
1135 case BFD_RELOC_AVR_MS8_LDI:
1136 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (value >> 24), where);
1137 break;
1138
1139 case BFD_RELOC_AVR_HH8_LDI:
1140 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (value >> 16), where);
1141 break;
1142
1143 case BFD_RELOC_AVR_LO8_LDI_NEG:
1144 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (-value), where);
1145 break;
1146
1147 case BFD_RELOC_AVR_HI8_LDI_NEG:
1148 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (-value >> 8), where);
1149 break;
1150
1151 case BFD_RELOC_AVR_MS8_LDI_NEG:
1152 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (-value >> 24), where);
1153 break;
1154
1155 case BFD_RELOC_AVR_HH8_LDI_NEG:
1156 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (-value >> 16), where);
1157 break;
1158
1159 case BFD_RELOC_AVR_LO8_LDI_PM:
1160 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (value >> 1), where);
1161 break;
1162
1163 case BFD_RELOC_AVR_HI8_LDI_PM:
1164 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (value >> 9), where);
1165 break;
1166
1167 case BFD_RELOC_AVR_HH8_LDI_PM:
1168 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (value >> 17), where);
1169 break;
1170
1171 case BFD_RELOC_AVR_LO8_LDI_PM_NEG:
1172 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (-value >> 1), where);
1173 break;
1174
1175 case BFD_RELOC_AVR_HI8_LDI_PM_NEG:
1176 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (-value >> 9), where);
1177 break;
1178
1179 case BFD_RELOC_AVR_HH8_LDI_PM_NEG:
1180 bfd_putl16 ((bfd_vma) insn | LDI_IMMEDIATE (-value >> 17), where);
1181 break;
1182
1183 case BFD_RELOC_AVR_CALL:
1184 {
1185 unsigned long x;
1186
1187 x = bfd_getl16 (where);
1188 if (value & 1)
1189 as_bad_where (fixP->fx_file, fixP->fx_line,
1190 _("odd address operand: %ld"), value);
1191 value >>= 1;
1192 x |= ((value & 0x10000) | ((value << 3) & 0x1f00000)) >> 16;
1193 bfd_putl16 ((bfd_vma) x, where);
1194 bfd_putl16 ((bfd_vma) (value & 0xffff), where + 2);
1195 }
1196 break;
1197
1198 default:
1199 as_fatal (_("line %d: unknown relocation type: 0x%x"),
1200 fixP->fx_line, fixP->fx_r_type);
1201 break;
1202 }
1203 }
1204 else
1205 {
1206 switch (fixP->fx_r_type)
1207 {
1208 case -BFD_RELOC_AVR_HI8_LDI_NEG:
1209 case -BFD_RELOC_AVR_HI8_LDI:
1210 case -BFD_RELOC_AVR_LO8_LDI_NEG:
1211 case -BFD_RELOC_AVR_LO8_LDI:
1212 as_bad_where (fixP->fx_file, fixP->fx_line,
1213 _("only constant expression allowed"));
1214 fixP->fx_done = 1;
1215 break;
1216 default:
1217 break;
1218 }
1219 }
1220 }
1221
1222 /* GAS will call this to generate a reloc, passing the resulting reloc
1223 to `bfd_install_relocation'. This currently works poorly, as
1224 `bfd_install_relocation' often does the wrong thing, and instances of
1225 `tc_gen_reloc' have been written to work around the problems, which
1226 in turns makes it difficult to fix `bfd_install_relocation'. */
1227
1228 /* If while processing a fixup, a reloc really needs to be created
1229 then it is done here. */
1230
1231 arelent *
1232 tc_gen_reloc (asection *seg ATTRIBUTE_UNUSED,
1233 fixS *fixp)
1234 {
1235 arelent *reloc;
1236
1237 if (fixp->fx_addsy && fixp->fx_subsy)
1238 {
1239 long value = 0;
1240
1241 if ((S_GET_SEGMENT (fixp->fx_addsy) != S_GET_SEGMENT (fixp->fx_subsy))
1242 || S_GET_SEGMENT (fixp->fx_addsy) == undefined_section)
1243 {
1244 as_bad_where (fixp->fx_file, fixp->fx_line,
1245 "Difference of symbols in different sections is not supported");
1246 return NULL;
1247 }
1248
1249 /* We are dealing with two symbols defined in the same section.
1250 Let us fix-up them here. */
1251 value += S_GET_VALUE (fixp->fx_addsy);
1252 value -= S_GET_VALUE (fixp->fx_subsy);
1253
1254 /* When fx_addsy and fx_subsy both are zero, md_apply_fix
1255 only takes it's second operands for the fixup value. */
1256 fixp->fx_addsy = NULL;
1257 fixp->fx_subsy = NULL;
1258 md_apply_fix (fixp, (valueT *) &value, NULL);
1259
1260 return NULL;
1261 }
1262
1263 reloc = xmalloc (sizeof (arelent));
1264
1265 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1266 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1267
1268 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1269 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
1270 if (reloc->howto == (reloc_howto_type *) NULL)
1271 {
1272 as_bad_where (fixp->fx_file, fixp->fx_line,
1273 _("reloc %d not supported by object file format"),
1274 (int) fixp->fx_r_type);
1275 return NULL;
1276 }
1277
1278 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1279 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1280 reloc->address = fixp->fx_offset;
1281
1282 reloc->addend = fixp->fx_offset;
1283
1284 return reloc;
1285 }
1286
1287 void
1288 md_assemble (char *str)
1289 {
1290 struct avr_opcodes_s *opcode;
1291 char op[11];
1292
1293 str = skip_space (extract_word (str, op, sizeof (op)));
1294
1295 if (!op[0])
1296 as_bad (_("can't find opcode "));
1297
1298 opcode = (struct avr_opcodes_s *) hash_find (avr_hash, op);
1299
1300 if (opcode == NULL)
1301 {
1302 as_bad (_("unknown opcode `%s'"), op);
1303 return;
1304 }
1305
1306 /* Special case for opcodes with optional operands (lpm, elpm) -
1307 version with operands exists in avr_opcodes[] in the next entry. */
1308
1309 if (*str && *opcode->constraints == '?')
1310 ++opcode;
1311
1312 if (!avr_opt.all_opcodes && (opcode->isa & avr_mcu->isa) != opcode->isa)
1313 as_bad (_("illegal opcode %s for mcu %s"), opcode->name, avr_mcu->name);
1314
1315 /* We used to set input_line_pointer to the result of get_operands,
1316 but that is wrong. Our caller assumes we don't change it. */
1317 {
1318 char *t = input_line_pointer;
1319
1320 avr_operands (opcode, &str);
1321 if (*skip_space (str))
1322 as_bad (_("garbage at end of line"));
1323 input_line_pointer = t;
1324 }
1325 }
1326
1327 /* Flag to pass `pm' mode between `avr_parse_cons_expression' and
1328 `avr_cons_fix_new'. */
1329 static int exp_mod_pm = 0;
1330
1331 /* Parse special CONS expression: pm (expression)
1332 or alternatively: gs (expression).
1333 These are used for addressing program memory.
1334 Relocation: BFD_RELOC_AVR_16_PM. */
1335
1336 void
1337 avr_parse_cons_expression (expressionS *exp, int nbytes)
1338 {
1339 char *tmp;
1340
1341 exp_mod_pm = 0;
1342
1343 tmp = input_line_pointer = skip_space (input_line_pointer);
1344
1345 if (nbytes == 2)
1346 {
1347 char *pm_name1 = "pm";
1348 char *pm_name2 = "gs";
1349 int len = strlen (pm_name1);
1350 /* len must be the same for both pm identifiers. */
1351
1352 if (strncasecmp (input_line_pointer, pm_name1, len) == 0
1353 || strncasecmp (input_line_pointer, pm_name2, len) == 0)
1354 {
1355 input_line_pointer = skip_space (input_line_pointer + len);
1356
1357 if (*input_line_pointer == '(')
1358 {
1359 input_line_pointer = skip_space (input_line_pointer + 1);
1360 exp_mod_pm = 1;
1361 expression (exp);
1362
1363 if (*input_line_pointer == ')')
1364 ++input_line_pointer;
1365 else
1366 {
1367 as_bad (_("`)' required"));
1368 exp_mod_pm = 0;
1369 }
1370
1371 return;
1372 }
1373
1374 input_line_pointer = tmp;
1375 }
1376 }
1377
1378 expression (exp);
1379 }
1380
1381 void
1382 avr_cons_fix_new (fragS *frag,
1383 int where,
1384 int nbytes,
1385 expressionS *exp)
1386 {
1387 if (exp_mod_pm == 0)
1388 {
1389 if (nbytes == 2)
1390 fix_new_exp (frag, where, nbytes, exp, FALSE, BFD_RELOC_16);
1391 else if (nbytes == 4)
1392 fix_new_exp (frag, where, nbytes, exp, FALSE, BFD_RELOC_32);
1393 else
1394 as_bad (_("illegal %srelocation size: %d"), "", nbytes);
1395 }
1396 else
1397 {
1398 if (nbytes == 2)
1399 fix_new_exp (frag, where, nbytes, exp, FALSE, BFD_RELOC_AVR_16_PM);
1400 else
1401 as_bad (_("illegal %srelocation size: %d"), "`pm' ", nbytes);
1402 exp_mod_pm = 0;
1403 }
1404 }
This page took 0.059377 seconds and 4 git commands to generate.