| /* read.c - read a source file - |
| Copyright (C) 1986-2024 Free Software Foundation, Inc. |
| |
| This file is part of GAS, the GNU Assembler. |
| |
| GAS is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation; either version 3, or (at your option) |
| any later version. |
| |
| GAS is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| You should have received a copy of the GNU General Public License |
| along with GAS; see the file COPYING. If not, write to the Free |
| Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA |
| 02110-1301, USA. */ |
| |
| /* If your chars aren't 8 bits, you will change this a bit (eg. to 0xFF). |
| But then, GNU isn't supposed to run on your machine anyway. |
| (RMS is so shortsighted sometimes.) */ |
| #define MASK_CHAR ((int)(unsigned char) -1) |
| |
| /* This is the largest known floating point format (for now). It will |
| grow when we do 4361 style flonums. */ |
| #define MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT (16) |
| |
| /* Routines that read assembler source text to build spaghetti in memory. |
| Another group of these functions is in the expr.c module. */ |
| |
| #include "as.h" |
| #include "safe-ctype.h" |
| #include "subsegs.h" |
| #include "sb.h" |
| #include "macro.h" |
| #include "obstack.h" |
| #include "ecoff.h" |
| #include "dw2gencfi.h" |
| #include "scfidw2gen.h" |
| #include "codeview.h" |
| #include "wchar.h" |
| #include "filenames.h" |
| #include "ginsn.h" |
| |
| #include <limits.h> |
| |
| #ifndef TC_START_LABEL |
| #define TC_START_LABEL(STR, NUL_CHAR, NEXT_CHAR) (NEXT_CHAR == ':') |
| #endif |
| |
| /* Set by the object-format or the target. */ |
| #ifndef TC_IMPLICIT_LCOMM_ALIGNMENT |
| #define TC_IMPLICIT_LCOMM_ALIGNMENT(SIZE, P2VAR) \ |
| do \ |
| { \ |
| if ((SIZE) >= 8) \ |
| (P2VAR) = 3; \ |
| else if ((SIZE) >= 4) \ |
| (P2VAR) = 2; \ |
| else if ((SIZE) >= 2) \ |
| (P2VAR) = 1; \ |
| else \ |
| (P2VAR) = 0; \ |
| } \ |
| while (0) |
| #endif |
| |
| char *input_line_pointer; /*->next char of source file to parse. */ |
| bool input_from_string = false; |
| |
| #if BITS_PER_CHAR != 8 |
| /* The following table is indexed by[(char)] and will break if |
| a char does not have exactly 256 states (hopefully 0:255!)! */ |
| die horribly; |
| #endif |
| |
| #ifndef LEX_AT |
| #define LEX_AT 0 |
| #endif |
| |
| #ifndef LEX_BR |
| /* The RS/6000 assembler uses {,},[,] as parts of symbol names. */ |
| #define LEX_BR 0 |
| #endif |
| |
| #ifndef LEX_PCT |
| /* The Delta 68k assembler permits % inside label names. */ |
| #define LEX_PCT 0 |
| #endif |
| |
| #ifndef LEX_QM |
| /* The PowerPC Windows NT assemblers permits ? inside label names. */ |
| #define LEX_QM 0 |
| #endif |
| |
| #ifndef LEX_HASH |
| /* The IA-64 assembler uses # as a suffix designating a symbol. We include |
| it in the symbol and strip it out in tc_canonicalize_symbol_name. */ |
| #define LEX_HASH 0 |
| #endif |
| |
| #ifndef LEX_DOLLAR |
| #define LEX_DOLLAR 3 |
| #endif |
| |
| #ifndef LEX_TILDE |
| /* The Delta 68k assembler permits ~ at start of label names. */ |
| #define LEX_TILDE 0 |
| #endif |
| |
| /* Used by is_... macros. our ctype[]. */ |
| char lex_type[256] = { |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* @ABCDEFGHIJKLMNO */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* PQRSTUVWXYZ[\]^_ */ |
| 0, 0, 0, LEX_HASH, LEX_DOLLAR, LEX_PCT, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, /* _!"#$%&'()*+,-./ */ |
| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, LEX_QM, /* 0123456789:;<=>? */ |
| LEX_AT, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* @ABCDEFGHIJKLMNO */ |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, 0, 3, /* PQRSTUVWXYZ[\]^_ */ |
| 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* `abcdefghijklmno */ |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, LEX_BR, 0, LEX_BR, LEX_TILDE, 0, /* pqrstuvwxyz{|}~. */ |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 |
| }; |
| |
| /* In: a character. |
| Out: 1 if this character ends a line. |
| 2 if this character is a line separator. */ |
| char is_end_of_line[256] = { |
| #ifdef CR_EOL |
| 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, /* @abcdefghijklmno */ |
| #else |
| 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, /* @abcdefghijklmno */ |
| #endif |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* _!"#$%&'()*+,-./ */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0123456789:;<=>? */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* */ |
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* */ |
| }; |
| |
| #ifndef TC_CASE_SENSITIVE |
| char original_case_string[128]; |
| #endif |
| |
| /* Functions private to this file. */ |
| |
| static char *buffer; /* 1st char of each buffer of lines is here. */ |
| static char *buffer_limit; /*->1 + last char in buffer. */ |
| |
| /* TARGET_BYTES_BIG_ENDIAN is required to be defined to either 0 or 1 |
| in the tc-<CPU>.h file. See the "Porting GAS" section of the |
| internals manual. */ |
| int target_big_endian = TARGET_BYTES_BIG_ENDIAN; |
| |
| /* Variables for handling include file directory table. */ |
| |
| /* Table of pointers to directories to search for .include's. */ |
| const char **include_dirs; |
| |
| /* How many are in the table. */ |
| size_t include_dir_count; |
| |
| /* Length of longest in table. */ |
| size_t include_dir_maxlen; |
| |
| #ifndef WORKING_DOT_WORD |
| struct broken_word *broken_words; |
| int new_broken_words; |
| #endif |
| |
| /* The current offset into the absolute section. We don't try to |
| build frags in the absolute section, since no data can be stored |
| there. We just keep track of the current offset. */ |
| addressT abs_section_offset; |
| |
| /* If this line had an MRI style label, it is stored in this variable. |
| This is used by some of the MRI pseudo-ops. */ |
| symbolS *line_label; |
| |
| /* This global variable is used to support MRI common sections. We |
| translate such sections into a common symbol. This variable is |
| non-NULL when we are in an MRI common section. */ |
| symbolS *mri_common_symbol; |
| |
| /* In MRI mode, after a dc.b pseudo-op with an odd number of bytes, we |
| need to align to an even byte boundary unless the next pseudo-op is |
| dc.b, ds.b, or dcb.b. This variable is set to 1 if an alignment |
| may be needed. */ |
| static int mri_pending_align; |
| |
| /* Record the current function so that we can issue an error message for |
| misplaced .func,.endfunc, and also so that .endfunc needs no |
| arguments. */ |
| static char *current_name; |
| static char *current_label; |
| |
| #ifndef NO_LISTING |
| #ifdef OBJ_ELF |
| static int dwarf_file; |
| static int dwarf_line; |
| |
| /* This variable is set to be non-zero if the next string we see might |
| be the name of the source file in DWARF debugging information. See |
| the comment in emit_expr for the format we look for. */ |
| static int dwarf_file_string; |
| #endif |
| #endif |
| |
| /* If the target defines the md_frag_max_var hook then we know |
| enough to implement the .bundle_align_mode features. */ |
| #ifdef md_frag_max_var |
| # define HANDLE_BUNDLE |
| #endif |
| |
| #ifdef HANDLE_BUNDLE |
| /* .bundle_align_mode sets this. Normally it's zero. When nonzero, |
| it's the exponent of the bundle size, and aligned instruction bundle |
| mode is in effect. */ |
| static unsigned int bundle_align_p2; |
| |
| /* These are set by .bundle_lock and .bundle_unlock. .bundle_lock sets |
| bundle_lock_frag to frag_now and then starts a new frag with |
| frag_align_code. At the same time, bundle_lock_frain gets frchain_now, |
| so that .bundle_unlock can verify that we didn't change segments. |
| .bundle_unlock resets both to NULL. If we detect a bundling violation, |
| then we reset bundle_lock_frchain to NULL as an indicator that we've |
| already diagnosed the error with as_bad and don't need a cascade of |
| redundant errors, but bundle_lock_frag remains set to indicate that |
| we are expecting to see .bundle_unlock. */ |
| static fragS *bundle_lock_frag; |
| static frchainS *bundle_lock_frchain; |
| |
| /* This is incremented by .bundle_lock and decremented by .bundle_unlock, |
| to allow nesting. */ |
| static unsigned int bundle_lock_depth; |
| #endif |
| |
| static void do_s_func (int end_p, const char *default_prefix); |
| static void s_align (int, int); |
| static void s_altmacro (int); |
| static void s_bad_end (int); |
| static void s_reloc (int); |
| static int hex_float (int, char *); |
| static segT get_known_segmented_expression (expressionS * expP); |
| static void pobegin (void); |
| static void poend (void); |
| static size_t get_macro_line_sb (sb *); |
| static void generate_file_debug (void); |
| static char *_find_end_of_line (char *, int, int, int); |
| |
| void |
| read_begin (void) |
| { |
| const char *p; |
| |
| pobegin (); |
| obj_read_begin_hook (); |
| |
| obstack_begin (&cond_obstack, chunksize); |
| |
| #ifndef tc_line_separator_chars |
| #define tc_line_separator_chars line_separator_chars |
| #endif |
| /* Use machine dependent syntax. */ |
| for (p = tc_line_separator_chars; *p; p++) |
| is_end_of_line[(unsigned char) *p] = 2; |
| /* Use more. FIXME-SOMEDAY. */ |
| |
| if (flag_mri) |
| lex_type['?'] = LEX_BEGIN_NAME | LEX_NAME; |
| |
| stabs_begin (); |
| |
| #ifndef WORKING_DOT_WORD |
| broken_words = NULL; |
| new_broken_words = 0; |
| #endif |
| |
| abs_section_offset = 0; |
| |
| line_label = NULL; |
| mri_common_symbol = NULL; |
| mri_pending_align = 0; |
| |
| current_name = NULL; |
| current_label = NULL; |
| |
| #ifndef NO_LISTING |
| #ifdef OBJ_ELF |
| dwarf_file = 0; |
| dwarf_line = -1; |
| dwarf_file_string = 0; |
| #endif |
| #endif |
| |
| #ifdef HANDLE_BUNDLE |
| bundle_align_p2 = 0; |
| bundle_lock_frag = NULL; |
| bundle_lock_frchain = NULL; |
| bundle_lock_depth = 0; |
| #endif |
| } |
| |
| void |
| read_end (void) |
| { |
| stabs_end (); |
| poend (); |
| _obstack_free (&cond_obstack, NULL); |
| free (current_name); |
| free (current_label); |
| } |
| |
| #ifndef TC_ADDRESS_BYTES |
| #define TC_ADDRESS_BYTES address_bytes |
| |
| static inline int |
| address_bytes (void) |
| { |
| /* Choose smallest of 1, 2, 4, 8 bytes that is large enough to |
| contain an address. */ |
| int n = (stdoutput->arch_info->bits_per_address - 1) / 8; |
| n |= n >> 1; |
| n |= n >> 2; |
| n += 1; |
| return n; |
| } |
| #endif |
| |
| /* Set up pseudo-op tables. */ |
| |
| static htab_t po_hash; |
| |
| static const pseudo_typeS potable[] = { |
| {"abort", s_abort, 0}, |
| {"align", s_align_ptwo, 0}, |
| {"altmacro", s_altmacro, 1}, |
| {"ascii", stringer, 8+0}, |
| {"asciz", stringer, 8+1}, |
| {"balign", s_align_bytes, 0}, |
| {"balignw", s_align_bytes, -2}, |
| {"balignl", s_align_bytes, -4}, |
| {"base64", s_base64, 0}, |
| /* block */ |
| #ifdef HANDLE_BUNDLE |
| {"bundle_align_mode", s_bundle_align_mode, 0}, |
| {"bundle_lock", s_bundle_lock, 0}, |
| {"bundle_unlock", s_bundle_unlock, 0}, |
| #endif |
| {"byte", cons, 1}, |
| {"comm", s_comm, 0}, |
| {"common", s_mri_common, 0}, |
| {"common.s", s_mri_common, 1}, |
| {"data", s_data, 0}, |
| {"dc", cons, 2}, |
| {"dc.a", cons, 0}, |
| {"dc.b", cons, 1}, |
| {"dc.d", float_cons, 'd'}, |
| {"dc.l", cons, 4}, |
| {"dc.s", float_cons, 'f'}, |
| {"dc.w", cons, 2}, |
| {"dc.x", float_cons, 'x'}, |
| {"dcb", s_space, 2}, |
| {"dcb.b", s_space, 1}, |
| {"dcb.d", s_float_space, 'd'}, |
| {"dcb.l", s_space, 4}, |
| {"dcb.s", s_float_space, 'f'}, |
| {"dcb.w", s_space, 2}, |
| {"dcb.x", s_float_space, 'x'}, |
| {"ds", s_space, 2}, |
| {"ds.b", s_space, 1}, |
| {"ds.d", s_space, 8}, |
| {"ds.l", s_space, 4}, |
| {"ds.p", s_space, 'p'}, |
| {"ds.s", s_space, 4}, |
| {"ds.w", s_space, 2}, |
| {"ds.x", s_space, 'x'}, |
| {"debug", s_ignore, 0}, |
| #ifdef S_SET_DESC |
| {"desc", s_desc, 0}, |
| #endif |
| /* dim */ |
| {"double", float_cons, 'd'}, |
| /* dsect */ |
| {"eject", listing_eject, 0}, /* Formfeed listing. */ |
| {"else", s_else, 0}, |
| {"elsec", s_else, 0}, |
| {"elseif", s_elseif, (int) O_ne}, |
| {"end", s_end, 0}, |
| {"endc", s_endif, 0}, |
| {"endfunc", s_func, 1}, |
| {"endif", s_endif, 0}, |
| {"endm", s_bad_end, 0}, |
| {"endr", s_bad_end, 1}, |
| /* endef */ |
| {"equ", s_set, 0}, |
| {"equiv", s_set, 1}, |
| {"eqv", s_set, -1}, |
| {"err", s_err, 0}, |
| {"error", s_errwarn, 1}, |
| {"exitm", s_mexit, 0}, |
| /* extend */ |
| {"extern", s_ignore, 0}, /* We treat all undef as ext. */ |
| {"fail", s_fail, 0}, |
| {"file", s_file, 0}, |
| {"fill", s_fill, 0}, |
| {"float", float_cons, 'f'}, |
| {"format", s_ignore, 0}, |
| {"func", s_func, 0}, |
| {"global", s_globl, 0}, |
| {"globl", s_globl, 0}, |
| {"hword", cons, 2}, |
| {"if", s_if, (int) O_ne}, |
| {"ifb", s_ifb, 1}, |
| {"ifc", s_ifc, 0}, |
| {"ifdef", s_ifdef, 0}, |
| {"ifeq", s_if, (int) O_eq}, |
| {"ifeqs", s_ifeqs, 0}, |
| {"ifge", s_if, (int) O_ge}, |
| {"ifgt", s_if, (int) O_gt}, |
| {"ifle", s_if, (int) O_le}, |
| {"iflt", s_if, (int) O_lt}, |
| {"ifnb", s_ifb, 0}, |
| {"ifnc", s_ifc, 1}, |
| {"ifndef", s_ifdef, 1}, |
| {"ifne", s_if, (int) O_ne}, |
| {"ifnes", s_ifeqs, 1}, |
| {"ifnotdef", s_ifdef, 1}, |
| {"incbin", s_incbin, 0}, |
| {"include", s_include, 0}, |
| {"int", cons, 4}, |
| {"irp", s_irp, 0}, |
| {"irep", s_irp, 0}, |
| {"irpc", s_irp, 1}, |
| {"irepc", s_irp, 1}, |
| {"lcomm", s_lcomm, 0}, |
| {"lflags", s_ignore, 0}, /* Listing flags. */ |
| {"linefile", s_linefile, 0}, |
| {"linkonce", s_linkonce, 0}, |
| {"list", listing_list, 1}, /* Turn listing on. */ |
| {"llen", listing_psize, 1}, |
| {"long", cons, 4}, |
| {"lsym", s_lsym, 0}, |
| {"macro", s_macro, 0}, |
| {"mexit", s_mexit, 0}, |
| {"mri", s_mri, 0}, |
| {".mri", s_mri, 0}, /* Special case so .mri works in MRI mode. */ |
| {"name", s_ignore, 0}, |
| {"noaltmacro", s_altmacro, 0}, |
| {"noformat", s_ignore, 0}, |
| {"nolist", listing_list, 0}, /* Turn listing off. */ |
| {"nopage", listing_nopage, 0}, |
| {"nop", s_nop, 0}, |
| {"nops", s_nops, 0}, |
| {"octa", cons, 16}, |
| {"offset", s_struct, 0}, |
| {"org", s_org, 0}, |
| {"p2align", s_align_ptwo, 0}, |
| {"p2alignw", s_align_ptwo, -2}, |
| {"p2alignl", s_align_ptwo, -4}, |
| {"page", listing_eject, 0}, |
| {"plen", listing_psize, 0}, |
| {"print", s_print, 0}, |
| {"psize", listing_psize, 0}, /* Set paper size. */ |
| {"purgem", s_purgem, 0}, |
| {"quad", cons, 8}, |
| {"reloc", s_reloc, 0}, |
| {"rep", s_rept, 0}, |
| {"rept", s_rept, 1}, |
| {"rva", s_rva, 4}, |
| {"sbttl", listing_title, 1}, /* Subtitle of listing. */ |
| /* scl */ |
| /* sect */ |
| {"set", s_set, 0}, |
| {"short", cons, 2}, |
| {"single", float_cons, 'f'}, |
| /* size */ |
| {"space", s_space, 0}, |
| {"skip", s_space, 0}, |
| {"sleb128", s_leb128, 1}, |
| {"spc", s_ignore, 0}, |
| {"stabd", s_stab, 'd'}, |
| {"stabn", s_stab, 'n'}, |
| {"stabs", s_stab, 's'}, |
| {"string", stringer, 8+1}, |
| {"string8", stringer, 8+1}, |
| {"string16", stringer, 16+1}, |
| {"string32", stringer, 32+1}, |
| {"string64", stringer, 64+1}, |
| {"struct", s_struct, 0}, |
| /* tag */ |
| {"text", s_text, 0}, |
| |
| /* This is for gcc to use. It's only just been added (2/94), so gcc |
| won't be able to use it for a while -- probably a year or more. |
| But once this has been released, check with gcc maintainers |
| before deleting it or even changing the spelling. */ |
| {"this_GCC_requires_the_GNU_assembler", s_ignore, 0}, |
| /* If we're folding case -- done for some targets, not necessarily |
| all -- the above string in an input file will be converted to |
| this one. Match it either way... */ |
| {"this_gcc_requires_the_gnu_assembler", s_ignore, 0}, |
| |
| {"title", listing_title, 0}, /* Listing title. */ |
| {"ttl", listing_title, 0}, |
| /* type */ |
| {"uleb128", s_leb128, 0}, |
| /* use */ |
| /* val */ |
| {"xcom", s_comm, 0}, |
| {"xdef", s_globl, 0}, |
| {"xref", s_ignore, 0}, |
| {"xstabs", s_xstab, 's'}, |
| {"warning", s_errwarn, 0}, |
| {"weakref", s_weakref, 0}, |
| {"word", cons, 2}, |
| {"zero", s_space, 0}, |
| {"2byte", cons, 2}, |
| {"4byte", cons, 4}, |
| {"8byte", cons, 8}, |
| {NULL, NULL, 0} /* End sentinel. */ |
| }; |
| |
| static offsetT |
| get_absolute_expr (expressionS *exp) |
| { |
| expression_and_evaluate (exp); |
| |
| if (exp->X_op != O_constant) |
| { |
| if (exp->X_op != O_absent) |
| as_bad (_("bad or irreducible absolute expression")); |
| exp->X_add_number = 0; |
| } |
| return exp->X_add_number; |
| } |
| |
| offsetT |
| get_absolute_expression (void) |
| { |
| expressionS exp; |
| |
| return get_absolute_expr (&exp); |
| } |
| |
| static int pop_override_ok; |
| static const char *pop_table_name; |
| |
| void |
| pop_insert (const pseudo_typeS *table) |
| { |
| const pseudo_typeS *pop; |
| for (pop = table; pop->poc_name; pop++) |
| { |
| if (str_hash_insert (po_hash, pop->poc_name, pop, 0) != NULL) |
| { |
| if (!pop_override_ok) |
| as_fatal (_("error constructing %s pseudo-op table"), |
| pop_table_name); |
| } |
| } |
| } |
| |
| #ifndef md_pop_insert |
| #define md_pop_insert() pop_insert(md_pseudo_table) |
| #endif |
| |
| #ifndef obj_pop_insert |
| #define obj_pop_insert() pop_insert(obj_pseudo_table) |
| #endif |
| |
| #ifndef cfi_pop_insert |
| #define cfi_pop_insert() pop_insert(cfi_pseudo_table) |
| #endif |
| |
| #ifndef scfi_pop_insert |
| #define scfi_pop_insert() pop_insert(scfi_pseudo_table) |
| #endif |
| |
| static void |
| pobegin (void) |
| { |
| po_hash = str_htab_create (); |
| |
| /* Do the target-specific pseudo ops. */ |
| pop_table_name = "md"; |
| pop_override_ok = 0; |
| md_pop_insert (); |
| |
| /* Now object specific. Skip any that were in the target table. */ |
| pop_table_name = "obj"; |
| pop_override_ok = 1; |
| obj_pop_insert (); |
| |
| /* Now portable ones. Skip any that we've seen already. */ |
| pop_table_name = "standard"; |
| pop_insert (potable); |
| |
| /* Now CFI ones. */ |
| #if defined (TARGET_USE_SCFI) && defined (TARGET_USE_GINSN) |
| if (flag_synth_cfi) |
| { |
| pop_table_name = "scfi"; |
| scfi_pop_insert (); |
| } |
| else |
| #endif |
| { |
| pop_table_name = "cfi"; |
| cfi_pop_insert (); |
| } |
| } |
| |
| static void |
| poend (void) |
| { |
| htab_delete (po_hash); |
| } |
| |
| #define HANDLE_CONDITIONAL_ASSEMBLY(num_read) \ |
| if (ignore_input ()) \ |
| { \ |
| char *eol = find_end_of_line (input_line_pointer - (num_read), \ |
| flag_m68k_mri); \ |
| input_line_pointer = (input_line_pointer <= buffer_limit \ |
| && eol >= buffer_limit) \ |
| ? buffer_limit \ |
| : eol + 1; \ |
| continue; \ |
| } |
| |
| /* Helper function of read_a_source_file, which tries to expand a macro. */ |
| static int |
| try_macro (char term, const char *line) |
| { |
| sb out; |
| const char *err; |
| macro_entry *macro; |
| |
| if (check_macro (line, &out, &err, ¯o)) |
| { |
| if (err != NULL) |
| as_bad ("%s", err); |
| *input_line_pointer++ = term; |
| input_scrub_include_sb (&out, |
| input_line_pointer, expanding_macro); |
| sb_kill (&out); |
| buffer_limit = |
| input_scrub_next_buffer (&input_line_pointer); |
| #ifdef md_macro_info |
| md_macro_info (macro); |
| #endif |
| return 1; |
| } |
| return 0; |
| } |
| |
| #ifdef HANDLE_BUNDLE |
| /* Start a new instruction bundle. Returns the rs_align_code frag that |
| will be used to align the new bundle. */ |
| static fragS * |
| start_bundle (void) |
| { |
| fragS *frag = frag_now; |
| |
| frag_align_code (0, 0); |
| |
| while (frag->fr_type != rs_align_code) |
| frag = frag->fr_next; |
| |
| gas_assert (frag != frag_now); |
| |
| return frag; |
| } |
| |
| /* Calculate the maximum size after relaxation of the region starting |
| at the given frag and extending through frag_now (which is unfinished). */ |
| static unsigned int |
| pending_bundle_size (fragS *frag) |
| { |
| unsigned int offset = frag->fr_fix; |
| unsigned int size = 0; |
| |
| gas_assert (frag != frag_now); |
| gas_assert (frag->fr_type == rs_align_code); |
| |
| while (frag != frag_now) |
| { |
| /* This should only happen in what will later become an error case. */ |
| if (frag == NULL) |
| return 0; |
| |
| size += frag->fr_fix; |
| if (frag->fr_type == rs_machine_dependent) |
| size += md_frag_max_var (frag); |
| |
| frag = frag->fr_next; |
| } |
| |
| gas_assert (frag == frag_now); |
| size += frag_now_fix (); |
| if (frag->fr_type == rs_machine_dependent) |
| size += md_frag_max_var (frag); |
| |
| gas_assert (size >= offset); |
| |
| return size - offset; |
| } |
| |
| /* Finish off the frag created to ensure bundle alignment. */ |
| static void |
| finish_bundle (fragS *frag, unsigned int size) |
| { |
| gas_assert (bundle_align_p2 > 0); |
| gas_assert (frag->fr_type == rs_align_code); |
| |
| if (size > 1) |
| { |
| /* If there is more than a single byte, then we need to set up the |
| alignment frag. Otherwise we leave it at its initial state from |
| calling frag_align_code (0, 0), so that it does nothing. */ |
| frag->fr_offset = bundle_align_p2; |
| frag->fr_subtype = size - 1; |
| } |
| |
| /* We do this every time rather than just in s_bundle_align_mode |
| so that we catch any affected section without needing hooks all |
| over for all paths that do section changes. It's cheap enough. */ |
| if (bundle_align_p2 > OCTETS_PER_BYTE_POWER) |
| record_alignment (now_seg, bundle_align_p2 - OCTETS_PER_BYTE_POWER); |
| } |
| |
| /* Assemble one instruction. This takes care of the bundle features |
| around calling md_assemble. */ |
| static void |
| assemble_one (char *line) |
| { |
| fragS *insn_start_frag = NULL; |
| |
| if (bundle_lock_frchain != NULL && bundle_lock_frchain != frchain_now) |
| { |
| as_bad (_("cannot change section or subsection inside .bundle_lock")); |
| /* Clearing this serves as a marker that we have already complained. */ |
| bundle_lock_frchain = NULL; |
| } |
| |
| if (bundle_lock_frchain == NULL && bundle_align_p2 > 0) |
| insn_start_frag = start_bundle (); |
| |
| md_assemble (line); |
| |
| if (bundle_lock_frchain != NULL) |
| { |
| /* Make sure this hasn't pushed the locked sequence |
| past the bundle size. */ |
| unsigned int bundle_size = pending_bundle_size (bundle_lock_frag); |
| if (bundle_size > 1U << bundle_align_p2) |
| as_bad (_ (".bundle_lock sequence at %u bytes, " |
| "but .bundle_align_mode limit is %u bytes"), |
| bundle_size, 1U << bundle_align_p2); |
| } |
| else if (bundle_align_p2 > 0) |
| { |
| unsigned int insn_size = pending_bundle_size (insn_start_frag); |
| |
| if (insn_size > 1U << bundle_align_p2) |
| as_bad (_("single instruction is %u bytes long, " |
| "but .bundle_align_mode limit is %u bytes"), |
| insn_size, 1U << bundle_align_p2); |
| |
| finish_bundle (insn_start_frag, insn_size); |
| } |
| } |
| |
| #else /* !HANDLE_BUNDLE */ |
| |
| # define assemble_one(line) md_assemble(line) |
| |
| #endif /* HANDLE_BUNDLE */ |
| |
| static bool |
| in_bss (void) |
| { |
| flagword flags = bfd_section_flags (now_seg); |
| |
| return (flags & SEC_ALLOC) && !(flags & (SEC_LOAD | SEC_HAS_CONTENTS)); |
| } |
| |
| /* Guts of .align directive: |
| N is the power of two to which to align. A value of zero is accepted but |
| ignored: the default alignment of the section will be at least this. |
| FILL may be NULL, or it may point to the bytes of the fill pattern. |
| LEN is the length of whatever FILL points to, if anything. If LEN is zero |
| but FILL is not NULL then LEN is treated as if it were one. |
| MAX is the maximum number of characters to skip when doing the alignment, |
| or 0 if there is no maximum. */ |
| |
| void |
| do_align (unsigned int n, char *fill, unsigned int len, unsigned int max) |
| { |
| if (now_seg == absolute_section || in_bss ()) |
| { |
| if (fill != NULL) |
| while (len-- > 0) |
| if (*fill++ != '\0') |
| { |
| if (now_seg == absolute_section) |
| as_warn (_("ignoring fill value in absolute section")); |
| else |
| as_warn (_("ignoring fill value in section `%s'"), |
| segment_name (now_seg)); |
| break; |
| } |
| fill = NULL; |
| len = 0; |
| } |
| |
| #ifdef md_flush_pending_output |
| md_flush_pending_output (); |
| #endif |
| |
| #ifdef md_do_align |
| md_do_align (n, fill, len, max, just_record_alignment); |
| #endif |
| |
| /* Only make a frag if we HAVE to... */ |
| if ((n > OCTETS_PER_BYTE_POWER) && !need_pass_2) |
| { |
| if (fill == NULL) |
| { |
| if (subseg_text_p (now_seg)) |
| frag_align_code (n, max); |
| else |
| frag_align (n, 0, max); |
| } |
| else if (len <= 1) |
| frag_align (n, *fill, max); |
| else |
| frag_align_pattern (n, fill, len, max); |
| } |
| |
| #ifdef md_do_align |
| just_record_alignment: ATTRIBUTE_UNUSED_LABEL |
| #endif |
| |
| if (n > OCTETS_PER_BYTE_POWER) |
| record_alignment (now_seg, n - OCTETS_PER_BYTE_POWER); |
| } |
| |
| /* Find first <eol><next_char>NO_APP<eol>, if any, in the supplied buffer. |
| Return NULL if there's none, or else the position of <next_char>. */ |
| static char * |
| find_no_app (const char *s, char next_char) |
| { |
| const char *start = s; |
| const char srch[] = { next_char, 'N', 'O', '_', 'A', 'P', 'P', '\0' }; |
| |
| for (;;) |
| { |
| char *ends = strstr (s, srch); |
| |
| if (ends == NULL) |
| break; |
| if (is_end_of_line (ends[sizeof (srch) - 1]) |
| && (ends == start || is_end_of_line (ends[-1]))) |
| return ends; |
| s = ends + sizeof (srch) - 1; |
| } |
| |
| return NULL; |
| } |
| |
| /* We read the file, putting things into a web that represents what we |
| have been reading. */ |
| void |
| read_a_source_file (const char *name) |
| { |
| char nul_char; |
| char next_char; |
| char *s; /* String of symbol, '\0' appended. */ |
| long temp; |
| const pseudo_typeS *pop; |
| |
| #ifdef WARN_COMMENTS |
| found_comment = 0; |
| #endif |
| |
| buffer = input_scrub_new_file (name); |
| |
| listing_file (name); |
| listing_newline (NULL); |
| register_dependency (name); |
| |
| /* Generate debugging information before we've read anything in to denote |
| this file as the "main" source file and not a subordinate one |
| (e.g. N_SO vs N_SOL in stabs). */ |
| generate_file_debug (); |
| |
| while ((buffer_limit = input_scrub_next_buffer (&input_line_pointer)) != 0) |
| { /* We have another line to parse. */ |
| #ifndef NO_LISTING |
| /* In order to avoid listing macro expansion lines with labels |
| multiple times, keep track of which line was last issued. */ |
| char *last_eol = NULL; |
| |
| #endif |
| while (input_line_pointer < buffer_limit) |
| { |
| char was_new_line; |
| /* We have more of this buffer to parse. */ |
| |
| /* We now have input_line_pointer->1st char of next line. |
| If input_line_pointer [-1] == '\n' then we just |
| scanned another line: so bump line counters. */ |
| was_new_line = is_end_of_line[(unsigned char) input_line_pointer[-1]]; |
| if (was_new_line) |
| { |
| symbol_set_value_now (&dot_symbol); |
| #ifdef md_start_line_hook |
| md_start_line_hook (); |
| #endif |
| if (input_line_pointer[-1] == '\n') |
| bump_line_counters (); |
| } |
| |
| #ifndef NO_LISTING |
| /* If listing is on, and we are expanding a macro, then give |
| the listing code the contents of the expanded line. */ |
| if (listing) |
| { |
| if ((listing & LISTING_MACEXP) && macro_nest > 0) |
| { |
| /* Find the end of the current expanded macro line. */ |
| s = find_end_of_line (input_line_pointer, flag_m68k_mri); |
| |
| if (s != last_eol |
| && !startswith (input_line_pointer, |
| !flag_m68k_mri ? " .linefile " |
| : " linefile ")) |
| { |
| char *copy; |
| size_t len; |
| |
| last_eol = s; |
| /* Copy it for safe keeping. Also give an indication of |
| how much macro nesting is involved at this point. */ |
| len = s - input_line_pointer; |
| copy = XNEWVEC (char, len + macro_nest + 2); |
| memset (copy, '>', macro_nest); |
| copy[macro_nest] = ' '; |
| memcpy (copy + macro_nest + 1, input_line_pointer, len); |
| copy[macro_nest + 1 + len] = '\0'; |
| |
| /* Install the line with the listing facility. */ |
| listing_newline (copy); |
| } |
| } |
| else |
| listing_newline (NULL); |
| } |
| #endif |
| |
| next_char = *input_line_pointer; |
| if (was_new_line == 1 |
| && (strchr (line_comment_chars, '#') |
| ? next_char == '#' |
| : next_char && strchr (line_comment_chars, next_char))) |
| { |
| /* Its a comment. Check for APP followed by NO_APP. */ |
| sb sbuf; |
| char *ends; |
| size_t len; |
| |
| s = input_line_pointer + 1; |
| if (!startswith (s, "APP") || !is_end_of_line (s[3])) |
| { |
| /* We ignore it. Note: Not ignore_rest_of_line ()! */ |
| while (s <= buffer_limit) |
| if (is_end_of_line (*s++)) |
| break; |
| input_line_pointer = s; |
| continue; |
| } |
| s += 4; |
| |
| ends = find_no_app (s, next_char); |
| len = ends ? ends - s : buffer_limit - s; |
| |
| sb_build (&sbuf, len + 100); |
| sb_add_buffer (&sbuf, s, len); |
| if (!ends) |
| { |
| /* The end of the #APP wasn't in this buffer. We |
| keep reading in buffers until we find the #NO_APP |
| that goes with this #APP There is one. The specs |
| guarantee it... */ |
| do |
| { |
| buffer_limit = input_scrub_next_buffer (&buffer); |
| if (!buffer_limit) |
| break; |
| ends = find_no_app (buffer, next_char); |
| len = ends ? ends - buffer : buffer_limit - buffer; |
| sb_add_buffer (&sbuf, buffer, len); |
| } |
| while (!ends); |
| } |
| sb_add_char (&sbuf, '\n'); |
| |
| input_line_pointer = ends ? ends + 8 : NULL; |
| input_scrub_include_sb (&sbuf, input_line_pointer, expanding_app); |
| sb_kill (&sbuf); |
| buffer_limit = input_scrub_next_buffer (&input_line_pointer); |
| continue; |
| } |
| |
| if (was_new_line) |
| { |
| line_label = NULL; |
| |
| if (LABELS_WITHOUT_COLONS || flag_m68k_mri) |
| { |
| next_char = * input_line_pointer; |
| /* Text at the start of a line must be a label, we |
| run down and stick a colon in. */ |
| if (is_name_beginner (next_char) || next_char == '"') |
| { |
| char *line_start; |
| int mri_line_macro; |
| |
| HANDLE_CONDITIONAL_ASSEMBLY (0); |
| |
| nul_char = get_symbol_name (& line_start); |
| next_char = (nul_char == '"' ? input_line_pointer[1] : nul_char); |
| |
| /* In MRI mode, the EQU and MACRO pseudoops must |
| be handled specially. */ |
| mri_line_macro = 0; |
| if (flag_m68k_mri) |
| { |
| char *rest = input_line_pointer + 1; |
| |
| if (*rest == ':') |
| ++rest; |
| if (*rest == ' ' || *rest == '\t') |
| ++rest; |
| if ((strncasecmp (rest, "EQU", 3) == 0 |
| || strncasecmp (rest, "SET", 3) == 0) |
| && (rest[3] == ' ' || rest[3] == '\t')) |
| { |
| input_line_pointer = rest + 3; |
| equals (line_start, |
| strncasecmp (rest, "SET", 3) == 0); |
| continue; |
| } |
| if (strncasecmp (rest, "MACRO", 5) == 0 |
| && (rest[5] == ' ' |
| || rest[5] == '\t' |
| || is_end_of_line[(unsigned char) rest[5]])) |
| mri_line_macro = 1; |
| } |
| |
| /* In MRI mode, we need to handle the MACRO |
| pseudo-op specially: we don't want to put the |
| symbol in the symbol table. */ |
| if (!mri_line_macro |
| #ifdef TC_START_LABEL_WITHOUT_COLON |
| && TC_START_LABEL_WITHOUT_COLON (nul_char, next_char) |
| #endif |
| ) |
| line_label = colon (line_start); |
| else |
| line_label = symbol_create (line_start, |
| absolute_section, |
| &zero_address_frag, 0); |
| |
| next_char = restore_line_pointer (nul_char); |
| if (next_char == ':') |
| input_line_pointer++; |
| } |
| } |
| } |
| |
| /* We are at the beginning of a line, or similar place. |
| We expect a well-formed assembler statement. |
| A "symbol-name:" is a statement. |
| |
| Depending on what compiler is used, the order of these tests |
| may vary to catch most common case 1st. |
| Each test is independent of all other tests at the (top) |
| level. */ |
| do |
| nul_char = next_char = *input_line_pointer++; |
| while (next_char == '\t' || next_char == ' ' || next_char == '\f'); |
| |
| /* C is the 1st significant character. |
| Input_line_pointer points after that character. */ |
| if (is_name_beginner (next_char) || next_char == '"') |
| { |
| char *rest; |
| |
| /* Want user-defined label or pseudo/opcode. */ |
| HANDLE_CONDITIONAL_ASSEMBLY (1); |
| |
| --input_line_pointer; |
| nul_char = get_symbol_name (& s); /* name's delimiter. */ |
| next_char = (nul_char == '"' ? input_line_pointer[1] : nul_char); |
| rest = input_line_pointer + (nul_char == '"' ? 2 : 1); |
| |
| /* NEXT_CHAR is character after symbol. |
| The end of symbol in the input line is now '\0'. |
| S points to the beginning of the symbol. |
| [In case of pseudo-op, s->'.'.] |
| Input_line_pointer->'\0' where NUL_CHAR was. */ |
| if (TC_START_LABEL (s, nul_char, next_char)) |
| { |
| if (flag_m68k_mri) |
| { |
| /* In MRI mode, \tsym: set 0 is permitted. */ |
| if (*rest == ':') |
| ++rest; |
| |
| if (*rest == ' ' || *rest == '\t') |
| ++rest; |
| |
| if ((strncasecmp (rest, "EQU", 3) == 0 |
| || strncasecmp (rest, "SET", 3) == 0) |
| && (rest[3] == ' ' || rest[3] == '\t')) |
| { |
| input_line_pointer = rest + 3; |
| equals (s, 1); |
| continue; |
| } |
| } |
| |
| line_label = colon (s); /* User-defined label. */ |
| restore_line_pointer (nul_char); |
| ++ input_line_pointer; |
| #ifdef tc_check_label |
| tc_check_label (line_label); |
| #endif |
| /* Input_line_pointer->after ':'. */ |
| SKIP_WHITESPACE (); |
| } |
| else if ((next_char == '=' && *rest == '=') |
| || ((next_char == ' ' || next_char == '\t') |
| && rest[0] == '=' |
| && rest[1] == '=')) |
| { |
| equals (s, -1); |
| demand_empty_rest_of_line (); |
| } |
| else if ((next_char == '=' |
| || ((next_char == ' ' || next_char == '\t') |
| && *rest == '=')) |
| #ifdef TC_EQUAL_IN_INSN |
| && !TC_EQUAL_IN_INSN (next_char, s) |
| #endif |
| ) |
| { |
| equals (s, 1); |
| demand_empty_rest_of_line (); |
| } |
| else |
| { |
| /* Expect pseudo-op or machine instruction. */ |
| pop = NULL; |
| |
| #ifndef TC_CASE_SENSITIVE |
| { |
| char *s2 = s; |
| |
| strncpy (original_case_string, s2, |
| sizeof (original_case_string) - 1); |
| original_case_string[sizeof (original_case_string) - 1] = 0; |
| |
| while (*s2) |
| { |
| *s2 = TOLOWER (*s2); |
| s2++; |
| } |
| } |
| #endif |
| if (NO_PSEUDO_DOT || flag_m68k_mri) |
| { |
| /* The MRI assembler uses pseudo-ops without |
| a period. */ |
| pop = str_hash_find (po_hash, s); |
| if (pop != NULL && pop->poc_handler == NULL) |
| pop = NULL; |
| } |
| |
| if (pop != NULL |
| || (!flag_m68k_mri && *s == '.')) |
| { |
| /* PSEUDO - OP. |
| |
| WARNING: next_char may be end-of-line. |
| We lookup the pseudo-op table with s+1 because we |
| already know that the pseudo-op begins with a '.'. */ |
| |
| if (pop == NULL) |
| pop = str_hash_find (po_hash, s + 1); |
| if (pop && !pop->poc_handler) |
| pop = NULL; |
| |
| /* In MRI mode, we may need to insert an |
| automatic alignment directive. What a hack |
| this is. */ |
| if (mri_pending_align |
| && (pop == NULL |
| || !((pop->poc_handler == cons |
| && pop->poc_val == 1) |
| || (pop->poc_handler == s_space |
| && pop->poc_val == 1) |
| #ifdef tc_conditional_pseudoop |
| || tc_conditional_pseudoop (pop) |
| #endif |
| || pop->poc_handler == s_if |
| || pop->poc_handler == s_ifdef |
| || pop->poc_handler == s_ifc |
| || pop->poc_handler == s_ifeqs |
| || pop->poc_handler == s_else |
| || pop->poc_handler == s_endif |
| || pop->poc_handler == s_globl |
| || pop->poc_handler == s_ignore))) |
| { |
| do_align (1, (char *) NULL, 0, 0); |
| mri_pending_align = 0; |
| |
| if (line_label != NULL) |
| { |
| symbol_set_frag (line_label, frag_now); |
| S_SET_VALUE (line_label, frag_now_fix ()); |
| } |
| } |
| |
| /* Print the error msg now, while we still can. */ |
| if (pop == NULL) |
| { |
| char *end = input_line_pointer; |
| |
| (void) restore_line_pointer (nul_char); |
| s_ignore (0); |
| nul_char = next_char = *--input_line_pointer; |
| *input_line_pointer = '\0'; |
| if (! macro_defined || ! try_macro (next_char, s)) |
| { |
| *end = '\0'; |
| as_bad (_("unknown pseudo-op: `%s'"), s); |
| *input_line_pointer++ = nul_char; |
| } |
| continue; |
| } |
| |
| /* Put it back for error messages etc. */ |
| next_char = restore_line_pointer (nul_char); |
| /* The following skip of whitespace is compulsory. |
| A well shaped space is sometimes all that separates |
| keyword from operands. */ |
| if (next_char == ' ' || next_char == '\t') |
| input_line_pointer++; |
| |
| /* Input_line is restored. |
| Input_line_pointer->1st non-blank char |
| after pseudo-operation. */ |
| (*pop->poc_handler) (pop->poc_val); |
| |
| /* If that was .end, just get out now. */ |
| if (pop->poc_handler == s_end) |
| goto quit; |
| } |
| else |
| { |
| /* WARNING: next_char may be end-of-line. */ |
| /* Also: input_line_pointer->`\0` where nul_char was. */ |
| (void) restore_line_pointer (nul_char); |
| input_line_pointer = _find_end_of_line (input_line_pointer, flag_m68k_mri, 1, 0); |
| next_char = nul_char = *input_line_pointer; |
| *input_line_pointer = '\0'; |
| |
| generate_lineno_debug (); |
| |
| if (macro_defined && try_macro (next_char, s)) |
| continue; |
| |
| if (mri_pending_align) |
| { |
| do_align (1, (char *) NULL, 0, 0); |
| mri_pending_align = 0; |
| if (line_label != NULL) |
| { |
| symbol_set_frag (line_label, frag_now); |
| S_SET_VALUE (line_label, frag_now_fix ()); |
| } |
| } |
| |
| assemble_one (s); /* Assemble 1 instruction. */ |
| |
| /* PR 19630: The backend may have set ilp to NULL |
| if it encountered a catastrophic failure. */ |
| if (input_line_pointer == NULL) |
| as_fatal (_("unable to continue with assembly.")); |
| |
| *input_line_pointer++ = nul_char; |
| |
| /* We resume loop AFTER the end-of-line from |
| this instruction. */ |
| } |
| } |
| continue; |
| } |
| |
| /* Empty statement? */ |
| if (is_end_of_line[(unsigned char) next_char]) |
| continue; |
| |
| if ((LOCAL_LABELS_DOLLAR || LOCAL_LABELS_FB) && ISDIGIT (next_char)) |
| { |
| /* local label ("4:") */ |
| char *backup = input_line_pointer; |
| |
| HANDLE_CONDITIONAL_ASSEMBLY (1); |
| |
| temp = next_char - '0'; |
| |
| /* Read the whole number. */ |
| while (ISDIGIT (*input_line_pointer)) |
| { |
| const long digit = *input_line_pointer - '0'; |
| |
| /* Don't accept labels which look like octal numbers. */ |
| if (temp == 0) |
| break; |
| if (temp > (INT_MAX - digit) / 10) |
| { |
| as_bad (_("local label too large near %s"), backup); |
| temp = -1; |
| break; |
| } |
| temp = temp * 10 + digit; |
| ++input_line_pointer; |
| } |
| |
| /* Overflow: stop processing the label. */ |
| if (temp == -1) |
| { |
| ignore_rest_of_line (); |
| continue; |
| } |
| |
| if (LOCAL_LABELS_DOLLAR |
| && *input_line_pointer == '$' |
| && *(input_line_pointer + 1) == ':') |
| { |
| input_line_pointer += 2; |
| |
| if (dollar_label_defined (temp)) |
| { |
| as_fatal (_("label \"%ld$\" redefined"), temp); |
| } |
| |
| define_dollar_label (temp); |
| colon (dollar_label_name (temp, 0)); |
| continue; |
| } |
| |
| if (LOCAL_LABELS_FB |
| && *input_line_pointer++ == ':') |
| { |
| fb_label_instance_inc (temp); |
| colon (fb_label_name (temp, 0)); |
| continue; |
| } |
| |
| input_line_pointer = backup; |
| } |
| |
| if (next_char && strchr (line_comment_chars, next_char)) |
| { |
| /* Its a comment, ignore it. Note: Not ignore_rest_of_line ()! */ |
| while (s <= buffer_limit) |
| if (is_end_of_line (*s++)) |
| break; |
| input_line_pointer = s; |
| continue; |
| } |
| |
| HANDLE_CONDITIONAL_ASSEMBLY (1); |
| |
| #ifdef tc_unrecognized_line |
| if (tc_unrecognized_line (next_char)) |
| continue; |
| #endif |
| input_line_pointer--; |
| /* Report unknown char as error. */ |
| demand_empty_rest_of_line (); |
| } |
| } |
| |
| quit: |
| symbol_set_value_now (&dot_symbol); |
| |
| #ifdef HANDLE_BUNDLE |
| if (bundle_lock_frag != NULL) |
| { |
| as_bad_where (bundle_lock_frag->fr_file, bundle_lock_frag->fr_line, |
| _(".bundle_lock with no matching .bundle_unlock")); |
| bundle_lock_frag = NULL; |
| bundle_lock_frchain = NULL; |
| bundle_lock_depth = 0; |
| } |
| #endif |
| |
| if (flag_synth_cfi) |
| ginsn_data_end (symbol_temp_new_now ()); |
| |
| #ifdef md_cleanup |
| md_cleanup (); |
| #endif |
| /* Close the input file. */ |
| input_scrub_close (); |
| #ifdef WARN_COMMENTS |
| { |
| if (warn_comment && found_comment) |
| as_warn_where (found_comment_file, found_comment, |
| "first comment found here"); |
| } |
| #endif |
| } |
| |
| /* Convert O_constant expression EXP into the equivalent O_big representation. |
| Take the sign of the number from SIGN rather than X_add_number. */ |
| |
| static void |
| convert_to_bignum (expressionS *exp, int sign) |
| { |
| valueT value; |
| unsigned int i; |
| |
| value = exp->X_add_number; |
| for (i = 0; i < sizeof (exp->X_add_number) / CHARS_PER_LITTLENUM; i++) |
| { |
| generic_bignum[i] = value & LITTLENUM_MASK; |
| value >>= LITTLENUM_NUMBER_OF_BITS; |
| } |
| /* Add a sequence of sign bits if the top bit of X_add_number is not |
| the sign of the original value. */ |
| if ((exp->X_add_number < 0) == !sign) |
| generic_bignum[i++] = sign ? LITTLENUM_MASK : 0; |
| exp->X_op = O_big; |
| exp->X_add_number = i; |
| } |
| |
| /* For most MRI pseudo-ops, the line actually ends at the first |
| nonquoted space. This function looks for that point, stuffs a null |
| in, and sets *STOPCP to the character that used to be there, and |
| returns the location. |
| |
| Until I hear otherwise, I am going to assume that this is only true |
| for the m68k MRI assembler. */ |
| |
| char * |
| mri_comment_field (char *stopcp) |
| { |
| char *s; |
| #ifdef TC_M68K |
| int inquote = 0; |
| |
| know (flag_m68k_mri); |
| |
| for (s = input_line_pointer; |
| ((!is_end_of_line[(unsigned char) *s] && *s != ' ' && *s != '\t') |
| || inquote); |
| s++) |
| { |
| if (*s == '\'') |
| inquote = !inquote; |
| } |
| #else |
| for (s = input_line_pointer; |
| !is_end_of_line[(unsigned char) *s]; |
| s++) |
| ; |
| #endif |
| *stopcp = *s; |
| *s = '\0'; |
| |
| return s; |
| } |
| |
| /* Skip to the end of an MRI comment field. */ |
| |
| void |
| mri_comment_end (char *stop, int stopc) |
| { |
| know (flag_mri); |
| |
| input_line_pointer = stop; |
| *stop = stopc; |
| while (!is_end_of_line[(unsigned char) *input_line_pointer]) |
| ++input_line_pointer; |
| } |
| |
| void |
| s_abort (int ignore ATTRIBUTE_UNUSED) |
| { |
| as_fatal (_(".abort detected. Abandoning ship.")); |
| } |
| |
| /* Handle the .align pseudo-op. A positive ARG is a default alignment |
| (in bytes). A negative ARG is the negative of the length of the |
| fill pattern. BYTES_P is non-zero if the alignment value should be |
| interpreted as the byte boundary, rather than the power of 2. */ |
| #ifndef TC_ALIGN_LIMIT |
| #define TC_ALIGN_LIMIT (stdoutput->arch_info->bits_per_address - 1) |
| #endif |
| |
| static void |
| s_align (signed int arg, int bytes_p) |
| { |
| unsigned int align_limit = TC_ALIGN_LIMIT; |
| addressT align; |
| char *stop = NULL; |
| char stopc = 0; |
| offsetT fill = 0; |
| unsigned int max; |
| int fill_p; |
| |
| if (flag_mri) |
| stop = mri_comment_field (&stopc); |
| |
| if (is_end_of_line[(unsigned char) *input_line_pointer]) |
| { |
| if (arg < 0) |
| align = 0; |
| else |
| align = arg; /* Default value from pseudo-op table. */ |
| } |
| else |
| { |
| align = get_absolute_expression (); |
| SKIP_WHITESPACE (); |
| |
| #ifdef TC_ALIGN_ZERO_IS_DEFAULT |
| if (arg > 0 && align == 0) |
| align = arg; |
| #endif |
| } |
| |
| if (bytes_p) |
| { |
| /* Convert to a power of 2. */ |
| if (align != 0) |
| { |
| unsigned int i; |
| |
| for (i = 0; (align & 1) == 0; align >>= 1, ++i) |
| ; |
| if (align != 1) |
| as_bad (_("alignment not a power of 2")); |
| |
| align = i; |
| } |
| } |
| |
| if (align > align_limit) |
| { |
| align = align_limit; |
| as_warn (_("alignment too large: %u assumed"), align_limit); |
| } |
| |
| if (*input_line_pointer != ',') |
| { |
| fill_p = 0; |
| max = 0; |
| } |
| else |
| { |
| ++input_line_pointer; |
| if (*input_line_pointer == ',') |
| fill_p = 0; |
| else |
| { |
| fill = get_absolute_expression (); |
| SKIP_WHITESPACE (); |
| fill_p = 1; |
| } |
| |
| if (*input_line_pointer != ',') |
| max = 0; |
| else |
| { |
| ++input_line_pointer; |
| max = get_absolute_expression (); |
| } |
| } |
| |
| if (!fill_p) |
| { |
| if (arg < 0) |
| as_warn (_("expected fill pattern missing")); |
| do_align (align, (char *) NULL, 0, max); |
| } |
| else |
| { |
| unsigned int fill_len; |
| |
| if (arg >= 0) |
| fill_len = 1; |
| else |
| fill_len = -arg; |
| |
| if (fill_len <= 1) |
| { |
| char fill_char = 0; |
| |
| fill_char = fill; |
| do_align (align, &fill_char, fill_len, max); |
| } |
| else |
| { |
| char ab[16]; |
| |
| if ((size_t) fill_len > sizeof ab) |
| { |
| as_warn (_("fill pattern too long, truncating to %u"), |
| (unsigned) sizeof ab); |
| fill_len = sizeof ab; |
| } |
| |
| md_number_to_chars (ab, fill, fill_len); |
| do_align (align, ab, fill_len, max); |
| } |
| } |
| |
| demand_empty_rest_of_line (); |
| |
| if (flag_mri) |
| mri_comment_end (stop, stopc); |
| } |
| |
| /* Handle the .align pseudo-op on machines where ".align 4" means |
| align to a 4 byte boundary. */ |
| |
| void |
| s_align_bytes (int arg) |
| { |
| s_align (arg, 1); |
| } |
| |
| /* Handle the .align pseudo-op on machines where ".align 4" means align |
| to a 2**4 boundary. */ |
| |
| void |
| s_align_ptwo (int arg) |
| { |
| s_align (arg, 0); |
| } |
| |
| /* Switch in and out of alternate macro mode. */ |
| |
| static void |
| s_altmacro (int on) |
| { |
| demand_empty_rest_of_line (); |
| flag_macro_alternate = on; |
| } |
| |
| /* Read a symbol name from input_line_pointer. |
| |
| Stores the symbol name in a buffer and returns a pointer to this buffer. |
| The buffer is xalloc'ed. It is the caller's responsibility to free |
| this buffer. |
| |
| The name is not left in the i_l_p buffer as it may need processing |
| to handle escape characters. |
| |
| Advances i_l_p to the next non-whitespace character. |
| |
| If a symbol name could not be read, the routine issues an error |
| messages, skips to the end of the line and returns NULL. */ |
| |
| char * |
| read_symbol_name (void) |
| { |
| char * name; |
| char * start; |
| char c; |
| |
| c = *input_line_pointer++; |
| |
| if (c == '"') |
| { |
| #define SYM_NAME_CHUNK_LEN 128 |
| ptrdiff_t len = SYM_NAME_CHUNK_LEN; |
| char * name_end; |
| unsigned int C; |
| |
| start = name = XNEWVEC (char, len + 1); |
| |
| name_end = name + SYM_NAME_CHUNK_LEN; |
| |
| while (is_a_char (C = next_char_of_string ())) |
| { |
| if (name >= name_end) |
| { |
| ptrdiff_t sofar; |
| |
| sofar = name - start; |
| len += SYM_NAME_CHUNK_LEN; |
| start = XRESIZEVEC (char, start, len + 1); |
| name_end = start + len; |
| name = start + sofar; |
| } |
| |
| *name++ = (char) C; |
| } |
| *name = 0; |
| |
| /* Since quoted symbol names can contain non-ASCII characters, |
| check the string and warn if it cannot be recognised by the |
| current character set. */ |
| /* PR 29447: mbstowcs ignores the third (length) parameter when |
| the first (destination) parameter is NULL. For clarity sake |
| therefore we pass 0 rather than 'len' as the third parameter. */ |
| if (mbstowcs (NULL, name, 0) == (size_t) -1) |
| as_warn (_("symbol name not recognised in the current locale")); |
| } |
| else if (is_name_beginner (c) || (input_from_string && c == FAKE_LABEL_CHAR)) |
| { |
| ptrdiff_t len; |
| |
| name = input_line_pointer - 1; |
| |
| /* We accept FAKE_LABEL_CHAR in a name in case this is |
| being called with a constructed string. */ |
| while (is_part_of_name (c = *input_line_pointer++) |
| || (input_from_string && c == FAKE_LABEL_CHAR)) |
| ; |
| |
| len = (input_line_pointer - name) - 1; |
| start = XNEWVEC (char, len + 1); |
| |
| memcpy (start, name, len); |
| start[len] = 0; |
| |
| /* Skip a name ender char if one is present. */ |
| if (! is_name_ender (c)) |
| --input_line_pointer; |
| } |
| else |
| name = start = NULL; |
| |
| if (name == start) |
| { |
| as_bad (_("expected symbol name")); |
| ignore_rest_of_line (); |
| free (start); |
| return NULL; |
| } |
| |
| SKIP_WHITESPACE (); |
| |
| return start; |
| } |
| |
| |
| symbolS * |
| s_comm_internal (int param, |
| symbolS *(*comm_parse_extra) (int, symbolS *, addressT)) |
| { |
| char *name; |
| offsetT temp, size; |
| symbolS *symbolP = NULL; |
| char *stop = NULL; |
| char stopc = 0; |
| expressionS exp; |
| |
| if (flag_mri) |
| stop = mri_comment_field (&stopc); |
| |
| if ((name = read_symbol_name ()) == NULL) |
| goto out; |
| |
| /* Accept an optional comma after the name. The comma used to be |
| required, but Irix 5 cc does not generate it for .lcomm. */ |
| if (*input_line_pointer == ',') |
| input_line_pointer++; |
| |
| temp = get_absolute_expr (&exp); |
| size = temp; |
| size &= ((addressT) 2 << (stdoutput->arch_info->bits_per_address - 1)) - 1; |
| if (exp.X_op == O_absent) |
| { |
| as_bad (_("missing size expression")); |
| ignore_rest_of_line (); |
| goto out; |
| } |
| else if (temp != size || (!exp.X_unsigned && exp.X_add_number < 0)) |
| { |
| as_warn (_("size (%ld) out of range, ignored"), (long) temp); |
| ignore_rest_of_line (); |
| goto out; |
| } |
| |
| symbolP = symbol_find_or_make (name); |
| if ((S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP)) |
| && !S_IS_COMMON (symbolP)) |
| { |
| if (!S_IS_VOLATILE (symbolP)) |
| { |
| symbolP = NULL; |
| as_bad (_("symbol `%s' is already defined"), name); |
| ignore_rest_of_line (); |
| goto out; |
| } |
| symbolP = symbol_clone (symbolP, 1); |
| S_SET_SEGMENT (symbolP, undefined_section); |
| S_SET_VALUE (symbolP, 0); |
| symbol_set_frag (symbolP, &zero_address_frag); |
| S_CLEAR_VOLATILE (symbolP); |
| } |
| |
| size = S_GET_VALUE (symbolP); |
| if (size == 0) |
| size = temp; |
| else if (size != temp) |
| as_warn (_("size of \"%s\" is already %ld; not changing to %ld"), |
| name, (long) size, (long) temp); |
| |
| if (comm_parse_extra != NULL) |
| symbolP = (*comm_parse_extra) (param, symbolP, size); |
| else |
| { |
| S_SET_VALUE (symbolP, (valueT) size); |
| S_SET_EXTERNAL (symbolP); |
| S_SET_SEGMENT (symbolP, bfd_com_section_ptr); |
| } |
| |
| demand_empty_rest_of_line (); |
| out: |
| if (flag_mri) |
| mri_comment_end (stop, stopc); |
| free (name); |
| return symbolP; |
| } |
| |
| void |
| s_comm (int ignore) |
| { |
| s_comm_internal (ignore, NULL); |
| } |
| |
| /* The MRI COMMON pseudo-op. We handle this by creating a common |
| symbol with the appropriate name. We make s_space do the right |
| thing by increasing the size. */ |
| |
| void |
| s_mri_common (int small ATTRIBUTE_UNUSED) |
| { |
| char *name; |
| char c; |
| char *alc = NULL; |
| symbolS *sym; |
| offsetT align; |
| char *stop = NULL; |
| char stopc = 0; |
| |
| if (!flag_mri) |
| { |
| s_comm (0); |
| return; |
| } |
| |
| stop = mri_comment_field (&stopc); |
| |
| SKIP_WHITESPACE (); |
| |
| name = input_line_pointer; |
| if (!ISDIGIT (*name)) |
| c = get_symbol_name (& name); |
| else |
| { |
| do |
| { |
| ++input_line_pointer; |
| } |
| while (ISDIGIT (*input_line_pointer)); |
| |
| c = *input_line_pointer; |
| *input_line_pointer = '\0'; |
| |
| if (line_label != NULL) |
| { |
| alc = XNEWVEC (char, strlen (S_GET_NAME (line_label)) |
| + (input_line_pointer - name) + 1); |
| sprintf (alc, "%s%s", name, S_GET_NAME (line_label)); |
| name = alc; |
| } |
| } |
| |
| sym = symbol_find_or_make (name); |
| c = restore_line_pointer (c); |
| free (alc); |
| |
| if (*input_line_pointer != ',') |
| align = 0; |
| else |
| { |
| ++input_line_pointer; |
| align = get_absolute_expression (); |
| } |
| |
| if (S_IS_DEFINED (sym) && !S_IS_COMMON (sym)) |
| { |
| as_bad (_("symbol `%s' is already defined"), S_GET_NAME (sym)); |
| mri_comment_end (stop, stopc); |
| return; |
| } |
| |
| S_SET_EXTERNAL (sym); |
| S_SET_SEGMENT (sym, bfd_com_section_ptr); |
| mri_common_symbol = sym; |
| |
| #ifdef S_SET_ALIGN |
| if (align != 0) |
| S_SET_ALIGN (sym, align); |
| #else |
| (void) align; |
| #endif |
| |
| if (line_label != NULL) |
| { |
| expressionS exp; |
| exp.X_op = O_symbol; |
| exp.X_add_symbol = sym; |
| exp.X_add_number = 0; |
| symbol_set_value_expression (line_label, &exp); |
| symbol_set_frag (line_label, &zero_address_frag); |
| S_SET_SEGMENT (line_label, expr_section); |
| } |
| |
| /* FIXME: We just ignore the small argument, which distinguishes |
| COMMON and COMMON.S. I don't know what we can do about it. */ |
| |
| /* Ignore the type and hptype. */ |
| if (*input_line_pointer == ',') |
| input_line_pointer += 2; |
| if (*input_line_pointer == ',') |
| input_line_pointer += 2; |
| |
| demand_empty_rest_of_line (); |
| |
| mri_comment_end (stop, stopc); |
| } |
| |
| void |
| s_data (int ignore ATTRIBUTE_UNUSED) |
| { |
| segT section; |
| int temp; |
| |
| temp = get_absolute_expression (); |
| if (flag_readonly_data_in_text) |
| { |
| section = text_section; |
| temp += 1000; |
| } |
| else |
| section = data_section; |
| |
| subseg_set (section, (subsegT) temp); |
| |
| demand_empty_rest_of_line (); |
| } |
| |
| /* Handle the .file pseudo-op. This default definition may be overridden by |
| the object or CPU specific pseudo-ops. */ |
| |
| void |
| s_file_string (char *file) |
| { |
| #ifdef LISTING |
| if (listing) |
| listing_source_file (file); |
| #endif |
| register_dependency (file); |
| #ifdef obj_app_file |
| obj_app_file (file); |
| #endif |
| } |
| |
| void |
| s_file (int ignore ATTRIBUTE_UNUSED) |
| { |
| char *s; |
| int length; |
| |
| /* Some assemblers tolerate immediately following '"'. */ |
| if ((s = demand_copy_string (&length)) != 0) |
| { |
| new_logical_line_flags (s, -1, 1); |
| |
| /* In MRI mode, the preprocessor may have inserted an extraneous |
| backquote. */ |
| if (flag_m68k_mri |
| && *input_line_pointer == '\'' |
| && is_end_of_line[(unsigned char) input_line_pointer[1]]) |
| ++input_line_pointer; |
| |
| demand_empty_rest_of_line (); |
| s_file_string (s); |
| } |
| } |
| |
| static bool |
| get_linefile_number (int *flag) |
| { |
| expressionS exp; |
| |
| SKIP_WHITESPACE (); |
| |
| if (*input_line_pointer < '0' || *input_line_pointer > '9') |
| return false; |
| |
| /* Don't mistakenly interpret octal numbers as line numbers. */ |
| if (*input_line_pointer == '0') |
| { |
| *flag = 0; |
| ++input_line_pointer; |
| return true; |
| } |
| |
| expression_and_evaluate (&exp); |
| if (exp.X_op != O_constant) |
| return false; |
| |
| #if defined (BFD64) || LONG_MAX > INT_MAX |
| if (exp.X_add_number < INT_MIN || exp.X_add_number > INT_MAX) |
| return false; |
| #endif |
| |
| *flag = exp.X_add_number; |
| |
| return true; |
| } |
| |
| /* Handle the .linefile pseudo-op. This is automatically generated by |
| do_scrub_chars when a preprocessor # line comment is seen. This |
| default definition may be overridden by the object or CPU specific |
| pseudo-ops. */ |
| |
| void |
| s_linefile (int ignore ATTRIBUTE_UNUSED) |
| { |
| char *file = NULL; |
| int linenum, flags = 0; |
| |
| /* The given number is that of the next line. */ |
| if (!get_linefile_number (&linenum)) |
| { |
| ignore_rest_of_line (); |
| return; |
| } |
| |
| if (linenum < 0) |
| /* Some of the back ends can't deal with non-positive line numbers. |
| Besides, it's silly. GCC however will generate a line number of |
| zero when it is pre-processing builtins for assembler-with-cpp files: |
| |
| # 0 "<built-in>" |
| |
| We do not want to barf on this, especially since such files are used |
| in the GCC and GDB testsuites. So we check for negative line numbers |
| rather than non-positive line numbers. */ |
| as_warn (_("line numbers must be positive; line number %d rejected"), |
| linenum); |
| else |
| { |
| int length = 0; |
| |
| SKIP_WHITESPACE (); |
| |
| if (*input_line_pointer == '"') |
| file = demand_copy_string (&length); |
| else if (*input_line_pointer == '.') |
| { |
| /* buffer_and_nest() may insert this form. */ |
| ++input_line_pointer; |
| flags = 1 << 3; |
| } |
| |
| if (file) |
| { |
| int this_flag; |
| |
| while (get_linefile_number (&this_flag)) |
| switch (this_flag) |
| { |
| /* From GCC's cpp documentation: |
| 1: start of a new file. |
| 2: returning to a file after having included another file. |
| 3: following text comes from a system header file. |
| 4: following text should be treated as extern "C". |
| |
| 4 is nonsensical for the assembler; 3, we don't care about, |
| so we ignore it just in case a system header file is |
| included while preprocessing assembly. So 1 and 2 are all |
| we care about, and they are mutually incompatible. |
| new_logical_line_flags() demands this. */ |
| case 1: |
| case 2: |
| if (flags && flags != (1 << this_flag)) |
| as_warn (_("incompatible flag %i in line directive"), |
| this_flag); |
| else |
| flags |= 1 << this_flag; |
| break; |
| |
| case 3: |
| case 4: |
| /* We ignore these. */ |
| break; |
| |
| default: |
| as_warn (_("unsupported flag %i in line directive"), |
| this_flag); |
| break; |
| } |
| |
| if (!is_end_of_line[(unsigned char)*input_line_pointer]) |
| file = NULL; |
| } |
| |
| if (file || flags) |
| { |
| demand_empty_rest_of_line (); |
| |
| /* read_a_source_file() will bump the line number only if the line |
| is terminated by '\n'. */ |
| if (input_line_pointer[-1] == '\n') |
| linenum--; |
| |
| new_logical_line_flags (file, linenum, flags); |
| #ifdef LISTING |
| if (listing) |
| listing_source_line (linenum); |
| #endif |
| return; |
| } |
| } |
| ignore_rest_of_line (); |
| } |
| |
| /* Handle the .end pseudo-op. Actually, the real work is done in |
| read_a_source_file. */ |
| |
| void |
| s_end (int ignore ATTRIBUTE_UNUSED) |
| { |
| if (flag_mri) |
| { |
| /* The MRI assembler permits the start symbol to follow .end, |
| but we don't support that. */ |
| SKIP_WHITESPACE (); |
| if (!is_end_of_line[(unsigned char) *input_line_pointer] |
| && *input_line_pointer != '*' |
| && *input_line_pointer != '!') |
| as_warn (_("start address not supported")); |
| } |
| } |
| |
| /* Handle the .err pseudo-op. */ |
| |
| void |
| s_err (int ignore ATTRIBUTE_UNUSED) |
| { |
| as_bad (_(".err encountered")); |
| demand_empty_rest_of_line (); |
| } |
| |
| /* Handle the .error and .warning pseudo-ops. */ |
| |
| void |
| s_errwarn (int err) |
| { |
| int len; |
| /* The purpose for the conditional assignment is not to |
| internationalize the directive itself, but that we need a |
| self-contained message, one that can be passed like the |
| demand_copy_C_string return value, and with no assumption on the |
| location of the name of the directive within the message. */ |
| const char *msg |
| = (err ? _(".error directive invoked in source file") |
| : _(".warning directive invoked in source file")); |
| |
| if (!is_it_end_of_statement ()) |
| { |
| if (*input_line_pointer != '\"') |
| { |
| as_bad (_("%s argument must be a string"), |
| err ? ".error" : ".warning"); |
| ignore_rest_of_line (); |
| return; |
| } |
| |
| msg = demand_copy_C_string (&len); |
| if (msg == NULL) |
| return; |
| } |
| |
| if (err) |
| as_bad ("%s", msg); |
| else |
| as_warn ("%s", msg); |
| demand_empty_rest_of_line (); |
| } |
| |
| /* Handle the MRI fail pseudo-op. */ |
| |
| void |
| s_fail (int ignore ATTRIBUTE_UNUSED) |
| { |
| offsetT temp; |
| char *stop = NULL; |
| char stopc = 0; |
| |
| if (flag_mri) |
| stop = mri_comment_field (&stopc); |
| |
| temp = get_absolute_expression (); |
| if (temp >= 500) |
| as_warn (_(".fail %ld encountered"), (long) temp); |
| else |
| as_bad (_(".fail %ld encountered"), (long) temp); |
| |
| demand_empty_rest_of_line (); |
| |
| if (flag_mri) |
| mri_comment_end (stop, stopc); |
| } |
| |
| void |
| s_fill (int ignore ATTRIBUTE_UNUSED) |
| { |
| expressionS rep_exp; |
| long size = 1; |
| long fill = 0; |
| char *p; |
| |
| #ifdef md_flush_pending_output |
| md_flush_pending_output (); |
| #endif |
| |
| #ifdef md_cons_align |
| md_cons_align (1); |
| #endif |
| |
| expression (&rep_exp); |
| if (*input_line_pointer == ',') |
| { |
| input_line_pointer++; |
| size = get_absolute_expression (); |
| if (*input_line_pointer == ',') |
| { |
| input_line_pointer++; |
| fill = get_absolute_expression (); |
| } |
| } |
| |
| /* This is to be compatible with BSD 4.2 AS, not for any rational reason. */ |
| #define BSD_FILL_SIZE_CROCK_8 (8) |
| if (size > BSD_FILL_SIZE_CROCK_8) |
| { |
| as_warn (_(".fill size clamped to %d"), BSD_FILL_SIZE_CROCK_8); |
| size = BSD_FILL_SIZE_CROCK_8; |
| } |
| if (size < 0) |
| { |
| as_warn (_("size negative; .fill ignored")); |
| size = 0; |
| } |
| else if (rep_exp.X_op == O_constant && rep_exp.X_add_number <= 0) |
| { |
| if (rep_exp.X_add_number < 0) |
| as_warn (_("repeat < 0; .fill ignored")); |
| size = 0; |
| } |
| else if (size && !need_pass_2) |
| { |
| if (now_seg == absolute_section && rep_exp.X_op != O_constant) |
| { |
| as_bad (_("non-constant fill count for absolute section")); |
| size = 0; |
| } |
| else if (now_seg == absolute_section && fill && rep_exp.X_add_number != 0) |
| { |
| as_bad (_("attempt to fill absolute section with non-zero value")); |
| size = 0; |
| } |
| else if (fill |
| && (rep_exp.X_op != O_constant || rep_exp.X_add_number != 0) |
| && in_bss ()) |
| { |
| as_bad (_("attempt to fill section `%s' with non-zero value"), |
| segment_name (now_seg)); |
| size = 0; |
| } |
| } |
| |
| if (size && !need_pass_2) |
| { |
| if (now_seg == absolute_section) |
| abs_section_offset += rep_exp.X_add_number * size; |
| |
| if (rep_exp.X_op == O_constant) |
| { |
| p = frag_var (rs_fill, (int) size, (int) size, |
| (relax_substateT) 0, (symbolS *) 0, |
| (offsetT) rep_exp.X_add_number, |
| (char *) 0); |
| } |
| else |
| { |
| /* We don't have a constant repeat count, so we can't use |
| rs_fill. We can get the same results out of rs_space, |
| but its argument is in bytes, so we must multiply the |
| repeat count by size. */ |
| |
| symbolS *rep_sym; |
| rep_sym = make_expr_symbol (&rep_exp); |
| if (size != 1) |
| { |
| expressionS size_exp; |
| size_exp.X_op = O_constant; |
| size_exp.X_add_number = size; |
| |
| rep_exp.X_op = O_multiply; |
| rep_exp.X_add_symbol = rep_sym; |
| rep_exp.X_op_symbol = make_expr_symbol (&size_exp); |
| rep_exp.X_add_number = 0; |
| rep_sym = make_expr_symbol (&rep_exp); |
| } |
| |
| p = frag_var (rs_space, (int) size, (int) size, |
| (relax_substateT) 0, rep_sym, (offsetT) 0, (char *) 0); |
| } |
| |
| memset (p, 0, (unsigned int) size); |
| |
| /* The magic number BSD_FILL_SIZE_CROCK_4 is from BSD 4.2 VAX |
| flavoured AS. The following bizarre behaviour is to be |
| compatible with above. I guess they tried to take up to 8 |
| bytes from a 4-byte expression and they forgot to sign |
| extend. */ |
| #define BSD_FILL_SIZE_CROCK_4 (4) |
| md_number_to_chars (p, (valueT) fill, |
| (size > BSD_FILL_SIZE_CROCK_4 |
| ? BSD_FILL_SIZE_CROCK_4 |
| : (int) size)); |
| /* Note: .fill (),0 emits no frag (since we are asked to .fill 0 bytes) |
| but emits no error message because it seems a legal thing to do. |
| It is a degenerate case of .fill but could be emitted by a |
| compiler. */ |
| } |
| demand_empty_rest_of_line (); |
| } |
| |
| void |
| s_globl (int ignore ATTRIBUTE_UNUSED) |
| { |
| char *name; |
| int c; |
| symbolS *symbolP; |
| char *stop = NULL; |
| char stopc = 0; |
| |
| if (flag_mri) |
| stop = mri_comment_field (&stopc); |
| |
| do |
| { |
| if ((name = read_symbol_name ()) == NULL) |
| return; |
| |
| symbolP = symbol_find_or_make (name); |
| S_SET_EXTERNAL (symbolP); |
| |
| SKIP_WHITESPACE (); |
| c = *input_line_pointer; |
| if (c == ',') |
| { |
| input_line_pointer++; |
| SKIP_WHITESPACE (); |
| if (is_end_of_line[(unsigned char) *input_line_pointer]) |
| c = '\n'; |
| } |
| |
| free (name); |
| } |
| while (c == ','); |
| |
| demand_empty_rest_of_line (); |
| |
| if (flag_mri) |
| mri_comment_end (stop, stopc); |
| } |
| |
| /* Handle the MRI IRP and IRPC pseudo-ops. */ |
| |
| void |
| s_irp (int irpc) |
| { |
| char * eol; |
| const char * file; |
| unsigned int line; |
| sb s; |
| const char *err; |
| sb out; |
| |
| file = as_where (&line); |
| |
| eol = find_end_of_line (input_line_pointer, 0); |
| sb_build (&s, eol - input_line_pointer); |
| sb_add_buffer (&s, input_line_pointer, eol - input_line_pointer); |
| input_line_pointer = eol; |
| |
| sb_new (&out); |
| |
| err = expand_irp (irpc, 0, &s, &out, get_macro_line_sb); |
| if (err != NULL) |
| as_bad_where (file, line, "%s", err); |
| |
| sb_kill (&s); |
| |
| input_scrub_include_sb (&out, input_line_pointer, expanding_repeat); |
| sb_kill (&out); |
| buffer_limit = input_scrub_next_buffer (&input_line_pointer); |
| } |
| |
| /* Handle the .linkonce pseudo-op. This tells the assembler to mark |
| the section to only be linked once. However, this is not supported |
| by most object file formats. This takes an optional argument, |
| which is what to do about duplicates. */ |
| |
| void |
| s_linkonce (int ignore ATTRIBUTE_UNUSED) |
| { |
| enum linkonce_type type; |
| |
| SKIP_WHITESPACE (); |
| |
| type = LINKONCE_DISCARD; |
| |
| if (!is_end_of_line[(unsigned char) *input_line_pointer]) |
| { |
| char *s; |
| char c; |
| |
| c = get_symbol_name (& s); |
| if (strcasecmp (s, "discard") == 0) |
| type = LINKONCE_DISCARD; |
| else if (strcasecmp (s, "one_only") == 0) |
| type = LINKONCE_ONE_ONLY; |
| else if (strcasecmp (s, "same_size") == 0) |
| type = LINKONCE_SAME_SIZE; |
| else if (strcasecmp (s, "same_contents") == 0) |
| type = LINKONCE_SAME_CONTENTS; |
| else |
| as_warn (_("unrecognized .linkonce type `%s'"), s); |
| |
| (void) restore_line_pointer (c); |
| } |
| |
| #ifdef obj_handle_link_once |
| obj_handle_link_once (type); |
| #else /* ! defined (obj_handle_link_once) */ |
| { |
| flagword flags; |
| |
| if ((bfd_applicable_section_flags (stdoutput) & SEC_LINK_ONCE) == 0) |
| as_warn (_(".linkonce is not supported for this object file format")); |
| |
| flags = bfd_section_flags (now_seg); |
| flags |= SEC_LINK_ONCE; |
| switch (type) |
| { |
| default: |
| abort (); |
| case LINKONCE_DISCARD: |
| flags |= SEC_LINK_DUPLICATES_DISCARD; |
| break; |
| case LINKONCE_ONE_ONLY: |
| flags |= SEC_LINK_DUPLICATES_ONE_ONLY; |
| break; |
| case LINKONCE_SAME_SIZE: |
| flags |= SEC_LINK_DUPLICATES_SAME_SIZE; |
| break; |
| case LINKONCE_SAME_CONTENTS: |
| flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS; |
| break; |
| } |
| if (!bfd_set_section_flags (now_seg, flags)) |
| as_bad (_("bfd_set_section_flags: %s"), |
| bfd_errmsg (bfd_get_error ())); |
| } |
| #endif /* ! defined (obj_handle_link_once) */ |
| |
| demand_empty_rest_of_line (); |
| } |
| |
| void |
| bss_alloc (symbolS *symbolP, addressT size, unsigned int align) |
| { |
| char *pfrag; |
| segT current_seg = now_seg; |
| subsegT current_subseg = now_subseg; |
| segT bss_seg = bss_section; |
| |
| #if defined (TC_MIPS) || defined (TC_ALPHA) |
| if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour |
| || OUTPUT_FLAVOR == bfd_target_elf_flavour) |
| { |
| /* For MIPS and Alpha ECOFF or ELF, small objects are put in .sbss. */ |
| if (size <= bfd_get_gp_size (stdoutput)) |
| { |
| bss_seg = subseg_new (".sbss", 1); |
| seg_info (bss_seg)->bss = 1; |
| if (!bfd_set_section_flags (bss_seg, SEC_ALLOC | SEC_SMALL_DATA)) |
| as_warn (_("error setting flags for \".sbss\": %s"), |
| bfd_errmsg (bfd_get_error ())); |
| } |
| } |
| #endif |
| subseg_set (bss_seg, 1); |
| |
| if (align > OCTETS_PER_BYTE_POWER) |
| { |
| record_alignment (bss_seg, align); |
| frag_align (align, 0, 0); |
| } |
| |
| /* Detach from old frag. */ |
| if (S_GET_SEGMENT (symbolP) == bss_seg) |
| symbol_get_frag (symbolP)->fr_symbol = NULL; |
| |
| symbol_set_frag (symbolP, frag_now); |
| pfrag = frag_var (rs_org, 1, 1, 0, symbolP, size * OCTETS_PER_BYTE, NULL); |
| *pfrag = 0; |
| |
| #ifdef S_SET_SIZE |
| S_SET_SIZE (symbolP, size); |
| #endif |
| S_SET_SEGMENT (symbolP, bss_seg); |
| |
| #ifdef OBJ_COFF |
| /* The symbol may already have been created with a preceding |
| ".globl" directive -- be careful not to step on storage class |
| in that case. Otherwise, set it to static. */ |
| if (S_GET_STORAGE_CLASS (symbolP) != C_EXT) |
| S_SET_STORAGE_CLASS (symbolP, C_STAT); |
| #endif /* OBJ_COFF */ |
| |
| subseg_set (current_seg, current_subseg); |
| } |
| |
| offsetT |
| parse_align (int align_bytes) |
| { |
| expressionS exp; |
| addressT align; |
| |
| SKIP_WHITESPACE (); |
| if (*input_line_pointer != ',') |
| { |
| no_align: |
| as_bad (_("expected alignment after size")); |
| ignore_rest_of_line (); |
| return -1; |
| } |
| |
| input_line_pointer++; |
| SKIP_WHITESPACE (); |
| |
| align = get_absolute_expr (&exp); |
| if (exp.X_op == O_absent) |
| goto no_align; |
| |
| if (!exp.X_unsigned && exp.X_add_number < 0) |
| { |
| as_warn (_("alignment negative; 0 assumed")); |
| align = 0; |
| } |
| |
| if (align_bytes && align != 0) |
| { |
| /* convert to a power of 2 alignment */ |
| unsigned int alignp2 = 0; |
| while ((align & 1) == 0) |
| align >>= 1, ++alignp2; |
| if (align != 1) |
| { |
| as_bad (_("alignment not a power of 2")); |
| ignore_rest_of_line (); |
| return -1; |
| } |
| align = alignp2; |
| } |
| return align; |
| } |
| |
| /* Called from s_comm_internal after symbol name and size have been |
| parsed. NEEDS_ALIGN is 0 if it was an ".lcomm" (2 args only), |
| 1 if this was a ".bss" directive which has a 3rd argument |
| (alignment as a power of 2), or 2 if this was a ".bss" directive |
| with alignment in bytes. */ |
| |
| symbolS * |
| s_lcomm_internal (int needs_align, symbolS *symbolP, addressT size) |
| { |
| addressT align = 0; |
| |
| if (needs_align) |
| { |
| align = parse_align (needs_align - 1); |
| if (align == (addressT) -1) |
| return NULL; |
| } |
| else |
| /* Assume some objects may require alignment on some systems. */ |
| TC_IMPLICIT_LCOMM_ALIGNMENT (size, align); |
| |
| bss_alloc (symbolP, size, align); |
| return symbolP; |
| } |
| |
| void |
| s_lcomm (int needs_align) |
| { |
| s_comm_internal (needs_align, s_lcomm_internal); |
| } |
| |
| void |
| s_lcomm_bytes (int needs_align) |
| { |
| s_comm_internal (needs_align * 2, s_lcomm_internal); |
| } |
| |
| void |
| s_lsym (int ignore ATTRIBUTE_UNUSED) |
| { |
| char *name; |
| expressionS exp; |
| symbolS *symbolP; |
| |
| /* We permit ANY defined expression: BSD4.2 demands constants. */ |
| if ((name = read_symbol_name ()) == NULL) |
| return; |
| |
| if (*input_line_pointer != ',') |
| { |
| as_bad (_("expected comma after \"%s\""), name); |
| goto err_out; |
| } |
| |
| input_line_pointer++; |
| expression_and_evaluate (&exp); |
| |
| if (exp.X_op != O_constant |
| && exp.X_op != O_register) |
| { |
| as_bad (_("bad expression")); |
| goto err_out; |
| } |
| |
| symbolP = symbol_find_or_make (name); |
| |
| if (S_GET_SEGMENT (symbolP) == undefined_section) |
| { |
| /* The name might be an undefined .global symbol; be sure to |
| keep the "external" bit. */ |
| S_SET_SEGMENT (symbolP, |
| (exp.X_op == O_constant |
| ? absolute_section |
| : reg_section)); |
| S_SET_VALUE (symbolP, (valueT) exp.X_add_number); |
| } |
| else |
| { |
| as_bad (_("symbol `%s' is already defined"), name); |
| } |
| |
| demand_empty_rest_of_line (); |
| free (name); |
| return; |
| |
| err_out: |
| ignore_rest_of_line (); |
| free (name); |
| return; |
| } |
| |
| /* Read a line into an sb. Returns the character that ended the line |
| or zero if there are no more lines. */ |
| |
| static int |
| get_line_sb (sb *line, int in_macro) |
| { |
| char *eol; |
| |
| if (input_line_pointer[-1] == '\n') |
| bump_line_counters (); |
| |
| if (input_line_pointer >= buffer_limit) |
| { |
| buffer_limit = input_scrub_next_buffer (&input_line_pointer); |
| if (buffer_limit == 0) |
| return 0; |
| } |
| |
| eol = _find_end_of_line (input_line_pointer, flag_m68k_mri, 0, in_macro); |
| sb_add_buffer (line, input_line_pointer, eol - input_line_pointer); |
| input_line_pointer = eol; |
| |
| /* Don't skip multiple end-of-line characters, because that breaks support |
| for the IA-64 stop bit (;;) which looks like two consecutive end-of-line |
| characters but isn't. Instead just skip one end of line character and |
| return the character skipped so that the caller can re-insert it if |
| necessary. */ |
| return *input_line_pointer++; |
| } |
| |
| static size_t |
| get_non_macro_line_sb (sb *line) |
| { |
| return get_line_sb (line, 0); |
| } |
| |
| static size_t |
| get_macro_line_sb (sb *line) |
| { |
| return get_line_sb (line, 1); |
| } |
| |
| /* Define a macro. This is an interface to macro.c. */ |
| |
| void |
| s_macro (int ignore ATTRIBUTE_UNUSED) |
| { |
| char *eol; |
| sb s; |
| macro_entry *macro; |
| |
| eol = find_end_of_line (input_line_pointer, 0); |
| sb_build (&s, eol - input_line_pointer); |
| sb_add_buffer (&s, input_line_pointer, eol - input_line_pointer); |
| input_line_pointer = eol; |
| |
| if (line_label != NULL) |
| { |
| sb label; |
| size_t len; |
| const char *name; |
| |
| name = S_GET_NAME (line_label); |
| len = strlen (name); |
| sb_build (&label, len); |
| sb_add_buffer (&label, name, len); |
| macro = define_macro (&s, &label, get_macro_line_sb); |
| sb_kill (&label); |
| } |
| else |
| macro = define_macro (&s, NULL, get_macro_line_sb); |
| if (macro != NULL) |
| { |
| if (line_label != NULL) |
| { |
| S_SET_SEGMENT (line_label, absolute_section); |
| S_SET_VALUE (line_label, 0); |
| symbol_set_frag (line_label, &zero_address_frag); |
| } |
| |
| if (((NO_PSEUDO_DOT || flag_m68k_mri) |
| && str_hash_find (po_hash, macro->name) != NULL) |
| || (!flag_m68k_mri |
| && macro->name[0] == '.' |
| && str_hash_find (po_hash, macro->name + 1) != NULL)) |
| { |
| as_warn_where (macro->file, macro->line, |
| _("attempt to redefine pseudo-op `%s' ignored"), |
| macro->name); |
| str_hash_delete (macro_hash, macro->name); |
| } |
| } |
| |
| sb_kill (&s); |
| } |
| |
| /* Handle the .mexit pseudo-op, which immediately exits a macro |
| expansion. */ |
| |
| void |
| s_mexit (int ignore ATTRIBUTE_UNUSED) |
| { |
| if (macro_nest) |
| { |
| cond_exit_macro (macro_nest); |
| buffer_limit = input_scrub_next_buffer (&input_line_pointer); |
| } |
| else |
| as_warn (_("ignoring macro exit outside a macro definition.")); |
| } |
| |
| /* Switch in and out of MRI mode. */ |
| |
| void |
| s_mri (int ignore ATTRIBUTE_UNUSED) |
| { |
| int on; |
| #ifdef MRI_MODE_CHANGE |
| int old_flag; |
| #endif |
| |
| on = get_absolute_expression (); |
| #ifdef MRI_MODE_CHANGE |
| old_flag = flag_mri; |
| #endif |
| if (on != 0) |
| { |
| flag_mri = 1; |
| #ifdef TC_M68K |
| flag_m68k_mri = 1; |
| #endif |
| lex_type['?'] = LEX_BEGIN_NAME | LEX_NAME; |
| } |
| else |
| { |
| flag_mri = 0; |
| #ifdef TC_M68K |
| flag_m68k_mri = 0; |
| #endif |
| lex_type['?'] = LEX_QM; |
| } |
| |
| /* Operator precedence changes in m68k MRI mode, so we need to |
| update the operator rankings. */ |
| expr_set_precedence (); |
| |
| #ifdef MRI_MODE_CHANGE |
| if (on != old_flag) |
| MRI_MODE_CHANGE (on); |
| #endif |
| |
| demand_empty_rest_of_line (); |
| } |
| |
| /* Handle changing the location counter. */ |
| |
| static void |
| do_org (segT segment, expressionS *exp, int fill) |
| { |
| if (segment != now_seg |
| && segment != absolute_section |
| && segment != expr_section) |
| as_bad (_("invalid segment \"%s\""), segment_name (segment)); |
| |
| if (now_seg == absolute_section) |
| { |
| if (fill != 0) |
| as_warn (_("ignoring fill value in absolute section")); |
| if (exp->X_op != O_constant) |
| { |
| as_bad (_("only constant offsets supported in absolute section")); |
| exp->X_add_number = 0; |
| } |
| abs_section_offset = exp->X_add_number; |
| } |
| else |
| { |
| char *p; |
| symbolS *sym = exp->X_add_symbol; |
| offsetT off = exp->X_add_number * OCTETS_PER_BYTE; |
| |
| if (fill && in_bss ()) |
| as_warn (_("ignoring fill value in section `%s'"), |
| segment_name (now_seg)); |
| |
| if (exp->X_op != O_constant && exp->X_op != O_symbol) |
| { |
| /* Handle complex expressions. */ |
| sym = make_expr_symbol (exp); |
| off = 0; |
| } |
| |
| p = frag_var (rs_org, 1, 1, (relax_substateT) 0, sym, off, (char *) 0); |
| *p = fill; |
| } |
| } |
| |
| void |
| s_org (int ignore ATTRIBUTE_UNUSED) |
| { |
| segT segment; |
| expressionS exp; |
| long temp_fill; |
| |
| #ifdef md_flush_pending_output |
| md_flush_pending_output (); |
| #endif |
| |
| /* The m68k MRI assembler has a different meaning for .org. It |
| means to create an absolute section at a given address. We can't |
| support that--use a linker script instead. */ |
| if (flag_m68k_mri) |
| { |
| as_bad (_("MRI style ORG pseudo-op not supported")); |
| ignore_rest_of_line (); |
| return; |
| } |
| |
| /* Don't believe the documentation of BSD 4.2 AS. There is no such |
| thing as a sub-segment-relative origin. Any absolute origin is |
| given a warning, then assumed to be segment-relative. Any |
| segmented origin expression ("foo+42") had better be in the right |
| segment or the .org is ignored. |
| |
| BSD 4.2 AS warns if you try to .org backwards. We cannot because |
| we never know sub-segment sizes when we are reading code. BSD |
| will crash trying to emit negative numbers of filler bytes in |
| certain .orgs. We don't crash, but see as-write for that code. |
| |
| Don't make frag if need_pass_2==1. */ |
| segment = get_known_segmented_expression (&exp); |
| if (*input_line_pointer == ',') |
| { |
| input_line_pointer++; |
| temp_fill = get_absolute_expression (); |
| } |
| else |
| temp_fill = 0; |
| |
| if (!need_pass_2) |
| do_org (segment, &exp, temp_fill); |
| |
| demand_empty_rest_of_line (); |
| } |
| |
| /* Handle parsing for the MRI SECT/SECTION pseudo-op. This should be |
| called by the obj-format routine which handles section changing |
| when in MRI mode. It will create a new section, and return it. It |
| will set *TYPE to the section type: one of 'C' (code), 'D' (data), |
| 'M' (mixed), or 'R' (romable). The flags will be set in the section. */ |
| |
| void |
| s_mri_sect (char *type ATTRIBUTE_UNUSED) |
| { |
| #ifdef TC_M68K |
| |
| char *name; |
| char c; |
| segT seg; |
| |
| SKIP_WHITESPACE (); |
| |
| name = input_line_pointer; |
| if (!ISDIGIT (*name)) |
| c = get_symbol_name (& name); |
| else |
| { |
| do |
| { |
| ++input_line_pointer; |
| } |
| while (ISDIGIT (*input_line_pointer)); |
| |
| c = *input_line_pointer; |
| *input_line_pointer = '\0'; |
| } |
| |
| name = xstrdup (name); |
| |
| c = restore_line_pointer (c); |
| |
| seg = subseg_new (name, 0); |
| |
| if (c == ',') |
| { |
| unsigned int align; |
| |
| ++input_line_pointer; |
| align = get_absolute_expression (); |
| record_alignment (seg, align); |
| } |
| |
| *type = 'C'; |
| if (*input_line_pointer == ',') |
| { |
| c = *++input_line_pointer; |
| c = TOUPPER (c); |
| if (c == 'C' || c == 'D' || c == 'M' || c == 'R') |
| *type = c; |
| else |
| as_bad (_("unrecognized section type")); |
| ++input_line_pointer; |
| |
| { |
| flagword flags; |
| |
| flags = SEC_NO_FLAGS; |
| if (*type == 'C') |
| flags = SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE; |
| else if (*type == 'D' || *type == 'M') |
| flags = SEC_ALLOC | SEC_LOAD | SEC_DATA; |
| else if (*type == 'R') |
| flags = SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_READONLY | SEC_ROM; |
| if (flags != SEC_NO_FLAGS) |
| { |
| if (!bfd_set_section_flags (seg, flags)) |
| as_warn (_("error setting flags for \"%s\": %s"), |
| bfd_section_name (seg), |
| bfd_errmsg (bfd_get_error ())); |
| } |
| } |
| } |
| |
| /* Ignore the HP type. */ |
| if (*input_line_pointer == ',') |
| input_line_pointer += 2; |
| |
| demand_empty_rest_of_line (); |
| |
| #else /* ! TC_M68K */ |
| /* The MRI assembler seems to use different forms of .sect for |
| different targets. */ |
| as_bad ("MRI mode not supported for this target"); |
| ignore_rest_of_line (); |
| #endif /* ! TC_M68K */ |
| } |
| |
| /* Handle the .print pseudo-op. */ |
| |
| void |
| s_print (int ignore ATTRIBUTE_UNUSED) |
| { |
| char *s; |
| int len; |
| |
| s = demand_copy_C_string (&len); |
| if (s != NULL) |
| printf ("%s\n", s); |
| demand_empty_rest_of_line (); |
| } |
| |
| /* Handle the .purgem pseudo-op. */ |
| |
| void |
| s_purgem (int ignore ATTRIBUTE_UNUSED) |
| { |
| if (is_it_end_of_statement ()) |
| { |
| demand_empty_rest_of_line (); |
| return; |
| } |
| |
| do |
| { |
| char *name; |
| char c; |
| |
| SKIP_WHITESPACE (); |
| c = get_symbol_name (& name); |
| delete_macro (name); |
| *input_line_pointer = c; |
| SKIP_WHITESPACE_AFTER_NAME (); |
| } |
| while (*input_line_pointer++ == ','); |
| |
| --input_line_pointer; |
| demand_empty_rest_of_line (); |
| } |
| |
| /* Handle the .endm/.endr pseudo-ops. */ |
| |
| static void |
| s_bad_end (int endr) |
| { |
| as_warn (_(".end%c encountered without preceding %s"), |
| endr ? 'r' : 'm', |
| endr ? ".rept, .irp, or .irpc" : ".macro"); |
| demand_empty_rest_of_line (); |
| } |
| |
| /* Handle the .rept pseudo-op. */ |
| |
| void |
| s_rept (int expand_count) |
| { |
| size_t count; |
| |
| count = (size_t) get_absolute_expression (); |
| |
| do_repeat (count, "REPT", "ENDR", expand_count ? "" : NULL); |
| } |
| |
| /* This function provides a generic repeat block implementation. It allows |
| different directives to be used as the start/end keys. Any text matching |
| the optional EXPANDER in the block is replaced by the remaining iteration |
| count. Except when EXPANDER is the empty string, in which case \+ will |
| be looked for (as also recognized in macros as well as .irp and .irpc), |
| where the replacement will be the number of iterations done so far. */ |
| |
| void |
| do_repeat (size_t count, const char *start, const char *end, |
| const char *expander) |
| { |
| sb one; |
| sb many; |
| |
| if (((ssize_t) count) < 0) |
| { |
| as_bad (_("negative count for %s - ignored"), start); |
| count = 0; |
| } |
| |
| sb_new (&one); |
| if (!buffer_and_nest (start, end, &one, get_non_macro_line_sb)) |
| { |
| as_bad (_("%s without %s"), start, end); |
| sb_kill (&one); |
| return; |
| } |
| |
| sb_terminate (&one); |
| |
| if (expander != NULL && !*expander && strstr (one.ptr, "\\+") != NULL) |
| { |
| /* The 3 here and below are arbitrary, added in an attempt to limit |
| re-allocation needs in sb_add_...() for moderate repeat counts. */ |
| sb_build (&many, count * (one.len + 3)); |
| |
| for (size_t done = 0; count-- > 0; ++done) |
| { |
| const char *ptr, *bs; |
| sb processed; |
| |
| sb_build (&processed, one.len + 3); |
| |
| for (ptr = one.ptr; (bs = strchr (ptr, '\\')) != NULL; ) |
| { |
| sb_add_buffer (&processed, ptr, bs - ptr); |
| switch (bs[1]) |
| { |
| char scratch[24]; |
| |
| default: |
| sb_add_char (&processed, '\\'); |
| sb_add_char (&processed, bs[1]); |
| ptr |