1999-05-03 09:29:11 +02:00
|
|
|
|
/* tc-z8k.c -- Assemble code for the Zilog Z800n
|
2005-01-27 22:08:14 +01:00
|
|
|
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 2000, 2001, 2002, 2003,
|
2006-06-07 13:27:58 +02:00
|
|
|
|
2005, 2006 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
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 2, 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
|
2005-05-05 11:13:19 +02:00
|
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
|
02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Written By Steve Chamberlain <sac@cygnus.com>. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#include "as.h"
|
2001-09-19 07:33:36 +02:00
|
|
|
|
#include "safe-ctype.h"
|
2005-08-26 11:47:49 +02:00
|
|
|
|
#define DEFINE_TABLE
|
2001-10-09 19:25:58 +02:00
|
|
|
|
#include "opcodes/z8k-opc.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-06-09 02:00:04 +02:00
|
|
|
|
const char comment_chars[] = "!";
|
|
|
|
|
const char line_comment_chars[] = "#";
|
|
|
|
|
const char line_separator_chars[] = ";";
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
extern int machine;
|
|
|
|
|
extern int coff_flags;
|
|
|
|
|
int segmented_mode;
|
|
|
|
|
|
2003-05-01 21:59:33 +02:00
|
|
|
|
/* This is non-zero if target was set from the command line. */
|
|
|
|
|
static int z8k_target_from_cmdline;
|
|
|
|
|
|
* config/tc-z8k.c (cons, obj_coff_section): Delete declarations.
(whatreg, parse_reg, parse_exp): Make static, prototype.
(checkfor, regword, regaddr, get_ctrl_operand): Prototype.
(get_flags_operand, get_interrupt_operand, get_cc_operand): Likewise.
(get_operand, get_operands, get_specific, newfix): Likewise.
(apply_fix, build_bytes): Likewise.
(md_atof): Remove declaration of atof_ieee.
(tc_aout_fix_to_chars): Delete.
(md_begin): Constify "opcode". Don't try to init opcode->idx.
Fix s_unseg call.
(md_parse_option): Fix s_segm and s_unseg calls.
* z8kgen.c: Include "libiberty.h".
(opt, args, toks): Fix initializer warnings.
(chewname): Make "name" a char **. Return mnemonic trimmed of
operands.
(gas): Improve emitted "DO NOT EDIT" warning. Format emitted
opcode_entry_type, and make "nicename" and "name" const. Make
z8k_table const too. Formatting. Generate idx as gas needs it.
* z8k-opc.h: Regenerate.
2002-12-12 22:27:58 +01:00
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
s_segm (int segm)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-05-01 21:59:33 +02:00
|
|
|
|
if (segm)
|
|
|
|
|
{
|
2003-11-26 22:24:53 +01:00
|
|
|
|
segmented_mode = 1;
|
2005-08-26 11:47:49 +02:00
|
|
|
|
bfd_set_arch_mach (stdoutput, TARGET_ARCH, bfd_mach_z8001);
|
2003-05-01 21:59:33 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2003-11-26 22:24:53 +01:00
|
|
|
|
segmented_mode = 0;
|
2005-08-26 11:47:49 +02:00
|
|
|
|
bfd_set_arch_mach (stdoutput, TARGET_ARCH, bfd_mach_z8002);
|
2003-05-01 21:59:33 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
even (int ignore ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
frag_align (1, 0, 0);
|
|
|
|
|
record_alignment (now_seg, 1);
|
|
|
|
|
}
|
|
|
|
|
|
* config/tc-z8k.c (cons, obj_coff_section): Delete declarations.
(whatreg, parse_reg, parse_exp): Make static, prototype.
(checkfor, regword, regaddr, get_ctrl_operand): Prototype.
(get_flags_operand, get_interrupt_operand, get_cc_operand): Likewise.
(get_operand, get_operands, get_specific, newfix): Likewise.
(apply_fix, build_bytes): Likewise.
(md_atof): Remove declaration of atof_ieee.
(tc_aout_fix_to_chars): Delete.
(md_begin): Constify "opcode". Don't try to init opcode->idx.
Fix s_unseg call.
(md_parse_option): Fix s_segm and s_unseg calls.
* z8kgen.c: Include "libiberty.h".
(opt, args, toks): Fix initializer warnings.
(chewname): Make "name" a char **. Return mnemonic trimmed of
operands.
(gas): Improve emitted "DO NOT EDIT" warning. Format emitted
opcode_entry_type, and make "nicename" and "name" const. Make
z8k_table const too. Formatting. Generate idx as gas needs it.
* z8k-opc.h: Regenerate.
2002-12-12 22:27:58 +01:00
|
|
|
|
static int
|
2003-11-28 21:10:18 +01:00
|
|
|
|
tohex (int c)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-09-19 07:33:36 +02:00
|
|
|
|
if (ISDIGIT (c))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return c - '0';
|
2001-09-19 07:33:36 +02:00
|
|
|
|
if (ISLOWER (c))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return c - 'a' + 10;
|
|
|
|
|
return c - 'A' + 10;
|
|
|
|
|
}
|
|
|
|
|
|
* config/tc-z8k.c (cons, obj_coff_section): Delete declarations.
(whatreg, parse_reg, parse_exp): Make static, prototype.
(checkfor, regword, regaddr, get_ctrl_operand): Prototype.
(get_flags_operand, get_interrupt_operand, get_cc_operand): Likewise.
(get_operand, get_operands, get_specific, newfix): Likewise.
(apply_fix, build_bytes): Likewise.
(md_atof): Remove declaration of atof_ieee.
(tc_aout_fix_to_chars): Delete.
(md_begin): Constify "opcode". Don't try to init opcode->idx.
Fix s_unseg call.
(md_parse_option): Fix s_segm and s_unseg calls.
* z8kgen.c: Include "libiberty.h".
(opt, args, toks): Fix initializer warnings.
(chewname): Make "name" a char **. Return mnemonic trimmed of
operands.
(gas): Improve emitted "DO NOT EDIT" warning. Format emitted
opcode_entry_type, and make "nicename" and "name" const. Make
z8k_table const too. Formatting. Generate idx as gas needs it.
* z8k-opc.h: Regenerate.
2002-12-12 22:27:58 +01:00
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
sval (int ignore ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
SKIP_WHITESPACE ();
|
|
|
|
|
if (*input_line_pointer == '\'')
|
|
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
c = *input_line_pointer++;
|
|
|
|
|
while (c != '\'')
|
|
|
|
|
{
|
|
|
|
|
if (c == '%')
|
|
|
|
|
{
|
|
|
|
|
c = (tohex (input_line_pointer[0]) << 4)
|
|
|
|
|
| tohex (input_line_pointer[1]);
|
|
|
|
|
input_line_pointer += 2;
|
|
|
|
|
}
|
|
|
|
|
FRAG_APPEND_1_CHAR (c);
|
|
|
|
|
c = *input_line_pointer++;
|
|
|
|
|
}
|
|
|
|
|
demand_empty_rest_of_line ();
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-07-27 06:05:05 +02:00
|
|
|
|
|
|
|
|
|
/* This table describes all the machine specific pseudo-ops the assembler
|
|
|
|
|
has to support. The fields are:
|
|
|
|
|
pseudo-op name without dot
|
|
|
|
|
function to call to execute this pseudo-op
|
|
|
|
|
Integer arg to pass to the function
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
const pseudo_typeS md_pseudo_table[] = {
|
|
|
|
|
{"int" , cons , 2},
|
|
|
|
|
{"data.b" , cons , 1},
|
|
|
|
|
{"data.w" , cons , 2},
|
|
|
|
|
{"data.l" , cons , 4},
|
|
|
|
|
{"form" , listing_psize , 0},
|
|
|
|
|
{"heading", listing_title , 0},
|
|
|
|
|
{"import" , s_ignore , 0},
|
|
|
|
|
{"page" , listing_eject , 0},
|
|
|
|
|
{"program", s_ignore , 0},
|
2003-05-01 21:59:33 +02:00
|
|
|
|
{"z8001" , s_segm , 1},
|
|
|
|
|
{"z8002" , s_segm , 0},
|
2000-07-27 06:05:05 +02:00
|
|
|
|
|
2003-05-01 21:59:33 +02:00
|
|
|
|
{"segm" , s_segm , 1},
|
|
|
|
|
{"unsegm" , s_segm , 0},
|
|
|
|
|
{"unseg" , s_segm , 0},
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{"name" , s_app_file , 0},
|
|
|
|
|
{"global" , s_globl , 0},
|
|
|
|
|
{"wval" , cons , 2},
|
|
|
|
|
{"lval" , cons , 4},
|
|
|
|
|
{"bval" , cons , 1},
|
|
|
|
|
{"sval" , sval , 0},
|
|
|
|
|
{"rsect" , obj_coff_section, 0},
|
|
|
|
|
{"sect" , obj_coff_section, 0},
|
|
|
|
|
{"block" , s_space , 0},
|
|
|
|
|
{"even" , even , 0},
|
|
|
|
|
{0 , 0 , 0}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const char EXP_CHARS[] = "eE";
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Chars that mean this number is a floating point constant.
|
|
|
|
|
As in 0f12.456
|
|
|
|
|
or 0d1.2345e12 */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
const char FLT_CHARS[] = "rRsSfFdDxXpP";
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Opcode mnemonics. */
|
|
|
|
|
static struct hash_control *opcode_hash_control;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_begin (void)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
* config/tc-z8k.c (cons, obj_coff_section): Delete declarations.
(whatreg, parse_reg, parse_exp): Make static, prototype.
(checkfor, regword, regaddr, get_ctrl_operand): Prototype.
(get_flags_operand, get_interrupt_operand, get_cc_operand): Likewise.
(get_operand, get_operands, get_specific, newfix): Likewise.
(apply_fix, build_bytes): Likewise.
(md_atof): Remove declaration of atof_ieee.
(tc_aout_fix_to_chars): Delete.
(md_begin): Constify "opcode". Don't try to init opcode->idx.
Fix s_unseg call.
(md_parse_option): Fix s_segm and s_unseg calls.
* z8kgen.c: Include "libiberty.h".
(opt, args, toks): Fix initializer warnings.
(chewname): Make "name" a char **. Return mnemonic trimmed of
operands.
(gas): Improve emitted "DO NOT EDIT" warning. Format emitted
opcode_entry_type, and make "nicename" and "name" const. Make
z8k_table const too. Formatting. Generate idx as gas needs it.
* z8k-opc.h: Regenerate.
2002-12-12 22:27:58 +01:00
|
|
|
|
const opcode_entry_type *opcode;
|
|
|
|
|
int idx = -1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
opcode_hash_control = hash_new ();
|
|
|
|
|
|
|
|
|
|
for (opcode = z8k_table; opcode->name; opcode++)
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Only enter unique codes into the table. */
|
* config/tc-z8k.c (cons, obj_coff_section): Delete declarations.
(whatreg, parse_reg, parse_exp): Make static, prototype.
(checkfor, regword, regaddr, get_ctrl_operand): Prototype.
(get_flags_operand, get_interrupt_operand, get_cc_operand): Likewise.
(get_operand, get_operands, get_specific, newfix): Likewise.
(apply_fix, build_bytes): Likewise.
(md_atof): Remove declaration of atof_ieee.
(tc_aout_fix_to_chars): Delete.
(md_begin): Constify "opcode". Don't try to init opcode->idx.
Fix s_unseg call.
(md_parse_option): Fix s_segm and s_unseg calls.
* z8kgen.c: Include "libiberty.h".
(opt, args, toks): Fix initializer warnings.
(chewname): Make "name" a char **. Return mnemonic trimmed of
operands.
(gas): Improve emitted "DO NOT EDIT" warning. Format emitted
opcode_entry_type, and make "nicename" and "name" const. Make
z8k_table const too. Formatting. Generate idx as gas needs it.
* z8k-opc.h: Regenerate.
2002-12-12 22:27:58 +01:00
|
|
|
|
if (idx != opcode->idx)
|
|
|
|
|
hash_insert (opcode_hash_control, opcode->name, (char *) opcode);
|
|
|
|
|
idx = opcode->idx;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Default to z8002. */
|
2003-05-01 21:59:33 +02:00
|
|
|
|
if (! z8k_target_from_cmdline)
|
|
|
|
|
s_segm (0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Insert the pseudo ops, too. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (idx = 0; md_pseudo_table[idx].poc_name; idx++)
|
|
|
|
|
{
|
|
|
|
|
opcode_entry_type *fake_opcode;
|
|
|
|
|
fake_opcode = (opcode_entry_type *) malloc (sizeof (opcode_entry_type));
|
2001-06-06 19:01:35 +02:00
|
|
|
|
fake_opcode->name = md_pseudo_table[idx].poc_name;
|
|
|
|
|
fake_opcode->func = (void *) (md_pseudo_table + idx);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
fake_opcode->opcode = 250;
|
|
|
|
|
hash_insert (opcode_hash_control, fake_opcode->name, fake_opcode);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-16 01:59:49 +01:00
|
|
|
|
typedef struct z8k_op {
|
2003-06-19 15:44:42 +02:00
|
|
|
|
/* CLASS_REG_xxx. */
|
|
|
|
|
int regsize;
|
2000-07-27 06:05:05 +02:00
|
|
|
|
|
|
|
|
|
/* 0 .. 15. */
|
|
|
|
|
unsigned int reg;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
int mode;
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Any other register associated with the mode. */
|
|
|
|
|
unsigned int x_reg;
|
|
|
|
|
|
|
|
|
|
/* Any expression. */
|
|
|
|
|
expressionS exp;
|
2000-11-16 01:59:49 +01:00
|
|
|
|
} op_type;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
static expressionS *da_operand;
|
|
|
|
|
static expressionS *imm_operand;
|
|
|
|
|
|
2003-11-28 21:10:18 +01:00
|
|
|
|
static int reg[16];
|
|
|
|
|
static int the_cc;
|
|
|
|
|
static int the_ctrl;
|
|
|
|
|
static int the_flags;
|
|
|
|
|
static int the_interrupt;
|
* config/tc-z8k.c (cons, obj_coff_section): Delete declarations.
(whatreg, parse_reg, parse_exp): Make static, prototype.
(checkfor, regword, regaddr, get_ctrl_operand): Prototype.
(get_flags_operand, get_interrupt_operand, get_cc_operand): Likewise.
(get_operand, get_operands, get_specific, newfix): Likewise.
(apply_fix, build_bytes): Likewise.
(md_atof): Remove declaration of atof_ieee.
(tc_aout_fix_to_chars): Delete.
(md_begin): Constify "opcode". Don't try to init opcode->idx.
Fix s_unseg call.
(md_parse_option): Fix s_segm and s_unseg calls.
* z8kgen.c: Include "libiberty.h".
(opt, args, toks): Fix initializer warnings.
(chewname): Make "name" a char **. Return mnemonic trimmed of
operands.
(gas): Improve emitted "DO NOT EDIT" warning. Format emitted
opcode_entry_type, and make "nicename" and "name" const. Make
z8k_table const too. Formatting. Generate idx as gas needs it.
* z8k-opc.h: Regenerate.
2002-12-12 22:27:58 +01:00
|
|
|
|
|
|
|
|
|
static char *
|
2005-02-23 13:28:06 +01:00
|
|
|
|
whatreg (unsigned int *reg, char *src)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-09-19 07:33:36 +02:00
|
|
|
|
if (ISDIGIT (src[1]))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
*reg = (src[0] - '0') * 10 + src[1] - '0';
|
|
|
|
|
return src + 2;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*reg = (src[0] - '0');
|
|
|
|
|
return src + 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Parse operands
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
rh0-rh7, rl0-rl7
|
|
|
|
|
r0-r15
|
|
|
|
|
rr0-rr14
|
|
|
|
|
rq0--rq12
|
|
|
|
|
WREG r0,r1,r2,r3,r4,r5,r6,r7,fp,sp
|
|
|
|
|
r0l,r0h,..r7l,r7h
|
|
|
|
|
@WREG
|
|
|
|
|
@WREG+
|
|
|
|
|
@-WREG
|
|
|
|
|
#const
|
|
|
|
|
*/
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-07 18:58:25 +02:00
|
|
|
|
/* Try to parse a reg name. Return a pointer to the first character
|
|
|
|
|
in SRC after the reg name. */
|
|
|
|
|
|
* config/tc-z8k.c (cons, obj_coff_section): Delete declarations.
(whatreg, parse_reg, parse_exp): Make static, prototype.
(checkfor, regword, regaddr, get_ctrl_operand): Prototype.
(get_flags_operand, get_interrupt_operand, get_cc_operand): Likewise.
(get_operand, get_operands, get_specific, newfix): Likewise.
(apply_fix, build_bytes): Likewise.
(md_atof): Remove declaration of atof_ieee.
(tc_aout_fix_to_chars): Delete.
(md_begin): Constify "opcode". Don't try to init opcode->idx.
Fix s_unseg call.
(md_parse_option): Fix s_segm and s_unseg calls.
* z8kgen.c: Include "libiberty.h".
(opt, args, toks): Fix initializer warnings.
(chewname): Make "name" a char **. Return mnemonic trimmed of
operands.
(gas): Improve emitted "DO NOT EDIT" warning. Format emitted
opcode_entry_type, and make "nicename" and "name" const. Make
z8k_table const too. Formatting. Generate idx as gas needs it.
* z8k-opc.h: Regenerate.
2002-12-12 22:27:58 +01:00
|
|
|
|
static char *
|
2003-11-28 21:10:18 +01:00
|
|
|
|
parse_reg (char *src, int *mode, unsigned int *reg)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *res = 0;
|
|
|
|
|
char regno;
|
|
|
|
|
|
2003-12-06 00:40:04 +01:00
|
|
|
|
/* Check for stack pointer "sp" alias. */
|
|
|
|
|
if ((src[0] == 's' || src[0] == 'S')
|
|
|
|
|
&& (src[1] == 'p' || src[1] == 'P')
|
|
|
|
|
&& (src[2] == 0 || src[2] == ','))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (segmented_mode)
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
|
|
|
|
*mode = CLASS_REG_LONG;
|
|
|
|
|
*reg = 14;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
|
|
|
|
*mode = CLASS_REG_WORD;
|
|
|
|
|
*reg = 15;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return src + 2;
|
|
|
|
|
}
|
2003-12-06 00:40:04 +01:00
|
|
|
|
|
|
|
|
|
if (src[0] == 'r' || src[0] == 'R')
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-12-06 00:40:04 +01:00
|
|
|
|
if (src[1] == 'r' || src[1] == 'R')
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
2001-08-01 17:39:17 +02:00
|
|
|
|
if (src[2] < '0' || src[2] > '9')
|
|
|
|
|
return res; /* Assume no register name but a label starting with 'rr'. */
|
2000-07-27 06:05:05 +02:00
|
|
|
|
*mode = CLASS_REG_LONG;
|
|
|
|
|
res = whatreg (reg, src + 2);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
regno = *reg;
|
|
|
|
|
if (regno > 14)
|
2003-06-19 15:44:42 +02:00
|
|
|
|
as_bad (_("register rr%d out of range"), regno);
|
|
|
|
|
if (regno & 1)
|
|
|
|
|
as_bad (_("register rr%d does not exist"), regno);
|
2000-07-27 06:05:05 +02:00
|
|
|
|
}
|
2003-12-06 00:40:04 +01:00
|
|
|
|
else if (src[1] == 'h' || src[1] == 'H')
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
2001-08-01 17:39:17 +02:00
|
|
|
|
if (src[2] < '0' || src[2] > '9')
|
|
|
|
|
return res; /* Assume no register name but a label starting with 'rh'. */
|
2000-07-27 06:05:05 +02:00
|
|
|
|
*mode = CLASS_REG_BYTE;
|
|
|
|
|
res = whatreg (reg, src + 2);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
regno = *reg;
|
|
|
|
|
if (regno > 7)
|
2003-06-19 15:44:42 +02:00
|
|
|
|
as_bad (_("register rh%d out of range"), regno);
|
2000-07-27 06:05:05 +02:00
|
|
|
|
}
|
2003-12-06 00:40:04 +01:00
|
|
|
|
else if (src[1] == 'l' || src[1] == 'L')
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
2001-08-01 17:39:17 +02:00
|
|
|
|
if (src[2] < '0' || src[2] > '9')
|
|
|
|
|
return res; /* Assume no register name but a label starting with 'rl'. */
|
2000-07-27 06:05:05 +02:00
|
|
|
|
*mode = CLASS_REG_BYTE;
|
|
|
|
|
res = whatreg (reg, src + 2);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
regno = *reg;
|
|
|
|
|
if (regno > 7)
|
2003-06-19 15:44:42 +02:00
|
|
|
|
as_bad (_("register rl%d out of range"), regno);
|
2000-07-27 06:05:05 +02:00
|
|
|
|
*reg += 8;
|
|
|
|
|
}
|
2003-12-06 00:40:04 +01:00
|
|
|
|
else if (src[1] == 'q' || src[1] == 'Q')
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
2001-08-01 17:39:17 +02:00
|
|
|
|
if (src[2] < '0' || src[2] > '9')
|
|
|
|
|
return res; /* Assume no register name but a label starting with 'rq'. */
|
2000-07-27 06:05:05 +02:00
|
|
|
|
*mode = CLASS_REG_QUAD;
|
|
|
|
|
res = whatreg (reg, src + 2);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
regno = *reg;
|
|
|
|
|
if (regno > 12)
|
2003-06-19 15:44:42 +02:00
|
|
|
|
as_bad (_("register rq%d out of range"), regno);
|
|
|
|
|
if (regno & 3)
|
|
|
|
|
as_bad (_("register rq%d does not exist"), regno);
|
2000-07-27 06:05:05 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
2001-08-01 17:39:17 +02:00
|
|
|
|
if (src[1] < '0' || src[1] > '9')
|
|
|
|
|
return res; /* Assume no register name but a label starting with 'r'. */
|
2000-07-27 06:05:05 +02:00
|
|
|
|
*mode = CLASS_REG_WORD;
|
|
|
|
|
res = whatreg (reg, src + 1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
regno = *reg;
|
|
|
|
|
if (regno > 15)
|
2003-06-19 15:44:42 +02:00
|
|
|
|
as_bad (_("register r%d out of range"), regno);
|
2000-07-27 06:05:05 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
* config/tc-z8k.c (cons, obj_coff_section): Delete declarations.
(whatreg, parse_reg, parse_exp): Make static, prototype.
(checkfor, regword, regaddr, get_ctrl_operand): Prototype.
(get_flags_operand, get_interrupt_operand, get_cc_operand): Likewise.
(get_operand, get_operands, get_specific, newfix): Likewise.
(apply_fix, build_bytes): Likewise.
(md_atof): Remove declaration of atof_ieee.
(tc_aout_fix_to_chars): Delete.
(md_begin): Constify "opcode". Don't try to init opcode->idx.
Fix s_unseg call.
(md_parse_option): Fix s_segm and s_unseg calls.
* z8kgen.c: Include "libiberty.h".
(opt, args, toks): Fix initializer warnings.
(chewname): Make "name" a char **. Return mnemonic trimmed of
operands.
(gas): Improve emitted "DO NOT EDIT" warning. Format emitted
opcode_entry_type, and make "nicename" and "name" const. Make
z8k_table const too. Formatting. Generate idx as gas needs it.
* z8k-opc.h: Regenerate.
2002-12-12 22:27:58 +01:00
|
|
|
|
static char *
|
2003-11-28 21:10:18 +01:00
|
|
|
|
parse_exp (char *s, expressionS *op)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *save = input_line_pointer;
|
|
|
|
|
char *new;
|
|
|
|
|
|
|
|
|
|
input_line_pointer = s;
|
|
|
|
|
expression (op);
|
|
|
|
|
if (op->X_op == O_absent)
|
|
|
|
|
as_bad (_("missing operand"));
|
|
|
|
|
new = input_line_pointer;
|
|
|
|
|
input_line_pointer = save;
|
|
|
|
|
return new;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The many forms of operand:
|
|
|
|
|
|
|
|
|
|
<rb>
|
|
|
|
|
<r>
|
|
|
|
|
<rr>
|
|
|
|
|
<rq>
|
|
|
|
|
@r
|
|
|
|
|
#exp
|
|
|
|
|
exp
|
|
|
|
|
exp(r)
|
|
|
|
|
r(#exp)
|
|
|
|
|
r(r)
|
|
|
|
|
*/
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
static char *
|
2003-11-28 21:10:18 +01:00
|
|
|
|
checkfor (char *ptr, char what)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (*ptr == what)
|
|
|
|
|
ptr++;
|
|
|
|
|
else
|
2000-07-27 06:05:05 +02:00
|
|
|
|
as_bad (_("expected %c"), what);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Make sure the mode supplied is the size of a word. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
regword (int mode, char *string)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
int ok;
|
|
|
|
|
|
|
|
|
|
ok = CLASS_REG_WORD;
|
|
|
|
|
if (ok != mode)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("register is wrong size for a word %s"), string);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Make sure the mode supplied is the size of an address. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
regaddr (int mode, char *string)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
int ok;
|
|
|
|
|
|
|
|
|
|
ok = segmented_mode ? CLASS_REG_LONG : CLASS_REG_WORD;
|
|
|
|
|
if (ok != mode)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("register is wrong size for address %s"), string);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-16 01:59:49 +01:00
|
|
|
|
struct ctrl_names {
|
2000-07-27 06:05:05 +02:00
|
|
|
|
int value;
|
|
|
|
|
char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
2003-11-28 21:10:18 +01:00
|
|
|
|
static struct ctrl_names ctrl_table[] = {
|
2003-12-15 23:02:42 +01:00
|
|
|
|
{ 0x1, "flags" }, /* ldctlb only. */
|
|
|
|
|
{ 0x2, "fcw" }, /* ldctl only. Applies to all remaining control registers. */
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0x3, "refresh" },
|
|
|
|
|
{ 0x4, "psapseg" },
|
|
|
|
|
{ 0x5, "psapoff" },
|
|
|
|
|
{ 0x5, "psap" },
|
|
|
|
|
{ 0x6, "nspseg" },
|
|
|
|
|
{ 0x7, "nspoff" },
|
|
|
|
|
{ 0x7, "nsp" },
|
|
|
|
|
{ 0 , 0 }
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
2000-07-27 06:05:05 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
get_ctrl_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *src = *ptr;
|
2003-12-06 00:40:04 +01:00
|
|
|
|
int i, l;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
while (*src == ' ')
|
|
|
|
|
src++;
|
|
|
|
|
|
|
|
|
|
mode->mode = CLASS_CTRL;
|
|
|
|
|
for (i = 0; ctrl_table[i].name; i++)
|
|
|
|
|
{
|
2003-12-06 00:40:04 +01:00
|
|
|
|
l = strlen (ctrl_table[i].name);
|
|
|
|
|
if (! strncasecmp (ctrl_table[i].name, src, l))
|
|
|
|
|
{
|
|
|
|
|
the_ctrl = ctrl_table[i].value;
|
|
|
|
|
if (*(src + l) && *(src + l) != ',')
|
|
|
|
|
break;
|
|
|
|
|
*ptr = src + l; /* Valid control name found: "consume" it. */
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
the_ctrl = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-16 01:59:49 +01:00
|
|
|
|
struct flag_names {
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int value;
|
|
|
|
|
char *name;
|
|
|
|
|
};
|
|
|
|
|
|
2003-11-28 21:10:18 +01:00
|
|
|
|
static struct flag_names flag_table[] = {
|
2003-12-15 23:02:42 +01:00
|
|
|
|
{ 0x1, "P" },
|
|
|
|
|
{ 0x1, "V" },
|
|
|
|
|
{ 0x2, "S" },
|
|
|
|
|
{ 0x4, "Z" },
|
|
|
|
|
{ 0x8, "C" },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0x0, "+" },
|
2003-12-15 23:02:42 +01:00
|
|
|
|
{ 0x0, "," },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0, 0 }
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
get_flags_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *src = *ptr;
|
2003-12-15 23:02:42 +01:00
|
|
|
|
char c;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int i;
|
|
|
|
|
int j;
|
|
|
|
|
|
|
|
|
|
while (*src == ' ')
|
|
|
|
|
src++;
|
|
|
|
|
|
|
|
|
|
mode->mode = CLASS_FLAGS;
|
|
|
|
|
the_flags = 0;
|
|
|
|
|
for (j = 0; j <= 9; j++)
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
if (!src[j])
|
1999-05-03 09:29:11 +02:00
|
|
|
|
goto done;
|
2003-12-15 23:02:42 +01:00
|
|
|
|
c = TOUPPER(src[j]);
|
2000-07-27 06:05:05 +02:00
|
|
|
|
for (i = 0; flag_table[i].name; i++)
|
|
|
|
|
{
|
2003-12-15 23:02:42 +01:00
|
|
|
|
if (flag_table[i].name[0] == c)
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
|
|
|
|
the_flags = the_flags | flag_table[i].value;
|
|
|
|
|
goto match;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
goto done;
|
|
|
|
|
match:
|
2000-07-27 06:05:05 +02:00
|
|
|
|
;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2000-07-27 06:05:05 +02:00
|
|
|
|
done:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*ptr = src + j;
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-16 01:59:49 +01:00
|
|
|
|
struct interrupt_names {
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int value;
|
|
|
|
|
char *name;
|
|
|
|
|
};
|
|
|
|
|
|
2003-11-28 21:10:18 +01:00
|
|
|
|
static struct interrupt_names intr_table[] = {
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0x1, "nvi" },
|
|
|
|
|
{ 0x2, "vi" },
|
|
|
|
|
{ 0x3, "both" },
|
|
|
|
|
{ 0x3, "all" },
|
|
|
|
|
{ 0, 0 }
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
get_interrupt_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *src = *ptr;
|
2003-12-15 23:02:42 +01:00
|
|
|
|
int i, l;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
while (*src == ' ')
|
|
|
|
|
src++;
|
|
|
|
|
|
|
|
|
|
mode->mode = CLASS_IMM;
|
2003-12-15 23:02:42 +01:00
|
|
|
|
the_interrupt = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-12-15 23:02:42 +01:00
|
|
|
|
while (*src)
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; intr_table[i].name; i++)
|
|
|
|
|
{
|
|
|
|
|
l = strlen (intr_table[i].name);
|
|
|
|
|
if (! strncasecmp (intr_table[i].name, src, l))
|
|
|
|
|
{
|
|
|
|
|
the_interrupt |= intr_table[i].value;
|
|
|
|
|
if (*(src + l) && *(src + l) != ',')
|
|
|
|
|
{
|
|
|
|
|
*ptr = src + l;
|
|
|
|
|
invalid:
|
|
|
|
|
as_bad (_("unknown interrupt %s"), src);
|
|
|
|
|
while (**ptr && ! is_end_of_line[(unsigned char) **ptr])
|
|
|
|
|
(*ptr)++; /* Consume rest of line. */
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
src += l;
|
|
|
|
|
if (! *src)
|
|
|
|
|
{
|
|
|
|
|
*ptr = src;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (*src == ',')
|
|
|
|
|
src++;
|
|
|
|
|
else
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
2003-12-15 23:02:42 +01:00
|
|
|
|
*ptr = src;
|
|
|
|
|
goto invalid;
|
2000-07-27 06:05:05 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2003-12-15 23:02:42 +01:00
|
|
|
|
|
2003-05-01 21:59:33 +02:00
|
|
|
|
/* No interrupt type specified, opcode won't do anything. */
|
2003-06-19 15:44:42 +02:00
|
|
|
|
as_warn (_("opcode has no effect"));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
the_interrupt = 0x0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-16 01:59:49 +01:00
|
|
|
|
struct cc_names {
|
1999-05-03 09:29:11 +02:00
|
|
|
|
int value;
|
|
|
|
|
char *name;
|
|
|
|
|
};
|
|
|
|
|
|
2003-11-28 21:10:18 +01:00
|
|
|
|
static struct cc_names table[] = {
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0x0, "f" },
|
|
|
|
|
{ 0x1, "lt" },
|
|
|
|
|
{ 0x2, "le" },
|
|
|
|
|
{ 0x3, "ule" },
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{ 0x4, "ov/pe" },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0x4, "ov" },
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{ 0x4, "pe/ov" },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0x4, "pe" },
|
|
|
|
|
{ 0x5, "mi" },
|
|
|
|
|
{ 0x6, "eq" },
|
|
|
|
|
{ 0x6, "z" },
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{ 0x7, "c/ult" },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0x7, "c" },
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{ 0x7, "ult/c" },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0x7, "ult" },
|
|
|
|
|
{ 0x8, "t" },
|
|
|
|
|
{ 0x9, "ge" },
|
|
|
|
|
{ 0xa, "gt" },
|
|
|
|
|
{ 0xb, "ugt" },
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{ 0xc, "nov/po" },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0xc, "nov" },
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{ 0xc, "po/nov" },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0xc, "po" },
|
|
|
|
|
{ 0xd, "pl" },
|
|
|
|
|
{ 0xe, "ne" },
|
|
|
|
|
{ 0xe, "nz" },
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{ 0xf, "nc/uge" },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0xf, "nc" },
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{ 0xf, "uge/nc" },
|
2001-06-06 19:01:35 +02:00
|
|
|
|
{ 0xf, "uge" },
|
|
|
|
|
{ 0 , 0 }
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
get_cc_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *src = *ptr;
|
2003-11-26 22:24:53 +01:00
|
|
|
|
int i, l;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
while (*src == ' ')
|
|
|
|
|
src++;
|
|
|
|
|
|
|
|
|
|
mode->mode = CLASS_CC;
|
|
|
|
|
for (i = 0; table[i].name; i++)
|
|
|
|
|
{
|
2003-11-26 22:24:53 +01:00
|
|
|
|
l = strlen (table[i].name);
|
|
|
|
|
if (! strncasecmp (table[i].name, src, l))
|
|
|
|
|
{
|
|
|
|
|
the_cc = table[i].value;
|
|
|
|
|
if (*(src + l) && *(src + l) != ',')
|
|
|
|
|
break;
|
|
|
|
|
*ptr = src + l; /* Valid cc found: "consume" it. */
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2003-11-26 22:24:53 +01:00
|
|
|
|
the_cc = 0x8; /* Not recognizing the cc defaults to t. (Assuming no cc present.) */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
get_operand (char **ptr, struct z8k_op *mode, unsigned int dst ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *src = *ptr;
|
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
|
|
mode->mode = 0;
|
|
|
|
|
|
|
|
|
|
while (*src == ' ')
|
|
|
|
|
src++;
|
|
|
|
|
if (*src == '#')
|
|
|
|
|
{
|
|
|
|
|
mode->mode = CLASS_IMM;
|
|
|
|
|
imm_operand = &(mode->exp);
|
|
|
|
|
src = parse_exp (src + 1, &(mode->exp));
|
|
|
|
|
}
|
|
|
|
|
else if (*src == '@')
|
|
|
|
|
{
|
|
|
|
|
mode->mode = CLASS_IR;
|
2003-06-19 15:44:42 +02:00
|
|
|
|
src = parse_reg (src + 1, &mode->regsize, &mode->reg);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-02-23 13:28:06 +01:00
|
|
|
|
unsigned int regn;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
end = parse_reg (src, &mode->mode, ®n);
|
|
|
|
|
|
|
|
|
|
if (end)
|
|
|
|
|
{
|
2005-02-23 13:28:06 +01:00
|
|
|
|
int nw;
|
|
|
|
|
unsigned int nr;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
src = end;
|
|
|
|
|
if (*src == '(')
|
|
|
|
|
{
|
|
|
|
|
src++;
|
|
|
|
|
end = parse_reg (src, &nw, &nr);
|
|
|
|
|
if (end)
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Got Ra(Rb). */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
src = end;
|
|
|
|
|
|
|
|
|
|
if (*src != ')')
|
2000-07-27 06:05:05 +02:00
|
|
|
|
as_bad (_("Missing ) in ra(rb)"));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2000-07-27 06:05:05 +02:00
|
|
|
|
src++;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
regaddr (mode->mode, "ra(rb) ra");
|
|
|
|
|
mode->mode = CLASS_BX;
|
|
|
|
|
mode->reg = regn;
|
|
|
|
|
mode->x_reg = nr;
|
|
|
|
|
reg[ARG_RX] = nr;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Got Ra(disp). */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (*src == '#')
|
|
|
|
|
src++;
|
|
|
|
|
src = parse_exp (src, &(mode->exp));
|
|
|
|
|
src = checkfor (src, ')');
|
|
|
|
|
mode->mode = CLASS_BA;
|
|
|
|
|
mode->reg = regn;
|
|
|
|
|
mode->x_reg = 0;
|
|
|
|
|
imm_operand = &(mode->exp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mode->reg = regn;
|
|
|
|
|
mode->x_reg = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* No initial reg. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
src = parse_exp (src, &(mode->exp));
|
|
|
|
|
if (*src == '(')
|
|
|
|
|
{
|
|
|
|
|
src++;
|
|
|
|
|
end = parse_reg (src, &(mode->mode), ®n);
|
|
|
|
|
regword (mode->mode, "addr(Ra) ra");
|
|
|
|
|
mode->mode = CLASS_X;
|
|
|
|
|
mode->reg = regn;
|
|
|
|
|
mode->x_reg = 0;
|
|
|
|
|
da_operand = &(mode->exp);
|
|
|
|
|
src = checkfor (end, ')');
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Just an address. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
mode->mode = CLASS_DA;
|
|
|
|
|
mode->reg = 0;
|
|
|
|
|
mode->x_reg = 0;
|
|
|
|
|
da_operand = &(mode->exp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
*ptr = src;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
static char *
|
2003-11-28 21:10:18 +01:00
|
|
|
|
get_operands (const opcode_entry_type *opcode, char *op_end, op_type *operand)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *ptr = op_end;
|
2000-07-27 06:05:05 +02:00
|
|
|
|
char *savptr;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
switch (opcode->noperands)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
operand[0].mode = 0;
|
|
|
|
|
operand[1].mode = 0;
|
2003-11-26 22:24:53 +01:00
|
|
|
|
while (*ptr == ' ')
|
|
|
|
|
ptr++;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
if (opcode->arg_info[0] == CLASS_CC)
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{
|
|
|
|
|
get_cc_operand (&ptr, operand + 0, 0);
|
|
|
|
|
while (*ptr == ' ')
|
|
|
|
|
ptr++;
|
|
|
|
|
if (*ptr && ! is_end_of_line[(unsigned char) *ptr])
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("invalid condition code '%s'"), ptr);
|
|
|
|
|
while (*ptr && ! is_end_of_line[(unsigned char) *ptr])
|
|
|
|
|
ptr++; /* Consume rest of line. */
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (opcode->arg_info[0] == CLASS_FLAGS)
|
2003-12-15 23:02:42 +01:00
|
|
|
|
{
|
|
|
|
|
get_flags_operand (&ptr, operand + 0, 0);
|
|
|
|
|
while (*ptr == ' ')
|
|
|
|
|
ptr++;
|
|
|
|
|
if (*ptr && ! is_end_of_line[(unsigned char) *ptr])
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("invalid flag '%s'"), ptr);
|
|
|
|
|
while (*ptr && ! is_end_of_line[(unsigned char) *ptr])
|
|
|
|
|
ptr++; /* Consume rest of line. */
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-07-27 06:05:05 +02:00
|
|
|
|
else if (opcode->arg_info[0] == (CLASS_IMM + (ARG_IMM2)))
|
2002-08-22 21:22:35 +02:00
|
|
|
|
get_interrupt_operand (&ptr, operand + 0, 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2002-08-22 21:22:35 +02:00
|
|
|
|
get_operand (&ptr, operand + 0, 0);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
operand[1].mode = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
|
savptr = ptr;
|
|
|
|
|
if (opcode->arg_info[0] == CLASS_CC)
|
2003-11-26 22:24:53 +01:00
|
|
|
|
{
|
|
|
|
|
get_cc_operand (&ptr, operand + 0, 0);
|
|
|
|
|
while (*ptr == ' ')
|
|
|
|
|
ptr++;
|
|
|
|
|
if (*ptr != ',' && strchr (ptr + 1, ','))
|
|
|
|
|
{
|
|
|
|
|
savptr = ptr;
|
|
|
|
|
while (*ptr != ',')
|
|
|
|
|
ptr++;
|
|
|
|
|
*ptr = 0;
|
|
|
|
|
ptr++;
|
|
|
|
|
as_bad (_("invalid condition code '%s'"), savptr);
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (opcode->arg_info[0] == CLASS_CTRL)
|
2000-07-27 06:05:05 +02:00
|
|
|
|
{
|
|
|
|
|
get_ctrl_operand (&ptr, operand + 0, 0);
|
2002-08-22 21:22:35 +02:00
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
if (the_ctrl == 0)
|
|
|
|
|
{
|
|
|
|
|
ptr = savptr;
|
|
|
|
|
get_operand (&ptr, operand + 0, 0);
|
2002-08-22 21:22:35 +02:00
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
if (ptr == 0)
|
2001-06-06 19:01:35 +02:00
|
|
|
|
return NULL;
|
2000-07-27 06:05:05 +02:00
|
|
|
|
if (*ptr == ',')
|
|
|
|
|
ptr++;
|
|
|
|
|
get_ctrl_operand (&ptr, operand + 1, 1);
|
2003-12-15 23:02:42 +01:00
|
|
|
|
if (the_ctrl == 0)
|
|
|
|
|
return NULL;
|
2000-07-27 06:05:05 +02:00
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2002-08-22 21:22:35 +02:00
|
|
|
|
get_operand (&ptr, operand + 0, 0);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (ptr == 0)
|
2001-06-06 19:01:35 +02:00
|
|
|
|
return NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (*ptr == ',')
|
2000-07-27 06:05:05 +02:00
|
|
|
|
ptr++;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
get_operand (&ptr, operand + 1, 1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
|
get_operand (&ptr, operand + 0, 0);
|
|
|
|
|
if (*ptr == ',')
|
|
|
|
|
ptr++;
|
|
|
|
|
get_operand (&ptr, operand + 1, 1);
|
|
|
|
|
if (*ptr == ',')
|
|
|
|
|
ptr++;
|
|
|
|
|
get_operand (&ptr, operand + 2, 2);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
|
get_operand (&ptr, operand + 0, 0);
|
|
|
|
|
if (*ptr == ',')
|
|
|
|
|
ptr++;
|
|
|
|
|
get_operand (&ptr, operand + 1, 1);
|
|
|
|
|
if (*ptr == ',')
|
|
|
|
|
ptr++;
|
|
|
|
|
get_operand (&ptr, operand + 2, 2);
|
|
|
|
|
if (*ptr == ',')
|
|
|
|
|
ptr++;
|
|
|
|
|
get_cc_operand (&ptr, operand + 3, 3);
|
|
|
|
|
break;
|
2000-07-27 06:05:05 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Passed a pointer to a list of opcodes which use different
|
2000-07-27 06:05:05 +02:00
|
|
|
|
addressing modes. Return the opcode which matches the opcodes
|
|
|
|
|
provided. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
static opcode_entry_type *
|
2003-11-28 21:10:18 +01:00
|
|
|
|
get_specific (opcode_entry_type *opcode, op_type *operands)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
opcode_entry_type *this_try = opcode;
|
|
|
|
|
int found = 0;
|
|
|
|
|
unsigned int noperands = opcode->noperands;
|
|
|
|
|
|
2001-06-06 19:01:35 +02:00
|
|
|
|
int this_index = opcode->idx;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
while (this_index == opcode->idx && !found)
|
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
this_try = opcode++;
|
|
|
|
|
for (i = 0; i < noperands; i++)
|
|
|
|
|
{
|
2001-06-06 19:01:35 +02:00
|
|
|
|
unsigned int mode = operands[i].mode;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-06-19 15:44:42 +02:00
|
|
|
|
if (((mode & CLASS_MASK) == CLASS_IR) && ((this_try->arg_info[i] & CLASS_MASK) == CLASS_IRO))
|
|
|
|
|
{
|
|
|
|
|
mode = operands[i].mode = (operands[i].mode & ~CLASS_MASK) | CLASS_IRO;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((mode & CLASS_MASK) != (this_try->arg_info[i] & CLASS_MASK))
|
|
|
|
|
{
|
2002-12-17 02:13:56 +01:00
|
|
|
|
/* It could be a pc rel operand, if this is a da mode
|
2000-07-27 06:05:05 +02:00
|
|
|
|
and we like disps, then insert it. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (mode == CLASS_DA && this_try->arg_info[i] == CLASS_DISP)
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* This is the case. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
operands[i].mode = CLASS_DISP;
|
|
|
|
|
}
|
|
|
|
|
else if (mode == CLASS_BA && this_try->arg_info[i])
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Can't think of a way to turn what we've been
|
|
|
|
|
given into something that's OK. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
else if (this_try->arg_info[i] & CLASS_PR)
|
|
|
|
|
{
|
|
|
|
|
if (mode == CLASS_REG_LONG && segmented_mode)
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* OK. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else if (mode == CLASS_REG_WORD && !segmented_mode)
|
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* OK. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
switch (mode & CLASS_MASK)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2003-06-19 15:44:42 +02:00
|
|
|
|
case CLASS_IRO:
|
|
|
|
|
if (operands[i].regsize != CLASS_REG_WORD)
|
|
|
|
|
as_bad (_("invalid indirect register size"));
|
|
|
|
|
reg[this_try->arg_info[i] & ARG_MASK] = operands[i].reg;
|
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case CLASS_IR:
|
2003-06-19 15:44:42 +02:00
|
|
|
|
if ((segmented_mode && operands[i].regsize != CLASS_REG_LONG)
|
|
|
|
|
|| (!segmented_mode && operands[i].regsize != CLASS_REG_WORD))
|
|
|
|
|
as_bad (_("invalid indirect register size"));
|
|
|
|
|
reg[this_try->arg_info[i] & ARG_MASK] = operands[i].reg;
|
|
|
|
|
break;
|
|
|
|
|
case CLASS_X:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case CLASS_BA:
|
|
|
|
|
case CLASS_BX:
|
|
|
|
|
case CLASS_DISP:
|
|
|
|
|
case CLASS_REG:
|
|
|
|
|
case CLASS_REG_WORD:
|
|
|
|
|
case CLASS_REG_BYTE:
|
|
|
|
|
case CLASS_REG_QUAD:
|
|
|
|
|
case CLASS_REG_LONG:
|
|
|
|
|
case CLASS_REGN0:
|
|
|
|
|
reg[this_try->arg_info[i] & ARG_MASK] = operands[i].reg;
|
|
|
|
|
break;
|
2003-12-15 23:02:42 +01:00
|
|
|
|
case CLASS_CTRL:
|
|
|
|
|
if (this_try->opcode == OPC_ldctlb && the_ctrl != 1)
|
|
|
|
|
as_bad (_("invalid control register name"));
|
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
found = 1;
|
2000-07-27 06:05:05 +02:00
|
|
|
|
fail:
|
|
|
|
|
;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
if (found)
|
|
|
|
|
return this_try;
|
|
|
|
|
else
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char buffer[20];
|
|
|
|
|
|
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
newfix (int ptr, int type, int size, expressionS *operand)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-10-04 23:11:05 +02:00
|
|
|
|
int is_pcrel = 0;
|
2005-08-26 11:47:49 +02:00
|
|
|
|
fixS *fixP;
|
2003-10-04 23:11:05 +02:00
|
|
|
|
|
2005-08-26 11:47:49 +02:00
|
|
|
|
/* Size is in nibbles. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (operand->X_add_symbol
|
|
|
|
|
|| operand->X_op_symbol
|
|
|
|
|
|| operand->X_add_number)
|
|
|
|
|
{
|
2003-10-04 23:11:05 +02:00
|
|
|
|
switch(type)
|
|
|
|
|
{
|
2005-08-26 11:47:49 +02:00
|
|
|
|
case BFD_RELOC_8_PCREL:
|
|
|
|
|
case BFD_RELOC_Z8K_CALLR:
|
|
|
|
|
case BFD_RELOC_Z8K_DISP7:
|
2003-10-04 23:11:05 +02:00
|
|
|
|
is_pcrel = 1;
|
|
|
|
|
}
|
2005-08-26 11:47:49 +02:00
|
|
|
|
fixP = fix_new_exp (frag_now, ptr, size / 2,
|
|
|
|
|
operand, is_pcrel, type);
|
|
|
|
|
if (is_pcrel)
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
2003-11-28 21:10:18 +01:00
|
|
|
|
apply_fix (char *ptr, int type, expressionS *operand, int size)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-05-01 21:59:33 +02:00
|
|
|
|
long n = operand->X_add_number;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-11-28 21:10:18 +01:00
|
|
|
|
/* size is in nibbles. */
|
|
|
|
|
|
2003-05-01 21:59:33 +02:00
|
|
|
|
newfix ((ptr - buffer) / 2, type, size + 1, operand);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
switch (size)
|
|
|
|
|
{
|
2001-06-06 19:01:35 +02:00
|
|
|
|
case 8: /* 8 nibbles == 32 bits. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*ptr++ = n >> 28;
|
|
|
|
|
*ptr++ = n >> 24;
|
|
|
|
|
*ptr++ = n >> 20;
|
|
|
|
|
*ptr++ = n >> 16;
|
2001-06-06 19:01:35 +02:00
|
|
|
|
case 4: /* 4 nibbles == 16 bits. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*ptr++ = n >> 12;
|
|
|
|
|
*ptr++ = n >> 8;
|
|
|
|
|
case 2:
|
|
|
|
|
*ptr++ = n >> 4;
|
|
|
|
|
case 1:
|
|
|
|
|
*ptr++ = n >> 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return ptr;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Now we know what sort of opcodes it is. Let's build the bytes. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
build_bytes (opcode_entry_type *this_try, struct z8k_op *operand ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
char *output_ptr = buffer;
|
|
|
|
|
int c;
|
|
|
|
|
int nibble;
|
|
|
|
|
unsigned int *class_ptr;
|
|
|
|
|
|
|
|
|
|
frag_wane (frag_now);
|
|
|
|
|
frag_new (0);
|
|
|
|
|
|
2005-08-26 11:47:49 +02:00
|
|
|
|
if (frag_room () < 8)
|
|
|
|
|
frag_grow (8); /* Make room for maximum instruction size. */
|
|
|
|
|
|
2002-07-16 15:37:49 +02:00
|
|
|
|
memset (buffer, 0, sizeof (buffer));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
class_ptr = this_try->byte_info;
|
|
|
|
|
|
2001-06-06 19:01:35 +02:00
|
|
|
|
for (nibble = 0; (c = *class_ptr++); nibble++)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
switch (c & CLASS_MASK)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
2000-07-27 06:05:05 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case CLASS_ADDRESS:
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Direct address, we don't cope with the SS mode right now. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (segmented_mode)
|
|
|
|
|
{
|
2001-06-06 19:01:35 +02:00
|
|
|
|
/* da_operand->X_add_number |= 0x80000000; -- Now set at relocation time. */
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_32, da_operand, 8);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_16, da_operand, 4);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
da_operand = 0;
|
|
|
|
|
break;
|
|
|
|
|
case CLASS_DISP8:
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* pc rel 8 bit */
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_8_PCREL, da_operand, 2);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
da_operand = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CLASS_0DISP7:
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* pc rel 7 bit */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*output_ptr = 0;
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_DISP7, da_operand, 2);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
da_operand = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CLASS_1DISP7:
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* pc rel 7 bit */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*output_ptr = 0x80;
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_DISP7, da_operand, 2);
|
2000-07-27 06:05:05 +02:00
|
|
|
|
output_ptr[-2] = 0x8;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
da_operand = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CLASS_BIT_1OR2:
|
|
|
|
|
*output_ptr = c & 0xf;
|
|
|
|
|
if (imm_operand)
|
|
|
|
|
{
|
|
|
|
|
if (imm_operand->X_add_number == 2)
|
2000-07-27 06:05:05 +02:00
|
|
|
|
*output_ptr |= 2;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (imm_operand->X_add_number != 1)
|
2000-07-27 06:05:05 +02:00
|
|
|
|
as_bad (_("immediate must be 1 or 2"));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2000-07-27 06:05:05 +02:00
|
|
|
|
as_bad (_("immediate 1 or 2 expected"));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
output_ptr++;
|
|
|
|
|
break;
|
|
|
|
|
case CLASS_CC:
|
|
|
|
|
*output_ptr++ = the_cc;
|
|
|
|
|
break;
|
2000-07-27 06:05:05 +02:00
|
|
|
|
case CLASS_0CCC:
|
2003-12-15 23:02:42 +01:00
|
|
|
|
if (the_ctrl < 2 || the_ctrl > 7)
|
|
|
|
|
as_bad (_("invalid control register name"));
|
2000-07-27 06:05:05 +02:00
|
|
|
|
*output_ptr++ = the_ctrl;
|
|
|
|
|
break;
|
|
|
|
|
case CLASS_1CCC:
|
2003-12-15 23:02:42 +01:00
|
|
|
|
if (the_ctrl < 2 || the_ctrl > 7)
|
|
|
|
|
as_bad (_("invalid control register name"));
|
2000-07-27 06:05:05 +02:00
|
|
|
|
*output_ptr++ = the_ctrl | 0x8;
|
|
|
|
|
break;
|
|
|
|
|
case CLASS_00II:
|
|
|
|
|
*output_ptr++ = (~the_interrupt & 0x3);
|
|
|
|
|
break;
|
|
|
|
|
case CLASS_01II:
|
|
|
|
|
*output_ptr++ = (~the_interrupt & 0x3) | 0x4;
|
|
|
|
|
break;
|
|
|
|
|
case CLASS_FLAGS:
|
|
|
|
|
*output_ptr++ = the_flags;
|
|
|
|
|
break;
|
2002-04-25 12:59:24 +02:00
|
|
|
|
case CLASS_IGNORE:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case CLASS_BIT:
|
|
|
|
|
*output_ptr++ = c & 0xf;
|
|
|
|
|
break;
|
|
|
|
|
case CLASS_REGN0:
|
|
|
|
|
if (reg[c & 0xf] == 0)
|
2000-07-27 06:05:05 +02:00
|
|
|
|
as_bad (_("can't use R0 here"));
|
|
|
|
|
/* Fall through. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case CLASS_REG:
|
|
|
|
|
case CLASS_REG_BYTE:
|
|
|
|
|
case CLASS_REG_WORD:
|
|
|
|
|
case CLASS_REG_LONG:
|
|
|
|
|
case CLASS_REG_QUAD:
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Insert bit mattern of right reg. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*output_ptr++ = reg[c & 0xf];
|
|
|
|
|
break;
|
|
|
|
|
case CLASS_DISP:
|
2001-04-24 17:22:25 +02:00
|
|
|
|
switch (c & ARG_MASK)
|
|
|
|
|
{
|
|
|
|
|
case ARG_DISP12:
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_CALLR, da_operand, 4);
|
2001-04-24 17:22:25 +02:00
|
|
|
|
break;
|
|
|
|
|
case ARG_DISP16:
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_16_PCREL, da_operand, 4);
|
2001-06-06 19:01:35 +02:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_16, da_operand, 4);
|
2001-06-06 19:01:35 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
da_operand = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CLASS_IMM:
|
|
|
|
|
{
|
|
|
|
|
switch (c & ARG_MASK)
|
|
|
|
|
{
|
2002-04-25 12:59:24 +02:00
|
|
|
|
case ARG_NIM4:
|
2003-05-01 21:59:33 +02:00
|
|
|
|
if (imm_operand->X_add_number > 15)
|
2005-08-26 11:47:49 +02:00
|
|
|
|
as_bad (_("immediate value out of range"));
|
2002-04-25 12:59:24 +02:00
|
|
|
|
imm_operand->X_add_number = -imm_operand->X_add_number;
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_IMM4L, imm_operand, 1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
2003-05-01 21:59:33 +02:00
|
|
|
|
/*case ARG_IMMNMINUS1: not used. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case ARG_IMM4M1:
|
|
|
|
|
imm_operand->X_add_number--;
|
2003-05-01 21:59:33 +02:00
|
|
|
|
/* Drop through. */
|
|
|
|
|
case ARG_IMM4:
|
|
|
|
|
if (imm_operand->X_add_number > 15)
|
2005-08-26 11:47:49 +02:00
|
|
|
|
as_bad (_("immediate value out of range"));
|
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_Z8K_IMM4L, imm_operand, 1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case ARG_NIM8:
|
|
|
|
|
imm_operand->X_add_number = -imm_operand->X_add_number;
|
2003-05-01 21:59:33 +02:00
|
|
|
|
/* Drop through. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case ARG_IMM8:
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_8, imm_operand, 2);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case ARG_IMM16:
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_16, imm_operand, 4);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case ARG_IMM32:
|
2005-08-26 11:47:49 +02:00
|
|
|
|
output_ptr = apply_fix (output_ptr, BFD_RELOC_32, imm_operand, 8);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Copy from the nibble buffer into the frag. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
int length = (output_ptr - buffer) / 2;
|
|
|
|
|
char *src = buffer;
|
|
|
|
|
char *fragp = frag_more (length);
|
|
|
|
|
|
|
|
|
|
while (src < output_ptr)
|
|
|
|
|
{
|
|
|
|
|
*fragp = (src[0] << 4) | src[1];
|
|
|
|
|
src += 2;
|
|
|
|
|
fragp++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is the guts of the machine-dependent assembler. STR points to a
|
2000-06-25 19:59:22 +02:00
|
|
|
|
machine dependent instruction. This function is supposed to emit
|
|
|
|
|
the frags/bytes it assembles to. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_assemble (char *str)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-06-06 19:01:35 +02:00
|
|
|
|
char c;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
char *op_start;
|
|
|
|
|
char *op_end;
|
2005-04-21 22:03:57 +02:00
|
|
|
|
struct z8k_op operand[4];
|
1999-05-03 09:29:11 +02:00
|
|
|
|
opcode_entry_type *opcode;
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Drop leading whitespace. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
while (*str == ' ')
|
|
|
|
|
str++;
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Find the op code end. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (op_start = op_end = str;
|
2003-11-26 22:24:53 +01:00
|
|
|
|
*op_end != 0 && *op_end != ' ' && ! is_end_of_line[(unsigned char) *op_end];
|
1999-05-03 09:29:11 +02:00
|
|
|
|
op_end++)
|
2000-07-27 06:05:05 +02:00
|
|
|
|
;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (op_end == op_start)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("can't find opcode "));
|
|
|
|
|
}
|
|
|
|
|
c = *op_end;
|
|
|
|
|
|
2003-11-26 22:24:53 +01:00
|
|
|
|
*op_end = 0; /* Zero-terminate op code string for hash_find() call. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
opcode = (opcode_entry_type *) hash_find (opcode_hash_control, op_start);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (opcode == NULL)
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("unknown opcode"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-11-26 22:24:53 +01:00
|
|
|
|
*op_end = c; /* Restore original string. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (opcode->opcode == 250)
|
|
|
|
|
{
|
|
|
|
|
pseudo_typeS *p;
|
|
|
|
|
char oc;
|
|
|
|
|
char *old = input_line_pointer;
|
|
|
|
|
|
2002-04-25 12:59:24 +02:00
|
|
|
|
/* Was really a pseudo op. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
input_line_pointer = op_end;
|
|
|
|
|
|
|
|
|
|
oc = *old;
|
|
|
|
|
*old = '\n';
|
|
|
|
|
while (*input_line_pointer == ' ')
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
p = (pseudo_typeS *) (opcode->func);
|
|
|
|
|
|
|
|
|
|
(p->poc_handler) (p->poc_val);
|
|
|
|
|
input_line_pointer = old;
|
|
|
|
|
*old = oc;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2002-04-25 12:59:24 +02:00
|
|
|
|
char *new_input_line_pointer;
|
|
|
|
|
|
|
|
|
|
new_input_line_pointer = get_operands (opcode, op_end, operand);
|
|
|
|
|
if (new_input_line_pointer)
|
2005-01-28 20:33:26 +01:00
|
|
|
|
{
|
|
|
|
|
input_line_pointer = new_input_line_pointer;
|
|
|
|
|
opcode = get_specific (opcode, operand);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-01-28 20:33:26 +01:00
|
|
|
|
if (new_input_line_pointer == NULL || opcode == NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Couldn't find an opcode which matched the operands. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
char *where = frag_more (2);
|
|
|
|
|
|
|
|
|
|
where[0] = 0x0;
|
|
|
|
|
where[1] = 0x0;
|
|
|
|
|
|
|
|
|
|
as_bad (_("Can't find opcode to match operands"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
build_bytes (opcode, operand);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-01 21:59:33 +02:00
|
|
|
|
/* We have no need to default values of symbols. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
symbolS *
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Various routines to kill one day. */
|
|
|
|
|
/* Equal to MAX_PRECISION in atof-ieee.c. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define MAX_LITTLENUMS 6
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Turn a string in input_line_pointer into a floating point constant
|
|
|
|
|
of type TYPE, and store the appropriate bytes in *LITP. The number
|
|
|
|
|
of LITTLENUMS emitted is stored in *SIZEP. An error message is
|
|
|
|
|
returned, or NULL on OK. */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
char *
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_atof (int type, char *litP, int *sizeP)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
int prec;
|
|
|
|
|
LITTLENUM_TYPE words[MAX_LITTLENUMS];
|
|
|
|
|
LITTLENUM_TYPE *wordP;
|
|
|
|
|
char *t;
|
|
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case 'f':
|
|
|
|
|
case 'F':
|
|
|
|
|
case 's':
|
|
|
|
|
case 'S':
|
|
|
|
|
prec = 2;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
|
case 'D':
|
|
|
|
|
case 'r':
|
|
|
|
|
case 'R':
|
|
|
|
|
prec = 4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'x':
|
|
|
|
|
case 'X':
|
|
|
|
|
prec = 6;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
|
case 'P':
|
|
|
|
|
prec = 6;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
*sizeP = 0;
|
|
|
|
|
return _("Bad call to MD_ATOF()");
|
|
|
|
|
}
|
|
|
|
|
t = atof_ieee (input_line_pointer, type, words);
|
|
|
|
|
if (t)
|
|
|
|
|
input_line_pointer = t;
|
|
|
|
|
|
|
|
|
|
*sizeP = prec * sizeof (LITTLENUM_TYPE);
|
|
|
|
|
for (wordP = words; prec--;)
|
|
|
|
|
{
|
|
|
|
|
md_number_to_chars (litP, (long) (*wordP++), sizeof (LITTLENUM_TYPE));
|
|
|
|
|
litP += sizeof (LITTLENUM_TYPE);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-08 09:37:16 +02:00
|
|
|
|
const char *md_shortopts = "z:";
|
2000-07-27 06:05:05 +02:00
|
|
|
|
|
2002-04-25 12:59:24 +02:00
|
|
|
|
struct option md_longopts[] =
|
|
|
|
|
{
|
2003-05-01 21:59:33 +02:00
|
|
|
|
#define OPTION_RELAX (OPTION_MD_BASE)
|
|
|
|
|
{"linkrelax", no_argument, NULL, OPTION_RELAX},
|
2002-04-25 12:59:24 +02:00
|
|
|
|
{NULL, no_argument, NULL, 0}
|
|
|
|
|
};
|
2000-07-27 06:05:05 +02:00
|
|
|
|
|
|
|
|
|
size_t md_longopts_size = sizeof (md_longopts);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
int
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_parse_option (int c, char *arg)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
case 'z':
|
|
|
|
|
if (!strcmp (arg, "8001"))
|
2003-05-01 21:59:33 +02:00
|
|
|
|
s_segm (1);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (!strcmp (arg, "8002"))
|
2003-05-01 21:59:33 +02:00
|
|
|
|
s_segm (0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
as_bad (_("invalid architecture -z%s"), arg);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2003-05-01 21:59:33 +02:00
|
|
|
|
z8k_target_from_cmdline = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OPTION_RELAX:
|
|
|
|
|
linkrelax = 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_show_usage (FILE *stream)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-07-27 06:05:05 +02:00
|
|
|
|
fprintf (stream, _("\
|
2003-05-01 21:59:33 +02:00
|
|
|
|
Z8K options:\n\
|
|
|
|
|
-z8001 generate segmented code\n\
|
|
|
|
|
-z8002 generate unsegmented code\n\
|
|
|
|
|
-linkrelax create linker relaxable code\n"));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2005-08-26 11:47:49 +02:00
|
|
|
|
md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
segT sec ATTRIBUTE_UNUSED,
|
2003-11-28 21:10:18 +01:00
|
|
|
|
fragS *fragP ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-05-01 21:59:33 +02:00
|
|
|
|
printf (_("call to md_convert_frag\n"));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-26 11:47:49 +02:00
|
|
|
|
/* Generate a machine dependent reloc from a fixup. */
|
|
|
|
|
|
|
|
|
|
arelent*
|
|
|
|
|
tc_gen_reloc (asection *section ATTRIBUTE_UNUSED,
|
|
|
|
|
fixS *fixp ATTRIBUTE_UNUSED)
|
|
|
|
|
{
|
|
|
|
|
arelent *reloc;
|
|
|
|
|
|
|
|
|
|
reloc = xmalloc (sizeof (*reloc));
|
|
|
|
|
reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
|
|
|
|
|
*reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
|
|
|
|
|
reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
|
|
|
|
|
reloc->addend = fixp->fx_offset;
|
|
|
|
|
reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
|
|
|
|
|
|
|
|
|
|
if (! reloc->howto)
|
|
|
|
|
{
|
|
|
|
|
as_bad_where (fixp->fx_file, fixp->fx_line,
|
|
|
|
|
"Cannot represent %s relocation in object file",
|
|
|
|
|
bfd_get_reloc_code_name (fixp->fx_r_type));
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
return reloc;
|
|
|
|
|
}
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
valueT
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_section_align (segT seg, valueT size)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2005-08-26 11:47:49 +02:00
|
|
|
|
int align = bfd_get_section_alignment (stdoutput, seg);
|
|
|
|
|
valueT mask = ((valueT) 1 << align) - 1;
|
|
|
|
|
|
|
|
|
|
return (size + mask) & ~mask;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2003-10-04 23:11:05 +02:00
|
|
|
|
/* Attempt to simplify or eliminate a fixup. To indicate that a fixup
|
|
|
|
|
has been eliminated, set fix->fx_done. If fix->fx_addsy is non-NULL,
|
|
|
|
|
we will have to generate a reloc entry. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
void
|
gas:
* cgen.c, cgen.h, tc.h, write.c, config/obj-coff.c
* config/tc-a29k.c, config/tc-alpha.c, config/tc-alpha.h
* config/tc-arc.c, config/tc-arc.h, config/tc-arm.c
* config/tc-arm.h, config/tc-avr.c, config/tc-avr.h
* config/tc-cris.c, config/tc-crx.c, config/tc-d10v.c
* config/tc-d10v.h, config/tc-d30v.c, config/tc-d30v.h
* config/tc-dlx.c, config/tc-dlx.h, config/tc-fr30.h
* config/tc-frv.c, config/tc-frv.h, config/tc-h8300.c
* config/tc-h8500.c, config/tc-hppa.c, config/tc-hppa.h
* config/tc-i370.c, config/tc-i370.h, config/tc-i386.c
* config/tc-i386.h, config/tc-i860.c, config/tc-i860.h
* config/tc-i960.c, config/tc-i960.h, config/tc-ia64.c
* config/tc-ip2k.c, config/tc-ip2k.h, config/tc-iq2000.c
* config/tc-iq2000.h, config/tc-m32r.c, config/tc-m32r.h
* config/tc-m68hc11.c, config/tc-m68hc11.h, config/tc-m68k.c
* config/tc-m68k.h, config/tc-m88k.c, config/tc-maxq.c
* config/tc-mcore.c, config/tc-mcore.h, config/tc-mips.c
* config/tc-mips.h, config/tc-mmix.c, config/tc-mn10200.c
* config/tc-mn10300.c, config/tc-msp430.c, config/tc-ns32k.c
* config/tc-openrisc.h, config/tc-or32.c, config/tc-or32.h
* config/tc-pdp11.c, config/tc-pj.c, config/tc-pj.h
* config/tc-ppc.c, config/tc-ppc.h, config/tc-s390.c
* config/tc-s390.h, config/tc-sh64.c, config/tc-sh.c
* config/tc-sh.h, config/tc-sparc.c, config/tc-sparc.h
* config/tc-tahoe.c, config/tc-tic30.c, config/tc-tic4x.c
* config/tc-tic54x.c, config/tc-tic80.c, config/tc-v850.c
* config/tc-v850.h, config/tc-vax.c, config/tc-vax.h
* config/tc-w65.c, config/tc-xstormy16.c, config/tc-xstormy16.h
* config/tc-xtensa.c, config/tc-z8k.c:
Replace all instances of the string "_apply_fix3" with
"_apply_fix".
* po/POTFILES.in, po/gas.pot: Regenerate.
bfd:
* coff-i386.c: Change md_apply_fix3 to md_apply_fix in comment.
cgen:
* doc/porting.texi: Change all mention of md_apply_fix3 and
gas_cgen_md_apply_fix3 to md_apply_fix and gas_cgen_md_apply_fix
respectively.
2005-06-07 19:54:22 +02:00
|
|
|
|
md_apply_fix (fixS *fixP, valueT *valP, segT segment ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-11-15 22:29:00 +01:00
|
|
|
|
long val = * (long *) valP;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
|
|
|
|
|
|
|
|
|
|
switch (fixP->fx_r_type)
|
|
|
|
|
{
|
2005-08-26 11:47:49 +02:00
|
|
|
|
case BFD_RELOC_Z8K_IMM4L:
|
|
|
|
|
if (fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
buf[0] = (buf[0] & 0xf0) | (val & 0xf);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_8:
|
|
|
|
|
if (fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
*buf++ = val;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_16:
|
|
|
|
|
if (fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*buf++ = (val >> 8);
|
|
|
|
|
*buf++ = val;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BFD_RELOC_32:
|
|
|
|
|
if (fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*buf++ = (val >> 24);
|
|
|
|
|
*buf++ = (val >> 16);
|
|
|
|
|
*buf++ = (val >> 8);
|
|
|
|
|
*buf++ = val;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2005-08-26 11:47:49 +02:00
|
|
|
|
case BFD_RELOC_8_PCREL:
|
2003-10-04 23:11:05 +02:00
|
|
|
|
if (fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-01-27 22:08:14 +01:00
|
|
|
|
if (val & 1)
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("cannot branch to odd address"));
|
|
|
|
|
val /= 2;
|
|
|
|
|
if (val > 127 || val < -128)
|
2005-01-27 22:32:21 +01:00
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relative jump out of range"));
|
2005-01-27 22:08:14 +01:00
|
|
|
|
*buf++ = val;
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
2003-10-04 23:11:05 +02:00
|
|
|
|
fixP->fx_done = 1;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2005-08-26 11:47:49 +02:00
|
|
|
|
case BFD_RELOC_16_PCREL:
|
2003-10-04 23:11:05 +02:00
|
|
|
|
if (fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-08-26 11:47:49 +02:00
|
|
|
|
val = val - fixP->fx_frag->fr_address + fixP->fx_where - fixP->fx_size;
|
|
|
|
|
if (val > 32767 || val < -32768)
|
2005-01-27 22:08:14 +01:00
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
2005-08-26 11:47:49 +02:00
|
|
|
|
_("relative address out of range"));
|
|
|
|
|
*buf++ = (val >> 8);
|
|
|
|
|
*buf++ = val;
|
2003-11-26 22:24:53 +01:00
|
|
|
|
fixP->fx_no_overflow = 1;
|
2003-10-04 23:11:05 +02:00
|
|
|
|
fixP->fx_done = 1;
|
|
|
|
|
}
|
2003-05-01 21:59:33 +02:00
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-08-26 11:47:49 +02:00
|
|
|
|
case BFD_RELOC_Z8K_CALLR:
|
2003-10-04 23:11:05 +02:00
|
|
|
|
if (fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (val & 1)
|
2005-01-27 22:08:14 +01:00
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("cannot branch to odd address"));
|
2003-10-04 23:11:05 +02:00
|
|
|
|
if (val > 4096 || val < -4095)
|
2005-01-27 22:08:14 +01:00
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relative call out of range"));
|
2003-10-04 23:11:05 +02:00
|
|
|
|
val = -val / 2;
|
2003-11-26 22:24:53 +01:00
|
|
|
|
*buf = (*buf & 0xf0) | ((val >> 8) & 0xf);
|
|
|
|
|
buf++;
|
|
|
|
|
*buf++ = val & 0xff;
|
2003-10-04 23:11:05 +02:00
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 1;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
2005-08-26 11:47:49 +02:00
|
|
|
|
case BFD_RELOC_Z8K_DISP7:
|
|
|
|
|
if (fixP->fx_addsy)
|
|
|
|
|
{
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (val & 1)
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("cannot branch to odd address"));
|
|
|
|
|
val /= 2;
|
|
|
|
|
if (val > 0 || val < -127)
|
|
|
|
|
as_bad_where (fixP->fx_file, fixP->fx_line,
|
|
|
|
|
_("relative jump out of range"));
|
|
|
|
|
*buf = (*buf & 0x80) | (-val & 0x7f);
|
|
|
|
|
fixP->fx_no_overflow = 1;
|
|
|
|
|
fixP->fx_done = 1;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
gas:
* cgen.c, cgen.h, tc.h, write.c, config/obj-coff.c
* config/tc-a29k.c, config/tc-alpha.c, config/tc-alpha.h
* config/tc-arc.c, config/tc-arc.h, config/tc-arm.c
* config/tc-arm.h, config/tc-avr.c, config/tc-avr.h
* config/tc-cris.c, config/tc-crx.c, config/tc-d10v.c
* config/tc-d10v.h, config/tc-d30v.c, config/tc-d30v.h
* config/tc-dlx.c, config/tc-dlx.h, config/tc-fr30.h
* config/tc-frv.c, config/tc-frv.h, config/tc-h8300.c
* config/tc-h8500.c, config/tc-hppa.c, config/tc-hppa.h
* config/tc-i370.c, config/tc-i370.h, config/tc-i386.c
* config/tc-i386.h, config/tc-i860.c, config/tc-i860.h
* config/tc-i960.c, config/tc-i960.h, config/tc-ia64.c
* config/tc-ip2k.c, config/tc-ip2k.h, config/tc-iq2000.c
* config/tc-iq2000.h, config/tc-m32r.c, config/tc-m32r.h
* config/tc-m68hc11.c, config/tc-m68hc11.h, config/tc-m68k.c
* config/tc-m68k.h, config/tc-m88k.c, config/tc-maxq.c
* config/tc-mcore.c, config/tc-mcore.h, config/tc-mips.c
* config/tc-mips.h, config/tc-mmix.c, config/tc-mn10200.c
* config/tc-mn10300.c, config/tc-msp430.c, config/tc-ns32k.c
* config/tc-openrisc.h, config/tc-or32.c, config/tc-or32.h
* config/tc-pdp11.c, config/tc-pj.c, config/tc-pj.h
* config/tc-ppc.c, config/tc-ppc.h, config/tc-s390.c
* config/tc-s390.h, config/tc-sh64.c, config/tc-sh.c
* config/tc-sh.h, config/tc-sparc.c, config/tc-sparc.h
* config/tc-tahoe.c, config/tc-tic30.c, config/tc-tic4x.c
* config/tc-tic54x.c, config/tc-tic80.c, config/tc-v850.c
* config/tc-v850.h, config/tc-vax.c, config/tc-vax.h
* config/tc-w65.c, config/tc-xstormy16.c, config/tc-xstormy16.h
* config/tc-xtensa.c, config/tc-z8k.c:
Replace all instances of the string "_apply_fix3" with
"_apply_fix".
* po/POTFILES.in, po/gas.pot: Regenerate.
bfd:
* coff-i386.c: Change md_apply_fix3 to md_apply_fix in comment.
cgen:
* doc/porting.texi: Change all mention of md_apply_fix3 and
gas_cgen_md_apply_fix3 to md_apply_fix and gas_cgen_md_apply_fix
respectively.
2005-06-07 19:54:22 +02:00
|
|
|
|
printf(_("md_apply_fix: unknown r_type 0x%x\n"), fixP->fx_r_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
abort ();
|
|
|
|
|
}
|
2001-11-15 22:29:00 +01:00
|
|
|
|
|
|
|
|
|
if (fixP->fx_addsy == NULL && fixP->fx_pcrel == 0)
|
|
|
|
|
fixP->fx_done = 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_estimate_size_before_relax (fragS *fragP ATTRIBUTE_UNUSED,
|
|
|
|
|
segT segment_type ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-05-01 21:59:33 +02:00
|
|
|
|
printf (_("call to md_estimate_size_before_relax\n"));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 06:05:05 +02:00
|
|
|
|
/* Put number into target byte order. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_number_to_chars (char *ptr, valueT use, int nbytes)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
number_to_chars_bigendian (ptr, use, nbytes);
|
|
|
|
|
}
|
2000-07-27 06:05:05 +02:00
|
|
|
|
|
2003-10-04 23:11:05 +02:00
|
|
|
|
/* On the Z8000, a PC-relative offset is relative to the address of the
|
|
|
|
|
instruction plus its size. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
long
|
2003-11-28 21:10:18 +01:00
|
|
|
|
md_pcrel_from (fixS *fixP)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-10-04 23:11:05 +02:00
|
|
|
|
return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-11-28 21:10:18 +01:00
|
|
|
|
tc_coff_symbol_emit_hook (symbolS *s ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
}
|