binutils-gdb/gas/config/tc-tic30.c

2007 lines
54 KiB
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* tc-c30.c -- Assembly code for the Texas Instruments TMS320C30
Copyright (C) 1998-2020 Free Software Foundation, Inc.
1999-05-03 09:29:11 +02:00
Contributed by Steven Haworth (steve@pm.cse.rmit.edu.au)
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
2007-07-03 13:01:12 +02:00
the Free Software Foundation; either version 3, or (at your option)
1999-05-03 09:29:11 +02:00
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. */
1999-05-03 09:29:11 +02:00
/* Texas Instruments TMS320C30 machine specific gas.
1999-05-03 09:29:11 +02:00
Written by Steven Haworth (steve@pm.cse.rmit.edu.au).
Bugs & suggestions are completely welcome. This is free software.
Please help us make it better. */
1999-05-03 09:29:11 +02:00
#include "as.h"
#include "safe-ctype.h"
1999-05-03 09:29:11 +02:00
#include "opcode/tic30.h"
/* Put here all non-digit non-letter characters that may occur in an
operand. */
1999-05-03 09:29:11 +02:00
static char operand_special_chars[] = "%$-+(,)*._~/<>&^!:[@]";
Add const qualifiers at various places. opcodes * mcore-opc.h: Add const qualifiers. * microblaze-opc.h (struct op_code_struct): Likewise. * sh-opc.h: Likewise. * tic4x-dis.c (tic4x_print_indirect): Likewise. (tic4x_print_op): Likewise. include * opcode/dlx.h (struct dlx_opcode): Add const qualifiers. * opcode/h8300.h (struct h8_opcode): Likewise. * opcode/hppa.h (struct pa_opcode): Likewise. * opcode/msp430.h: Likewise. * opcode/spu.h (struct spu_opcode): Likewise. * opcode/tic30.h (struct _register): Likewise. * opcode/tic4x.h (struct tic4x_register): Likewise. (struct tic4x_cond): Likewise. (struct tic4x_indirect): Likewise. (struct tic4x_inst): Likewise. * opcode/visium.h (struct reg_entry): Likewise. gas * config/tc-arc.c: Add const qualifiers. * config/tc-h8300.c (md_begin): Likewise. * config/tc-ia64.c (print_prmask): Likewise. * config/tc-msp430.c (msp430_operands): Likewise. * config/tc-nds32.c (struct suffix_name): Likewise. (struct nds32_parse_option_table): Likewise. (struct nds32_set_option_table): Likewise. (do_pseudo_pushpopm): Likewise. (do_pseudo_pushpop_stack): Likewise. (nds32_relax_relocs): Likewise. (nds32_flag): Likewise. (struct nds32_hint_map): Likewise. (nds32_find_reloc_table): Likewise. (nds32_match_hint_insn): Likewise. * config/tc-s390.c: Likewise. * config/tc-sh.c (get_specific): Likewise. * config/tc-tic30.c: Likewise. * config/tc-tic4x.c (tic4x_inst_add): Likewise. (tic4x_indirect_parse): Likewise. * config/tc-vax.c (vax_cons): Likewise. * config/tc-z80.c (struct reg_entry): Likewise. * config/tc-epiphany.c (md_assemble): Adjust. (epiphany_assemble): New function. (epiphany_elf_section_rtn): Call do_align directly. (epiphany_elf_section_text): Likewise. * config/tc-ip2k.c (ip2k_elf_section_rtn): Likewise. (ip2k_elf_section_text): Likewise. * read.c (do_align): Make it not static. * read.h (do_align): New prototype.
2016-03-07 16:16:28 +01:00
static const char *ordinal_names[] =
2005-03-23 12:18:14 +01:00
{
N_("first"), N_("second"), N_("third"), N_("fourth"), N_("fifth")
};
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
const char comment_chars[] = ";";
const char line_comment_chars[] = "*";
1999-05-03 09:29:11 +02:00
const char line_separator_chars[] = "";
const char *md_shortopts = "";
2005-03-23 12:18:14 +01:00
struct option md_longopts[] =
{
1999-05-03 09:29:11 +02:00
{NULL, no_argument, NULL, 0}
};
size_t md_longopts_size = sizeof (md_longopts);
2005-03-23 12:18:14 +01: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[] = "fFdDxX";
/* Chars that can be used to separate mant from exp in floating point
nums. */
1999-05-03 09:29:11 +02:00
const char EXP_CHARS[] = "eE";
2005-03-23 12:18:14 +01:00
/* Tables for lexical analysis. */
1999-05-03 09:29:11 +02:00
static char opcode_chars[256];
static char register_chars[256];
static char operand_chars[256];
static char space_chars[256];
static char identifier_chars[256];
static char digit_chars[256];
2005-03-23 12:18:14 +01:00
/* Lexical macros. */
#define is_opcode_char(x) (opcode_chars [(unsigned char) x])
#define is_operand_char(x) (operand_chars [(unsigned char) x])
#define is_register_char(x) (register_chars [(unsigned char) x])
#define is_space_char(x) (space_chars [(unsigned char) x])
#define is_identifier_char(x) (identifier_chars [(unsigned char) x])
#define is_digit_char(x) (digit_chars [(unsigned char) x])
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
const pseudo_typeS md_pseudo_table[] =
{
1999-05-03 09:29:11 +02:00
{0, 0, 0}
};
static int ATTRIBUTE_PRINTF_1
2005-03-23 12:18:14 +01:00
debug (const char *string, ...)
1999-05-03 09:29:11 +02:00
{
if (flag_debug)
{
char str[100];
va_list argptr;
1999-05-03 09:29:11 +02:00
va_start (argptr, string);
1999-05-03 09:29:11 +02:00
vsprintf (str, string, argptr);
va_end (argptr);
1999-05-03 09:29:11 +02:00
if (str[0] == '\0')
return (0);
fputs (str, USE_STDOUT ? stdout : stderr);
return strlen (str);
}
else
return 0;
}
2005-03-23 12:18:14 +01:00
/* Hash table for opcode lookup. */
1999-05-03 09:29:11 +02:00
static struct hash_control *op_hash;
2005-03-23 12:18:14 +01:00
/* Hash table for parallel opcode lookup. */
1999-05-03 09:29:11 +02:00
static struct hash_control *parop_hash;
2005-03-23 12:18:14 +01:00
/* Hash table for register lookup. */
1999-05-03 09:29:11 +02:00
static struct hash_control *reg_hash;
2005-03-23 12:18:14 +01:00
/* Hash table for indirect addressing lookup. */
1999-05-03 09:29:11 +02:00
static struct hash_control *ind_hash;
void
2005-03-23 12:18:14 +01:00
md_begin (void)
1999-05-03 09:29:11 +02:00
{
const char *hash_err;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
debug ("In md_begin()\n");
op_hash = hash_new ();
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
{
Updated sources to avoid using the identifier name "new", which is a keyword in c++. * bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable new to new_symbol. * bfd/coffgen.c (coff_make_empty_symbol) (coff_bfd_make_debug_symbol): Rename variable new to new_symbol. * bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable new to new_insn. * bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to new_d. * bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new to new_symbol. * bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument new to new_reloc. * bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string. * bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to new_symbol. * bfd/linker.c (bfd_new_link_order): Rename variable new to new_lo. * bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to symbol. * bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to new_symbol_type. * bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable new to new_symbol_type. * bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new to new_symbol. * bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to new_dump. (read_hdr, rs6000coff_core_p) (rs6000coff_core_file_matches_executable_p) (rs6000coff_core_file_failing_command) (rs6000coff_core_file_failing_signal): Updated function to use new union member name. * bfd/som.c (som_make_empty_symbol): Rename variable new to new_symbol_type. * bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new to new_symbol. * bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename variable new to new_symbol. * binutils/nlmconv.c (main): Rename variable new to new_name. * gas/config/tc-arm.c (insert_reg_alias): Rename variable new to new_reg. * gas/config/tc-dlx.c (parse_operand): Rename variable new to new_pos. * gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable new to newr. * gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable new to new_pointer. * gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got): Change name from new to new_pointer. * gas/config/tc-or32.c (parse_operand): Rename variable new to new_pointer. * gas/config/tc-pdp11.c (md_assemble): Rename variable new to new_pointer. * gas/config/tc-pj.c (alias): Change argument new to new_name. * gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable new to new_i2n. (s3_convert): Rename variables old and new to r_old and r_new. * gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename variables old and new to r_old and r_new. * gas/config/tc-sh.c (parse_exp): Rename variable new to new_pointer. * gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to new_pointer. * gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new to new_pointer. * gas/config/tc-z8k.c (parse_exp): Rename variable new to new_pointer. * gas/listing.c (listing_newline): Rename variable new to new_i. * ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop) (exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new to new_e. * ld/ldfile.c (ldfile_add_library_path): Rename variable new to new_dirs. (ldfile_add_arch): Rename variable new to new_arch. * ld/ldlang.c (new_statement, lang_final, lang_add_wild) (lang_target, lang_add_fill, lang_add_data, lang_add_assignment) (lang_add_insert): Rename variable new to new_stmt. (new_afile): Added missing cast. (lang_memory_region_lookup): Rename variable new to new_region. (init_os): Rename variable new to new_userdata. (lang_add_section): Rename variable new to new_section. (ldlang_add_undef): Rename variable new to new_undef. (realsymbol): Rename variable new to new_name. * opcodes/z8kgen.c (internal, gas): Rename variable new to new_op. Updated sources to avoid using the identifier name "template", which is a keyword in c++. * bfd/elf32-arm.c (struct stub_def): Rename member template to template_sequence. (arm_build_one_stub, find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub): Rename variable template to template_sequence. * bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl): Rename variable template to template_val. * gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct asm_barrier_opt): Change member template to template_name. (md_begin): Update code to reflect new member names. * gas/config/tc-i386.c (struct templates, struct _i386_insn) (match_template, cpu_flags_match, match_reg_size, match_mem_size) (operand_size_match, md_begin, i386_print_statistics, pi) (build_vex_prefix, md_assemble, parse_insn, optimize_imm) (optimize_disp): Updated code to use new names. (parse_insn): Added casts. * gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated code to use new names. * gas/config/tc-score.c (struct s3_asm_opcode): Renamed member template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst, s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to use new names. * gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member template to template_name. (s7_parse_16_32_inst, s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to use new names. * gas/config/tc-tic30.c (md_begin, struct tic30_insn) (md_assemble): Update code to use new names. * gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin) (optimize_insn, tic54x_parse_insn, next_line_shows_parallel): Update code to use new names. * include/opcode/tic30.h (template): Rename type template to insn_template. Updated code to use new name. * include/opcode/tic54x.h (template): Rename type template to insn_template. * opcodes/cris-dis.c (bytes_to_skip): Update code to use new name. * opcodes/i386-dis.c (putop): Update code to use new name. * opcodes/i386-gen.c (process_i386_opcodes): Update code to use new name. * opcodes/i386-opc.h (struct template): Rename struct template to insn_template. Update code accordingly. * opcodes/i386-tbl.h (i386_optab): Update type to use new name. * opcodes/ia64-dis.c (print_insn_ia64): Rename variable template to template_val. * opcodes/tic30-dis.c (struct instruction, get_tic30_instruction): Update code to use new name. * opcodes/tic54x-dis.c (has_lkaddr, get_insn_size) (print_parallel_instruction, print_insn_tic54x, tic54x_get_insn): Update code to use new name. * opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab): Update type to new name.
2009-08-30 00:11:02 +02:00
const insn_template *current_optab = tic30_optab;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
for (; current_optab < tic30_optab_end; current_optab++)
{
2005-03-23 12:18:14 +01:00
hash_err = hash_insert (op_hash, current_optab->name,
(char *) current_optab);
1999-05-03 09:29:11 +02:00
if (hash_err)
2005-03-23 12:18:14 +01:00
as_fatal ("Internal Error: Can't Hash %s: %s",
current_optab->name, hash_err);
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
parop_hash = hash_new ();
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
{
const partemplate *current_parop = tic30_paroptab;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
for (; current_parop < tic30_paroptab_end; current_parop++)
{
2005-03-23 12:18:14 +01:00
hash_err = hash_insert (parop_hash, current_parop->name,
(char *) current_parop);
1999-05-03 09:29:11 +02:00
if (hash_err)
2005-03-23 12:18:14 +01:00
as_fatal ("Internal Error: Can't Hash %s: %s",
current_parop->name, hash_err);
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
reg_hash = hash_new ();
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
{
const reg *current_reg = tic30_regtab;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
for (; current_reg < tic30_regtab_end; current_reg++)
{
2005-03-23 12:18:14 +01:00
hash_err = hash_insert (reg_hash, current_reg->name,
(char *) current_reg);
1999-05-03 09:29:11 +02:00
if (hash_err)
2005-03-23 12:18:14 +01:00
as_fatal ("Internal Error: Can't Hash %s: %s",
current_reg->name, hash_err);
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
ind_hash = hash_new ();
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
{
const ind_addr_type *current_ind = tic30_indaddr_tab;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
for (; current_ind < tic30_indaddrtab_end; current_ind++)
{
2005-03-23 12:18:14 +01:00
hash_err = hash_insert (ind_hash, current_ind->syntax,
(char *) current_ind);
1999-05-03 09:29:11 +02:00
if (hash_err)
2005-03-23 12:18:14 +01:00
as_fatal ("Internal Error: Can't Hash %s: %s",
current_ind->syntax, hash_err);
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
/* Fill in lexical tables: opcode_chars, operand_chars, space_chars. */
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
int c;
char *p;
1999-05-03 09:29:11 +02:00
for (c = 0; c < 256; c++)
{
if (ISLOWER (c) || ISDIGIT (c))
1999-05-03 09:29:11 +02:00
{
opcode_chars[c] = c;
register_chars[c] = c;
}
else if (ISUPPER (c))
1999-05-03 09:29:11 +02:00
{
opcode_chars[c] = TOLOWER (c);
1999-05-03 09:29:11 +02:00
register_chars[c] = opcode_chars[c];
}
else if (c == ')' || c == '(')
2005-03-23 12:18:14 +01:00
register_chars[c] = c;
if (ISUPPER (c) || ISLOWER (c) || ISDIGIT (c))
1999-05-03 09:29:11 +02:00
operand_chars[c] = c;
2005-03-23 12:18:14 +01:00
if (ISDIGIT (c) || c == '-')
1999-05-03 09:29:11 +02:00
digit_chars[c] = c;
2005-03-23 12:18:14 +01:00
if (ISALPHA (c) || c == '_' || c == '.' || ISDIGIT (c))
1999-05-03 09:29:11 +02:00
identifier_chars[c] = c;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (c == ' ' || c == '\t')
space_chars[c] = c;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (c == '_')
opcode_chars[c] = c;
}
for (p = operand_special_chars; *p != '\0'; p++)
operand_chars[(unsigned char) *p] = *p;
}
}
2005-03-23 12:18:14 +01:00
/* Address Mode OR values. */
1999-05-03 09:29:11 +02:00
#define AM_Register 0x00000000
#define AM_Direct 0x00200000
#define AM_Indirect 0x00400000
#define AM_Immediate 0x00600000
#define AM_NotReq 0xFFFFFFFF
2005-03-23 12:18:14 +01:00
/* PC Relative OR values. */
1999-05-03 09:29:11 +02:00
#define PC_Register 0x00000000
#define PC_Relative 0x02000000
2005-03-23 12:18:14 +01:00
typedef struct
{
1999-05-03 09:29:11 +02:00
unsigned op_type;
2005-03-23 12:18:14 +01:00
struct
{
int resolved;
unsigned address;
char *label;
expressionS direct_expr;
} direct;
2005-03-23 12:18:14 +01:00
struct
{
unsigned mod;
int ARnum;
unsigned char disp;
} indirect;
2005-03-23 12:18:14 +01:00
struct
{
unsigned opcode;
} reg;
2005-03-23 12:18:14 +01:00
struct
{
int resolved;
int decimal_found;
float f_number;
int s_number;
unsigned int u_number;
char *label;
expressionS imm_expr;
} immediate;
} operand;
1999-05-03 09:29:11 +02:00
Updated sources to avoid using the identifier name "new", which is a keyword in c++. * bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable new to new_symbol. * bfd/coffgen.c (coff_make_empty_symbol) (coff_bfd_make_debug_symbol): Rename variable new to new_symbol. * bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable new to new_insn. * bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to new_d. * bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new to new_symbol. * bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument new to new_reloc. * bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string. * bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to new_symbol. * bfd/linker.c (bfd_new_link_order): Rename variable new to new_lo. * bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to symbol. * bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to new_symbol_type. * bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable new to new_symbol_type. * bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new to new_symbol. * bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to new_dump. (read_hdr, rs6000coff_core_p) (rs6000coff_core_file_matches_executable_p) (rs6000coff_core_file_failing_command) (rs6000coff_core_file_failing_signal): Updated function to use new union member name. * bfd/som.c (som_make_empty_symbol): Rename variable new to new_symbol_type. * bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new to new_symbol. * bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename variable new to new_symbol. * binutils/nlmconv.c (main): Rename variable new to new_name. * gas/config/tc-arm.c (insert_reg_alias): Rename variable new to new_reg. * gas/config/tc-dlx.c (parse_operand): Rename variable new to new_pos. * gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable new to newr. * gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable new to new_pointer. * gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got): Change name from new to new_pointer. * gas/config/tc-or32.c (parse_operand): Rename variable new to new_pointer. * gas/config/tc-pdp11.c (md_assemble): Rename variable new to new_pointer. * gas/config/tc-pj.c (alias): Change argument new to new_name. * gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable new to new_i2n. (s3_convert): Rename variables old and new to r_old and r_new. * gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename variables old and new to r_old and r_new. * gas/config/tc-sh.c (parse_exp): Rename variable new to new_pointer. * gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to new_pointer. * gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new to new_pointer. * gas/config/tc-z8k.c (parse_exp): Rename variable new to new_pointer. * gas/listing.c (listing_newline): Rename variable new to new_i. * ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop) (exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new to new_e. * ld/ldfile.c (ldfile_add_library_path): Rename variable new to new_dirs. (ldfile_add_arch): Rename variable new to new_arch. * ld/ldlang.c (new_statement, lang_final, lang_add_wild) (lang_target, lang_add_fill, lang_add_data, lang_add_assignment) (lang_add_insert): Rename variable new to new_stmt. (new_afile): Added missing cast. (lang_memory_region_lookup): Rename variable new to new_region. (init_os): Rename variable new to new_userdata. (lang_add_section): Rename variable new to new_section. (ldlang_add_undef): Rename variable new to new_undef. (realsymbol): Rename variable new to new_name. * opcodes/z8kgen.c (internal, gas): Rename variable new to new_op. Updated sources to avoid using the identifier name "template", which is a keyword in c++. * bfd/elf32-arm.c (struct stub_def): Rename member template to template_sequence. (arm_build_one_stub, find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub): Rename variable template to template_sequence. * bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl): Rename variable template to template_val. * gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct asm_barrier_opt): Change member template to template_name. (md_begin): Update code to reflect new member names. * gas/config/tc-i386.c (struct templates, struct _i386_insn) (match_template, cpu_flags_match, match_reg_size, match_mem_size) (operand_size_match, md_begin, i386_print_statistics, pi) (build_vex_prefix, md_assemble, parse_insn, optimize_imm) (optimize_disp): Updated code to use new names. (parse_insn): Added casts. * gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated code to use new names. * gas/config/tc-score.c (struct s3_asm_opcode): Renamed member template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst, s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to use new names. * gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member template to template_name. (s7_parse_16_32_inst, s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to use new names. * gas/config/tc-tic30.c (md_begin, struct tic30_insn) (md_assemble): Update code to use new names. * gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin) (optimize_insn, tic54x_parse_insn, next_line_shows_parallel): Update code to use new names. * include/opcode/tic30.h (template): Rename type template to insn_template. Updated code to use new name. * include/opcode/tic54x.h (template): Rename type template to insn_template. * opcodes/cris-dis.c (bytes_to_skip): Update code to use new name. * opcodes/i386-dis.c (putop): Update code to use new name. * opcodes/i386-gen.c (process_i386_opcodes): Update code to use new name. * opcodes/i386-opc.h (struct template): Rename struct template to insn_template. Update code accordingly. * opcodes/i386-tbl.h (i386_optab): Update type to use new name. * opcodes/ia64-dis.c (print_insn_ia64): Rename variable template to template_val. * opcodes/tic30-dis.c (struct instruction, get_tic30_instruction): Update code to use new name. * opcodes/tic54x-dis.c (has_lkaddr, get_insn_size) (print_parallel_instruction, print_insn_tic54x, tic54x_get_insn): Update code to use new name. * opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab): Update type to new name.
2009-08-30 00:11:02 +02:00
insn_template *opcode;
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
struct tic30_insn
{
Updated sources to avoid using the identifier name "new", which is a keyword in c++. * bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable new to new_symbol. * bfd/coffgen.c (coff_make_empty_symbol) (coff_bfd_make_debug_symbol): Rename variable new to new_symbol. * bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable new to new_insn. * bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to new_d. * bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new to new_symbol. * bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument new to new_reloc. * bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string. * bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to new_symbol. * bfd/linker.c (bfd_new_link_order): Rename variable new to new_lo. * bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to symbol. * bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to new_symbol_type. * bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable new to new_symbol_type. * bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new to new_symbol. * bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to new_dump. (read_hdr, rs6000coff_core_p) (rs6000coff_core_file_matches_executable_p) (rs6000coff_core_file_failing_command) (rs6000coff_core_file_failing_signal): Updated function to use new union member name. * bfd/som.c (som_make_empty_symbol): Rename variable new to new_symbol_type. * bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new to new_symbol. * bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename variable new to new_symbol. * binutils/nlmconv.c (main): Rename variable new to new_name. * gas/config/tc-arm.c (insert_reg_alias): Rename variable new to new_reg. * gas/config/tc-dlx.c (parse_operand): Rename variable new to new_pos. * gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable new to newr. * gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable new to new_pointer. * gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got): Change name from new to new_pointer. * gas/config/tc-or32.c (parse_operand): Rename variable new to new_pointer. * gas/config/tc-pdp11.c (md_assemble): Rename variable new to new_pointer. * gas/config/tc-pj.c (alias): Change argument new to new_name. * gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable new to new_i2n. (s3_convert): Rename variables old and new to r_old and r_new. * gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename variables old and new to r_old and r_new. * gas/config/tc-sh.c (parse_exp): Rename variable new to new_pointer. * gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to new_pointer. * gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new to new_pointer. * gas/config/tc-z8k.c (parse_exp): Rename variable new to new_pointer. * gas/listing.c (listing_newline): Rename variable new to new_i. * ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop) (exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new to new_e. * ld/ldfile.c (ldfile_add_library_path): Rename variable new to new_dirs. (ldfile_add_arch): Rename variable new to new_arch. * ld/ldlang.c (new_statement, lang_final, lang_add_wild) (lang_target, lang_add_fill, lang_add_data, lang_add_assignment) (lang_add_insert): Rename variable new to new_stmt. (new_afile): Added missing cast. (lang_memory_region_lookup): Rename variable new to new_region. (init_os): Rename variable new to new_userdata. (lang_add_section): Rename variable new to new_section. (ldlang_add_undef): Rename variable new to new_undef. (realsymbol): Rename variable new to new_name. * opcodes/z8kgen.c (internal, gas): Rename variable new to new_op. Updated sources to avoid using the identifier name "template", which is a keyword in c++. * bfd/elf32-arm.c (struct stub_def): Rename member template to template_sequence. (arm_build_one_stub, find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub): Rename variable template to template_sequence. * bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl): Rename variable template to template_val. * gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct asm_barrier_opt): Change member template to template_name. (md_begin): Update code to reflect new member names. * gas/config/tc-i386.c (struct templates, struct _i386_insn) (match_template, cpu_flags_match, match_reg_size, match_mem_size) (operand_size_match, md_begin, i386_print_statistics, pi) (build_vex_prefix, md_assemble, parse_insn, optimize_imm) (optimize_disp): Updated code to use new names. (parse_insn): Added casts. * gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated code to use new names. * gas/config/tc-score.c (struct s3_asm_opcode): Renamed member template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst, s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to use new names. * gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member template to template_name. (s7_parse_16_32_inst, s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to use new names. * gas/config/tc-tic30.c (md_begin, struct tic30_insn) (md_assemble): Update code to use new names. * gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin) (optimize_insn, tic54x_parse_insn, next_line_shows_parallel): Update code to use new names. * include/opcode/tic30.h (template): Rename type template to insn_template. Updated code to use new name. * include/opcode/tic54x.h (template): Rename type template to insn_template. * opcodes/cris-dis.c (bytes_to_skip): Update code to use new name. * opcodes/i386-dis.c (putop): Update code to use new name. * opcodes/i386-gen.c (process_i386_opcodes): Update code to use new name. * opcodes/i386-opc.h (struct template): Rename struct template to insn_template. Update code accordingly. * opcodes/i386-tbl.h (i386_optab): Update type to use new name. * opcodes/ia64-dis.c (print_insn_ia64): Rename variable template to template_val. * opcodes/tic30-dis.c (struct instruction, get_tic30_instruction): Update code to use new name. * opcodes/tic54x-dis.c (has_lkaddr, get_insn_size) (print_parallel_instruction, print_insn_tic54x, tic54x_get_insn): Update code to use new name. * opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab): Update type to new name.
2009-08-30 00:11:02 +02:00
insn_template *tm; /* Template of current instruction. */
2005-03-23 12:18:14 +01:00
unsigned opcode; /* Final opcode. */
unsigned int operands; /* Number of given operands. */
/* Type of operand given in instruction. */
operand *operand_type[MAX_OPERANDS];
2005-03-23 12:18:14 +01:00
unsigned addressing_mode; /* Final addressing mode of instruction. */
};
1999-05-03 09:29:11 +02:00
struct tic30_insn insn;
static int found_parallel_insn;
static char output_invalid_buf[sizeof (unsigned char) * 2 + 6];
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
static char *
output_invalid (char c)
{
if (ISPRINT (c))
snprintf (output_invalid_buf, sizeof (output_invalid_buf),
"'%c'", c);
1999-05-03 09:29:11 +02:00
else
2015-08-12 13:40:42 +02:00
snprintf (output_invalid_buf, sizeof (output_invalid_buf),
"(0x%x)", (unsigned char) c);
2005-03-23 12:18:14 +01:00
return output_invalid_buf;
}
/* next_line points to the next line after the current instruction
(current_line). Search for the parallel bars, and if found, merge two
lines into internal syntax for a parallel instruction:
q_[INSN1]_[INSN2] [OPERANDS1] | [OPERANDS2]
By this stage, all comments are scrubbed, and only the bare lines are
given. */
#define NONE 0
#define START_OPCODE 1
#define END_OPCODE 2
#define START_OPERANDS 3
#define END_OPERANDS 4
static char *
tic30_find_parallel_insn (char *current_line, char *next_line)
{
int found_parallel = 0;
char first_opcode[256];
char second_opcode[256];
char first_operands[256];
char second_operands[256];
char *parallel_insn;
debug ("In tic30_find_parallel_insn()\n");
while (!is_end_of_line[(unsigned char) *next_line])
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (*next_line == PARALLEL_SEPARATOR
&& *(next_line + 1) == PARALLEL_SEPARATOR)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
found_parallel = 1;
next_line++;
break;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
next_line++;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
if (!found_parallel)
return NULL;
debug ("Found a parallel instruction\n");
{
int i;
char *op, *operands, *line;
2005-03-23 12:18:14 +01:00
for (i = 0; i < 2; i++)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (i == 0)
{
op = &first_opcode[0];
2005-03-23 12:18:14 +01:00
operands = &first_operands[0];
line = current_line;
}
else
{
op = &second_opcode[0];
2005-03-23 12:18:14 +01:00
operands = &second_operands[0];
line = next_line;
}
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
int search_status = NONE;
int char_ptr = 0;
char c;
while (!is_end_of_line[(unsigned char) (c = *line)])
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (is_opcode_char (c) && search_status == NONE)
1999-05-03 09:29:11 +02:00
{
op[char_ptr++] = TOLOWER (c);
2005-03-23 12:18:14 +01:00
search_status = START_OPCODE;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
else if (is_opcode_char (c) && search_status == START_OPCODE)
op[char_ptr++] = TOLOWER (c);
2005-03-23 12:18:14 +01:00
else if (!is_opcode_char (c) && search_status == START_OPCODE)
1999-05-03 09:29:11 +02:00
{
op[char_ptr] = '\0';
2005-03-23 12:18:14 +01:00
char_ptr = 0;
search_status = END_OPCODE;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
else if (is_operand_char (c) && search_status == START_OPERANDS)
operands[char_ptr++] = c;
if (is_operand_char (c) && search_status == END_OPCODE)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
operands[char_ptr++] = c;
search_status = START_OPERANDS;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
line++;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
if (search_status != START_OPERANDS)
return NULL;
operands[char_ptr] = '\0';
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
}
}
use xstrdup, xmemdup0 and concat more gas/ChangeLog: 2016-05-13 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> * config/obj-coff.c (obj_coff_def): Simplify string copying. (weak_name2altname): Likewise. (weak_uniquify): Likewise. (obj_coff_section): Likewise. (obj_coff_init_stab_section): Likewise. * config/obj-elf.c (obj_elf_section_name): Likewise. (obj_elf_init_stab_section): Likewise. * config/obj-evax.c (evax_shorten_name): Likewise. * config/obj-macho.c (obj_mach_o_make_or_get_sect): Likewise. * config/tc-aarch64.c (create_register_alias): Likewise. * config/tc-alpha.c (load_expression): Likewise. (s_alpha_file): Likewise. (s_alpha_section_name): Likewise. (tc_gen_reloc): Likewise. * config/tc-arc.c (md_assemble): Likewise. * config/tc-arm.c (create_neon_reg_alias): Likewise. (start_unwind_section): Likewise. * config/tc-hppa.c (pa_build_unwind_subspace): Likewise. (hppa_elf_mark_end_of_function): Likewise. * config/tc-nios2.c (nios2_modify_arg): Likewise. (nios2_negate_arg): Likewise. * config/tc-rx.c (rx_section): Likewise. * config/tc-sh64.c (sh64_consume_datalabel): Likewise. * config/tc-tic30.c (tic30_find_parallel_insn): Likewise. * config/tc-tic54x.c (tic54x_include): Likewise. (tic54x_macro_info): Likewise. (subsym_get_arg): Likewise. (subsym_substitute): Likewise. (tic54x_start_line_hook): Likewise. * config/tc-xtensa.c (xtensa_literal_prefix): Likewise. (xg_reverse_shift_count): Likewise. * config/xtensa-relax.c (enter_opname_n): Likewise. (split_string): Likewise. * dwarf2dbg.c (get_filenum): Likewise. (process_entries): Likewise. * expr.c (operand): Likewise. * itbl-ops.c (alloc_entry): Likewise. * listing.c (listing_message): Likewise. (listing_title): Likewise. * macro.c (check_macro): Likewise. * stabs.c (s_xstab): Likewise. * symbols.c (symbol_relc_make_expr): Likewise. * write.c (compress_debug): Likewise.
2016-03-28 11:49:15 +02:00
parallel_insn = concat ("q_", first_opcode, "_", second_opcode, " ",
first_operands, " | ", second_operands,
(char *) NULL);
2005-03-23 12:18:14 +01:00
debug ("parallel insn = %s\n", parallel_insn);
return parallel_insn;
}
#undef NONE
#undef START_OPCODE
#undef END_OPCODE
#undef START_OPERANDS
#undef END_OPERANDS
static operand *
tic30_operand (char *token)
{
unsigned int count;
operand *current_op;
debug ("In tic30_operand with %s\n", token);
use XNEW and related macros more gas/ChangeLog: 2016-04-03 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> * app.c (app_push): use XNEW macro. * as.c: Likewise. * config/obj-elf.c (obj_elf_change_section): Likewise. (elf_copy_symbol_attributes): Likewise. (obj_elf_size): Likewise. (build_group_lists): Likewise. * config/tc-aarch64.c (add_operand_error_record): Likewise. (md_assemble): Likewise. (tc_gen_reloc): Likewise. (get_upper_str): Likewise. (aarch64_parse_features): Likewise. * config/tc-arm.c (insert_reg_alias): Likewise. (insert_neon_reg_alias): Likewise. (find_or_make_literal_pool): Likewise. (s_arm_elf_cons): Likewise. (add_unwind_opcode): Likewise. (arm_parse_extension): Likewise. * config/tc-avr.c (create_record_for_frag): Likewise. * config/tc-crx.c: Likewise. * config/tc-d30v.c: Likewise. * config/tc-dlx.c (s_proc): Likewise. * config/tc-ft32.c: Likewise. * config/tc-h8300.c: Likewise. * config/tc-hppa.c (pa_proc): Likewise. (create_new_space): Likewise. (create_new_subspace): Likewise. * config/tc-i860.c: Likewise. * config/tc-i960.c: Likewise. * config/tc-ia64.c: Likewise. * config/tc-iq2000.c (iq2000_add_macro): Likewise. (iq2000_record_hi16): Likewise. * config/tc-m32c.c (m32c_indirect_operand): Likewise. * config/tc-m32r.c (debug_sym): Likewise. (m32r_record_hi16): Likewise. * config/tc-m68k.c (m68k_ip): Likewise. (md_begin): Likewise. * config/tc-mcore.c: Likewise. * config/tc-microblaze.c (check_got): Likewise. * config/tc-mips.c (append_insn): Likewise. (s_mipsset): Likewise. (mips_record_label): Likewise. (s_mips_end): Likewise. * config/tc-mmix.c (mmix_frob_file): Likewise. * config/tc-mn10200.c: Likewise. * config/tc-mn10300.c: Likewise. * config/tc-moxie.c: Likewise. * config/tc-msp430.c: Likewise. * config/tc-nds32.c (nds32_elf_save_pseudo_pattern): Likewise. * config/tc-ns32k.c: Likewise. * config/tc-or1k.c: Likewise. * config/tc-pdp11.c: Likewise. * config/tc-pj.c (fake_opcode): Likewise. * config/tc-ppc.c (ppc_apuinfo_section_add): Likewise. (ppc_macro): Likewise. (ppc_dwsect): Likewise. (ppc_machine): Likewise. * config/tc-rl78.c (rl78_frag_init): Likewise. * config/tc-rx.c (rx_frag_init): Likewise. * config/tc-s390.c (s390_lit_suffix): Likewise. (s390_machine): Likewise. (s390_machinemode): Likewise. * config/tc-score.c (s3_insert_reg): Likewise. (s3_gen_reloc): Likewise. * config/tc-score7.c (s7_insert_reg): Likewise. (s7_gen_reloc): Likewise. * config/tc-tic30.c (tic30_operand): Likewise. * config/tc-tic4x.c (tic4x_inst_make): Likewise. * config/tc-tic54x.c (stag_add_field): Likewise. (tic54x_struct): Likewise. (tic54x_space): Likewise. (tic54x_field): Likewise. (tic54x_mlib): Likewise. (subsym_substitute): Likewise. * config/tc-tic6x.c (tic6x_frob_label): Likewise. * config/tc-vax.c: Likewise. * config/tc-xc16x.c: Likewise. * config/tc-xtensa.c (xtensa_add_insn_label): Likewise. (directive_push): Likewise. (xtensa_begin_directive): Likewise. (tokenize_arguments): Likewise. (xtensa_add_literal_sym): Likewise. (new_resource_table): Likewise. (resize_resource_table): Likewise. (emit_single_op): Likewise. (xtensa_create_trampoline_frag): Likewise. (xtensa_maybe_create_literal_pool_frag): Likewise. (xtensa_add_config_info): Likewise. (xtensa_realloc_fixup_cache): Likewise. (add_subseg_info): Likewise. (cache_literal_section): Likewise. (add_xt_block_frags): Likewise. (add_xt_prop_frags): Likewise. (init_op_placement_info_table): Likewise. (build_section_rename): Likewise. * config/tc-z80.c: Likewise. * config/tc-z8k.c: Likewise. * depend.c (register_dependency): Likewise. * dwarf2dbg.c (get_line_subseg): Likewise. (dwarf2_gen_line_info_1): Likewise. (get_filenum): Likewise. * ecoff.c (allocate_scope): Likewise. (allocate_vlinks): Likewise. (allocate_shash): Likewise. (allocate_thash): Likewise. (allocate_tag): Likewise. (allocate_forward): Likewise. (allocate_thead): Likewise. (allocate_lineno_list): Likewise. * expr.c (make_expr_symbol): Likewise. * hash.c (hash_new_sized): Likewise. * input-file.c (input_file_push): Likewise. * listing.c (file_info): Likewise. (listing_newline): Likewise. * macro.c (new_formal): Likewise. (define_macro): Likewise. * remap.c (add_debug_prefix_map): Likewise. * symbols.c (symbol_find_noref): Likewise. (define_dollar_label): Likewise. (fb_label_instance_inc): Likewise. (symbol_relc_make_value): Likewise.
2016-04-01 15:26:30 +02:00
current_op = XCNEW (operand);
2005-03-23 12:18:14 +01:00
if (*token == DIRECT_REFERENCE)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
char *token_posn = token + 1;
int direct_label = 0;
debug ("Found direct reference\n");
while (*token_posn)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (!is_digit_char (*token_posn))
direct_label = 1;
token_posn++;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
if (direct_label)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
char *save_input_line_pointer;
segT retval;
debug ("Direct reference is a label\n");
current_op->direct.label = token + 1;
save_input_line_pointer = input_line_pointer;
input_line_pointer = token + 1;
debug ("Current input_line_pointer: %s\n", input_line_pointer);
retval = expression (&current_op->direct.direct_expr);
debug ("Expression type: %d\n",
current_op->direct.direct_expr.X_op);
debug ("Expression addnum: %ld\n",
(long) current_op->direct.direct_expr.X_add_number);
debug ("Segment: %p\n", retval);
2005-03-23 12:18:14 +01:00
input_line_pointer = save_input_line_pointer;
if (current_op->direct.direct_expr.X_op == O_constant)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
current_op->direct.address =
current_op->direct.direct_expr.X_add_number;
current_op->direct.resolved = 1;
1999-05-03 09:29:11 +02:00
}
}
else
{
2005-03-23 12:18:14 +01:00
debug ("Direct reference is a number\n");
current_op->direct.address = atoi (token + 1);
current_op->direct.resolved = 1;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
current_op->op_type = Direct;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
else if (*token == INDIRECT_REFERENCE)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Indirect reference operand. */
int found_ar = 0;
int found_disp = 0;
int ar_number = -1;
int disp_number = 0;
int buffer_posn = 1;
ind_addr_type *ind_addr_op;
char * ind_buffer;
use XNEW and related macros more gas/ChangeLog: 2016-04-03 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> * app.c (app_push): use XNEW macro. * as.c: Likewise. * config/obj-elf.c (obj_elf_change_section): Likewise. (elf_copy_symbol_attributes): Likewise. (obj_elf_size): Likewise. (build_group_lists): Likewise. * config/tc-aarch64.c (add_operand_error_record): Likewise. (md_assemble): Likewise. (tc_gen_reloc): Likewise. (get_upper_str): Likewise. (aarch64_parse_features): Likewise. * config/tc-arm.c (insert_reg_alias): Likewise. (insert_neon_reg_alias): Likewise. (find_or_make_literal_pool): Likewise. (s_arm_elf_cons): Likewise. (add_unwind_opcode): Likewise. (arm_parse_extension): Likewise. * config/tc-avr.c (create_record_for_frag): Likewise. * config/tc-crx.c: Likewise. * config/tc-d30v.c: Likewise. * config/tc-dlx.c (s_proc): Likewise. * config/tc-ft32.c: Likewise. * config/tc-h8300.c: Likewise. * config/tc-hppa.c (pa_proc): Likewise. (create_new_space): Likewise. (create_new_subspace): Likewise. * config/tc-i860.c: Likewise. * config/tc-i960.c: Likewise. * config/tc-ia64.c: Likewise. * config/tc-iq2000.c (iq2000_add_macro): Likewise. (iq2000_record_hi16): Likewise. * config/tc-m32c.c (m32c_indirect_operand): Likewise. * config/tc-m32r.c (debug_sym): Likewise. (m32r_record_hi16): Likewise. * config/tc-m68k.c (m68k_ip): Likewise. (md_begin): Likewise. * config/tc-mcore.c: Likewise. * config/tc-microblaze.c (check_got): Likewise. * config/tc-mips.c (append_insn): Likewise. (s_mipsset): Likewise. (mips_record_label): Likewise. (s_mips_end): Likewise. * config/tc-mmix.c (mmix_frob_file): Likewise. * config/tc-mn10200.c: Likewise. * config/tc-mn10300.c: Likewise. * config/tc-moxie.c: Likewise. * config/tc-msp430.c: Likewise. * config/tc-nds32.c (nds32_elf_save_pseudo_pattern): Likewise. * config/tc-ns32k.c: Likewise. * config/tc-or1k.c: Likewise. * config/tc-pdp11.c: Likewise. * config/tc-pj.c (fake_opcode): Likewise. * config/tc-ppc.c (ppc_apuinfo_section_add): Likewise. (ppc_macro): Likewise. (ppc_dwsect): Likewise. (ppc_machine): Likewise. * config/tc-rl78.c (rl78_frag_init): Likewise. * config/tc-rx.c (rx_frag_init): Likewise. * config/tc-s390.c (s390_lit_suffix): Likewise. (s390_machine): Likewise. (s390_machinemode): Likewise. * config/tc-score.c (s3_insert_reg): Likewise. (s3_gen_reloc): Likewise. * config/tc-score7.c (s7_insert_reg): Likewise. (s7_gen_reloc): Likewise. * config/tc-tic30.c (tic30_operand): Likewise. * config/tc-tic4x.c (tic4x_inst_make): Likewise. * config/tc-tic54x.c (stag_add_field): Likewise. (tic54x_struct): Likewise. (tic54x_space): Likewise. (tic54x_field): Likewise. (tic54x_mlib): Likewise. (subsym_substitute): Likewise. * config/tc-tic6x.c (tic6x_frob_label): Likewise. * config/tc-vax.c: Likewise. * config/tc-xc16x.c: Likewise. * config/tc-xtensa.c (xtensa_add_insn_label): Likewise. (directive_push): Likewise. (xtensa_begin_directive): Likewise. (tokenize_arguments): Likewise. (xtensa_add_literal_sym): Likewise. (new_resource_table): Likewise. (resize_resource_table): Likewise. (emit_single_op): Likewise. (xtensa_create_trampoline_frag): Likewise. (xtensa_maybe_create_literal_pool_frag): Likewise. (xtensa_add_config_info): Likewise. (xtensa_realloc_fixup_cache): Likewise. (add_subseg_info): Likewise. (cache_literal_section): Likewise. (add_xt_block_frags): Likewise. (add_xt_prop_frags): Likewise. (init_op_placement_info_table): Likewise. (build_section_rename): Likewise. * config/tc-z80.c: Likewise. * config/tc-z8k.c: Likewise. * depend.c (register_dependency): Likewise. * dwarf2dbg.c (get_line_subseg): Likewise. (dwarf2_gen_line_info_1): Likewise. (get_filenum): Likewise. * ecoff.c (allocate_scope): Likewise. (allocate_vlinks): Likewise. (allocate_shash): Likewise. (allocate_thash): Likewise. (allocate_tag): Likewise. (allocate_forward): Likewise. (allocate_thead): Likewise. (allocate_lineno_list): Likewise. * expr.c (make_expr_symbol): Likewise. * hash.c (hash_new_sized): Likewise. * input-file.c (input_file_push): Likewise. * listing.c (file_info): Likewise. (listing_newline): Likewise. * macro.c (new_formal): Likewise. (define_macro): Likewise. * remap.c (add_debug_prefix_map): Likewise. * symbols.c (symbol_find_noref): Likewise. (define_dollar_label): Likewise. (fb_label_instance_inc): Likewise. (symbol_relc_make_value): Likewise.
2016-04-01 15:26:30 +02:00
ind_buffer = XNEWVEC (char, strlen (token));
2005-03-23 12:18:14 +01:00
debug ("Found indirect reference\n");
ind_buffer[0] = *token;
for (count = 1; count < strlen (token); count++)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Strip operand. */
ind_buffer[buffer_posn] = TOLOWER (*(token + count));
if ((*(token + count - 1) == 'a' || *(token + count - 1) == 'A')
&& (*(token + count) == 'r' || *(token + count) == 'R'))
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* AR reference is found, so get its number and remove
it from the buffer so it can pass through hash_find(). */
if (found_ar)
1999-05-03 09:29:11 +02:00
{
as_bad (_("More than one AR register found in indirect reference"));
free (ind_buffer);
2005-03-23 12:18:14 +01:00
return NULL;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
if (*(token + count + 1) < '0' || *(token + count + 1) > '7')
{
as_bad (_("Illegal AR register in indirect reference"));
free (ind_buffer);
2005-03-23 12:18:14 +01:00
return NULL;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
ar_number = *(token + count + 1) - '0';
found_ar = 1;
count++;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
if (*(token + count) == '(')
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Parenthesis found, so check if a displacement value is
inside. If so, get the value and remove it from the
buffer. */
if (is_digit_char (*(token + count + 1)))
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
char disp[10];
int disp_posn = 0;
if (found_disp)
1999-05-03 09:29:11 +02:00
{
as_bad (_("More than one displacement found in indirect reference"));
free (ind_buffer);
2005-03-23 12:18:14 +01:00
return NULL;
}
count++;
while (*(token + count) != ')')
{
if (!is_digit_char (*(token + count)))
1999-05-03 09:29:11 +02:00
{
as_bad (_("Invalid displacement in indirect reference"));
free (ind_buffer);
2005-03-23 12:18:14 +01:00
return NULL;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
disp[disp_posn++] = *(token + (count++));
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
disp[disp_posn] = '\0';
disp_number = atoi (disp);
count--;
found_disp = 1;
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
buffer_posn++;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
ind_buffer[buffer_posn] = '\0';
if (!found_ar)
1999-05-03 09:29:11 +02:00
{
as_bad (_("AR register not found in indirect reference"));
free (ind_buffer);
2005-03-23 12:18:14 +01:00
return NULL;
}
ind_addr_op = (ind_addr_type *) hash_find (ind_hash, ind_buffer);
if (ind_addr_op)
{
debug ("Found indirect reference: %s\n", ind_addr_op->syntax);
if (ind_addr_op->displacement == IMPLIED_DISP)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
found_disp = 1;
disp_number = 1;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
else if ((ind_addr_op->displacement == DISP_REQUIRED) && !found_disp)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Maybe an implied displacement of 1 again. */
as_bad (_("required displacement wasn't given in indirect reference"));
free (ind_buffer);
return NULL;
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
else
1999-05-03 09:29:11 +02:00
{
as_bad (_("illegal indirect reference"));
free (ind_buffer);
2005-03-23 12:18:14 +01:00
return NULL;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
if (found_disp && (disp_number < 0 || disp_number > 255))
1999-05-03 09:29:11 +02:00
{
as_bad (_("displacement must be an unsigned 8-bit number"));
free (ind_buffer);
2005-03-23 12:18:14 +01:00
return NULL;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
current_op->indirect.mod = ind_addr_op->modfield;
current_op->indirect.disp = disp_number;
current_op->indirect.ARnum = ar_number;
current_op->op_type = Indirect;
free (ind_buffer);
2005-03-23 12:18:14 +01:00
}
else
{
reg *regop = (reg *) hash_find (reg_hash, token);
if (regop)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
debug ("Found register operand: %s\n", regop->name);
if (regop->regtype == REG_ARn)
current_op->op_type = ARn;
else if (regop->regtype == REG_Rn)
current_op->op_type = Rn;
else if (regop->regtype == REG_DP)
current_op->op_type = DPReg;
1999-05-03 09:29:11 +02:00
else
2005-03-23 12:18:14 +01:00
current_op->op_type = OtherReg;
current_op->reg.opcode = regop->opcode;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
else
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (!is_digit_char (*token)
|| *(token + 1) == 'x'
|| strchr (token, 'h'))
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
char *save_input_line_pointer;
segT retval;
debug ("Probably a label: %s\n", token);
current_op->immediate.label = xstrdup (token);
2005-03-23 12:18:14 +01:00
save_input_line_pointer = input_line_pointer;
input_line_pointer = token;
debug ("Current input_line_pointer: %s\n", input_line_pointer);
retval = expression (&current_op->immediate.imm_expr);
debug ("Expression type: %d\n",
current_op->immediate.imm_expr.X_op);
debug ("Expression addnum: %ld\n",
(long) current_op->immediate.imm_expr.X_add_number);
debug ("Segment: %p\n", retval);
2005-03-23 12:18:14 +01:00
input_line_pointer = save_input_line_pointer;
if (current_op->immediate.imm_expr.X_op == O_constant)
{
current_op->immediate.s_number
= current_op->immediate.imm_expr.X_add_number;
current_op->immediate.u_number
= (unsigned int) current_op->immediate.imm_expr.X_add_number;
current_op->immediate.resolved = 1;
}
1999-05-03 09:29:11 +02:00
}
else
{
2005-03-23 12:18:14 +01:00
debug ("Found a number or displacement\n");
for (count = 0; count < strlen (token); count++)
if (*(token + count) == '.')
current_op->immediate.decimal_found = 1;
current_op->immediate.label = xstrdup (token);
2005-03-23 12:18:14 +01:00
current_op->immediate.f_number = (float) atof (token);
current_op->immediate.s_number = (int) atoi (token);
current_op->immediate.u_number = (unsigned int) atoi (token);
current_op->immediate.resolved = 1;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
current_op->op_type = Disp | Abs24 | Imm16 | Imm24;
if (current_op->immediate.u_number <= 31)
current_op->op_type |= IVector;
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
return current_op;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
struct tic30_par_insn
{
partemplate *tm; /* Template of current parallel instruction. */
unsigned operands[2]; /* Number of given operands for each insn. */
/* Type of operand given in instruction. */
1999-05-03 09:29:11 +02:00
operand *operand_type[2][MAX_OPERANDS];
int swap_operands; /* Whether to swap operands around. */
2005-03-23 12:18:14 +01:00
unsigned p_field; /* Value of p field in multiply add/sub instructions. */
unsigned opcode; /* Final opcode. */
1999-05-03 09:29:11 +02:00
};
struct tic30_par_insn p_insn;
2005-03-23 12:18:14 +01:00
static int
1999-05-03 09:29:11 +02:00
tic30_parallel_insn (char *token)
{
static partemplate *p_opcode;
char *current_posn = token;
char *token_start;
char save_char;
debug ("In tic30_parallel_insn with %s\n", token);
memset (&p_insn, '\0', sizeof (p_insn));
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
while (is_opcode_char (*current_posn))
current_posn++;
2005-03-23 12:18:14 +01:00
{
/* Find instruction. */
1999-05-03 09:29:11 +02:00
save_char = *current_posn;
*current_posn = '\0';
p_opcode = (partemplate *) hash_find (parop_hash, token);
if (p_opcode)
{
debug ("Found instruction %s\n", p_opcode->name);
p_insn.tm = p_opcode;
}
else
{
2005-03-23 12:18:14 +01:00
char first_opcode[6] = {0};
char second_opcode[6] = {0};
unsigned int i;
1999-05-03 09:29:11 +02:00
int current_opcode = -1;
int char_ptr = 0;
for (i = 0; i < strlen (token); i++)
{
char ch = *(token + i);
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (ch == '_' && current_opcode == -1)
{
current_opcode = 0;
continue;
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (ch == '_' && current_opcode == 0)
{
current_opcode = 1;
char_ptr = 0;
continue;
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
switch (current_opcode)
{
case 0:
first_opcode[char_ptr++] = ch;
break;
case 1:
second_opcode[char_ptr++] = ch;
break;
}
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
debug ("first_opcode = %s\n", first_opcode);
debug ("second_opcode = %s\n", second_opcode);
sprintf (token, "q_%s_%s", second_opcode, first_opcode);
p_opcode = (partemplate *) hash_find (parop_hash, token);
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (p_opcode)
{
debug ("Found instruction %s\n", p_opcode->name);
p_insn.tm = p_opcode;
p_insn.swap_operands = 1;
}
else
return 0;
}
*current_posn = save_char;
}
2005-03-23 12:18:14 +01:00
{
/* Find operands. */
1999-05-03 09:29:11 +02:00
int paren_not_balanced;
int expecting_operand = 0;
int found_separator = 0;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
do
{
2005-03-23 12:18:14 +01:00
/* Skip optional white space before operand. */
while (!is_operand_char (*current_posn)
&& *current_posn != END_OF_INSN)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (!is_space_char (*current_posn)
&& *current_posn != PARALLEL_SEPARATOR)
1999-05-03 09:29:11 +02:00
{
as_bad (_("Invalid character %s before %s operand"),
1999-05-03 09:29:11 +02:00
output_invalid (*current_posn),
ordinal_names[insn.operands]);
return 1;
}
if (*current_posn == PARALLEL_SEPARATOR)
found_separator = 1;
current_posn++;
}
2005-03-23 12:18:14 +01:00
token_start = current_posn;
1999-05-03 09:29:11 +02:00
paren_not_balanced = 0;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
while (paren_not_balanced || *current_posn != ',')
{
if (*current_posn == END_OF_INSN)
{
if (paren_not_balanced)
{
as_bad (_("Unbalanced parenthesis in %s operand."),
1999-05-03 09:29:11 +02:00
ordinal_names[insn.operands]);
return 1;
}
else
2005-03-23 12:18:14 +01:00
break;
1999-05-03 09:29:11 +02:00
}
else if (*current_posn == PARALLEL_SEPARATOR)
{
while (is_space_char (*(current_posn - 1)))
current_posn--;
break;
}
2005-03-23 12:18:14 +01:00
else if (!is_operand_char (*current_posn)
&& !is_space_char (*current_posn))
1999-05-03 09:29:11 +02:00
{
as_bad (_("Invalid character %s in %s operand"),
1999-05-03 09:29:11 +02:00
output_invalid (*current_posn),
ordinal_names[insn.operands]);
return 1;
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (*current_posn == '(')
++paren_not_balanced;
if (*current_posn == ')')
--paren_not_balanced;
current_posn++;
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (current_posn != token_start)
2005-03-23 12:18:14 +01:00
{
/* Yes, we've read in another operand. */
1999-05-03 09:29:11 +02:00
p_insn.operands[found_separator]++;
if (p_insn.operands[found_separator] > MAX_OPERANDS)
{
as_bad (_("Spurious operands; (%d operands/instruction max)"),
1999-05-03 09:29:11 +02:00
MAX_OPERANDS);
return 1;
}
2005-03-23 12:18:14 +01:00
/* Now parse operand adding info to 'insn' as we go along. */
1999-05-03 09:29:11 +02:00
save_char = *current_posn;
*current_posn = '\0';
p_insn.operand_type[found_separator][p_insn.operands[found_separator] - 1] =
tic30_operand (token_start);
*current_posn = save_char;
if (!p_insn.operand_type[found_separator][p_insn.operands[found_separator] - 1])
return 1;
}
else
{
if (expecting_operand)
{
as_bad (_("Expecting operand after ','; got nothing"));
1999-05-03 09:29:11 +02:00
return 1;
}
if (*current_posn == ',')
{
as_bad (_("Expecting operand before ','; got nothing"));
1999-05-03 09:29:11 +02:00
return 1;
}
}
2005-03-23 12:18:14 +01:00
/* Now *current_posn must be either ',' or END_OF_INSN. */
1999-05-03 09:29:11 +02:00
if (*current_posn == ',')
{
if (*++current_posn == END_OF_INSN)
2005-03-23 12:18:14 +01:00
{
/* Just skip it, if it's \n complain. */
as_bad (_("Expecting operand after ','; got nothing"));
1999-05-03 09:29:11 +02:00
return 1;
}
expecting_operand = 1;
}
}
2005-03-23 12:18:14 +01:00
while (*current_posn != END_OF_INSN);
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (p_insn.swap_operands)
{
int temp_num, i;
operand *temp_op;
temp_num = p_insn.operands[0];
p_insn.operands[0] = p_insn.operands[1];
p_insn.operands[1] = temp_num;
for (i = 0; i < MAX_OPERANDS; i++)
{
temp_op = p_insn.operand_type[0][i];
p_insn.operand_type[0][i] = p_insn.operand_type[1][i];
p_insn.operand_type[1][i] = temp_op;
}
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (p_insn.operands[0] != p_insn.tm->operands_1)
{
as_bad (_("incorrect number of operands given in the first instruction"));
1999-05-03 09:29:11 +02:00
return 1;
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (p_insn.operands[1] != p_insn.tm->operands_2)
{
as_bad (_("incorrect number of operands given in the second instruction"));
1999-05-03 09:29:11 +02:00
return 1;
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
debug ("Number of operands in first insn: %d\n", p_insn.operands[0]);
debug ("Number of operands in second insn: %d\n", p_insn.operands[1]);
2005-03-23 12:18:14 +01:00
{
/* Now check if operands are correct. */
1999-05-03 09:29:11 +02:00
int count;
int num_rn = 0;
int num_ind = 0;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
for (count = 0; count < 2; count++)
{
unsigned int i;
1999-05-03 09:29:11 +02:00
for (i = 0; i < p_insn.operands[count]; i++)
{
if ((p_insn.operand_type[count][i]->op_type &
p_insn.tm->operand_types[count][i]) == 0)
{
as_bad (_("%s instruction, operand %d doesn't match"),
2005-03-23 12:18:14 +01:00
ordinal_names[count], i + 1);
1999-05-03 09:29:11 +02:00
return 1;
}
2005-03-23 12:18:14 +01:00
/* Get number of R register and indirect reference contained
within the first two operands of each instruction. This is
required for the multiply parallel instructions which require
two R registers and two indirect references, but not in any
particular place. */
1999-05-03 09:29:11 +02:00
if ((p_insn.operand_type[count][i]->op_type & Rn) && i < 2)
num_rn++;
2005-03-23 12:18:14 +01:00
else if ((p_insn.operand_type[count][i]->op_type & Indirect)
&& i < 2)
1999-05-03 09:29:11 +02:00
num_ind++;
}
}
2005-03-23 12:18:14 +01:00
if ((p_insn.tm->operand_types[0][0] & (Indirect | Rn))
== (Indirect | Rn))
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Check for the multiply instructions. */
1999-05-03 09:29:11 +02:00
if (num_rn != 2)
{
as_bad (_("incorrect format for multiply parallel instruction"));
1999-05-03 09:29:11 +02:00
return 1;
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
if (num_ind != 2)
2005-03-23 12:18:14 +01:00
{
/* Shouldn't get here. */
as_bad (_("incorrect format for multiply parallel instruction"));
1999-05-03 09:29:11 +02:00
return 1;
}
2005-03-23 12:18:14 +01:00
if ((p_insn.operand_type[0][2]->reg.opcode != 0x00)
&& (p_insn.operand_type[0][2]->reg.opcode != 0x01))
1999-05-03 09:29:11 +02:00
{
as_bad (_("destination for multiply can only be R0 or R1"));
1999-05-03 09:29:11 +02:00
return 1;
}
2005-03-23 12:18:14 +01:00
if ((p_insn.operand_type[1][2]->reg.opcode != 0x02)
&& (p_insn.operand_type[1][2]->reg.opcode != 0x03))
1999-05-03 09:29:11 +02:00
{
as_bad (_("destination for add/subtract can only be R2 or R3"));
1999-05-03 09:29:11 +02:00
return 1;
}
2005-03-23 12:18:14 +01:00
/* Now determine the P field for the instruction. */
1999-05-03 09:29:11 +02:00
if (p_insn.operand_type[0][0]->op_type & Indirect)
{
if (p_insn.operand_type[0][1]->op_type & Indirect)
2005-03-23 12:18:14 +01:00
p_insn.p_field = 0x00000000; /* Ind * Ind, Rn +/- Rn. */
1999-05-03 09:29:11 +02:00
else if (p_insn.operand_type[1][0]->op_type & Indirect)
2005-03-23 12:18:14 +01:00
p_insn.p_field = 0x01000000; /* Ind * Rn, Ind +/- Rn. */
1999-05-03 09:29:11 +02:00
else
2005-03-23 12:18:14 +01:00
p_insn.p_field = 0x03000000; /* Ind * Rn, Rn +/- Ind. */
1999-05-03 09:29:11 +02:00
}
else
{
if (p_insn.operand_type[0][1]->op_type & Rn)
2005-03-23 12:18:14 +01:00
p_insn.p_field = 0x02000000; /* Rn * Rn, Ind +/- Ind. */
1999-05-03 09:29:11 +02:00
else if (p_insn.operand_type[1][0]->op_type & Indirect)
{
operand *temp;
2005-03-23 12:18:14 +01:00
p_insn.p_field = 0x01000000; /* Rn * Ind, Ind +/- Rn. */
/* Need to swap the two multiply operands around so that
everything is in its place for the opcode makeup.
ie so Ind * Rn, Ind +/- Rn. */
1999-05-03 09:29:11 +02:00
temp = p_insn.operand_type[0][0];
p_insn.operand_type[0][0] = p_insn.operand_type[0][1];
p_insn.operand_type[0][1] = temp;
}
else
{
operand *temp;
2005-03-23 12:18:14 +01:00
p_insn.p_field = 0x03000000; /* Rn * Ind, Rn +/- Ind. */
1999-05-03 09:29:11 +02:00
temp = p_insn.operand_type[0][0];
p_insn.operand_type[0][0] = p_insn.operand_type[0][1];
p_insn.operand_type[0][1] = temp;
}
}
}
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
debug ("P field: %08X\n", p_insn.p_field);
2005-03-23 12:18:14 +01:00
/* Finalise opcode. This is easier for parallel instructions as they have
to be fully resolved, there are no memory addresses allowed, except
through indirect addressing, so there are no labels to resolve. */
p_insn.opcode = p_insn.tm->base_opcode;
switch (p_insn.tm->oporder)
{
case OO_4op1:
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.ARnum);
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.mod << 3);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.ARnum << 8);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.mod << 11);
p_insn.opcode |= (p_insn.operand_type[1][0]->reg.opcode << 16);
p_insn.opcode |= (p_insn.operand_type[0][1]->reg.opcode << 22);
break;
case OO_4op2:
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.ARnum);
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.mod << 3);
p_insn.opcode |= (p_insn.operand_type[1][0]->indirect.ARnum << 8);
p_insn.opcode |= (p_insn.operand_type[1][0]->indirect.mod << 11);
p_insn.opcode |= (p_insn.operand_type[1][1]->reg.opcode << 19);
p_insn.opcode |= (p_insn.operand_type[0][1]->reg.opcode << 22);
if (p_insn.operand_type[1][1]->reg.opcode == p_insn.operand_type[0][1]->reg.opcode)
as_warn (_("loading the same register in parallel operation"));
2005-03-23 12:18:14 +01:00
break;
case OO_4op3:
p_insn.opcode |= (p_insn.operand_type[0][1]->indirect.ARnum);
p_insn.opcode |= (p_insn.operand_type[0][1]->indirect.mod << 3);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.ARnum << 8);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.mod << 11);
p_insn.opcode |= (p_insn.operand_type[1][0]->reg.opcode << 16);
p_insn.opcode |= (p_insn.operand_type[0][0]->reg.opcode << 22);
break;
case OO_5op1:
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.ARnum);
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.mod << 3);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.ARnum << 8);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.mod << 11);
p_insn.opcode |= (p_insn.operand_type[1][0]->reg.opcode << 16);
p_insn.opcode |= (p_insn.operand_type[0][1]->reg.opcode << 19);
p_insn.opcode |= (p_insn.operand_type[0][2]->reg.opcode << 22);
break;
case OO_5op2:
p_insn.opcode |= (p_insn.operand_type[0][1]->indirect.ARnum);
p_insn.opcode |= (p_insn.operand_type[0][1]->indirect.mod << 3);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.ARnum << 8);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.mod << 11);
p_insn.opcode |= (p_insn.operand_type[1][0]->reg.opcode << 16);
p_insn.opcode |= (p_insn.operand_type[0][0]->reg.opcode << 19);
p_insn.opcode |= (p_insn.operand_type[0][2]->reg.opcode << 22);
break;
case OO_PField:
p_insn.opcode |= p_insn.p_field;
if (p_insn.operand_type[0][2]->reg.opcode == 0x01)
p_insn.opcode |= 0x00800000;
if (p_insn.operand_type[1][2]->reg.opcode == 0x03)
p_insn.opcode |= 0x00400000;
switch (p_insn.p_field)
{
case 0x00000000:
p_insn.opcode |= (p_insn.operand_type[0][1]->indirect.ARnum);
p_insn.opcode |= (p_insn.operand_type[0][1]->indirect.mod << 3);
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.ARnum << 8);
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.mod << 11);
p_insn.opcode |= (p_insn.operand_type[1][1]->reg.opcode << 16);
p_insn.opcode |= (p_insn.operand_type[1][0]->reg.opcode << 19);
break;
case 0x01000000:
p_insn.opcode |= (p_insn.operand_type[1][0]->indirect.ARnum);
p_insn.opcode |= (p_insn.operand_type[1][0]->indirect.mod << 3);
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.ARnum << 8);
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.mod << 11);
p_insn.opcode |= (p_insn.operand_type[1][1]->reg.opcode << 16);
p_insn.opcode |= (p_insn.operand_type[0][1]->reg.opcode << 19);
break;
case 0x02000000:
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.ARnum);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.mod << 3);
p_insn.opcode |= (p_insn.operand_type[1][0]->indirect.ARnum << 8);
p_insn.opcode |= (p_insn.operand_type[1][0]->indirect.mod << 11);
p_insn.opcode |= (p_insn.operand_type[0][1]->reg.opcode << 16);
p_insn.opcode |= (p_insn.operand_type[0][0]->reg.opcode << 19);
break;
case 0x03000000:
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.ARnum);
p_insn.opcode |= (p_insn.operand_type[1][1]->indirect.mod << 3);
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.ARnum << 8);
p_insn.opcode |= (p_insn.operand_type[0][0]->indirect.mod << 11);
p_insn.opcode |= (p_insn.operand_type[1][0]->reg.opcode << 16);
p_insn.opcode |= (p_insn.operand_type[0][1]->reg.opcode << 19);
break;
}
break;
}
1999-05-03 09:29:11 +02:00
{
char *p;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
p = frag_more (INSN_SIZE);
md_number_to_chars (p, (valueT) p_insn.opcode, INSN_SIZE);
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
{
unsigned int i, j;
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
for (i = 0; i < 2; i++)
for (j = 0; j < p_insn.operands[i]; j++)
free (p_insn.operand_type[i][j]);
}
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
debug ("Final opcode: %08X\n", p_insn.opcode);
debug ("\n");
2005-03-23 12:18:14 +01:00
1999-05-03 09:29:11 +02:00
return 1;
}
2005-03-23 12:18:14 +01:00
/* In order to get gas to ignore any | chars at the start of a line,
this function returns true if a | is found in a line. */
int
tic30_unrecognized_line (int c)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
debug ("In tc_unrecognized_line\n");
return (c == PARALLEL_SEPARATOR);
}
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
int
md_estimate_size_before_relax (fragS *fragP ATTRIBUTE_UNUSED,
segT segment ATTRIBUTE_UNUSED)
{
debug ("In md_estimate_size_before_relax()\n");
return 0;
}
void
md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
segT sec ATTRIBUTE_UNUSED,
Don't use register keyword * expr.c (expr_symbol_where): Don't use register keyword. * app.c (app_push, app_pop, do_scrub_chars): Likewise. * ecoff.c (add_string, add_ecoff_symbol, add_aux_sym_symint, add_aux_sym_rndx, add_aux_sym_tir, add_procedure, add_file, ecoff_build_lineno, ecoff_setup_ext, allocate_cluster. allocate_scope, allocate_vlinks, allocate_shash, allocate_thash, allocate_tag, allocate_forward, allocate_thead, allocate_lineno_list): Likewise. * frags.c (frag_more, frag_var, frag_variant, frag_wane): Likewise. * input-file.c (input_file_push, input_file_pop): Likewise. * input-scrub.c (input_scrub_push, input_scrub_next_buffer): Likewise. * subsegs.c (subseg_change): Likewise. * symbols.c (colon, symbol_table_insert, symbol_find_or_make) (dollar_label_name, fb_label_name): Likewise. * write.c (relax_align): Likewise. * config/tc-alpha.c (s_alpha_pdesc): Likewise. * config/tc-bfin.c (bfin_s_bss): Likewise. * config/tc-i860.c (md_estimate_size_before_relax): Likewise. * config/tc-m68hc11.c (md_convert_frag): Likewise. * config/tc-m68k.c (m68k_ip, crack_operand): Likewise. (md_convert_frag_1, s_even): Likewise. * config/tc-mips.c (mips_clear_insn_labels): Likewise. * config/tc-mn10200.c (md_begin): Likewise. * config/tc-s390.c (s390_setup_opcodes, md_begin): Likewise. * config/tc-sh.c (sh_elf_cons): Likewise. * config/tc-tic4x.c (tic4x_cons, tic4x_stringer): Likewise. * config/m68k-parse.y (m68k_reg_parse): Likewise. Convert from K&R. (yylex, m68k_ip_op, yyerror): Convert from K&R.
2014-11-04 06:01:09 +01:00
fragS *fragP ATTRIBUTE_UNUSED)
2005-03-23 12:18:14 +01:00
{
debug ("In md_convert_frag()\n");
}
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,
2005-03-23 12:18:14 +01:00
valueT *valP,
segT seg ATTRIBUTE_UNUSED)
{
valueT value = *valP;
debug ("In md_apply_fix() with value = %ld\n", (long) value);
debug ("Values in fixP\n");
debug ("fx_size = %d\n", fixP->fx_size);
debug ("fx_pcrel = %d\n", fixP->fx_pcrel);
debug ("fx_where = %ld\n", fixP->fx_where);
2005-03-23 12:18:14 +01:00
debug ("fx_offset = %d\n", (int) fixP->fx_offset);
{
char *buf = fixP->fx_frag->fr_literal + fixP->fx_where;
value /= INSN_SIZE;
if (fixP->fx_size == 1)
/* Special fix for LDP instruction. */
value = (value & 0x00FF0000) >> 16;
debug ("new value = %ld\n", (long) value);
md_number_to_chars (buf, value, fixP->fx_size);
}
if (fixP->fx_addsy == NULL && fixP->fx_pcrel == 0)
fixP->fx_done = 1;
}
int
md_parse_option (int c ATTRIBUTE_UNUSED,
make md_parse_option () take a const char * This is mostly just adding const in many places, however there are a couple interesting things. We need to add casts in tc-s390.c and tc-cris.c because they have functions that assign to input_line_pointer an argument that sometimes comes from md_parse_option. Presumably this is safe because those targets never pass literals to md_parse_option (), but this code should probably be improved in the future. Also xtensa passes the argument to strtoll which is a rather odd function, it takes a const char * as argument and returns a pointer into that string as a char * through an out argument, but we can work around that by adding more variables. gas/ChangeLog: 2016-03-29 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> * config/tc-aarch64.c (struct aarch64_long_option_table): Ad const qualifier. * config/tc-alpha.c (md_parse_option): Likewise. * config/tc-arc.c (md_parse_option): Likewise. * config/tc-arm.c (struct arm_long_option_table): Likewise. (md_parse_option): Likewise. * config/tc-avr.c (md_parse_option): Likewise. * config/tc-bfin.c (md_parse_option): Likewise. * config/tc-cr16.c (md_parse_option): Likewise. * config/tc-cris.c (s_cris_arch): Likewise. (md_parse_option): Likewise. * config/tc-crx.c (md_parse_option): Likewise. * config/tc-d10v.c (md_parse_option): Likewise. * config/tc-d30v.c (md_parse_option): Likewise. * config/tc-dlx.c (md_parse_option): Likewise. * config/tc-epiphany.c (md_parse_option): Likewise. * config/tc-fr30.c (md_parse_option): Likewise. * config/tc-frv.c (md_parse_option): Likewise. * config/tc-ft32.c (md_parse_option): Likewise. * config/tc-h8300.c (md_parse_option): Likewise. * config/tc-hppa.c (md_parse_option): Likewise. * config/tc-i370.c (md_parse_option): Likewise. * config/tc-i386.c (md_parse_option): Likewise. * config/tc-i860.c (md_parse_option): Likewise. * config/tc-i960.c (md_parse_option): Likewise. * config/tc-ia64.c (md_parse_option): Likewise. * config/tc-ip2k.c (md_parse_option): Likewise. * config/tc-iq2000.c (md_parse_option): Likewise. * config/tc-lm32.c (md_parse_option): Likewise. * config/tc-m32c.c (md_parse_option): Likewise. * config/tc-m32r.c (md_parse_option): Likewise. * config/tc-m68hc11.c (md_parse_option): Likewise. * config/tc-m68k.c (md_parse_option): Likewise. * config/tc-mcore.c (md_parse_option): Likewise. * config/tc-mep.c (md_parse_option): Likewise. * config/tc-metag.c (struct metag_long_option): Likewise. (md_parse_option): Likewise. * config/tc-microblaze.c (md_parse_option): Likewise. * config/tc-microblaze.h (md_parse_option): Remove prototype. * config/tc-mips.c (md_parse_option): Adjust. * config/tc-mmix.c (md_parse_option): Likewise. * config/tc-mn10200.c (md_parse_option): Likewise. * config/tc-mn10300.c (md_parse_option): Likewise. * config/tc-moxie.c (md_parse_option): Likewise. * config/tc-msp430.c (md_parse_option): Likewise. * config/tc-mt.c (md_parse_option): Likewise. * config/tc-nds32.c (md_parse_option): Likewise. * config/tc-nds32.h (nds32_parse_option): Likewise. * config/tc-nios2.c (md_parse_option): Likewise. * config/tc-ns32k.c (md_parse_option): Likewise. * config/tc-or1k.c (md_parse_option): Likewise. * config/tc-pdp11.c (md_parse_option): Likewise. * config/tc-pj.c (md_parse_option): Likewise. * config/tc-ppc.c (md_parse_option): Likewise. * config/tc-rl78.c (md_parse_option): Likewise. * config/tc-rx.c (md_parse_option): Likewise. * config/tc-s390.c (s390_parse_cpu): Likewise. * config/tc-score.c (md_parse_option): Likewise. * config/tc-sh.c (md_parse_option): Likewise. * config/tc-sparc.c (md_parse_option): Likewise. * config/tc-spu.c (md_parse_option): Likewise. * config/tc-tic30.c (md_parse_option): Likewise. * config/tc-tic4x.c (md_parse_option): Likewise. * config/tc-tic54x.c (md_parse_option): Likewise. * config/tc-tic6x.c (md_parse_option): Likewise. * config/tc-tilegx.c (md_parse_option): Likewise. * config/tc-tilepro.c (md_parse_option): Likewise. * config/tc-v850.c (md_parse_option): Likewise. * config/tc-vax.c (md_parse_option): Likewise. * config/tc-visium.c (struct visium_long_option_table): Likewise. * config/tc-xc16x.c (md_parse_option): Likewise. * config/tc-xgate.c (md_parse_option): Likewise. * config/tc-xstormy16.c (md_parse_option): Likewise. * config/tc-xtensa.c (md_parse_option): Likewise. * config/tc-z80.c (md_parse_option): Likewise. * config/tc-z8k.c (md_parse_option): Likewise. * tc.h (md_parse_option): Likewise.
2016-02-27 15:35:32 +01:00
const char *arg ATTRIBUTE_UNUSED)
2005-03-23 12:18:14 +01:00
{
debug ("In md_parse_option()\n");
return 0;
}
void
md_show_usage (FILE *stream ATTRIBUTE_UNUSED)
{
debug ("In md_show_usage()\n");
}
symbolS *
md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
{
debug ("In md_undefined_symbol()\n");
return (symbolS *) 0;
}
valueT
md_section_align (segT segment, valueT size)
{
debug ("In md_section_align() segment = %p and size = %lu\n",
segment, (unsigned long) size);
2005-03-23 12:18:14 +01:00
size = (size + 3) / 4;
size *= 4;
debug ("New size value = %lu\n", (unsigned long) size);
2005-03-23 12:18:14 +01:00
return size;
}
long
md_pcrel_from (fixS *fixP)
{
int offset;
debug ("In md_pcrel_from()\n");
debug ("fx_where = %ld\n", fixP->fx_where);
2005-03-23 12:18:14 +01:00
debug ("fx_size = %d\n", fixP->fx_size);
/* Find the opcode that represents the current instruction in the
fr_literal storage area, and check bit 21. Bit 21 contains whether the
current instruction is a delayed one or not, and then set the offset
value appropriately. */
if (fixP->fx_frag->fr_literal[fixP->fx_where - fixP->fx_size + 1] & 0x20)
offset = 3;
else
offset = 1;
debug ("offset = %d\n", offset);
/* PC Relative instructions have a format:
displacement = Label - (PC + offset)
This function returns PC + offset where:
fx_where - fx_size = PC
INSN_SIZE * offset = offset number of instructions. */
return fixP->fx_where - fixP->fx_size + (INSN_SIZE * offset);
}
Constify more * cgen.c (weak_operand_overflow_check): Return const char*. * messages.c (as_internal_value_out_of_range): Formatting. (as_warn_value_out_of_range): Consify prefix param. (as_bad_value_out_of_range): Likewise. * read.c (s_errwarn): Constify msg.. (s_float_space, float_cons): ..and err. * as.h (as_warn_value_out_of_range, as_bad_value_out_of_range, ieee_md_atof, vax_md_atof): Update prototypes. * tc.h (md_atof): Update prototype. * config/atof-ieee.c (ieee_md_atof): Return const char*. * config/atof-vax.c (vax_md_atof): Likewise. * config/obj-elf.c (obj_elf_parse_section_letters): Constify bad_msg. * config/tc-aarch64.c (md_atof): Return const char*. * config/tc-alpha.c (s_alpha_section_name): Likewise. (s_alpha_comm): Constify sec_name. (section_name): Constify. (s_alpha_section): Consify name.. (alpha_elf_section_letter): ..and ptr_msg param.. (md_atof): ..and return. * config/tc-alpha.h (alpha_elf_section_letter): Update prototype. * config/tc-arc.c (md_atof): Return const char*. * config/tc-arm.c (md_atof): Likewise. * config/tc-avr.c (md_atof): Likewise. * config/tc-bfin.c (md_atof): Likewise. * config/tc-cr16.c (md_atof): Likewise. * config/tc-cris.c (md_atof): Likewise. * config/tc-crx.c (md_atof): Likewise. * config/tc-d10v.c (md_atof): Likewise. * config/tc-d30v.c (md_atof): Likewise. * config/tc-dlx.c (md_atof): Likewise. * config/tc-epiphany.c (md_atof): Likewise. * config/tc-fr30.c (md_atof): Likewise. * config/tc-frv.c (md_atof): Likewise. * config/tc-ft32.c (md_atof): Likewise. * config/tc-h8300.c (md_atof): Likewise. * config/tc-hppa.c (struct default_subspace_dict): Constify name. (struct default_space_dict): Likewise. (create_new_space): Constify name param. (create_new_subspace): Likewise. (is_defined_space, is_defined_subspace): Likewise. (pa_parse_space_stmt): Constify space_name param. (md_atof): Return const char*. (pa_spaces_begin): Constify name. * config/tc-i370.c (md_atof): Return const char*. * config/tc-i386.c (md_atof): Likewise. (x86_64_section_letter): Constify ptr_msg param. * config/tc-i386.h (x86_64_section_letter): Update prototype. * config/tc-i860.c (struct i860_it): Constify error. (md_atof): Return const char*. * config/tc-i960.c (md_atof): Likewise. * config/tc-ia64.c (md_atof): Likewise. (ia64_elf_section_letter): Constify ptr_msg param. * config/tc-ia64.h (ia64_elf_section_letter): Update prototype. * config/tc-ip2k.c (md_atof): Return const char*. * config/tc-iq2000.c (md_atof): Likewise. * config/tc-lm32.c (md_atof): Likewise. * config/tc-m32c.c (md_atof): Likewise. * config/tc-m32r.c (md_atof): Likewise. * config/tc-m68hc11.c (md_atof): Likewise. * config/tc-m68k.c (md_atof): Likewise. * config/tc-mcore.c (md_atof): Likewise. * config/tc-mep.c (md_atof): Likewise. (mep_elf_section_letter): Constify ptr_msg param. * config/tc-mep.h (mep_elf_section_letter): Update prototype. * config/tc-metag.c (md_atof): Return const char*. * config/tc-microblaze.c (md_atof): Likewise. * config/tc-microblaze.h (md_atof): Delete prototype. * config/tc-mips.c (mips_parse_argument_token): Constify err. (md_atof): Return const char*. * config/tc-mmix.c (md_atof): Likewise. * config/tc-mn10200.c (md_atof): Likewise. * config/tc-mn10300.c (md_atof): Likewise. * config/tc-moxie.c (md_atof): Likewise. * config/tc-msp430.c (md_atof): Likewise. * config/tc-mt.c (md_atof): Likewise. * config/tc-nds32.c (md_atof): Likewise. * config/tc-nios2.c (md_atof): Likewise. (nios2_elf_section_letter): Constify ptr_msg param. * config/tc-nios2.h (nios2_elf_section_letter): Update prototype. * config/tc-ns32k.c (md_atof): Return const char*. * config/tc-or1k.c (md_atof): Likewise. * config/tc-pdp11.c (struct pdp11_code): Constify error. (md_atof): Return const char*. * config/tc-pj.c (md_atof): Likewise. * config/tc-ppc.c (md_atof): Likewise. * config/tc-rl78.c (md_atof): Likewise. * config/tc-rx.c (md_atof): Likewise. * config/tc-s390.c (md_atof): Likewise. * config/tc-score.c (s3_atof, md_atof): Likewise. * config/tc-sh.c (md_atof): Likewise. * config/tc-sparc.c (struct sparc_it): Constify error. (md_atof): Return const char*. * config/tc-spu.c (md_atof): Likewise. * config/tc-tic30.c (md_atof): Likewise. * config/tc-tic4x.c (md_atof): Likewise. * config/tc-tic54x.c (md_atof): Likewise. * config/tc-tic6x.c (md_atof): Likewise. * config/tc-tilegx.c (md_atof): Likewise. * config/tc-tilepro.c (md_atof): Likewise. * config/tc-v850.c (parse_register_list, md_atof): Likewise. * config/tc-vax.c (md_atof): Likewise. * config/tc-visium.c (md_atof): Likewise. * config/tc-xc16x.c (md_atof): Likewise. * config/tc-xgate.c (md_atof): Likewise. * config/tc-xstormy16.c (md_atof): Likewise. * config/tc-xtensa.c (md_atof): Likewise. * config/tc-z80.c (md_atof): Likewise. * config/tc-z8k.c (md_atof): Likewise.
2016-04-01 14:07:50 +02:00
const char *
2005-03-23 12:18:14 +01:00
md_atof (int what_statement_type,
char *literalP,
int *sizeP)
{
int prec;
char *token;
char keepval;
unsigned long value;
float float_value;
debug ("In md_atof()\n");
debug ("precision = %c\n", what_statement_type);
debug ("literal = %s\n", literalP);
debug ("line = ");
token = input_line_pointer;
while (!is_end_of_line[(unsigned char) *input_line_pointer]
&& (*input_line_pointer != ','))
{
debug ("%c", *input_line_pointer);
input_line_pointer++;
}
keepval = *input_line_pointer;
*input_line_pointer = '\0';
debug ("\n");
float_value = (float) atof (token);
*input_line_pointer = keepval;
debug ("float_value = %f\n", float_value);
switch (what_statement_type)
{
case 'f':
case 'F':
case 's':
case 'S':
prec = 2;
break;
case 'd':
case 'D':
case 'r':
case 'R':
prec = 4;
break;
default:
*sizeP = 0;
return _("Unrecognized or unsupported floating point constant");
2005-03-23 12:18:14 +01:00
}
if (float_value == 0.0)
value = (prec == 2) ? 0x00008000L : 0x80000000L;
else
{
unsigned long exp, sign, mant, tmsfloat;
union
{
float f;
long l;
}
converter;
converter.f = float_value;
tmsfloat = converter.l;
sign = tmsfloat & 0x80000000;
mant = tmsfloat & 0x007FFFFF;
exp = tmsfloat & 0x7F800000;
exp <<= 1;
if (exp == 0xFF000000)
{
if (mant == 0)
value = 0x7F7FFFFF;
else if (sign == 0)
value = 0x7F7FFFFF;
else
value = 0x7F800000;
}
else
{
exp -= 0x7F000000;
if (sign)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
mant = mant & 0x007FFFFF;
mant = -mant;
mant = mant & 0x00FFFFFF;
if (mant == 0)
{
mant |= 0x00800000;
exp = (long) exp - 0x01000000;
}
}
tmsfloat = exp | mant;
value = tmsfloat;
}
if (prec == 2)
{
long expon, mantis;
2005-03-23 12:18:14 +01:00
if (tmsfloat == 0x80000000)
value = 0x8000;
else
{
value = 0;
expon = (tmsfloat & 0xFF000000);
expon >>= 24;
mantis = tmsfloat & 0x007FFFFF;
2005-03-23 12:18:14 +01:00
if (tmsfloat & 0x00800000)
{
mantis |= 0xFF000000;
mantis += 0x00000800;
mantis >>= 12;
mantis |= 0x00000800;
mantis &= 0x0FFF;
if (expon > 7)
2005-03-23 12:18:14 +01:00
value = 0x7800;
}
else
{
mantis |= 0x00800000;
mantis += 0x00000800;
expon += (mantis >> 24);
mantis >>= 12;
mantis &= 0x07FF;
if (expon > 7)
2005-03-23 12:18:14 +01:00
value = 0x77FF;
}
if (expon < -8)
2005-03-23 12:18:14 +01:00
value = 0x8000;
if (value == 0)
{
mantis = (expon << 12) | mantis;
value = mantis & 0xFFFF;
2005-03-23 12:18:14 +01:00
}
}
}
}
md_number_to_chars (literalP, value, prec);
*sizeP = prec;
return NULL;
2005-03-23 12:18:14 +01:00
}
void
md_number_to_chars (char *buf, valueT val, int n)
{
debug ("In md_number_to_chars()\n");
number_to_chars_bigendian (buf, val, n);
}
#define F(SZ,PCREL) (((SZ) << 1) + (PCREL))
#define MAP(SZ,PCREL,TYPE) case F(SZ,PCREL): code = (TYPE); break
arelent *
tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixP)
{
arelent *rel;
bfd_reloc_code_real_type code = 0;
debug ("In tc_gen_reloc()\n");
debug ("fixP.size = %d\n", fixP->fx_size);
debug ("fixP.pcrel = %d\n", fixP->fx_pcrel);
debug ("addsy.name = %s\n", S_GET_NAME (fixP->fx_addsy));
switch (F (fixP->fx_size, fixP->fx_pcrel))
{
MAP (1, 0, BFD_RELOC_TIC30_LDP);
MAP (2, 0, BFD_RELOC_16);
MAP (3, 0, BFD_RELOC_24);
MAP (2, 1, BFD_RELOC_16_PCREL);
MAP (4, 0, BFD_RELOC_32);
default:
as_bad (_("Can not do %d byte %srelocation"), fixP->fx_size,
fixP->fx_pcrel ? _("pc-relative ") : "");
2005-03-23 12:18:14 +01:00
}
#undef MAP
#undef F
use XNEW and related macros more gas/ChangeLog: 2016-04-03 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> * app.c (app_push): use XNEW macro. * as.c: Likewise. * config/obj-elf.c (obj_elf_change_section): Likewise. (elf_copy_symbol_attributes): Likewise. (obj_elf_size): Likewise. (build_group_lists): Likewise. * config/tc-aarch64.c (add_operand_error_record): Likewise. (md_assemble): Likewise. (tc_gen_reloc): Likewise. (get_upper_str): Likewise. (aarch64_parse_features): Likewise. * config/tc-arm.c (insert_reg_alias): Likewise. (insert_neon_reg_alias): Likewise. (find_or_make_literal_pool): Likewise. (s_arm_elf_cons): Likewise. (add_unwind_opcode): Likewise. (arm_parse_extension): Likewise. * config/tc-avr.c (create_record_for_frag): Likewise. * config/tc-crx.c: Likewise. * config/tc-d30v.c: Likewise. * config/tc-dlx.c (s_proc): Likewise. * config/tc-ft32.c: Likewise. * config/tc-h8300.c: Likewise. * config/tc-hppa.c (pa_proc): Likewise. (create_new_space): Likewise. (create_new_subspace): Likewise. * config/tc-i860.c: Likewise. * config/tc-i960.c: Likewise. * config/tc-ia64.c: Likewise. * config/tc-iq2000.c (iq2000_add_macro): Likewise. (iq2000_record_hi16): Likewise. * config/tc-m32c.c (m32c_indirect_operand): Likewise. * config/tc-m32r.c (debug_sym): Likewise. (m32r_record_hi16): Likewise. * config/tc-m68k.c (m68k_ip): Likewise. (md_begin): Likewise. * config/tc-mcore.c: Likewise. * config/tc-microblaze.c (check_got): Likewise. * config/tc-mips.c (append_insn): Likewise. (s_mipsset): Likewise. (mips_record_label): Likewise. (s_mips_end): Likewise. * config/tc-mmix.c (mmix_frob_file): Likewise. * config/tc-mn10200.c: Likewise. * config/tc-mn10300.c: Likewise. * config/tc-moxie.c: Likewise. * config/tc-msp430.c: Likewise. * config/tc-nds32.c (nds32_elf_save_pseudo_pattern): Likewise. * config/tc-ns32k.c: Likewise. * config/tc-or1k.c: Likewise. * config/tc-pdp11.c: Likewise. * config/tc-pj.c (fake_opcode): Likewise. * config/tc-ppc.c (ppc_apuinfo_section_add): Likewise. (ppc_macro): Likewise. (ppc_dwsect): Likewise. (ppc_machine): Likewise. * config/tc-rl78.c (rl78_frag_init): Likewise. * config/tc-rx.c (rx_frag_init): Likewise. * config/tc-s390.c (s390_lit_suffix): Likewise. (s390_machine): Likewise. (s390_machinemode): Likewise. * config/tc-score.c (s3_insert_reg): Likewise. (s3_gen_reloc): Likewise. * config/tc-score7.c (s7_insert_reg): Likewise. (s7_gen_reloc): Likewise. * config/tc-tic30.c (tic30_operand): Likewise. * config/tc-tic4x.c (tic4x_inst_make): Likewise. * config/tc-tic54x.c (stag_add_field): Likewise. (tic54x_struct): Likewise. (tic54x_space): Likewise. (tic54x_field): Likewise. (tic54x_mlib): Likewise. (subsym_substitute): Likewise. * config/tc-tic6x.c (tic6x_frob_label): Likewise. * config/tc-vax.c: Likewise. * config/tc-xc16x.c: Likewise. * config/tc-xtensa.c (xtensa_add_insn_label): Likewise. (directive_push): Likewise. (xtensa_begin_directive): Likewise. (tokenize_arguments): Likewise. (xtensa_add_literal_sym): Likewise. (new_resource_table): Likewise. (resize_resource_table): Likewise. (emit_single_op): Likewise. (xtensa_create_trampoline_frag): Likewise. (xtensa_maybe_create_literal_pool_frag): Likewise. (xtensa_add_config_info): Likewise. (xtensa_realloc_fixup_cache): Likewise. (add_subseg_info): Likewise. (cache_literal_section): Likewise. (add_xt_block_frags): Likewise. (add_xt_prop_frags): Likewise. (init_op_placement_info_table): Likewise. (build_section_rename): Likewise. * config/tc-z80.c: Likewise. * config/tc-z8k.c: Likewise. * depend.c (register_dependency): Likewise. * dwarf2dbg.c (get_line_subseg): Likewise. (dwarf2_gen_line_info_1): Likewise. (get_filenum): Likewise. * ecoff.c (allocate_scope): Likewise. (allocate_vlinks): Likewise. (allocate_shash): Likewise. (allocate_thash): Likewise. (allocate_tag): Likewise. (allocate_forward): Likewise. (allocate_thead): Likewise. (allocate_lineno_list): Likewise. * expr.c (make_expr_symbol): Likewise. * hash.c (hash_new_sized): Likewise. * input-file.c (input_file_push): Likewise. * listing.c (file_info): Likewise. (listing_newline): Likewise. * macro.c (new_formal): Likewise. (define_macro): Likewise. * remap.c (add_debug_prefix_map): Likewise. * symbols.c (symbol_find_noref): Likewise. (define_dollar_label): Likewise. (fb_label_instance_inc): Likewise. (symbol_relc_make_value): Likewise.
2016-04-01 15:26:30 +02:00
rel = XNEW (arelent);
gas_assert (rel != 0);
use XNEW and related macros more gas/ChangeLog: 2016-04-03 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> * app.c (app_push): use XNEW macro. * as.c: Likewise. * config/obj-elf.c (obj_elf_change_section): Likewise. (elf_copy_symbol_attributes): Likewise. (obj_elf_size): Likewise. (build_group_lists): Likewise. * config/tc-aarch64.c (add_operand_error_record): Likewise. (md_assemble): Likewise. (tc_gen_reloc): Likewise. (get_upper_str): Likewise. (aarch64_parse_features): Likewise. * config/tc-arm.c (insert_reg_alias): Likewise. (insert_neon_reg_alias): Likewise. (find_or_make_literal_pool): Likewise. (s_arm_elf_cons): Likewise. (add_unwind_opcode): Likewise. (arm_parse_extension): Likewise. * config/tc-avr.c (create_record_for_frag): Likewise. * config/tc-crx.c: Likewise. * config/tc-d30v.c: Likewise. * config/tc-dlx.c (s_proc): Likewise. * config/tc-ft32.c: Likewise. * config/tc-h8300.c: Likewise. * config/tc-hppa.c (pa_proc): Likewise. (create_new_space): Likewise. (create_new_subspace): Likewise. * config/tc-i860.c: Likewise. * config/tc-i960.c: Likewise. * config/tc-ia64.c: Likewise. * config/tc-iq2000.c (iq2000_add_macro): Likewise. (iq2000_record_hi16): Likewise. * config/tc-m32c.c (m32c_indirect_operand): Likewise. * config/tc-m32r.c (debug_sym): Likewise. (m32r_record_hi16): Likewise. * config/tc-m68k.c (m68k_ip): Likewise. (md_begin): Likewise. * config/tc-mcore.c: Likewise. * config/tc-microblaze.c (check_got): Likewise. * config/tc-mips.c (append_insn): Likewise. (s_mipsset): Likewise. (mips_record_label): Likewise. (s_mips_end): Likewise. * config/tc-mmix.c (mmix_frob_file): Likewise. * config/tc-mn10200.c: Likewise. * config/tc-mn10300.c: Likewise. * config/tc-moxie.c: Likewise. * config/tc-msp430.c: Likewise. * config/tc-nds32.c (nds32_elf_save_pseudo_pattern): Likewise. * config/tc-ns32k.c: Likewise. * config/tc-or1k.c: Likewise. * config/tc-pdp11.c: Likewise. * config/tc-pj.c (fake_opcode): Likewise. * config/tc-ppc.c (ppc_apuinfo_section_add): Likewise. (ppc_macro): Likewise. (ppc_dwsect): Likewise. (ppc_machine): Likewise. * config/tc-rl78.c (rl78_frag_init): Likewise. * config/tc-rx.c (rx_frag_init): Likewise. * config/tc-s390.c (s390_lit_suffix): Likewise. (s390_machine): Likewise. (s390_machinemode): Likewise. * config/tc-score.c (s3_insert_reg): Likewise. (s3_gen_reloc): Likewise. * config/tc-score7.c (s7_insert_reg): Likewise. (s7_gen_reloc): Likewise. * config/tc-tic30.c (tic30_operand): Likewise. * config/tc-tic4x.c (tic4x_inst_make): Likewise. * config/tc-tic54x.c (stag_add_field): Likewise. (tic54x_struct): Likewise. (tic54x_space): Likewise. (tic54x_field): Likewise. (tic54x_mlib): Likewise. (subsym_substitute): Likewise. * config/tc-tic6x.c (tic6x_frob_label): Likewise. * config/tc-vax.c: Likewise. * config/tc-xc16x.c: Likewise. * config/tc-xtensa.c (xtensa_add_insn_label): Likewise. (directive_push): Likewise. (xtensa_begin_directive): Likewise. (tokenize_arguments): Likewise. (xtensa_add_literal_sym): Likewise. (new_resource_table): Likewise. (resize_resource_table): Likewise. (emit_single_op): Likewise. (xtensa_create_trampoline_frag): Likewise. (xtensa_maybe_create_literal_pool_frag): Likewise. (xtensa_add_config_info): Likewise. (xtensa_realloc_fixup_cache): Likewise. (add_subseg_info): Likewise. (cache_literal_section): Likewise. (add_xt_block_frags): Likewise. (add_xt_prop_frags): Likewise. (init_op_placement_info_table): Likewise. (build_section_rename): Likewise. * config/tc-z80.c: Likewise. * config/tc-z8k.c: Likewise. * depend.c (register_dependency): Likewise. * dwarf2dbg.c (get_line_subseg): Likewise. (dwarf2_gen_line_info_1): Likewise. (get_filenum): Likewise. * ecoff.c (allocate_scope): Likewise. (allocate_vlinks): Likewise. (allocate_shash): Likewise. (allocate_thash): Likewise. (allocate_tag): Likewise. (allocate_forward): Likewise. (allocate_thead): Likewise. (allocate_lineno_list): Likewise. * expr.c (make_expr_symbol): Likewise. * hash.c (hash_new_sized): Likewise. * input-file.c (input_file_push): Likewise. * listing.c (file_info): Likewise. (listing_newline): Likewise. * macro.c (new_formal): Likewise. (define_macro): Likewise. * remap.c (add_debug_prefix_map): Likewise. * symbols.c (symbol_find_noref): Likewise. (define_dollar_label): Likewise. (fb_label_instance_inc): Likewise. (symbol_relc_make_value): Likewise.
2016-04-01 15:26:30 +02:00
rel->sym_ptr_ptr = XNEW (asymbol *);
2005-03-23 12:18:14 +01:00
*rel->sym_ptr_ptr = symbol_get_bfdsym (fixP->fx_addsy);
rel->address = fixP->fx_frag->fr_address + fixP->fx_where;
rel->addend = 0;
rel->howto = bfd_reloc_type_lookup (stdoutput, code);
if (!rel->howto)
{
const char *name;
name = S_GET_NAME (fixP->fx_addsy);
if (name == NULL)
name = "<unknown>";
as_fatal ("Cannot generate relocation type for symbol %s, code %s",
name, bfd_get_reloc_code_name (code));
}
return rel;
}
void
md_operand (expressionS *expressionP ATTRIBUTE_UNUSED)
{
debug ("In md_operand()\n");
}
void
md_assemble (char *line)
{
insn_template *op;
2005-03-23 12:18:14 +01:00
char *current_posn;
char *token_start;
char save_char;
unsigned int count;
debug ("In md_assemble() with argument %s\n", line);
memset (&insn, '\0', sizeof (insn));
if (found_parallel_insn)
{
debug ("Line is second part of parallel instruction\n\n");
found_parallel_insn = 0;
return;
}
if ((current_posn =
tic30_find_parallel_insn (line, input_line_pointer + 1)) == NULL)
current_posn = line;
else
found_parallel_insn = 1;
while (is_space_char (*current_posn))
current_posn++;
token_start = current_posn;
if (!is_opcode_char (*current_posn))
{
as_bad (_("Invalid character %s in opcode"),
2005-03-23 12:18:14 +01:00
output_invalid (*current_posn));
return;
}
/* Check if instruction is a parallel instruction
by seeing if the first character is a q. */
if (*token_start == 'q')
{
if (tic30_parallel_insn (token_start))
{
if (found_parallel_insn)
free (token_start);
return;
}
}
while (is_opcode_char (*current_posn))
current_posn++;
{
/* Find instruction. */
save_char = *current_posn;
*current_posn = '\0';
op = (insn_template *) hash_find (op_hash, token_start);
if (op)
2005-03-23 12:18:14 +01:00
{
debug ("Found instruction %s\n", op->name);
insn.tm = op;
2005-03-23 12:18:14 +01:00
}
else
{
debug ("Didn't find insn\n");
as_bad (_("Unknown TMS320C30 instruction: %s"), token_start);
2005-03-23 12:18:14 +01:00
return;
}
*current_posn = save_char;
}
if (*current_posn != END_OF_INSN)
{
/* Find operands. */
int paren_not_balanced;
int expecting_operand = 0;
int this_operand;
do
{
/* Skip optional white space before operand. */
while (!is_operand_char (*current_posn)
&& *current_posn != END_OF_INSN)
{
if (!is_space_char (*current_posn))
{
as_bad (_("Invalid character %s before %s operand"),
2005-03-23 12:18:14 +01:00
output_invalid (*current_posn),
ordinal_names[insn.operands]);
return;
}
current_posn++;
}
token_start = current_posn;
paren_not_balanced = 0;
while (paren_not_balanced || *current_posn != ',')
{
if (*current_posn == END_OF_INSN)
{
if (paren_not_balanced)
{
as_bad (_("Unbalanced parenthesis in %s operand."),
2005-03-23 12:18:14 +01:00
ordinal_names[insn.operands]);
return;
}
else
break;
}
else if (!is_operand_char (*current_posn)
&& !is_space_char (*current_posn))
{
as_bad (_("Invalid character %s in %s operand"),
2005-03-23 12:18:14 +01:00
output_invalid (*current_posn),
ordinal_names[insn.operands]);
return;
}
if (*current_posn == '(')
++paren_not_balanced;
if (*current_posn == ')')
--paren_not_balanced;
current_posn++;
}
if (current_posn != token_start)
{
/* Yes, we've read in another operand. */
this_operand = insn.operands++;
if (insn.operands > MAX_OPERANDS)
{
as_bad (_("Spurious operands; (%d operands/instruction max)"),
2005-03-23 12:18:14 +01:00
MAX_OPERANDS);
return;
}
/* Now parse operand adding info to 'insn' as we go along. */
save_char = *current_posn;
*current_posn = '\0';
insn.operand_type[this_operand] = tic30_operand (token_start);
*current_posn = save_char;
if (insn.operand_type[this_operand] == NULL)
return;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
else
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (expecting_operand)
1999-05-03 09:29:11 +02:00
{
as_bad (_("Expecting operand after ','; got nothing"));
2005-03-23 12:18:14 +01:00
return;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
if (*current_posn == ',')
1999-05-03 09:29:11 +02:00
{
as_bad (_("Expecting operand before ','; got nothing"));
2005-03-23 12:18:14 +01:00
return;
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
/* Now *current_posn must be either ',' or END_OF_INSN. */
if (*current_posn == ',')
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (*++current_posn == END_OF_INSN)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Just skip it, if it's \n complain. */
as_bad (_("Expecting operand after ','; got nothing"));
2005-03-23 12:18:14 +01:00
return;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
expecting_operand = 1;
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
while (*current_posn != END_OF_INSN);
}
debug ("Number of operands found: %d\n", insn.operands);
/* Check that number of operands is correct. */
if (insn.operands != insn.tm->operands)
{
unsigned int i;
unsigned int numops = insn.tm->operands;
/* If operands are not the same, then see if any of the operands are
not required. Then recheck with number of given operands. If they
are still not the same, then give an error, otherwise carry on. */
for (i = 0; i < insn.tm->operands; i++)
if (insn.tm->operand_types[i] & NotReq)
numops--;
if (insn.operands != numops)
1999-05-03 09:29:11 +02:00
{
as_bad (_("Incorrect number of operands given"));
2005-03-23 12:18:14 +01:00
return;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
}
insn.addressing_mode = AM_NotReq;
for (count = 0; count < insn.operands; count++)
{
if (insn.operand_type[count]->op_type & insn.tm->operand_types[count])
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
debug ("Operand %d matches\n", count + 1);
/* If instruction has two operands and has an AddressMode
modifier then set addressing mode type for instruction. */
if (insn.tm->opcode_modifier == AddressMode)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
int addr_insn = 0;
/* Store instruction uses the second
operand for the address mode. */
if ((insn.tm->operand_types[1] & (Indirect | Direct))
== (Indirect | Direct))
addr_insn = 1;
if (insn.operand_type[addr_insn]->op_type & (AllReg))
insn.addressing_mode = AM_Register;
else if (insn.operand_type[addr_insn]->op_type & Direct)
insn.addressing_mode = AM_Direct;
else if (insn.operand_type[addr_insn]->op_type & Indirect)
insn.addressing_mode = AM_Indirect;
else
insn.addressing_mode = AM_Immediate;
1999-05-03 09:29:11 +02:00
}
}
else
{
as_bad (_("The %s operand doesn't match"), ordinal_names[count]);
2005-03-23 12:18:14 +01:00
return;
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
/* Now set the addressing mode for 3 operand instructions. */
if ((insn.tm->operand_types[0] & op3T1)
&& (insn.tm->operand_types[1] & op3T2))
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Set the addressing mode to the values used for 2 operand
instructions in the G addressing field of the opcode. */
char *p;
switch (insn.operand_type[0]->op_type)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
case Rn:
case ARn:
case DPReg:
case OtherReg:
if (insn.operand_type[1]->op_type & (AllReg))
insn.addressing_mode = AM_Register;
else if (insn.operand_type[1]->op_type & Indirect)
insn.addressing_mode = AM_Direct;
1999-05-03 09:29:11 +02:00
else
{
2005-03-23 12:18:14 +01:00
/* Shouldn't make it to this stage. */
as_bad (_("Incompatible first and second operands in instruction"));
2005-03-23 12:18:14 +01:00
return;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
break;
case Indirect:
if (insn.operand_type[1]->op_type & (AllReg))
insn.addressing_mode = AM_Indirect;
else if (insn.operand_type[1]->op_type & Indirect)
insn.addressing_mode = AM_Immediate;
1999-05-03 09:29:11 +02:00
else
{
2005-03-23 12:18:14 +01:00
/* Shouldn't make it to this stage. */
as_bad (_("Incompatible first and second operands in instruction"));
2005-03-23 12:18:14 +01:00
return;
}
break;
}
/* Now make up the opcode for the 3 operand instructions. As in
parallel instructions, there will be no unresolved values, so they
can be fully formed and added to the frag table. */
insn.opcode = insn.tm->base_opcode;
if (insn.operand_type[0]->op_type & Indirect)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
insn.opcode |= (insn.operand_type[0]->indirect.ARnum);
insn.opcode |= (insn.operand_type[0]->indirect.mod << 3);
}
else
insn.opcode |= (insn.operand_type[0]->reg.opcode);
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
if (insn.operand_type[1]->op_type & Indirect)
{
insn.opcode |= (insn.operand_type[1]->indirect.ARnum << 8);
insn.opcode |= (insn.operand_type[1]->indirect.mod << 11);
}
else
insn.opcode |= (insn.operand_type[1]->reg.opcode << 8);
if (insn.operands == 3)
insn.opcode |= (insn.operand_type[2]->reg.opcode << 16);
insn.opcode |= insn.addressing_mode;
p = frag_more (INSN_SIZE);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else
{
/* Not a three operand instruction. */
char *p;
int am_insn = -1;
insn.opcode = insn.tm->base_opcode;
/* Create frag for instruction - all instructions are 4 bytes long. */
p = frag_more (INSN_SIZE);
if ((insn.operands > 0) && (insn.tm->opcode_modifier == AddressMode))
{
insn.opcode |= insn.addressing_mode;
if (insn.addressing_mode == AM_Indirect)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Determine which operand gives the addressing mode. */
if (insn.operand_type[0]->op_type & Indirect)
am_insn = 0;
if ((insn.operands > 1)
&& (insn.operand_type[1]->op_type & Indirect))
am_insn = 1;
insn.opcode |= (insn.operand_type[am_insn]->indirect.disp);
insn.opcode |= (insn.operand_type[am_insn]->indirect.ARnum << 8);
insn.opcode |= (insn.operand_type[am_insn]->indirect.mod << 11);
if (insn.operands > 1)
insn.opcode |= (insn.operand_type[!am_insn]->reg.opcode << 16);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else if (insn.addressing_mode == AM_Register)
{
insn.opcode |= (insn.operand_type[0]->reg.opcode);
if (insn.operands > 1)
insn.opcode |= (insn.operand_type[1]->reg.opcode << 16);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else if (insn.addressing_mode == AM_Direct)
{
if (insn.operand_type[0]->op_type & Direct)
am_insn = 0;
if ((insn.operands > 1)
&& (insn.operand_type[1]->op_type & Direct))
am_insn = 1;
if (insn.operands > 1)
insn.opcode |=
(insn.operand_type[! am_insn]->reg.opcode << 16);
if (insn.operand_type[am_insn]->direct.resolved == 1)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Resolved values can be placed straight
into instruction word, and output. */
insn.opcode |=
(insn.operand_type[am_insn]->direct.address & 0x0000FFFF);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
else
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Unresolved direct addressing mode instruction. */
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
fix_new_exp (frag_now, p + 2 - (frag_now->fr_literal), 2,
& insn.operand_type[am_insn]->direct.direct_expr,
0, 0);
1999-05-03 09:29:11 +02:00
}
}
2005-03-23 12:18:14 +01:00
else if (insn.addressing_mode == AM_Immediate)
{
if (insn.operand_type[0]->immediate.resolved == 1)
{
char *keeploc;
int size;
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
if (insn.operands > 1)
insn.opcode |= (insn.operand_type[1]->reg.opcode << 16);
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
switch (insn.tm->imm_arg_type)
{
case Imm_Float:
debug ("Floating point first operand\n");
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
keeploc = input_line_pointer;
input_line_pointer =
insn.operand_type[0]->immediate.label;
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
if (md_atof ('f', p + 2, & size) != 0)
{
as_bad (_("invalid short form floating point immediate operand"));
2005-03-23 12:18:14 +01:00
return;
}
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
input_line_pointer = keeploc;
break;
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
case Imm_UInt:
debug ("Unsigned int first operand\n");
if (insn.operand_type[0]->immediate.decimal_found)
as_warn (_("rounding down first operand float to unsigned int"));
2005-03-23 12:18:14 +01:00
if (insn.operand_type[0]->immediate.u_number > 0xFFFF)
as_warn (_("only lower 16-bits of first operand are used"));
2005-03-23 12:18:14 +01:00
insn.opcode |=
(insn.operand_type[0]->immediate.u_number & 0x0000FFFFL);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
break;
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
case Imm_SInt:
debug ("Int first operand\n");
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
if (insn.operand_type[0]->immediate.decimal_found)
as_warn (_("rounding down first operand float to signed int"));
2005-03-23 12:18:14 +01:00
if (insn.operand_type[0]->immediate.s_number < -32768 ||
insn.operand_type[0]->immediate.s_number > 32767)
{
as_bad (_("first operand is too large for 16-bit signed int"));
2005-03-23 12:18:14 +01:00
return;
}
insn.opcode |=
(insn.operand_type[0]->immediate.s_number & 0x0000FFFFL);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
break;
}
}
else
{
/* Unresolved immediate label. */
if (insn.operands > 1)
insn.opcode |= (insn.operand_type[1]->reg.opcode << 16);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
fix_new_exp (frag_now, p + 2 - (frag_now->fr_literal), 2,
& insn.operand_type[0]->immediate.imm_expr,
0, 0);
}
}
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
else if (insn.tm->opcode_modifier == PCRel)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Conditional Branch and Call instructions. */
if ((insn.tm->operand_types[0] & (AllReg | Disp))
== (AllReg | Disp))
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (insn.operand_type[0]->op_type & (AllReg))
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
insn.opcode |= (insn.operand_type[0]->reg.opcode);
insn.opcode |= PC_Register;
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else
{
insn.opcode |= PC_Relative;
if (insn.operand_type[0]->immediate.resolved == 1)
{
insn.opcode |=
(insn.operand_type[0]->immediate.s_number & 0x0000FFFF);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else
{
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
fix_new_exp (frag_now, p + 2 - (frag_now->fr_literal),
2, & insn.operand_type[0]->immediate.imm_expr,
1, 0);
}
}
}
else if ((insn.tm->operand_types[0] & ARn) == ARn)
{
/* Decrement and Branch instructions. */
insn.opcode |= ((insn.operand_type[0]->reg.opcode - 0x08) << 22);
if (insn.operand_type[1]->op_type & (AllReg))
{
insn.opcode |= (insn.operand_type[1]->reg.opcode);
insn.opcode |= PC_Register;
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else if (insn.operand_type[1]->immediate.resolved == 1)
{
if (insn.operand_type[0]->immediate.decimal_found)
{
as_bad (_("first operand is floating point"));
2005-03-23 12:18:14 +01:00
return;
}
if (insn.operand_type[0]->immediate.s_number < -32768 ||
insn.operand_type[0]->immediate.s_number > 32767)
{
as_bad (_("first operand is too large for 16-bit signed int"));
2005-03-23 12:18:14 +01:00
return;
}
insn.opcode |= (insn.operand_type[1]->immediate.s_number);
insn.opcode |= PC_Relative;
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else
{
insn.opcode |= PC_Relative;
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
fix_new_exp (frag_now, p + 2 - frag_now->fr_literal, 2,
& insn.operand_type[1]->immediate.imm_expr,
1, 0);
1999-05-03 09:29:11 +02:00
}
}
}
2005-03-23 12:18:14 +01:00
else if (insn.tm->operand_types[0] == IVector)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Trap instructions. */
if (insn.operand_type[0]->op_type & IVector)
insn.opcode |= (insn.operand_type[0]->immediate.u_number);
else
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Shouldn't get here. */
as_bad (_("interrupt vector for trap instruction out of range"));
2005-03-23 12:18:14 +01:00
return;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else if (insn.tm->opcode_modifier == StackOp
|| insn.tm->opcode_modifier == Rotate)
{
/* Push, Pop and Rotate instructions. */
insn.opcode |= (insn.operand_type[0]->reg.opcode << 16);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else if ((insn.tm->operand_types[0] & (Abs24 | Direct))
== (Abs24 | Direct))
{
/* LDP Instruction needs to be tested
for before the next section. */
if (insn.operand_type[0]->op_type & Direct)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
if (insn.operand_type[0]->direct.resolved == 1)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Direct addressing uses lower 8 bits of direct address. */
insn.opcode |=
(insn.operand_type[0]->direct.address & 0x00FF0000) >> 16;
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
1999-05-03 09:29:11 +02:00
}
else
{
2005-03-23 12:18:14 +01:00
fixS *fix;
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
fix = fix_new_exp (frag_now, p + 3 - (frag_now->fr_literal),
1, &insn.operand_type[0]->direct.direct_expr, 0, 0);
/* Ensure that the assembler doesn't complain
about fitting a 24-bit address into 8 bits. */
fix->fx_no_overflow = 1;
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
}
else
{
if (insn.operand_type[0]->immediate.resolved == 1)
1999-05-03 09:29:11 +02:00
{
2005-03-23 12:18:14 +01:00
/* Immediate addressing uses upper 8 bits of address. */
if (insn.operand_type[0]->immediate.u_number > 0x00FFFFFF)
{
as_bad (_("LDP instruction needs a 24-bit operand"));
2005-03-23 12:18:14 +01:00
return;
}
insn.opcode |=
((insn.operand_type[0]->immediate.u_number & 0x00FF0000) >> 16);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else
{
fixS *fix;
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
fix = fix_new_exp (frag_now, p + 3 - (frag_now->fr_literal),
1, &insn.operand_type[0]->immediate.imm_expr,
0, 0);
fix->fx_no_overflow = 1;
1999-05-03 09:29:11 +02:00
}
}
}
2005-03-23 12:18:14 +01:00
else if (insn.tm->operand_types[0] & (Imm24))
{
/* Unconditional Branch and Call instructions. */
if (insn.operand_type[0]->immediate.resolved == 1)
{
if (insn.operand_type[0]->immediate.u_number > 0x00FFFFFF)
as_warn (_("first operand is too large for a 24-bit displacement"));
2005-03-23 12:18:14 +01:00
insn.opcode |=
(insn.operand_type[0]->immediate.u_number & 0x00FFFFFF);
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
}
else
{
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
fix_new_exp (frag_now, p + 1 - (frag_now->fr_literal), 3,
& insn.operand_type[0]->immediate.imm_expr, 0, 0);
}
}
else if (insn.tm->operand_types[0] & NotReq)
/* Check for NOP instruction without arguments. */
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
else if (insn.tm->operands == 0)
/* Check for instructions without operands. */
md_number_to_chars (p, (valueT) insn.opcode, INSN_SIZE);
1999-05-03 09:29:11 +02:00
}
2005-03-23 12:18:14 +01:00
debug ("Addressing mode: %08X\n", insn.addressing_mode);
{
unsigned int i;
1999-05-03 09:29:11 +02:00
2005-03-23 12:18:14 +01:00
for (i = 0; i < insn.operands; i++)
{
free (insn.operand_type[i]->immediate.label);
2005-03-23 12:18:14 +01:00
free (insn.operand_type[i]);
}
}
debug ("Final opcode: %08X\n", insn.opcode);
debug ("\n");
1999-05-03 09:29:11 +02:00
}