| /* tc-z80.c -- Assemble code for the Zilog Z80, Z180, EZ80 and ASCII R800 |
| Copyright (C) 2005-2021 Free Software Foundation, Inc. |
| Contributed by Arnold Metselaar <arnold_m@operamail.com> |
| |
| This file is part of GAS, the GNU Assembler. |
| |
| GAS is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation; either version 3, or (at your option) |
| any later version. |
| |
| GAS is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with GAS; see the file COPYING. If not, write to the Free |
| Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA |
| 02110-1301, USA. */ |
| |
| #include "as.h" |
| #include "safe-ctype.h" |
| #include "subsegs.h" |
| #include "elf/z80.h" |
| #include "dwarf2dbg.h" |
| #include "dw2gencfi.h" |
| |
| /* Exported constants. */ |
| const char comment_chars[] = ";\0"; |
| const char line_comment_chars[] = "#;\0"; |
| const char line_separator_chars[] = "\0"; |
| const char EXP_CHARS[] = "eE\0"; |
| const char FLT_CHARS[] = "RrDdFfSsHh\0"; |
| |
| /* For machine specific options. */ |
| const char * md_shortopts = ""; /* None yet. */ |
| |
| enum options |
| { |
| OPTION_MARCH = OPTION_MD_BASE, |
| OPTION_MACH_Z80, |
| OPTION_MACH_R800, |
| OPTION_MACH_Z180, |
| OPTION_MACH_EZ80_Z80, |
| OPTION_MACH_EZ80_ADL, |
| OPTION_MACH_INST, |
| OPTION_MACH_NO_INST, |
| OPTION_MACH_IUD, |
| OPTION_MACH_WUD, |
| OPTION_MACH_FUD, |
| OPTION_MACH_IUP, |
| OPTION_MACH_WUP, |
| OPTION_MACH_FUP, |
| OPTION_FP_SINGLE_FORMAT, |
| OPTION_FP_DOUBLE_FORMAT, |
| OPTION_COMPAT_LL_PREFIX, |
| OPTION_COMPAT_COLONLESS, |
| OPTION_COMPAT_SDCC |
| }; |
| |
| #define INS_Z80 (1 << 0) |
| #define INS_R800 (1 << 1) |
| #define INS_GBZ80 (1 << 2) |
| #define INS_Z180 (1 << 3) |
| #define INS_EZ80 (1 << 4) |
| #define INS_Z80N (1 << 5) |
| #define INS_MARCH_MASK 0xffff |
| |
| #define INS_IDX_HALF (1 << 16) |
| #define INS_IN_F_C (1 << 17) |
| #define INS_OUT_C_0 (1 << 18) |
| #define INS_SLI (1 << 19) |
| #define INS_ROT_II_LD (1 << 20) /* instructions like SLA (ii+d),r; which is: LD r,(ii+d); SLA r; LD (ii+d),r */ |
| #define INS_TUNE_MASK 0xffff0000 |
| |
| #define INS_NOT_GBZ80 (INS_Z80 | INS_Z180 | INS_R800 | INS_EZ80 | INS_Z80N) |
| |
| #define INS_ALL 0 |
| #define INS_UNDOC (INS_IDX_HALF | INS_IN_F_C) |
| #define INS_UNPORT (INS_OUT_C_0 | INS_SLI | INS_ROT_II_LD) |
| |
| struct option md_longopts[] = |
| { |
| { "march", required_argument, NULL, OPTION_MARCH}, |
| { "z80", no_argument, NULL, OPTION_MACH_Z80}, |
| { "r800", no_argument, NULL, OPTION_MACH_R800}, |
| { "z180", no_argument, NULL, OPTION_MACH_Z180}, |
| { "ez80", no_argument, NULL, OPTION_MACH_EZ80_Z80}, |
| { "ez80-adl", no_argument, NULL, OPTION_MACH_EZ80_ADL}, |
| { "fp-s", required_argument, NULL, OPTION_FP_SINGLE_FORMAT}, |
| { "fp-d", required_argument, NULL, OPTION_FP_DOUBLE_FORMAT}, |
| { "strict", no_argument, NULL, OPTION_MACH_FUD}, |
| { "full", no_argument, NULL, OPTION_MACH_IUP}, |
| { "with-inst", required_argument, NULL, OPTION_MACH_INST}, |
| { "Wnins", required_argument, NULL, OPTION_MACH_INST}, |
| { "without-inst", required_argument, NULL, OPTION_MACH_NO_INST}, |
| { "local-prefix", required_argument, NULL, OPTION_COMPAT_LL_PREFIX}, |
| { "colonless", no_argument, NULL, OPTION_COMPAT_COLONLESS}, |
| { "sdcc", no_argument, NULL, OPTION_COMPAT_SDCC}, |
| { "Fins", required_argument, NULL, OPTION_MACH_NO_INST}, |
| { "ignore-undocumented-instructions", no_argument, NULL, OPTION_MACH_IUD }, |
| { "Wnud", no_argument, NULL, OPTION_MACH_IUD }, |
| { "warn-undocumented-instructions", no_argument, NULL, OPTION_MACH_WUD }, |
| { "Wud", no_argument, NULL, OPTION_MACH_WUD }, |
| { "forbid-undocumented-instructions", no_argument, NULL, OPTION_MACH_FUD }, |
| { "Fud", no_argument, NULL, OPTION_MACH_FUD }, |
| { "ignore-unportable-instructions", no_argument, NULL, OPTION_MACH_IUP }, |
| { "Wnup", no_argument, NULL, OPTION_MACH_IUP }, |
| { "warn-unportable-instructions", no_argument, NULL, OPTION_MACH_WUP }, |
| { "Wup", no_argument, NULL, OPTION_MACH_WUP }, |
| { "forbid-unportable-instructions", no_argument, NULL, OPTION_MACH_FUP }, |
| { "Fup", no_argument, NULL, OPTION_MACH_FUP }, |
| |
| { NULL, no_argument, NULL, 0 } |
| } ; |
| |
| size_t md_longopts_size = sizeof (md_longopts); |
| |
| extern int coff_flags; |
| /* Instruction classes that silently assembled. */ |
| static int ins_ok = INS_Z80 | INS_UNDOC; |
| /* Instruction classes that generate errors. */ |
| static int ins_err = ~(INS_Z80 | INS_UNDOC); |
| /* eZ80 CPU mode (ADL or Z80) */ |
| static int cpu_mode = 0; /* 0 - Z80, 1 - ADL */ |
| /* accept SDCC specific instruction encoding */ |
| static int sdcc_compat = 0; |
| /* accept colonless labels */ |
| static int colonless_labels = 0; |
| /* local label prefix (NULL - default) */ |
| static const char *local_label_prefix = NULL; |
| /* floating point support */ |
| typedef const char *(*str_to_float_t)(char *litP, int *sizeP); |
| static str_to_float_t str_to_float; |
| static str_to_float_t str_to_double; |
| |
| /* mode of current instruction */ |
| #define INST_MODE_S 0 /* short data mode */ |
| #define INST_MODE_IS 0 /* short instruction mode */ |
| #define INST_MODE_L 2 /* long data mode */ |
| #define INST_MODE_IL 1 /* long instruction mode */ |
| #define INST_MODE_FORCED 4 /* CPU mode changed by instruction suffix*/ |
| static char inst_mode; |
| |
| struct match_info |
| { |
| const char *name; |
| int ins_ok; |
| int ins_err; |
| int cpu_mode; |
| const char *comment; |
| }; |
| |
| static const struct match_info |
| match_cpu_table [] = |
| { |
| {"z80", INS_Z80, 0, 0, "Zilog Z80" }, |
| {"ez80", INS_EZ80, 0, 0, "Zilog eZ80" }, |
| {"gbz80", INS_GBZ80, INS_UNDOC|INS_UNPORT, 0, "GameBoy Z80" }, |
| {"r800", INS_R800, INS_UNPORT, 0, "Ascii R800" }, |
| {"z180", INS_Z180, INS_UNDOC|INS_UNPORT, 0, "Zilog Z180" }, |
| {"z80n", INS_Z80N, 0, 0, "Z80 Next" } |
| }; |
| |
| static const struct match_info |
| match_ext_table [] = |
| { |
| {"full", INS_UNDOC|INS_UNPORT, 0, 0, "assemble all known instructions" }, |
| {"adl", 0, 0, 1, "eZ80 ADL mode by default" }, |
| {"xyhl", INS_IDX_HALF, 0, 0, "instructions with halves of index registers" }, |
| {"infc", INS_IN_F_C, 0, 0, "instruction IN F,(C)" }, |
| {"outc0", INS_OUT_C_0, 0, 0, "instruction OUT (C),0" }, |
| {"sli", INS_SLI, 0, 0, "instruction known as SLI, SLL, or SL1" }, |
| {"xdcb", INS_ROT_II_LD, 0, 0, "instructions like RL (IX+d),R (DD/FD CB dd oo)" } |
| }; |
| |
| |
| static int signed_overflow (signed long value, unsigned bitsize); |
| static int unsigned_overflow (unsigned long value, unsigned bitsize); |
| static int is_overflow (long value, unsigned bitsize); |
| |
| static void |
| setup_march (const char *name, int *ok, int *err, int *mode) |
| { |
| unsigned i; |
| size_t len = strcspn (name, "+-"); |
| for (i = 0; i < ARRAY_SIZE (match_cpu_table); ++i) |
| if (!strncasecmp (name, match_cpu_table[i].name, len) |
| && strlen (match_cpu_table[i].name) == len) |
| { |
| *ok = match_cpu_table[i].ins_ok; |
| *err = match_cpu_table[i].ins_err; |
| *mode = match_cpu_table[i].cpu_mode; |
| break; |
| } |
| |
| if (i >= ARRAY_SIZE (match_cpu_table)) |
| as_fatal (_("Invalid CPU is specified: %s"), name); |
| |
| while (name[len]) |
| { |
| name = &name[len + 1]; |
| len = strcspn (name, "+-"); |
| for (i = 0; i < ARRAY_SIZE (match_ext_table); ++i) |
| if (!strncasecmp (name, match_ext_table[i].name, len) |
| && strlen (match_ext_table[i].name) == len) |
| { |
| if (name[-1] == '+') |
| { |
| *ok |= match_ext_table[i].ins_ok; |
| *err &= ~match_ext_table[i].ins_ok; |
| *mode |= match_ext_table[i].cpu_mode; |
| } |
| else |
| { |
| *ok &= ~match_ext_table[i].ins_ok; |
| *err |= match_ext_table[i].ins_ok; |
| *mode &= ~match_ext_table[i].cpu_mode; |
| } |
| break; |
| } |
| if (i >= ARRAY_SIZE (match_ext_table)) |
| as_fatal (_("Invalid EXTENSION is specified: %s"), name); |
| } |
| } |
| |
| static int |
| setup_instruction (const char *inst, int *add, int *sub) |
| { |
| int n; |
| if (!strcmp (inst, "idx-reg-halves")) |
| n = INS_IDX_HALF; |
| else if (!strcmp (inst, "sli")) |
| n = INS_SLI; |
| else if (!strcmp (inst, "op-ii-ld")) |
| n = INS_ROT_II_LD; |
| else if (!strcmp (inst, "in-f-c")) |
| n = INS_IN_F_C; |
| else if (!strcmp (inst, "out-c-0")) |
| n = INS_OUT_C_0; |
| else |
| return 0; |
| *add |= n; |
| *sub &= ~n; |
| return 1; |
| } |
| |
| static const char * |
| str_to_zeda32 (char *litP, int *sizeP); |
| static const char * |
| str_to_float48 (char *litP, int *sizeP); |
| static const char * |
| str_to_ieee754_h (char *litP, int *sizeP); |
| static const char * |
| str_to_ieee754_s (char *litP, int *sizeP); |
| static const char * |
| str_to_ieee754_d (char *litP, int *sizeP); |
| |
| static str_to_float_t |
| get_str_to_float (const char *arg) |
| { |
| if (strcasecmp (arg, "zeda32") == 0) |
| return str_to_zeda32; |
| |
| if (strcasecmp (arg, "math48") == 0) |
| return str_to_float48; |
| |
| if (strcasecmp (arg, "half") != 0) |
| return str_to_ieee754_h; |
| |
| if (strcasecmp (arg, "single") != 0) |
| return str_to_ieee754_s; |
| |
| if (strcasecmp (arg, "double") != 0) |
| return str_to_ieee754_d; |
| |
| if (strcasecmp (arg, "ieee754") == 0) |
| as_fatal (_("invalid floating point numbers type `%s'"), arg); |
| return NULL; |
| } |
| |
| static int |
| setup_instruction_list (const char *list, int *add, int *sub) |
| { |
| char buf[16]; |
| const char *b; |
| const char *e; |
| int sz; |
| int res = 0; |
| for (b = list; *b != '\0';) |
| { |
| e = strchr (b, ','); |
| if (e == NULL) |
| sz = strlen (b); |
| else |
| sz = e - b; |
| if (sz == 0 || sz >= (int)sizeof (buf)) |
| { |
| as_bad (_("invalid INST in command line: %s"), b); |
| return 0; |
| } |
| memcpy (buf, b, sz); |
| buf[sz] = '\0'; |
| if (setup_instruction (buf, add, sub)) |
| res++; |
| else |
| { |
| as_bad (_("invalid INST in command line: %s"), buf); |
| return 0; |
| } |
| b = &b[sz]; |
| if (*b == ',') |
| ++b; |
| } |
| return res; |
| } |
| |
| int |
| md_parse_option (int c, const char* arg) |
| { |
| switch (c) |
| { |
| default: |
| return 0; |
| case OPTION_MARCH: |
| setup_march (arg, & ins_ok, & ins_err, & cpu_mode); |
| break; |
| case OPTION_MACH_Z80: |
| setup_march ("z80", & ins_ok, & ins_err, & cpu_mode); |
| break; |
| case OPTION_MACH_R800: |
| setup_march ("r800", & ins_ok, & ins_err, & cpu_mode); |
| break; |
| case OPTION_MACH_Z180: |
| setup_march ("z180", & ins_ok, & ins_err, & cpu_mode); |
| break; |
| case OPTION_MACH_EZ80_Z80: |
| setup_march ("ez80", & ins_ok, & ins_err, & cpu_mode); |
| break; |
| case OPTION_MACH_EZ80_ADL: |
| setup_march ("ez80+adl", & ins_ok, & ins_err, & cpu_mode); |
| break; |
| case OPTION_FP_SINGLE_FORMAT: |
| str_to_float = get_str_to_float (arg); |
| break; |
| case OPTION_FP_DOUBLE_FORMAT: |
| str_to_double = get_str_to_float (arg); |
| break; |
| case OPTION_MACH_INST: |
| if ((ins_ok & INS_GBZ80) == 0) |
| return setup_instruction_list (arg, & ins_ok, & ins_err); |
| break; |
| case OPTION_MACH_NO_INST: |
| if ((ins_ok & INS_GBZ80) == 0) |
| return setup_instruction_list (arg, & ins_err, & ins_ok); |
| break; |
| case OPTION_MACH_WUD: |
| case OPTION_MACH_IUD: |
| if ((ins_ok & INS_GBZ80) == 0) |
| { |
| ins_ok |= INS_UNDOC; |
| ins_err &= ~INS_UNDOC; |
| } |
| break; |
| case OPTION_MACH_WUP: |
| case OPTION_MACH_IUP: |
| if ((ins_ok & INS_GBZ80) == 0) |
| { |
| ins_ok |= INS_UNDOC | INS_UNPORT; |
| ins_err &= ~(INS_UNDOC | INS_UNPORT); |
| } |
| break; |
| case OPTION_MACH_FUD: |
| if ((ins_ok & (INS_R800 | INS_GBZ80)) == 0) |
| { |
| ins_ok &= (INS_UNDOC | INS_UNPORT); |
| ins_err |= INS_UNDOC | INS_UNPORT; |
| } |
| break; |
| case OPTION_MACH_FUP: |
| ins_ok &= ~INS_UNPORT; |
| ins_err |= INS_UNPORT; |
| break; |
| case OPTION_COMPAT_LL_PREFIX: |
| local_label_prefix = (arg && *arg) ? arg : NULL; |
| break; |
| case OPTION_COMPAT_SDCC: |
| sdcc_compat = 1; |
| break; |
| case OPTION_COMPAT_COLONLESS: |
| colonless_labels = 1; |
| break; |
| } |
| |
| return 1; |
| } |
| |
| void |
| md_show_usage (FILE * f) |
| { |
| unsigned i; |
| fprintf (f, _("\n\ |
| CPU model options:\n\ |
| -march=CPU[+EXT...][-EXT...]\n\ |
| \t\t\t generate code for CPU, where CPU is one of:\n")); |
| for (i = 0; i < ARRAY_SIZE(match_cpu_table); ++i) |
| fprintf (f, " %-8s\t\t %s\n", match_cpu_table[i].name, match_cpu_table[i].comment); |
| fprintf (f, _("And EXT is combination (+EXT - add, -EXT - remove) of:\n")); |
| for (i = 0; i < ARRAY_SIZE(match_ext_table); ++i) |
| fprintf (f, " %-8s\t\t %s\n", match_ext_table[i].name, match_ext_table[i].comment); |
| fprintf (f, _("\n\ |
| Compatibility options:\n\ |
| -local-prefix=TEXT\t treat labels prefixed by TEXT as local\n\ |
| -colonless\t\t permit colonless labels\n\ |
| -sdcc\t\t\t accept SDCC specific instruction syntax\n\ |
| -fp-s=FORMAT\t\t set single precision FP numbers format\n\ |
| -fp-d=FORMAT\t\t set double precision FP numbers format\n\ |
| Where FORMAT one of:\n\ |
| ieee754\t\t IEEE754 compatible (depends on directive)\n\ |
| half\t\t\t IEEE754 half precision (16 bit)\n\ |
| single\t\t IEEE754 single precision (32 bit)\n\ |
| double\t\t IEEE754 double precision (64 bit)\n\ |
| zeda32\t\t Zeda z80float library 32 bit format\n\ |
| math48\t\t 48 bit format from Math48 library\n\ |
| \n\ |
| Default: -march=z80+xyhl+infc\n")); |
| } |
| |
| static symbolS * zero; |
| |
| struct reg_entry |
| { |
| const char* name; |
| int number; |
| int isa; |
| }; |
| #define R_STACKABLE (0x80) |
| #define R_ARITH (0x40) |
| #define R_IX (0x20) |
| #define R_IY (0x10) |
| #define R_INDEX (R_IX | R_IY) |
| |
| #define REG_A (7) |
| #define REG_B (0) |
| #define REG_C (1) |
| #define REG_D (2) |
| #define REG_E (3) |
| #define REG_H (4) |
| #define REG_L (5) |
| #define REG_F (6 | 8) |
| #define REG_I (9) |
| #define REG_R (10) |
| #define REG_MB (11) |
| |
| #define REG_AF (3 | R_STACKABLE) |
| #define REG_BC (0 | R_STACKABLE | R_ARITH) |
| #define REG_DE (1 | R_STACKABLE | R_ARITH) |
| #define REG_HL (2 | R_STACKABLE | R_ARITH) |
| #define REG_IX (REG_HL | R_IX) |
| #define REG_IY (REG_HL | R_IY) |
| #define REG_SP (3 | R_ARITH) |
| |
| static const struct reg_entry regtable[] = |
| { |
| {"a", REG_A, INS_ALL }, |
| {"af", REG_AF, INS_ALL }, |
| {"b", REG_B, INS_ALL }, |
| {"bc", REG_BC, INS_ALL }, |
| {"c", REG_C, INS_ALL }, |
| {"d", REG_D, INS_ALL }, |
| {"de", REG_DE, INS_ALL }, |
| {"e", REG_E, INS_ALL }, |
| {"f", REG_F, INS_IN_F_C | INS_Z80N | INS_R800 }, |
| {"h", REG_H, INS_ALL }, |
| {"hl", REG_HL, INS_ALL }, |
| {"i", REG_I, INS_NOT_GBZ80 }, |
| {"ix", REG_IX, INS_NOT_GBZ80 }, |
| {"ixh", REG_H | R_IX, INS_IDX_HALF | INS_EZ80 | INS_R800 | INS_Z80N }, |
| {"ixl", REG_L | R_IX, INS_IDX_HALF | INS_EZ80 | INS_R800 | INS_Z80N }, |
| {"iy", REG_IY, INS_NOT_GBZ80 }, |
| {"iyh", REG_H | R_IY, INS_IDX_HALF | INS_EZ80 | INS_R800 | INS_Z80N }, |
| {"iyl", REG_L | R_IY, INS_IDX_HALF | INS_EZ80 | INS_R800 | INS_Z80N }, |
| {"l", REG_L, INS_ALL }, |
| {"mb", REG_MB, INS_EZ80 }, |
| {"r", REG_R, INS_NOT_GBZ80 }, |
| {"sp", REG_SP, INS_ALL }, |
| } ; |
| |
| #define BUFLEN 8 /* Large enough for any keyword. */ |
| |
| void |
| md_begin (void) |
| { |
| expressionS nul, reg; |
| char * p; |
| unsigned int i, j, k; |
| char buf[BUFLEN]; |
| |
| memset (®, 0, sizeof (reg)); |
| memset (&nul, 0, sizeof (nul)); |
| |
| if (ins_ok & INS_EZ80) /* if select EZ80 cpu then */ |
| listing_lhs_width = 6; /* use 6 bytes per line in the listing */ |
| |
| reg.X_op = O_register; |
| reg.X_md = 0; |
| reg.X_add_symbol = reg.X_op_symbol = 0; |
| for ( i = 0 ; i < ARRAY_SIZE ( regtable ) ; ++i ) |
| { |
| if (regtable[i].isa && !(regtable[i].isa & ins_ok)) |
| continue; |
| reg.X_add_number = regtable[i].number; |
| k = strlen ( regtable[i].name ); |
| buf[k] = 0; |
| if ( k+1 < BUFLEN ) |
| { |
| for ( j = ( 1<<k ) ; j ; --j ) |
| { |
| for ( k = 0 ; regtable[i].name[k] ; ++k ) |
| { |
| buf[k] = ( j & ( 1<<k ) ) ? TOUPPER (regtable[i].name[k]) : regtable[i].name[k]; |
| } |
| symbolS * psym = symbol_find_or_make (buf); |
| S_SET_SEGMENT (psym, reg_section); |
| symbol_set_value_expression (psym, ®); |
| } |
| } |
| } |
| p = input_line_pointer; |
| input_line_pointer = (char *) "0"; |
| nul.X_md=0; |
| expression (& nul); |
| input_line_pointer = p; |
| zero = make_expr_symbol (& nul); |
| /* We do not use relaxation (yet). */ |
| linkrelax = 0; |
| } |
| |
| void |
| z80_md_end (void) |
| { |
| int mach_type; |
| |
| switch (ins_ok & INS_MARCH_MASK) |
| { |
| case INS_Z80: |
| mach_type = bfd_mach_z80; |
| break; |
| case INS_R800: |
| mach_type = bfd_mach_r800; |
| break; |
| case INS_Z180: |
| mach_type = bfd_mach_z180; |
| break; |
| case INS_GBZ80: |
| mach_type = bfd_mach_gbz80; |
| break; |
| case INS_EZ80: |
| mach_type = cpu_mode ? bfd_mach_ez80_adl : bfd_mach_ez80_z80; |
| break; |
| case INS_Z80N: |
| mach_type = bfd_mach_z80n; |
| break; |
| default: |
| mach_type = 0; |
| } |
| bfd_set_arch_mach (stdoutput, TARGET_ARCH, mach_type); |
| } |
| |
| #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |
| void |
| z80_elf_final_processing (void) |
| {/* nothing to do, all is done by BFD itself */ |
| /* |
| unsigned elf_flags; |
| elf_elfheader (stdoutput)->e_flags = elf_flags; |
| */ |
| } |
| #endif |
| |
| static const char * |
| skip_space (const char *s) |
| { |
| while (*s == ' ' || *s == '\t') |
| ++s; |
| return s; |
| } |
| |
| /* A non-zero return-value causes a continue in the |
| function read_a_source_file () in ../read.c. */ |
| int |
| z80_start_line_hook (void) |
| { |
| char *p, quote; |
| char buf[4]; |
| |
| /* Convert one character constants. */ |
| for (p = input_line_pointer; *p && *p != '\n'; ++p) |
| { |
| switch (*p) |
| { |
| case '\'': |
| if (p[1] != 0 && p[1] != '\'' && p[2] == '\'') |
| { |
| snprintf (buf, 4, "%3d", (unsigned char)p[1]); |
| *p++ = buf[0]; |
| *p++ = buf[1]; |
| *p++ = buf[2]; |
| break; |
| } |
| /* Fall through. */ |
| case '"': |
| for (quote = *p++; quote != *p && '\n' != *p; ++p) |
| /* No escapes. */ ; |
| if (quote != *p) |
| { |
| as_bad (_("-- unterminated string")); |
| ignore_rest_of_line (); |
| return 1; |
| } |
| break; |
| case '#': /* force to use next expression as immediate value in SDCC */ |
| if (!sdcc_compat) |
| break; |
| if (ISSPACE(p[1]) && *skip_space (p + 1) == '(') |
| { /* ld a,# (expr)... -> ld a,0+(expr)... */ |
| *p++ = '0'; |
| *p = '+'; |
| } |
| else /* ld a,#(expr)... -> ld a,+(expr); ld a,#expr -> ld a, expr */ |
| *p = (p[1] == '(') ? '+' : ' '; |
| break; |
| } |
| } |
| /* Check for <label>[:] =|([.](EQU|DEFL)) <value>. */ |
| if (is_name_beginner (*input_line_pointer)) |
| { |
| char *name; |
| char c, *rest, *line_start; |
| int len; |
| |
| line_start = input_line_pointer; |
| if (ignore_input ()) |
| return 0; |
| c = get_symbol_name (&name); |
| rest = input_line_pointer + 1; |
| if (c == ':' && *rest == ':') |
| { |
| /* remove second colon if SDCC compatibility enabled */ |
| if (sdcc_compat) |
| *rest = ' '; |
| ++rest; |
| } |
| rest = (char*)skip_space (rest); |
| if (*rest == '=') |
| len = (rest[1] == '=') ? 2 : 1; |
| else |
| { |
| if (*rest == '.') |
| ++rest; |
| if (strncasecmp (rest, "EQU", 3) == 0) |
| len = 3; |
| else if (strncasecmp (rest, "DEFL", 4) == 0) |
| len = 4; |
| else |
| len = 0; |
| } |
| if (len && (len <= 2 || !ISALPHA (rest[len]))) |
| { |
| /* Handle assignment here. */ |
| if (line_start[-1] == '\n') |
| { |
| bump_line_counters (); |
| LISTING_NEWLINE (); |
| } |
| input_line_pointer = rest + len - 1; |
| /* Allow redefining with "DEFL" (len == 4), but not with "EQU". */ |
| switch (len) |
| { |
| case 1: /* label = expr */ |
| case 4: /* label DEFL expr */ |
| equals (name, 1); |
| break; |
| case 2: /* label == expr */ |
| case 3: /* label EQU expr */ |
| equals (name, 0); |
| break; |
| } |
| return 1; |
| } |
| else |
| { |
| /* Restore line and pointer. */ |
| (void) restore_line_pointer (c); |
| input_line_pointer = line_start; |
| } |
| } |
| return 0; |
| } |
| |
| symbolS * |
| md_undefined_symbol (char *name ATTRIBUTE_UNUSED) |
| { |
| return NULL; |
| } |
| |
| const char * |
| md_atof (int type, char *litP, int *sizeP) |
| { |
| switch (type) |
| { |
| case 'f': |
| case 'F': |
| case 's': |
| case 'S': |
| if (str_to_float) |
| return str_to_float (litP, sizeP); |
| break; |
| case 'd': |
| case 'D': |
| case 'r': |
| case 'R': |
| if (str_to_double) |
| return str_to_double (litP, sizeP); |
| break; |
| } |
| return ieee_md_atof (type, litP, sizeP, false); |
| } |
| |
| valueT |
| md_section_align (segT seg ATTRIBUTE_UNUSED, valueT size) |
| { |
| return size; |
| } |
| |
| long |
| md_pcrel_from (fixS * fixp) |
| { |
| return fixp->fx_where + fixp->fx_frag->fr_address; |
| } |
| |
| typedef const char * (asfunc)(char, char, const char*); |
| |
| typedef struct _table_t |
| { |
| const char* name; |
| unsigned char prefix; |
| unsigned char opcode; |
| asfunc * fp; |
| unsigned inss; /*0 - all CPU types or list of supported INS_* */ |
| } table_t; |
| |
| /* Compares the key for structs that start with a char * to the key. */ |
| static int |
| key_cmp (const void * a, const void * b) |
| { |
| const char *str_a, *str_b; |
| |
| str_a = *((const char**)a); |
| str_b = *((const char**)b); |
| return strcmp (str_a, str_b); |
| } |
| |
| char buf[BUFLEN]; |
| const char *key = buf; |
| |
| /* Prevent an error on a line from also generating |
| a "junk at end of line" error message. */ |
| static char err_flag; |
| |
| static void |
| error (const char * message) |
| { |
| if (err_flag) |
| return; |
| |
| as_bad ("%s", message); |
| err_flag = 1; |
| } |
| |
| static void |
| ill_op (void) |
| { |
| error (_("illegal operand")); |
| } |
| |
| static void |
| wrong_mach (int ins_type) |
| { |
| if (ins_type & ins_err) |
| ill_op (); |
| else |
| as_warn (_("undocumented instruction")); |
| } |
| |
| static void |
| check_mach (int ins_type) |
| { |
| if ((ins_type & ins_ok) == 0) |
| wrong_mach (ins_type); |
| } |
| |
| /* Check whether an expression is indirect. */ |
| static int |
| is_indir (const char *s) |
| { |
| char quote; |
| const char *p; |
| int indir, depth; |
| |
| /* Indirection is indicated with parentheses. */ |
| indir = (*s == '('); |
| |
| for (p = s, depth = 0; *p && *p != ','; ++p) |
| { |
| switch (*p) |
| { |
| case '"': |
| case '\'': |
| for (quote = *p++; quote != *p && *p != '\n'; ++p) |
| if (*p == '\\' && p[1]) |
| ++p; |
| break; |
| case '(': |
| ++ depth; |
| break; |
| case ')': |
| -- depth; |
| if (depth == 0) |
| { |
| p = skip_space (p + 1); |
| if (*p && *p != ',') |
| indir = 0; |
| --p; |
| } |
| if (depth < 0) |
| error (_("mismatched parentheses")); |
| break; |
| } |
| } |
| |
| if (depth != 0) |
| error (_("mismatched parentheses")); |
| |
| return indir; |
| } |
| |
| /* Check whether a symbol involves a register. */ |
| static bool |
| contains_register (symbolS *sym) |
| { |
| if (sym) |
| { |
| expressionS * ex = symbol_get_value_expression (sym); |
| |
| switch (ex->X_op) |
| { |
| case O_register: |
| return true; |
| |
| case O_add: |
| case O_subtract: |
| if (ex->X_op_symbol && contains_register (ex->X_op_symbol)) |
| return true; |
| /* Fall through. */ |
| case O_uminus: |
| case O_symbol: |
| if (ex->X_add_symbol && contains_register (ex->X_add_symbol)) |
| return true; |
| break; |
| |
| default: |
| break; |
| } |
| } |
| |
| return false; |
| } |
| |
| /* Parse general expression, not looking for indexed addressing. */ |
| static const char * |
| parse_exp_not_indexed (const char *s, expressionS *op) |
| { |
| const char *p; |
| int indir; |
| int make_shift = -1; |
| |
| memset (op, 0, sizeof (*op)); |
| p = skip_space (s); |
| if (sdcc_compat && (*p == '<' || *p == '>')) |
| { |
| switch (*p) |
| { |
| case '<': /* LSB request */ |
| make_shift = 0; |
| break; |
| case '>': /* MSB request */ |
| make_shift = cpu_mode ? 16 : 8; |
| break; |
| } |
| s = ++p; |
| p = skip_space (p); |
| } |
| |
| if (make_shift == -1) |
| indir = is_indir (p); |
| else |
| indir = 0; |
| op->X_md = indir; |
| if (indir && (ins_ok & INS_GBZ80)) |
| { /* check for instructions like ld a,(hl+), ld (hl-),a */ |
| p = skip_space (p+1); |
| if (!strncasecmp (p, "hl", 2)) |
| { |
| p = skip_space(p+2); |
| if (*skip_space(p+1) == ')' && (*p == '+' || *p == '-')) |
| { |
| op->X_op = O_md1; |
| op->X_add_symbol = NULL; |
| op->X_add_number = (*p == '+') ? REG_HL : -REG_HL; |
| input_line_pointer = (char*)skip_space(p + 1) + 1; |
| return input_line_pointer; |
| } |
| } |
| } |
| input_line_pointer = (char*) s ; |
| expression (op); |
| switch (op->X_op) |
| { |
| case O_absent: |
| error (_("missing operand")); |
| break; |
| case O_illegal: |
| error (_("bad expression syntax")); |
| break; |
| default: |
| break; |
| } |
| |
| if (make_shift >= 0) |
| { |
| /* replace [op] by [op >> shift] */ |
| expressionS data; |
| op->X_add_symbol = make_expr_symbol (op); |
| op->X_add_number = 0; |
| op->X_op = O_right_shift; |
| memset (&data, 0, sizeof (data)); |
| data.X_op = O_constant; |
| data.X_add_number = make_shift; |
| op->X_op_symbol = make_expr_symbol (&data); |
| } |
| return input_line_pointer; |
| } |
| |
| static int |
| unify_indexed (expressionS *op) |
| { |
| if (O_register != symbol_get_value_expression (op->X_add_symbol)->X_op) |
| return 0; |
| |
| int rnum = symbol_get_value_expression (op->X_add_symbol)->X_add_number; |
| if ( ((REG_IX != rnum) && (REG_IY != rnum)) || contains_register (op->X_op_symbol)) |
| { |
| ill_op (); |
| return 0; |
| } |
| |
| /* Convert subtraction to addition of negative value. */ |
| if (O_subtract == op->X_op) |
| { |
| expressionS minus; |
| memset (&minus, 0, sizeof (minus)); |
| minus.X_op = O_uminus; |
| minus.X_add_symbol = op->X_op_symbol; |
| op->X_op_symbol = make_expr_symbol (&minus); |
| op->X_op = O_add; |
| } |
| |
| /* Clear X_add_number of the expression. */ |
| if (op->X_add_number != 0) |
| { |
| expressionS add; |
| memset (&add, 0, sizeof (add)); |
| add.X_op = O_symbol; |
| add.X_add_number = op->X_add_number; |
| add.X_add_symbol = op->X_op_symbol; |
| op->X_add_symbol = make_expr_symbol (&add); |
| } |
| else |
| op->X_add_symbol = op->X_op_symbol; |
| |
| op->X_add_number = rnum; |
| op->X_op_symbol = 0; |
| return 1; |
| } |
| |
| /* Parse expression, change operator to O_md1 for indexed addressing. */ |
| static const char * |
| parse_exp (const char *s, expressionS *op) |
| { |
| const char* res = parse_exp_not_indexed (s, op); |
| switch (op->X_op) |
| { |
| case O_add: |
| case O_subtract: |
| if (unify_indexed (op) && op->X_md) |
| op->X_op = O_md1; |
| break; |
| case O_register: |
| if (op->X_md && ((REG_IX == op->X_add_number) || (REG_IY == op->X_add_number))) |
| { |
| op->X_add_symbol = zero; |
| op->X_op = O_md1; |
| } |
| break; |
| case O_constant: |
| /* parse SDCC syntax where index register offset placed before parentheses */ |
| if (sdcc_compat && is_indir (res)) |
| { |
| expressionS off; |
| off = *op; |
| res = parse_exp (res, op); |
| if (op->X_op != O_md1 || op->X_add_symbol != zero) |
| ill_op (); |
| else |
| op->X_add_symbol = make_expr_symbol (&off); |
| } |
| break; |
| default: |
| break; |
| } |
| return res; |
| } |
| |
| /* Condition codes, including some synonyms provided by HiTech zas. */ |
| static const struct reg_entry cc_tab[] = |
| { |
| { "age", 6 << 3, INS_ALL }, |
| { "alt", 7 << 3, INS_ALL }, |
| { "c", 3 << 3, INS_ALL }, |
| { "di", 4 << 3, INS_ALL }, |
| { "ei", 5 << 3, INS_ALL }, |
| { "lge", 2 << 3, INS_ALL }, |
| { "llt", 3 << 3, INS_ALL }, |
| { "m", 7 << 3, INS_ALL }, |
| { "nc", 2 << 3, INS_ALL }, |
| { "nz", 0 << 3, INS_ALL }, |
| { "p", 6 << 3, INS_ALL }, |
| { "pe", 5 << 3, INS_ALL }, |
| { "po", 4 << 3, INS_ALL }, |
| { "z", 1 << 3, INS_ALL }, |
| } ; |
| |
| /* Parse condition code. */ |
| static const char * |
| parse_cc (const char *s, char * op) |
| { |
| const char *p; |
| int i; |
| struct reg_entry * cc_p; |
| |
| for (i = 0; i < BUFLEN; ++i) |
| { |
| if (!ISALPHA (s[i])) /* Condition codes consist of letters only. */ |
| break; |
| buf[i] = TOLOWER (s[i]); |
| } |
| |
| if ((i < BUFLEN) |
| && ((s[i] == 0) || (s[i] == ','))) |
| { |
| buf[i] = 0; |
| cc_p = bsearch (&key, cc_tab, ARRAY_SIZE (cc_tab), |
| sizeof (cc_tab[0]), key_cmp); |
| } |
| else |
| cc_p = NULL; |
| |
| if (cc_p) |
| { |
| *op = cc_p->number; |
| p = s + i; |
| } |
| else |
| p = NULL; |
| |
| return p; |
| } |
| |
| static const char * |
| emit_insn (char prefix, char opcode, const char * args) |
| { |
| char *p; |
| |
| if (prefix) |
| { |
| p = frag_more (2); |
| *p++ = prefix; |
| } |
| else |
| p = frag_more (1); |
| *p = opcode; |
| return args; |
| } |
| |
| void z80_cons_fix_new (fragS *frag_p, int offset, int nbytes, expressionS *exp) |
| { |
| bfd_reloc_code_real_type r[4] = |
| { |
| BFD_RELOC_8, |
| BFD_RELOC_16, |
| BFD_RELOC_24, |
| BFD_RELOC_32 |
| }; |
| |
| if (nbytes < 1 || nbytes > 4) |
| { |
| as_bad (_("unsupported BFD relocation size %u"), nbytes); |
| } |
| else |
| { |
| fix_new_exp (frag_p, offset, nbytes, exp, 0, r[nbytes-1]); |
| } |
| } |
| |
| static void |
| emit_data_val (expressionS * val, int size) |
| { |
| char *p; |
| bfd_reloc_code_real_type r_type; |
| |
| p = frag_more (size); |
| if (val->X_op == O_constant) |
| { |
| int i; |
| if (is_overflow (val->X_add_number, size*8)) |
| as_warn ( _("%d-bit overflow (%+ld)"), size*8, val->X_add_number); |
| for (i = 0; i < size; ++i) |
| p[i] = (char)(val->X_add_number >> (i*8)); |
| return; |
| } |
| |
| switch (size) |
| { |
| case 1: r_type = BFD_RELOC_8; break; |
| case 2: r_type = BFD_RELOC_16; break; |
| case 3: r_type = BFD_RELOC_24; break; |
| case 4: r_type = BFD_RELOC_32; break; |
| case 8: r_type = BFD_RELOC_64; break; |
| default: |
| as_fatal (_("invalid data size %d"), size); |
| } |
| |
| if ( (val->X_op == O_register) |
| || (val->X_op == O_md1) |
| || contains_register (val->X_add_symbol) |
| || contains_register (val->X_op_symbol)) |
| ill_op (); |
| |
| if (size <= 2 && val->X_op_symbol) |
| { |
| bool simplify = true; |
| int shift = symbol_get_value_expression (val->X_op_symbol)->X_add_number; |
| if (val->X_op == O_bit_and && shift == (1 << (size*8))-1) |
| shift = 0; |
| else if (val->X_op != O_right_shift) |
| shift = -1; |
| |
| if (size == 1) |
| { |
| switch (shift) |
| { |
| case 0: r_type = BFD_RELOC_Z80_BYTE0; break; |
| case 8: r_type = BFD_RELOC_Z80_BYTE1; break; |
| case 16: r_type = BFD_RELOC_Z80_BYTE2; break; |
| case 24: r_type = BFD_RELOC_Z80_BYTE3; break; |
| default: simplify = false; |
| } |
| } |
| else /* if (size == 2) */ |
| { |
| switch (shift) |
| { |
| case 0: r_type = BFD_RELOC_Z80_WORD0; break; |
| case 16: r_type = BFD_RELOC_Z80_WORD1; break; |
| case 8: |
| case 24: /* add two byte fixups */ |
| val->X_op = O_symbol; |
| val->X_op_symbol = NULL; |
| val->X_add_number = 0; |
| if (shift == 8) |
| { |
| fix_new_exp (frag_now, p++ - frag_now->fr_literal, 1, val, false, |
| BFD_RELOC_Z80_BYTE1); |
| /* prepare to next byte */ |
| r_type = BFD_RELOC_Z80_BYTE2; |
| } |
| else |
| r_type = BFD_RELOC_Z80_BYTE3; /* high byte will be 0 */ |
| size = 1; |
| simplify = false; |
| break; |
| default: simplify = false; |
| } |
| } |
| |
| if (simplify) |
| { |
| val->X_op = O_symbol; |
| val->X_op_symbol = NULL; |
| val->X_add_number = 0; |
| } |
| } |
| |
| fix_new_exp (frag_now, p - frag_now->fr_literal, size, val, false, r_type); |
| } |
| |
| static void |
| emit_byte (expressionS * val, bfd_reloc_code_real_type r_type) |
| { |
| char *p; |
| |
| if (r_type == BFD_RELOC_8) |
| { |
| emit_data_val (val, 1); |
| return; |
| } |
| p = frag_more (1); |
| *p = val->X_add_number; |
| if (contains_register (val->X_add_symbol) || contains_register (val->X_op_symbol)) |
| { |
| ill_op (); |
| } |
| else if ((r_type == BFD_RELOC_8_PCREL) && (val->X_op == O_constant)) |
| { |
| as_bad (_("cannot make a relative jump to an absolute location")); |
| } |
| else if (val->X_op == O_constant) |
| { |
| if ((val->X_add_number < -128) || (val->X_add_number >= 128)) |
| { |
| if (r_type == BFD_RELOC_Z80_DISP8) |
| as_bad (_("index overflow (%+ld)"), val->X_add_number); |
| else |
| as_bad (_("offset overflow (%+ld)"), val->X_add_number); |
| } |
| } |
| else |
| { |
| /* For symbols only, constants are stored at begin of function. */ |
| fix_new_exp (frag_now, p - frag_now->fr_literal, 1, val, |
| r_type == BFD_RELOC_8_PCREL, r_type); |
| } |
| } |
| |
| static void |
| emit_word (expressionS * val) |
| { |
| emit_data_val (val, (inst_mode & INST_MODE_IL) ? 3 : 2); |
| } |
| |
| static void |
| emit_mx (char prefix, char opcode, int shift, expressionS * arg) |
| /* The operand m may be r, (hl), (ix+d), (iy+d), |
| if 0 == prefix m may also be ixl, ixh, iyl, iyh. */ |
| { |
| char *q; |
| int rnum; |
| |
| rnum = arg->X_add_number; |
| switch (arg->X_op) |
| { |
| case O_register: |
| if (arg->X_md) |
| { |
| if (rnum != REG_HL) |
| { |
| ill_op (); |
| break; |
| } |
| else |
| rnum = 6; |
| } |
| else |
| { |
| if ((prefix == 0) && (rnum & R_INDEX)) |
| { |
| prefix = (rnum & R_IX) ? 0xDD : 0xFD; |
| if (!(ins_ok & (INS_EZ80|INS_R800|INS_Z80N))) |
| check_mach (INS_IDX_HALF); |
| rnum &= ~R_INDEX; |
| } |
| if (rnum > 7) |
| { |
| ill_op (); |
| break; |
| } |
| } |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| * q ++ = prefix; |
| * q ++ = opcode + (rnum << shift); |
| break; |
| case O_md1: |
| if (ins_ok & INS_GBZ80) |
| { |
| ill_op (); |
| break; |
| } |
| q = frag_more (2); |
| *q++ = (rnum & R_IX) ? 0xDD : 0xFD; |
| *q = (prefix) ? prefix : (opcode + (6 << shift)); |
| { |
| expressionS offset = *arg; |
| offset.X_op = O_symbol; |
| offset.X_add_number = 0; |
| emit_byte (&offset, BFD_RELOC_Z80_DISP8); |
| } |
| if (prefix) |
| { |
| q = frag_more (1); |
| *q = opcode+(6<<shift); |
| } |
| break; |
| default: |
| abort (); |
| } |
| } |
| |
| /* The operand m may be r, (hl), (ix+d), (iy+d), |
| if 0 = prefix m may also be ixl, ixh, iyl, iyh. */ |
| static const char * |
| emit_m (char prefix, char opcode, const char *args) |
| { |
| expressionS arg_m; |
| const char *p; |
| |
| p = parse_exp (args, &arg_m); |
| switch (arg_m.X_op) |
| { |
| case O_md1: |
| case O_register: |
| emit_mx (prefix, opcode, 0, &arg_m); |
| break; |
| default: |
| ill_op (); |
| } |
| return p; |
| } |
| |
| /* The operand m may be as above or one of the undocumented |
| combinations (ix+d),r and (iy+d),r (if unportable instructions |
| are allowed). */ |
| |
| static const char * |
| emit_mr (char prefix, char opcode, const char *args) |
| { |
| expressionS arg_m, arg_r; |
| const char *p; |
| |
| p = parse_exp (args, & arg_m); |
| |
| switch (arg_m.X_op) |
| { |
| case O_md1: |
| if (*p == ',') |
| { |
| p = parse_exp (p + 1, & arg_r); |
| |
| if ((arg_r.X_md == 0) |
| && (arg_r.X_op == O_register) |
| && (arg_r.X_add_number < 8)) |
| opcode += arg_r.X_add_number - 6; /* Emit_mx () will add 6. */ |
| else |
| { |
| ill_op (); |
| break; |
| } |
| if (!(ins_ok & INS_Z80N)) |
| check_mach (INS_ROT_II_LD); |
| } |
| /* Fall through. */ |
| case O_register: |
| emit_mx (prefix, opcode, 0, & arg_m); |
| break; |
| default: |
| ill_op (); |
| } |
| return p; |
| } |
| |
| static void |
| emit_sx (char prefix, char opcode, expressionS * arg_p) |
| { |
| char *q; |
| |
| switch (arg_p->X_op) |
| { |
| case O_register: |
| case O_md1: |
| emit_mx (prefix, opcode, 0, arg_p); |
| break; |
| default: |
| if (arg_p->X_md) |
| ill_op (); |
| else |
| { |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| *q++ = prefix; |
| *q = opcode ^ 0x46; |
| emit_byte (arg_p, BFD_RELOC_8); |
| } |
| } |
| } |
| |
| /* The operand s may be r, (hl), (ix+d), (iy+d), n. */ |
| static const char * |
| emit_s (char prefix, char opcode, const char *args) |
| { |
| expressionS arg_s; |
| const char *p; |
| |
| p = parse_exp (args, & arg_s); |
| if (*p == ',' && arg_s.X_md == 0 && arg_s.X_op == O_register && arg_s.X_add_number == REG_A) |
| { /* possible instruction in generic format op A,x */ |
| if (!(ins_ok & INS_EZ80) && !sdcc_compat) |
| ill_op (); |
| ++p; |
| p = parse_exp (p, & arg_s); |
| } |
| emit_sx (prefix, opcode, & arg_s); |
| return p; |
| } |
| |
| static const char * |
| emit_sub (char prefix, char opcode, const char *args) |
| { |
| expressionS arg_s; |
| const char *p; |
| |
| if (!(ins_ok & INS_GBZ80)) |
| return emit_s (prefix, opcode, args); |
| p = parse_exp (args, & arg_s); |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| |
| if (arg_s.X_md != 0 || arg_s.X_op != O_register || arg_s.X_add_number != REG_A) |
| ill_op (); |
| |
| p = parse_exp (p, & arg_s); |
| |
| emit_sx (prefix, opcode, & arg_s); |
| return p; |
| } |
| |
| static const char * |
| emit_swap (char prefix, char opcode, const char *args) |
| { |
| expressionS reg; |
| const char *p; |
| char *q; |
| |
| if (!(ins_ok & INS_Z80N)) |
| return emit_mr (prefix, opcode, args); |
| |
| /* check for alias swap a for swapnib of Z80N */ |
| p = parse_exp (args, ®); |
| if (reg.X_md != 0 || reg.X_op != O_register || reg.X_add_number != REG_A) |
| ill_op (); |
| |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = 0x23; |
| return p; |
| } |
| |
| static const char * |
| emit_call (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args) |
| { |
| expressionS addr; |
| const char *p; char *q; |
| |
| p = parse_exp_not_indexed (args, &addr); |
| if (addr.X_md) |
| ill_op (); |
| else |
| { |
| q = frag_more (1); |
| *q = opcode; |
| emit_word (& addr); |
| } |
| return p; |
| } |
| |
| /* Operand may be rr, r, (hl), (ix+d), (iy+d). */ |
| static const char * |
| emit_incdec (char prefix, char opcode, const char * args) |
| { |
| expressionS operand; |
| int rnum; |
| const char *p; char *q; |
| |
| p = parse_exp (args, &operand); |
| rnum = operand.X_add_number; |
| if ((! operand.X_md) |
| && (operand.X_op == O_register) |
| && (R_ARITH&rnum)) |
| { |
| q = frag_more ((rnum & R_INDEX) ? 2 : 1); |
| if (rnum & R_INDEX) |
| *q++ = (rnum & R_IX) ? 0xDD : 0xFD; |
| *q = prefix + ((rnum & 3) << 4); |
| } |
| else |
| { |
| if ((operand.X_op == O_md1) || (operand.X_op == O_register)) |
| emit_mx (0, opcode, 3, & operand); |
| else |
| ill_op (); |
| } |
| return p; |
| } |
| |
| static const char * |
| emit_jr (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args) |
| { |
| expressionS addr; |
| const char *p; |
| char *q; |
| |
| p = parse_exp_not_indexed (args, &addr); |
| if (addr.X_md) |
| ill_op (); |
| else |
| { |
| q = frag_more (1); |
| *q = opcode; |
| addr.X_add_number--; /* pcrel computes after offset code */ |
| emit_byte (&addr, BFD_RELOC_8_PCREL); |
| } |
| return p; |
| } |
| |
| static const char * |
| emit_jp (char prefix, char opcode, const char * args) |
| { |
| expressionS addr; |
| const char *p; |
| char *q; |
| int rnum; |
| |
| p = parse_exp_not_indexed (args, & addr); |
| if (addr.X_md) |
| { |
| rnum = addr.X_add_number; |
| if ((O_register == addr.X_op) && (REG_HL == (rnum & ~R_INDEX))) |
| { |
| q = frag_more ((rnum & R_INDEX) ? 2 : 1); |
| if (rnum & R_INDEX) |
| *q++ = (rnum & R_IX) ? 0xDD : 0xFD; |
| *q = prefix; |
| } |
| else if (addr.X_op == O_register && rnum == REG_C && (ins_ok & INS_Z80N)) |
| { |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = 0x98; |
| } |
| else |
| ill_op (); |
| } |
| else |
| { |
| q = frag_more (1); |
| *q = opcode; |
| emit_word (& addr); |
| } |
| return p; |
| } |
| |
| static const char * |
| emit_im (char prefix, char opcode, const char * args) |
| { |
| expressionS mode; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, & mode); |
| if (mode.X_md || (mode.X_op != O_constant)) |
| ill_op (); |
| else |
| switch (mode.X_add_number) |
| { |
| case 1: |
| case 2: |
| ++mode.X_add_number; |
| /* Fall through. */ |
| case 0: |
| q = frag_more (2); |
| *q++ = prefix; |
| *q = opcode + 8*mode.X_add_number; |
| break; |
| default: |
| ill_op (); |
| } |
| return p; |
| } |
| |
| static const char * |
| emit_pop (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args) |
| { |
| expressionS regp; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, & regp); |
| if ((!regp.X_md) |
| && (regp.X_op == O_register) |
| && (regp.X_add_number & R_STACKABLE)) |
| { |
| int rnum; |
| |
| rnum = regp.X_add_number; |
| if (rnum&R_INDEX) |
| { |
| q = frag_more (2); |
| *q++ = (rnum&R_IX)?0xDD:0xFD; |
| } |
| else |
| q = frag_more (1); |
| *q = opcode + ((rnum & 3) << 4); |
| } |
| else |
| ill_op (); |
| |
| return p; |
| } |
| |
| static const char * |
| emit_push (char prefix, char opcode, const char * args) |
| { |
| expressionS arg; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, & arg); |
| if (arg.X_op == O_register) |
| return emit_pop (prefix, opcode, args); |
| |
| if (arg.X_md || arg.X_op == O_md1 || !(ins_ok & INS_Z80N)) |
| ill_op (); |
| |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = 0x8A; |
| |
| q = frag_more (2); |
| fix_new_exp (frag_now, q - frag_now->fr_literal, 2, &arg, false, |
| BFD_RELOC_Z80_16_BE); |
| |
| return p; |
| } |
| |
| static const char * |
| emit_retcc (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args) |
| { |
| char cc, *q; |
| const char *p; |
| |
| p = parse_cc (args, &cc); |
| q = frag_more (1); |
| if (p) |
| *q = opcode + cc; |
| else |
| *q = prefix; |
| return p ? p : args; |
| } |
| |
| static const char * |
| emit_adc (char prefix, char opcode, const char * args) |
| { |
| expressionS term; |
| int rnum; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, &term); |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| |
| if ((term.X_md) || (term.X_op != O_register)) |
| ill_op (); |
| else |
| switch (term.X_add_number) |
| { |
| case REG_A: |
| p = emit_s (0, prefix, p); |
| break; |
| case REG_HL: |
| p = parse_exp (p, &term); |
| if ((!term.X_md) && (term.X_op == O_register)) |
| { |
| rnum = term.X_add_number; |
| if (R_ARITH == (rnum & (R_ARITH | R_INDEX))) |
| { |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = opcode + ((rnum & 3) << 4); |
| break; |
| } |
| } |
| /* Fall through. */ |
| default: |
| ill_op (); |
| } |
| return p; |
| } |
| |
| static const char * |
| emit_add (char prefix, char opcode, const char * args) |
| { |
| expressionS term; |
| int lhs, rhs; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, &term); |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| |
| if ((term.X_md) || (term.X_op != O_register)) |
| ill_op (); |
| else |
| switch (term.X_add_number) |
| { |
| case REG_A: |
| p = emit_s (0, prefix, p); |
| break; |
| case REG_SP: |
| p = parse_exp (p, &term); |
| if (!(ins_ok & INS_GBZ80) || term.X_md || term.X_op == O_register) |
| ill_op (); |
| q = frag_more (1); |
| *q = 0xE8; |
| emit_byte (&term, BFD_RELOC_Z80_DISP8); |
| break; |
| case REG_BC: |
| case REG_DE: |
| if (!(ins_ok & INS_Z80N)) |
| { |
| ill_op (); |
| break; |
| } |
| /* Fall through. */ |
| case REG_HL: |
| case REG_IX: |
| case REG_IY: |
| lhs = term.X_add_number; |
| p = parse_exp (p, &term); |
| rhs = term.X_add_number; |
| if (term.X_md != 0 || term.X_op == O_md1) |
| ill_op (); |
| else if ((term.X_op == O_register) && (rhs & R_ARITH) && (rhs == lhs || (rhs & ~R_INDEX) != REG_HL)) |
| { |
| if (1) |
| { |
| q = frag_more ((lhs & R_INDEX) ? 2 : 1); |
| if (lhs & R_INDEX) |
| *q++ = (lhs & R_IX) ? 0xDD : 0xFD; |
| *q = opcode + ((rhs & 3) << 4); |
| break; |
| } |
| } |
| else if (!(lhs & R_INDEX) && (ins_ok & INS_Z80N)) |
| { |
| if (term.X_op == O_register && rhs == REG_A) |
| { /* ADD BC/DE/HL,A */ |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = 0x33 - (lhs & 3); |
| break; |
| } |
| else if (term.X_op != O_register && term.X_op != O_md1) |
| { /* ADD BC/DE/HL,nn */ |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = 0x36 - (lhs & 3); |
| emit_word (&term); |
| break; |
| } |
| } |
| /* Fall through. */ |
| default: |
| ill_op (); |
| } |
| return p; |
| } |
| |
| static const char * |
| emit_bit (char prefix, char opcode, const char * args) |
| { |
| expressionS b; |
| int bn; |
| const char *p; |
| |
| p = parse_exp (args, &b); |
| if (*p++ != ',') |
| error (_("bad instruction syntax")); |
| |
| bn = b.X_add_number; |
| if ((!b.X_md) |
| && (b.X_op == O_constant) |
| && (0 <= bn) |
| && (bn < 8)) |
| { |
| if (opcode == 0x40) |
| /* Bit : no optional third operand. */ |
| p = emit_m (prefix, opcode + (bn << 3), p); |
| else |
| /* Set, res : resulting byte can be copied to register. */ |
| p = emit_mr (prefix, opcode + (bn << 3), p); |
| } |
| else |
| ill_op (); |
| return p; |
| } |
| |
| /* BSLA DE,B; BSRA DE,B; BSRL DE,B; BSRF DE,B; BRLC DE,B (Z80N only) */ |
| static const char * |
| emit_bshft (char prefix, char opcode, const char * args) |
| { |
| expressionS r1, r2; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, & r1); |
| if (*p++ != ',') |
| error (_("bad instruction syntax")); |
| p = parse_exp (p, & r2); |
| if (r1.X_md || r1.X_op != O_register || r1.X_add_number != REG_DE || |
| r2.X_md || r2.X_op != O_register || r2.X_add_number != REG_B) |
| ill_op (); |
| q = frag_more (2); |
| *q++ = prefix; |
| *q = opcode; |
| return p; |
| } |
| |
| static const char * |
| emit_jpcc (char prefix, char opcode, const char * args) |
| { |
| char cc; |
| const char *p; |
| |
| p = parse_cc (args, & cc); |
| if (p && *p++ == ',') |
| p = emit_call (0, opcode + cc, p); |
| else |
| p = (prefix == (char)0xC3) |
| ? emit_jp (0xE9, prefix, args) |
| : emit_call (0, prefix, args); |
| return p; |
| } |
| |
| static const char * |
| emit_jrcc (char prefix, char opcode, const char * args) |
| { |
| char cc; |
| const char *p; |
| |
| p = parse_cc (args, &cc); |
| if (p && *p++ == ',') |
| { |
| if (cc > (3 << 3)) |
| error (_("condition code invalid for jr")); |
| else |
| p = emit_jr (0, opcode + cc, p); |
| } |
| else |
| p = emit_jr (0, prefix, args); |
| |
| return p; |
| } |
| |
| static const char * |
| emit_ex (char prefix_in ATTRIBUTE_UNUSED, |
| char opcode_in ATTRIBUTE_UNUSED, const char * args) |
| { |
| expressionS op; |
| const char * p; |
| char prefix, opcode; |
| |
| p = parse_exp_not_indexed (args, &op); |
| p = skip_space (p); |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| |
| prefix = opcode = 0; |
| if (op.X_op == O_register) |
| switch (op.X_add_number | (op.X_md ? 0x8000 : 0)) |
| { |
| case REG_AF: |
| if (TOLOWER (*p++) == 'a' && TOLOWER (*p++) == 'f') |
| { |
| /* The scrubber changes '\'' to '`' in this context. */ |
| if (*p == '`') |
| ++p; |
| opcode = 0x08; |
| } |
| break; |
| case REG_DE: |
| if (TOLOWER (*p++) == 'h' && TOLOWER (*p++) == 'l') |
| opcode = 0xEB; |
| break; |
| case REG_SP|0x8000: |
| p = parse_exp (p, & op); |
| if (op.X_op == O_register |
| && op.X_md == 0 |
| && (op.X_add_number & ~R_INDEX) == REG_HL) |
| { |
| opcode = 0xE3; |
| if (R_INDEX & op.X_add_number) |
| prefix = (R_IX & op.X_add_number) ? 0xDD : 0xFD; |
| } |
| break; |
| } |
| if (opcode) |
| emit_insn (prefix, opcode, p); |
| else |
| ill_op (); |
| |
| return p; |
| } |
| |
| static const char * |
| emit_in (char prefix ATTRIBUTE_UNUSED, char opcode ATTRIBUTE_UNUSED, |
| const char * args) |
| { |
| expressionS reg, port; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, ®); |
| if (reg.X_md && reg.X_op == O_register && reg.X_add_number == REG_C) |
| { /* permit instruction in (c) as alias for in f,(c) */ |
| port = reg; |
| reg.X_md = 0; |
| reg.X_add_number = REG_F; |
| } |
| else |
| { |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| p = parse_exp (p, &port); |
| } |
| if (reg.X_md == 0 |
| && reg.X_op == O_register |
| && (reg.X_add_number <= 7 || reg.X_add_number == REG_F) |
| && (port.X_md)) |
| { |
| if (port.X_op != O_md1 && port.X_op != O_register) |
| { |
| if (REG_A == reg.X_add_number) |
| { |
| q = frag_more (1); |
| *q = 0xDB; |
| emit_byte (&port, BFD_RELOC_8); |
| } |
| else |
| ill_op (); |
| } |
| else |
| { |
| if (port.X_add_number == REG_C || port.X_add_number == REG_BC) |
| { |
| if (port.X_add_number == REG_BC && !(ins_ok & INS_EZ80)) |
| ill_op (); |
| else if (reg.X_add_number == REG_F && !(ins_ok & (INS_R800|INS_Z80N))) |
| check_mach (INS_IN_F_C); |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = 0x40|((reg.X_add_number&7)<<3); |
| } |
| else |
| ill_op (); |
| } |
| } |
| else |
| ill_op (); |
| return p; |
| } |
| |
| static const char * |
| emit_in0 (char prefix ATTRIBUTE_UNUSED, char opcode ATTRIBUTE_UNUSED, |
| const char * args) |
| { |
| expressionS reg, port; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, ®); |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| |
| p = parse_exp (p, &port); |
| if (reg.X_md == 0 |
| && reg.X_op == O_register |
| && reg.X_add_number <= 7 |
| && port.X_md |
| && port.X_op != O_md1 |
| && port.X_op != O_register) |
| { |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = 0x00|(reg.X_add_number << 3); |
| emit_byte (&port, BFD_RELOC_8); |
| } |
| else |
| ill_op (); |
| return p; |
| } |
| |
| static const char * |
| emit_out (char prefix ATTRIBUTE_UNUSED, char opcode ATTRIBUTE_UNUSED, |
| const char * args) |
| { |
| expressionS reg, port; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, & port); |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| p = parse_exp (p, ®); |
| if (!port.X_md) |
| { ill_op (); return p; } |
| /* Allow "out (c), 0" as unportable instruction. */ |
| if (reg.X_op == O_constant && reg.X_add_number == 0) |
| { |
| if (!(ins_ok & INS_Z80N)) |
| check_mach (INS_OUT_C_0); |
| reg.X_op = O_register; |
| reg.X_add_number = 6; |
| } |
| if (reg.X_md |
| || reg.X_op != O_register |
| || reg.X_add_number > 7) |
| ill_op (); |
| else |
| if (port.X_op != O_register && port.X_op != O_md1) |
| { |
| if (REG_A == reg.X_add_number) |
| { |
| q = frag_more (1); |
| *q = 0xD3; |
| emit_byte (&port, BFD_RELOC_8); |
| } |
| else |
| ill_op (); |
| } |
| else |
| { |
| if (REG_C == port.X_add_number || port.X_add_number == REG_BC) |
| { |
| if (port.X_add_number == REG_BC && !(ins_ok & INS_EZ80)) |
| ill_op (); |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = 0x41 | (reg.X_add_number << 3); |
| } |
| else |
| ill_op (); |
| } |
| return p; |
| } |
| |
| static const char * |
| emit_out0 (char prefix ATTRIBUTE_UNUSED, char opcode ATTRIBUTE_UNUSED, |
| const char * args) |
| { |
| expressionS reg, port; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, & port); |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| p = parse_exp (p, ®); |
| if (port.X_md != 0 |
| && port.X_op != O_register |
| && port.X_op != O_md1 |
| && reg.X_md == 0 |
| && reg.X_op == O_register |
| && reg.X_add_number <= 7) |
| { |
| q = frag_more (2); |
| *q++ = 0xED; |
| *q = 0x01 | (reg.X_add_number << 3); |
| emit_byte (&port, BFD_RELOC_8); |
| } |
| else |
| ill_op (); |
| return p; |
| } |
| |
| static const char * |
| emit_rst (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args) |
| { |
| expressionS addr; |
| const char *p; |
| char *q; |
| |
| p = parse_exp_not_indexed (args, &addr); |
| if (addr.X_op != O_constant) |
| { |
| error ("rst needs constant address"); |
| return p; |
| } |
| |
| if (addr.X_add_number & ~(7 << 3)) |
| ill_op (); |
| else |
| { |
| q = frag_more (1); |
| *q = opcode + (addr.X_add_number & (7 << 3)); |
| } |
| return p; |
| } |
| |
| /* For 8-bit indirect load to memory instructions like: LD (HL),n or LD (ii+d),n. */ |
| static void |
| emit_ld_m_n (expressionS *dst, expressionS *src) |
| { |
| char *q; |
| char prefix; |
| expressionS dst_offset; |
| |
| switch (dst->X_add_number) |
| { |
| case REG_HL: prefix = 0x00; break; |
| case REG_IX: prefix = 0xDD; break; |
| case REG_IY: prefix = 0xFD; break; |
| default: |
| ill_op (); |
| return; |
| } |
| |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| *q++ = prefix; |
| *q = 0x36; |
| if (prefix) |
| { |
| dst_offset = *dst; |
| dst_offset.X_op = O_symbol; |
| dst_offset.X_add_number = 0; |
| emit_byte (& dst_offset, BFD_RELOC_Z80_DISP8); |
| } |
| emit_byte (src, BFD_RELOC_8); |
| } |
| |
| /* For 8-bit load register to memory instructions: LD (<expression>),r. */ |
| static void |
| emit_ld_m_r (expressionS *dst, expressionS *src) |
| { |
| char *q; |
| char prefix = 0; |
| expressionS dst_offset; |
| |
| switch (dst->X_op) |
| { |
| case O_md1: |
| if (ins_ok & INS_GBZ80) |
| { /* LD (HL+),A or LD (HL-),A */ |
| if (src->X_op != O_register || src->X_add_number != REG_A) |
| break; |
| *frag_more (1) = (dst->X_add_number == REG_HL) ? 0x22 : 0x32; |
| return; |
| } |
| else |
| prefix = (dst->X_add_number == REG_IX) ? 0xDD : 0xFD; |
| /* Fall through. */ |
| case O_register: |
| switch (dst->X_add_number) |
| { |
| case REG_BC: /* LD (BC),A */ |
| case REG_DE: /* LD (DE),A */ |
| if (src->X_add_number == REG_A) |
| { |
| q = frag_more (1); |
| *q = 0x02 | ((dst->X_add_number & 3) << 4); |
| return; |
| } |
| break; |
| case REG_IX: |
| case REG_IY: |
| case REG_HL: /* LD (HL),r or LD (ii+d),r */ |
| if (src->X_add_number <= 7) |
| { |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| *q++ = prefix; |
| *q = 0x70 | src->X_add_number; |
| if (prefix) |
| { |
| dst_offset = *dst; |
| dst_offset.X_op = O_symbol; |
| dst_offset.X_add_number = 0; |
| emit_byte (& dst_offset, BFD_RELOC_Z80_DISP8); |
| } |
| return; |
| } |
| break; |
| default:; |
| } |
| break; |
| default: /* LD (nn),A */ |
| if (src->X_add_number == REG_A) |
| { |
| q = frag_more (1); |
| *q = (ins_ok & INS_GBZ80) ? 0xEA : 0x32; |
| emit_word (dst); |
| return; |
| } |
| break; |
| } |
| ill_op (); |
| } |
| |
| /* For 16-bit load register to memory instructions: LD (<expression>),rr. */ |
| static void |
| emit_ld_m_rr (expressionS *dst, expressionS *src) |
| { |
| char *q; |
| int prefix = 0; |
| int opcode = 0; |
| expressionS dst_offset; |
| |
| switch (dst->X_op) |
| { |
| case O_md1: /* eZ80 instructions LD (ii+d),rr */ |
| case O_register: /* eZ80 instructions LD (HL),rr */ |
| if (!(ins_ok & INS_EZ80)) /* 16-bit indirect load group is supported by eZ80 only */ |
| ill_op (); |
| switch (dst->X_add_number) |
| { |
| case REG_IX: prefix = 0xDD; break; |
| case REG_IY: prefix = 0xFD; break; |
| case REG_HL: prefix = 0xED; break; |
| default: |
| ill_op (); |
| } |
| switch (src->X_add_number) |
| { |
| case REG_BC: opcode = 0x0F; break; |
| case REG_DE: opcode = 0x1F; break; |
| case REG_HL: opcode = 0x2F; break; |
| case REG_IX: opcode = (prefix != 0xFD) ? 0x3F : 0x3E; break; |
| case REG_IY: opcode = (prefix != 0xFD) ? 0x3E : 0x3F; break; |
| default: |
| ill_op (); |
| } |
| q = frag_more (prefix ? 2 : 1); |
| *q++ = prefix; |
| *q = opcode; |
| if (prefix == 0xFD || prefix == 0xDD) |
| { |
| dst_offset = *dst; |
| dst_offset.X_op = O_symbol; |
| dst_offset.X_add_number = 0; |
| emit_byte (& dst_offset, BFD_RELOC_Z80_DISP8); |
| } |
| break; |
| default: /* LD (nn),rr */ |
| if (ins_ok & INS_GBZ80) |
| { |
| /* GBZ80 supports only LD (nn),SP */ |
| if (src->X_add_number == REG_SP) |
| { |
| prefix = 0x00; |
| opcode = 0x08; |
| } |
| else |
| ill_op (); |
| } |
| else |
| { |
| switch (src->X_add_number) |
| { |
| case REG_BC: prefix = 0xED; opcode = 0x43; break; |
| case REG_DE: prefix = 0xED; opcode = 0x53; break; |
| case REG_HL: prefix = 0x00; opcode = 0x22; break; |
| case REG_IX: prefix = 0xDD; opcode = 0x22; break; |
| case REG_IY: prefix = 0xFD; opcode = 0x22; break; |
| case REG_SP: prefix = 0xED; opcode = 0x73; break; |
| default: |
| ill_op (); |
| } |
| } |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| *q++ = prefix; |
| *q = opcode; |
| emit_word (dst); |
| } |
| } |
| |
| static void |
| emit_ld_r_m (expressionS *dst, expressionS *src) |
| { /* for 8-bit memory load to register: LD r,(xxx) */ |
| char *q; |
| char prefix = 0; |
| char opcode = 0; |
| expressionS src_offset; |
| |
| if (dst->X_add_number == REG_A && src->X_op == O_register) |
| { /* LD A,(BC) or LD A,(DE) */ |
| switch (src->X_add_number) |
| { |
| case REG_BC: opcode = 0x0A; break; |
| case REG_DE: opcode = 0x1A; break; |
| default: break; |
| } |
| if (opcode != 0) |
| { |
| q = frag_more (1); |
| *q = opcode; |
| return; |
| } |
| } |
| |
| switch (src->X_op) |
| { |
| case O_md1: |
| if (ins_ok & INS_GBZ80) |
| { /* LD A,(HL+) or LD A,(HL-) */ |
| if (dst->X_op == O_register && dst->X_add_number == REG_A) |
| *frag_more (1) = (src->X_add_number == REG_HL) ? 0x2A : 0x3A; |
| else |
| ill_op (); |
| break; |
| } |
| /* Fall through. */ |
| case O_register: |
| if (dst->X_add_number > 7) |
| ill_op (); |
| opcode = 0x46; /* LD B,(HL) */ |
| switch (src->X_add_number) |
| { |
| case REG_HL: prefix = 0x00; break; |
| case REG_IX: prefix = 0xDD; break; |
| case REG_IY: prefix = 0xFD; break; |
| default: |
| ill_op (); |
| } |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| *q++ = prefix; |
| *q = opcode | ((dst->X_add_number & 7) << 3); |
| if (prefix) |
| { |
| src_offset = *src; |
| src_offset.X_op = O_symbol; |
| src_offset.X_add_number = 0; |
| emit_byte (& src_offset, BFD_RELOC_Z80_DISP8); |
| } |
| break; |
| default: /* LD A,(nn) */ |
| if (dst->X_add_number == REG_A) |
| { |
| q = frag_more (1); |
| *q = (ins_ok & INS_GBZ80) ? 0xFA : 0x3A; |
| emit_word (src); |
| } |
| else |
| ill_op (); |
| } |
| } |
| |
| static void |
| emit_ld_r_n (expressionS *dst, expressionS *src) |
| { /* for 8-bit immediate value load to register: LD r,n */ |
| char *q; |
| char prefix = 0; |
| |
| switch (dst->X_add_number) |
| { |
| case REG_H|R_IX: |
| case REG_L|R_IX: |
| prefix = 0xDD; |
| break; |
| case REG_H|R_IY: |
| case REG_L|R_IY: |
| prefix = 0xFD; |
| break; |
| case REG_A: |
| case REG_B: |
| case REG_C: |
| case REG_D: |
| case REG_E: |
| case REG_H: |
| case REG_L: |
| break; |
| default: |
| ill_op (); |
| } |
| |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| { |
| if (ins_ok & INS_GBZ80) |
| ill_op (); |
| else if (!(ins_ok & (INS_EZ80|INS_R800|INS_Z80N))) |
| check_mach (INS_IDX_HALF); |
| *q++ = prefix; |
| } |
| *q = 0x06 | ((dst->X_add_number & 7) << 3); |
| emit_byte (src, BFD_RELOC_8); |
| } |
| |
| static void |
| emit_ld_r_r (expressionS *dst, expressionS *src) |
| { /* mostly 8-bit load register from register instructions: LD r,r */ |
| /* there are some exceptions: LD SP,HL/IX/IY; LD I,HL and LD HL,I */ |
| char *q; |
| int prefix = 0; |
| int opcode = 0; |
| int ii_halves = 0; |
| |
| switch (dst->X_add_number) |
| { |
| case REG_SP: |
| switch (src->X_add_number) |
| { |
| case REG_HL: prefix = 0x00; break; |
| case REG_IX: prefix = 0xDD; break; |
| case REG_IY: prefix = 0xFD; break; |
| default: |
| ill_op (); |
| } |
| opcode = 0xF9; |
| break; |
| case REG_HL: |
| if (!(ins_ok & INS_EZ80)) |
| ill_op (); |
| if (src->X_add_number != REG_I) |
| ill_op (); |
| if (cpu_mode < 1) |
| error (_("ADL mode instruction")); |
| /* LD HL,I */ |
| prefix = 0xED; |
| opcode = 0xD7; |
| break; |
| case REG_I: |
| if (src->X_add_number == REG_HL) |
| { |
| if (!(ins_ok & INS_EZ80)) |
| ill_op (); |
| if (cpu_mode < 1) |
| error (_("ADL mode instruction")); |
| prefix = 0xED; |
| opcode = 0xC7; |
| } |
| else if (src->X_add_number == REG_A) |
| { |
| prefix = 0xED; |
| opcode = 0x47; |
| } |
| else |
| ill_op (); |
| break; |
| case REG_MB: |
| if (!(ins_ok & INS_EZ80) || (src->X_add_number != REG_A)) |
| ill_op (); |
| if (cpu_mode < 1) |
| error (_("ADL mode instruction")); |
| prefix = 0xED; |
| opcode = 0x6D; |
| break; |
| case REG_R: |
| if (src->X_add_number == REG_A) /* LD R,A */ |
| { |
| prefix = 0xED; |
| opcode = 0x4F; |
| } |
| else |
| ill_op (); |
| break; |
| case REG_A: |
| if (src->X_add_number == REG_I) /* LD A,I */ |
| { |
| prefix = 0xED; |
| opcode = 0x57; |
| break; |
| } |
| else if (src->X_add_number == REG_R) /* LD A,R */ |
| { |
| prefix = 0xED; |
| opcode = 0x5F; |
| break; |
| } |
| else if (src->X_add_number == REG_MB) /* LD A,MB */ |
| { |
| if (!(ins_ok & INS_EZ80)) |
| ill_op (); |
| else |
| { |
| if (cpu_mode < 1) |
| error (_("ADL mode instruction")); |
| prefix = 0xED; |
| opcode = 0x6E; |
| } |
| break; |
| } |
| /* Fall through. */ |
| case REG_B: |
| case REG_C: |
| case REG_D: |
| case REG_E: |
| case REG_H: |
| case REG_L: |
| prefix = 0x00; |
| break; |
| case REG_H|R_IX: |
| case REG_L|R_IX: |
| prefix = 0xDD; |
| ii_halves = 1; |
| break; |
| case REG_H|R_IY: |
| case REG_L|R_IY: |
| prefix = 0xFD; |
| ii_halves = 1; |
| break; |
| default: |
| ill_op (); |
| } |
| |
| if (opcode == 0) |
| { |
| switch (src->X_add_number) |
| { |
| case REG_A: |
| case REG_B: |
| case REG_C: |
| case REG_D: |
| case REG_E: |
| break; |
| case REG_H: |
| case REG_L: |
| if (prefix != 0) |
| ill_op (); /* LD iiH/L,H/L are not permitted */ |
| break; |
| case REG_H|R_IX: |
| case REG_L|R_IX: |
| if (prefix == 0xFD || dst->X_add_number == REG_H || dst->X_add_number == REG_L) |
| ill_op (); /* LD IYL,IXL and LD H,IXH are not permitted */ |
| prefix = 0xDD; |
| ii_halves = 1; |
| break; |
| case REG_H|R_IY: |
| case REG_L|R_IY: |
| if (prefix == 0xDD || dst->X_add_number == REG_H || dst->X_add_number == REG_L) |
| ill_op (); /* LD IXH,IYH and LD L,IYL are not permitted */ |
| prefix = 0xFD; |
| ii_halves = 1; |
| break; |
| default: |
| ill_op (); |
| } |
| opcode = 0x40 + ((dst->X_add_number & 7) << 3) + (src->X_add_number & 7); |
| } |
| if ((ins_ok & INS_GBZ80) && prefix != 0) |
| ill_op (); |
| if (ii_halves && !(ins_ok & (INS_EZ80|INS_R800|INS_Z80N))) |
| check_mach (INS_IDX_HALF); |
| if (prefix == 0 && (ins_ok & INS_EZ80)) |
| { |
| switch (opcode) |
| { |
| case 0x40: /* SIS prefix, in Z80 it is LD B,B */ |
| case 0x49: /* LIS prefix, in Z80 it is LD C,C */ |
| case 0x52: /* SIL prefix, in Z80 it is LD D,D */ |
| case 0x5B: /* LIL prefix, in Z80 it is LD E,E */ |
| as_warn (_("unsupported instruction, assembled as NOP")); |
| opcode = 0x00; |
| break; |
| default:; |
| } |
| } |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| *q++ = prefix; |
| *q = opcode; |
| } |
| |
| static void |
| emit_ld_rr_m (expressionS *dst, expressionS *src) |
| { /* for 16-bit indirect load from memory to register: LD rr,(xxx) */ |
| char *q; |
| int prefix = 0; |
| int opcode = 0; |
| expressionS src_offset; |
| |
| /* GBZ80 has no support for 16-bit load from memory instructions */ |
| if (ins_ok & INS_GBZ80) |
| ill_op (); |
| |
| prefix = 0xED; |
| switch (src->X_op) |
| { |
| case O_md1: /* LD rr,(ii+d) */ |
| prefix = (src->X_add_number == REG_IX) ? 0xDD : 0xFD; |
| /* Fall through. */ |
| case O_register: /* LD rr,(HL) */ |
| /* currently only EZ80 has support for 16bit indirect memory load instructions */ |
| if (!(ins_ok & INS_EZ80)) |
| ill_op (); |
| switch (dst->X_add_number) |
| { |
| case REG_BC: opcode = 0x07; break; |
| case REG_DE: opcode = 0x17; break; |
| case REG_HL: opcode = 0x27; break; |
| case REG_IX: opcode = (prefix == 0xED || prefix == 0xDD) ? 0x37 : 0x31; break; |
| case REG_IY: opcode = (prefix == 0xED || prefix == 0xDD) ? 0x31 : 0x37; break; |
| default: |
| ill_op (); |
| } |
| q = frag_more (2); |
| *q++ = prefix; |
| *q = opcode; |
| if (prefix != 0xED) |
| { |
| src_offset = *src; |
| src_offset.X_op = O_symbol; |
| src_offset.X_add_number = 0; |
| emit_byte (& src_offset, BFD_RELOC_Z80_DISP8); |
| } |
| break; |
| default: /* LD rr,(nn) */ |
| switch (dst->X_add_number) |
| { |
| case REG_BC: prefix = 0xED; opcode = 0x4B; break; |
| case REG_DE: prefix = 0xED; opcode = 0x5B; break; |
| case REG_HL: prefix = 0x00; opcode = 0x2A; break; |
| case REG_SP: prefix = 0xED; opcode = 0x7B; break; |
| case REG_IX: prefix = 0xDD; opcode = 0x2A; break; |
| case REG_IY: prefix = 0xFD; opcode = 0x2A; break; |
| default: |
| ill_op (); |
| } |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| *q++ = prefix; |
| *q = opcode; |
| emit_word (src); |
| } |
| return; |
| } |
| |
| static void |
| emit_ld_rr_nn (expressionS *dst, expressionS *src) |
| { /* mostly load imediate value to multibyte register instructions: LD rr,nn */ |
| char *q; |
| int prefix = 0x00; |
| int opcode = 0x21; /* LD HL,nn */ |
| switch (dst->X_add_number) |
| { |
| case REG_IX: |
| prefix = 0xDD; |
| break; |
| case REG_IY: |
| prefix = 0xFD; |
| break; |
| case REG_HL: |
| break; |
| case REG_BC: |
| case REG_DE: |
| case REG_SP: |
| opcode = 0x01 + ((dst->X_add_number & 3) << 4); |
| break; |
| default: |
| ill_op (); |
| return; |
| } |
| if (prefix && (ins_ok & INS_GBZ80)) |
| ill_op (); |
| q = frag_more (prefix ? 2 : 1); |
| if (prefix) |
| *q++ = prefix; |
| *q = opcode; |
| emit_word (src); |
| } |
| |
| static const char * |
| emit_ld (char prefix_in ATTRIBUTE_UNUSED, char opcode_in ATTRIBUTE_UNUSED, |
| const char * args) |
| { |
| expressionS dst, src; |
| const char *p; |
| |
| p = parse_exp (args, & dst); |
| if (*p++ != ',') |
| error (_("bad instruction syntax")); |
| p = parse_exp (p, & src); |
| |
| if (dst.X_md) |
| { |
| if (src.X_op == O_register) |
| { |
| if (src.X_add_number <= 7) |
| emit_ld_m_r (& dst, & src); /* LD (xxx),r */ |
| else |
| emit_ld_m_rr (& dst, & src); /* LD (xxx),rr */ |
| } |
| else |
| emit_ld_m_n (& dst, & src); /* LD (hl),n or LD (ix/y+r),n */ |
| } |
| else if (dst.X_op == O_register) |
| { |
| if (src.X_md) |
| { |
| if (dst.X_add_number <= 7) |
| emit_ld_r_m (& dst, & src); |
| else |
| emit_ld_rr_m (& dst, & src); |
| } |
| else if (src.X_op == O_register) |
| emit_ld_r_r (& dst, & src); |
| else if ((dst.X_add_number & ~R_INDEX) <= 7) |
| emit_ld_r_n (& dst, & src); |
| else |
| emit_ld_rr_nn (& dst, & src); |
| } |
| else |
| ill_op (); |
| |
| return p; |
| } |
| |
| static const char * |
| emit_lddldi (char prefix, char opcode, const char * args) |
| { |
| expressionS dst, src; |
| const char *p; |
| char *q; |
| |
| if (!(ins_ok & INS_GBZ80)) |
| return emit_insn (prefix, opcode, args); |
| |
| p = parse_exp (args, & dst); |
| if (*p++ != ',') |
| error (_("bad instruction syntax")); |
| p = parse_exp (p, & src); |
| |
| if (dst.X_op != O_register || src.X_op != O_register) |
| ill_op (); |
| |
| /* convert opcode 0xA0 . 0x22, 0xA8 . 0x32 */ |
| opcode = (opcode & 0x08) * 2 + 0x22; |
| |
| if (dst.X_md != 0 |
| && dst.X_add_number == REG_HL |
| && src.X_md == 0 |
| && src.X_add_number == REG_A) |
| opcode |= 0x00; /* LDx (HL),A */ |
| else if (dst.X_md == 0 |
| && dst.X_add_number == REG_A |
| && src.X_md != 0 |
| && src.X_add_number == REG_HL) |
| opcode |= 0x08; /* LDx A,(HL) */ |
| else |
| ill_op (); |
| |
| q = frag_more (1); |
| *q = opcode; |
| return p; |
| } |
| |
| static const char * |
| emit_ldh (char prefix ATTRIBUTE_UNUSED, char opcode ATTRIBUTE_UNUSED, |
| const char * args) |
| { |
| expressionS dst, src; |
| const char *p; |
| char *q; |
| |
| p = parse_exp (args, & dst); |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| |
| p = parse_exp (p, & src); |
| if (dst.X_md == 0 |
| && dst.X_op == O_register |
| && dst.X_add_number == REG_A |
| && src.X_md != 0 |
| && src.X_op != O_md1) |
| { |
| if (src.X_op != O_register) |
| { |
| q = frag_more (1); |
| *q = 0xF0; |
| emit_byte (& src, BFD_RELOC_8); |
| } |
| else if (src.X_add_number == REG_C) |
| *frag_more (1) = 0xF2; |
| else |
| ill_op (); |
| } |
| else if (dst.X_md != 0 |
| && dst.X_op != O_md1 |
| && src.X_md == 0 |
| && src.X_op == O_register |
| && src.X_add_number == REG_A) |
| { |
| if (dst.X_op == O_register) |
| { |
| if (dst.X_add_number == REG_C) |
| { |
| q = frag_more (1); |
| *q = 0xE2; |
| } |
| else |
| ill_op (); |
| } |
| else |
| { |
| q = frag_more (1); |
| *q = 0xE0; |
| emit_byte (& dst, BFD_RELOC_8); |
| } |
| } |
| else |
| ill_op (); |
| |
| return p; |
| } |
| |
| static const char * |
| emit_ldhl (char prefix ATTRIBUTE_UNUSED, char opcode, const char * args) |
| { |
| expressionS dst, src; |
| const char *p; |
| char *q; |
| p = parse_exp (args, & dst); |
| if (*p++ != ',') |
| { |
| error (_("bad instruction syntax")); |
| return p; |
| } |
| |
| p = parse_exp (p, & src); |
| if (dst.X_md || dst.X_op != O_register || dst.X_add_number != REG_SP |
| || src.X_md || src.X_op == O_register || src.X_op == O_md1) |
| ill_op (); |
| q = frag_more (1); |
| *q = opcode; |
| emit_byte (& src, BFD_RELOC_Z80_DISP8); |
| return p; |
| } |
| |
| static const char * |
| parse_lea_pea_args (const char * args, expressionS *op) |
| { |
| const char *p; |
| p = parse_exp (args, op); |
| if (sdcc_compat && *p == ',' && op->X_op == O_register) |
| { |
| expressionS off; |
| p = parse_exp (p + 1, &off); |
| op->X_op = O_add; |
| op->X_add_symbol = make_expr_symbol (&off); |
| } |
| return p; |
| } |
| |
| static const char * |
| emit_lea (char prefix, char opcode, const char * args) |
| { |
| expressionS dst, src; |
| const char *p; |
| char *q; |
| int rnum; |
| |
| p = parse_exp (args, & dst); |
| if (dst.X_md != 0 || dst.X_op != O_register) |
| ill_op (); |
| |
| rnum = dst.X_add_number; |
| switch (rnum) |
| { |
| case REG_BC: |
| case REG_DE: |
| case REG_HL: |
| opcode = 0x02 | ((rnum & 0x03) << 4); |
| break; |
| case REG_IX: |
| opcode = 0x32; /* lea ix,ix+d has opcode 0x32; lea ix,iy+d has opcode 0x54 */ |
| break; |
| case REG_IY: |
| |