Fix v850 sanitization.
[deliverable/binutils-gdb.git] / gas / as.h
CommitLineData
fecd2382 1/* as.h - global header file
590c50d8 2 Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 96, 1997
011d16ac 3 Free Software Foundation, Inc.
6efd877d 4
a39116f1 5 This file is part of GAS, the GNU Assembler.
6efd877d 6
a39116f1
RP
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
6efd877d 11
a39116f1
RP
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
6efd877d 16
a39116f1 17 You should have received a copy of the GNU General Public License
590c50d8
ILT
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
fecd2382 21
7f955c18 22#ifndef GAS
fecd2382 23#define GAS 1
fecd2382
RP
24/*
25 * I think this stuff is largely out of date. xoxorich.
26 *
27 * CAPITALISED names are #defined.
28 * "lowercaseH" is #defined if "lowercase.h" has been #include-d.
29 * "lowercaseT" is a typedef of "lowercase" objects.
30 * "lowercaseP" is type "pointer to object of type 'lowercase'".
31 * "lowercaseS" is typedef struct ... lowercaseS.
32 *
33 * #define DEBUG to enable all the "know" assertion tests.
68878ef1 34 * #define SUSPECT when debugging hash code.
fecd2382
RP
35 * #define COMMON as "extern" for all modules except one, where you #define
36 * COMMON as "".
37 * If TEST is #defined, then we are testing a module: #define COMMON as "".
38 */
39
460531da 40#include "config.h"
fecd2382 41
87e48495 42/* This is the code recommended in the autoconf documentation, almost
460531da
KR
43 verbatim. If it doesn't work for you, let me know, and notify
44 djm@gnu.ai.mit.edu as well. */
87e48495
KR
45/* Added #undef for DJ Delorie. The right fix is to ensure that as.h
46 is included first, before even any system header files, in all files
47 that use it. KR 1994.11.03 */
3b85367c
KR
48/* Added void* version for STDC case. This is to be compatible with
49 the declaration in bison.simple, used for m68k operand parsing.
50 --KR 1995.08.08 */
58bd5f50 51/* Force void* decl for hpux. This is what Bison uses. --KR 1995.08.16 */
87e48495 52
460531da
KR
53/* AIX requires this to be the first thing in the file. */
54#ifdef __GNUC__
a089d2da
ILT
55#ifdef __STDC__
56extern void *alloca ();
57#else
58extern char *alloca ();
59#endif
460531da
KR
60#else
61# if HAVE_ALLOCA_H
62# include <alloca.h>
63# else
64# ifdef _AIX
65 #pragma alloca
66# else
67# ifndef alloca /* predefined by HP cc +Olibcalls */
58bd5f50 68# if !defined (__STDC__) && !defined (__hpux)
a089d2da 69extern char *alloca ();
3b85367c 70# else
a089d2da 71extern void *alloca ();
58bd5f50
KR
72# endif /* __STDC__, __hpux */
73# endif /* alloca */
74# endif /* _AIX */
75# endif /* HAVE_ALLOCA_H */
460531da 76#endif
fecd2382 77
b11fb939 78/* Now, tend to the rest of the configuration. */
7f955c18 79
b11fb939 80/* System include files first... */
fecd2382 81#include <stdio.h>
b11fb939
KR
82#include <ctype.h>
83#ifdef HAVE_STRING_H
84#include <string.h>
85#else
5cece526 86#ifdef HAVE_STRINGS_H
b11fb939
KR
87#include <strings.h>
88#endif
5cece526 89#endif
b11fb939
KR
90#ifdef HAVE_STDLIB_H
91#include <stdlib.h>
92#endif
93#ifdef HAVE_UNISTD_H
94#include <unistd.h>
95#endif
96#ifdef HAVE_SYS_TYPES_H
97/* for size_t, pid_t */
98#include <sys/types.h>
99#endif
100
f3d817d8
DM
101#include <getopt.h>
102/* The first getopt value for machine-independent long options.
103 150 isn't special; it's just an arbitrary non-ASCII char value. */
104#define OPTION_STD_BASE 150
105/* The first getopt value for machine-dependent long options.
106 170 gives the standard options room to grow. */
107#define OPTION_MD_BASE 170
108
68878ef1
KR
109#ifdef DEBUG
110#undef NDEBUG
111#endif
d5f41403
KR
112#if !defined (__GNUC__) || __GNUC_MINOR__ <= 5
113#define __PRETTY_FUNCTION__ ((char*)0)
114#endif
115#if 0
9777b772 116
b11fb939
KR
117/* Handle lossage with assert.h. */
118#ifndef BROKEN_ASSERT
fecd2382 119#include <assert.h>
b11fb939
KR
120#else /* BROKEN_ASSERT */
121#ifndef NDEBUG
d5f41403 122#define assert(p) ((p) ? 0 : (as_assert (__FILE__, __LINE__, __PRETTY_FUNCTION__), 0))
b11fb939
KR
123#else
124#define assert(p) ((p), 0)
125#endif
126#endif /* BROKEN_ASSERT */
9777b772 127
d5f41403 128#else
9777b772 129
d5f41403 130#define assert(P) ((P) ? 0 : (as_assert (__FILE__, __LINE__, __PRETTY_FUNCTION__), 0))
9777b772
KR
131#undef abort
132#define abort() as_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__)
133
d5f41403 134#endif
c593cf41 135
b11fb939
KR
136
137/* Now GNU header files... */
68878ef1
KR
138#include <ansidecl.h>
139#ifdef BFD_ASSEMBLER
140#include <bfd.h>
141#endif
590c50d8 142#include <libiberty.h>
b11fb939 143
87e48495
KR
144/* Define the standard progress macros. */
145#include <progress.h>
b11fb939 146
b11fb939 147/* This doesn't get taken care of anywhere. */
011d16ac 148#ifndef __MWERKS__ /* Metrowerks C chokes on the "defined (inline)" */
b11fb939
KR
149#if !defined (__GNUC__) && !defined (inline)
150#define inline
151#endif
011d16ac 152#endif /* !__MWERKS__ */
b11fb939
KR
153
154/* Other stuff from config.h. */
5cece526
ILT
155#ifdef NEED_DECLARATION_STRSTR
156extern char *strstr ();
157#endif
87e48495 158#ifdef NEED_DECLARATION_MALLOC
b11fb939
KR
159extern PTR malloc ();
160extern PTR realloc ();
161#endif
87e48495 162#ifdef NEED_DECLARATION_FREE
b11fb939
KR
163extern void free ();
164#endif
87e48495
KR
165#ifdef NEED_DECLARATION_ERRNO
166extern int errno;
167#endif
b11fb939 168
590c50d8
ILT
169/* This is needed for VMS with DEC C. */
170#if ! defined (__GNUC__) && ! defined (HAVE_UNLINK) && defined (HAVE_REMOVE)
87e48495 171#define unlink remove
460531da
KR
172#endif
173
9777b772
KR
174/* Hack to make "gcc -Wall" not complain about obstack macros. */
175#if !defined (memcpy) && !defined (bcopy)
176#define bcopy(src,dest,size) memcpy(dest,src,size)
177#endif
178
b17c891e
KR
179/* Make Saber happier on obstack.h. */
180#ifdef SABER
181#undef __PTR_TO_INT
182#define __PTR_TO_INT(P) ((int)(P))
183#undef __INT_TO_PTR
184#define __INT_TO_PTR(P) ((char *)(P))
185#endif
186
68878ef1
KR
187#ifndef __LINE__
188#define __LINE__ "unknown"
189#endif /* __LINE__ */
190
191#ifndef __FILE__
192#define __FILE__ "unknown"
193#endif /* __FILE__ */
194
7f955c18 195#ifndef FOPEN_WB
b11fb939
KR
196#ifdef GO32
197#include "fopen-bin.h"
198#else
7f955c18
KR
199#include "fopen-same.h"
200#endif
b11fb939 201#endif
7f955c18 202
460531da
KR
203#ifndef EXIT_SUCCESS
204#define EXIT_SUCCESS 0
205#define EXIT_FAILURE 1
206#endif
207
3340f7e5
RP
208#define obstack_chunk_alloc xmalloc
209#define obstack_chunk_free xfree
fecd2382 210
a39116f1
RP
211#define xfree free
212
b17c891e 213#define BAD_CASE(val) \
a39116f1 214{ \
58d4951d
ILT
215 as_fatal("Case value %ld unexpected at line %d of file \"%s\"\n", \
216 (long) val, __LINE__, __FILE__); \
a39116f1 217 }
fecd2382 218\f
b11fb939 219#include "flonum.h"
6efd877d 220
fecd2382
RP
221/* These are assembler-wide concepts */
222
68878ef1
KR
223#ifdef BFD_ASSEMBLER
224extern bfd *stdoutput;
b17c891e
KR
225typedef bfd_vma addressT;
226typedef bfd_signed_vma offsetT;
227#else
228typedef unsigned long addressT;
229typedef long offsetT;
68878ef1 230#endif
fecd2382 231
b17c891e
KR
232/* Type of symbol value, etc. For use in prototypes. */
233typedef addressT valueT;
234
fecd2382
RP
235#ifndef COMMON
236#ifdef TEST
237#define COMMON /* declare our COMMONs storage here. */
238#else
239#define COMMON extern /* our commons live elswhere */
240#endif
241#endif
a39116f1 242/* COMMON now defined */
c8c7e0bf 243
fecd2382 244#ifdef DEBUG
ace68c4e 245#ifndef know
fecd2382 246#define know(p) assert(p) /* Verify our assumptions! */
ace68c4e 247#endif /* not yet defined */
fecd2382
RP
248#else
249#define know(p) /* know() checks are no-op.ed */
250#endif
fecd2382
RP
251\f
252/* input_scrub.c */
253
254/*
255 * Supplies sanitised buffers to read.c.
256 * Also understands printing line-number part of error messages.
257 */
fecd2382 258\f
6efd877d 259
fecd2382
RP
260/* subsegs.c Sub-segments. Also, segment(=expression type)s.*/
261
68878ef1 262#ifndef BFD_ASSEMBLER
ace68c4e 263
58721107 264#ifdef MANY_SEGMENTS
c8c7e0bf 265#include "bfd.h"
7e027ce6
ILT
266#define N_SEGMENTS 40
267#define SEG_NORMAL(x) ((x) >= SEG_E0 && (x) <= SEG_E39)
268#define SEG_LIST SEG_E0,SEG_E1,SEG_E2,SEG_E3,SEG_E4,SEG_E5,SEG_E6,SEG_E7,SEG_E8,SEG_E9,\
269 SEG_E10,SEG_E11,SEG_E12,SEG_E13,SEG_E14,SEG_E15,SEG_E16,SEG_E17,SEG_E18,SEG_E19,\
270 SEG_E20,SEG_E21,SEG_E22,SEG_E23,SEG_E24,SEG_E25,SEG_E26,SEG_E27,SEG_E28,SEG_E29,\
271 SEG_E30,SEG_E31,SEG_E32,SEG_E33,SEG_E34,SEG_E35,SEG_E36,SEG_E37,SEG_E38,SEG_E39
ada269da 272#define SEG_TEXT SEG_E0
68878ef1 273#define SEG_DATA SEG_E1
ada269da 274#define SEG_BSS SEG_E2
7e027ce6 275#define SEG_LAST SEG_E39
58721107 276#else
ace68c4e 277#define N_SEGMENTS 3
58721107 278#define SEG_NORMAL(x) ((x) == SEG_TEXT || (x) == SEG_DATA || (x) == SEG_BSS)
ace68c4e 279#define SEG_LIST SEG_TEXT,SEG_DATA,SEG_BSS
58721107
SC
280#endif
281
6efd877d
KR
282typedef enum _segT
283 {
284 SEG_ABSOLUTE = 0,
285 SEG_LIST,
286 SEG_UNKNOWN,
6efd877d
KR
287 SEG_GOOF, /* Only happens if AS has a logic error. */
288 /* Invented so we don't crash printing */
289 /* error message involving weird segment. */
58d4951d 290 SEG_EXPR, /* Intermediate expression values. */
6efd877d
KR
291 SEG_DEBUG, /* Debug segment */
292 SEG_NTV, /* Transfert vector preload segment */
293 SEG_PTV, /* Transfert vector postload segment */
b17c891e 294 SEG_REGISTER /* Mythical: a register-valued expression */
6efd877d 295 } segT;
fecd2382
RP
296
297#define SEG_MAXIMUM_ORDINAL (SEG_REGISTER)
68878ef1
KR
298#else
299typedef asection *segT;
300#define SEG_NORMAL(SEG) ((SEG) != absolute_section \
301 && (SEG) != undefined_section \
68878ef1 302 && (SEG) != reg_section \
58d4951d 303 && (SEG) != expr_section)
68878ef1 304#endif
fecd2382
RP
305typedef int subsegT;
306
a39116f1 307/* What subseg we are accreting now? */
7f2cb270 308COMMON subsegT now_subseg;
fecd2382 309
a39116f1 310/* Segment our instructions emit to. */
7f2cb270 311COMMON segT now_seg;
fecd2382 312
68878ef1
KR
313#ifdef BFD_ASSEMBLER
314#define segment_name(SEG) bfd_get_section_name (stdoutput, SEG)
315#else
9777b772 316extern char const *const seg_name[];
68878ef1
KR
317#define segment_name(SEG) seg_name[(int) (SEG)]
318#endif
319
320#ifndef BFD_ASSEMBLER
fecd2382 321extern int section_alignment[];
68878ef1 322#endif
fecd2382 323
68878ef1 324#ifdef BFD_ASSEMBLER
58d4951d 325extern segT reg_section, expr_section;
68878ef1
KR
326/* Shouldn't these be eliminated someday? */
327extern segT text_section, data_section, bss_section;
b11fb939
KR
328#define absolute_section bfd_abs_section_ptr
329#define undefined_section bfd_und_section_ptr
68878ef1 330#else
68878ef1 331#define reg_section SEG_REGISTER
58d4951d 332#define expr_section SEG_EXPR
68878ef1
KR
333#define text_section SEG_TEXT
334#define data_section SEG_DATA
335#define bss_section SEG_BSS
336#define absolute_section SEG_ABSOLUTE
337#define undefined_section SEG_UNKNOWN
338#endif
fecd2382
RP
339
340/* relax() */
341
d5f41403 342enum _relax_state
6efd877d 343 {
7f2cb270
KR
344 /* Variable chars to be repeated fr_offset times.
345 Fr_symbol unused. Used with fr_offset == 0 for a
346 constant length frag. */
347 rs_fill = 1,
6efd877d 348
590c50d8
ILT
349 /* Align. The fr_offset field holds the power of 2 to which to
350 align. The fr_var field holds the number of characters in the
351 fill pattern. The fr_subtype field holds the maximum number of
352 bytes to skip when aligning, or 0 if there is no maximum. */
7f2cb270 353 rs_align,
6efd877d 354
590c50d8
ILT
355 /* Align code. The fr_offset field holds the power of 2 to which
356 to align. This type is only generated by machine specific
357 code, which is normally responsible for handling the fill
358 pattern. The fr_subtype field holds the maximum number of
359 bytes to skip when aligning, or 0 if there is no maximum. */
d5f41403
KR
360 rs_align_code,
361
7f2cb270
KR
362 /* Org: Fr_offset, fr_symbol: address. 1 variable char: fill
363 character. */
364 rs_org,
6efd877d 365
fecd2382 366#ifndef WORKING_DOT_WORD
7f2cb270 367 /* JF: gunpoint */
d5f41403 368 rs_broken_word,
fecd2382 369#endif
fecd2382 370
d5f41403
KR
371 /* machine-specific relaxable (or similarly alterable) instruction */
372 rs_machine_dependent,
373
374 /* .space directive with expression operand that needs to be computed
375 later. Similar to rs_org, but different.
376 fr_symbol: operand
377 1 variable char: fill character */
a089d2da
ILT
378 rs_space,
379
380 /* A DWARF leb128 value; only ELF uses this. The subtype is 0 for
381 unsigned, 1 for signed. */
382 rs_leb128
d5f41403
KR
383 };
384
385typedef enum _relax_state relax_stateT;
386
387/* This type is used in prototypes, so it can't be a type that will be
388 widened for argument passing. */
389typedef unsigned int relax_substateT;
fecd2382 390
7f2cb270
KR
391/* Enough bits for address, but still an integer type.
392 Could be a problem, cross-assembling for 64-bit machines. */
b17c891e 393typedef addressT relax_addressT;
fecd2382 394\f
6efd877d 395
fecd2382
RP
396/* frags.c */
397
398/*
399 * A code fragment (frag) is some known number of chars, followed by some
400 * unknown number of chars. Typically the unknown number of chars is an
401 * instruction address whose size is yet unknown. We always know the greatest
402 * possible size the unknown number of chars may become, and reserve that
403 * much room at the end of the frag.
404 * Once created, frags do not change address during assembly.
405 * We chain the frags in (a) forward-linked list(s). The object-file address
406 * of the 1st char of a frag is generally not known until after relax().
407 * Many things at assembly time describe an address by {object-file-address
408 * of a particular frag}+offset.
6efd877d 409
fecd2382 410 BUG: it may be smarter to have a single pointer off to various different
6efd877d 411 notes for different frag kinds. See how code pans
fecd2382 412 */
68878ef1 413struct frag
fecd2382 414{
7f2cb270 415 /* Object file address. */
b17c891e 416 addressT fr_address;
68878ef1 417 /* Chain forward; ascending address order. Rooted in frch_root. */
7f2cb270 418 struct frag *fr_next;
6efd877d 419
68878ef1 420 /* (Fixed) number of chars we know we have. May be 0. */
b17c891e 421 offsetT fr_fix;
68878ef1 422 /* (Variable) number of chars after above. May be 0. */
b17c891e 423 offsetT fr_var;
7f2cb270
KR
424 /* For variable-length tail. */
425 struct symbol *fr_symbol;
426 /* For variable-length tail. */
b17c891e 427 offsetT fr_offset;
68878ef1 428 /* Points to opcode low addr byte, for relaxation. */
7f2cb270 429 char *fr_opcode;
68878ef1
KR
430
431#ifndef NO_LISTING
432 struct list_info_struct *line;
433#endif
434
7f2cb270
KR
435 /* What state is my tail in? */
436 relax_stateT fr_type;
6efd877d 437 relax_substateT fr_subtype;
7f2cb270 438
a089d2da
ILT
439 union {
440 /* These are needed only on the NS32K machines. But since we don't
441 include targ-cpu.h until after this structure has been defined,
442 we can't really conditionalize it. This code should be
443 rearranged a bit to make that possible. */
444 struct {
445 char pcrel_adjust, bsr;
446 } ns32k;
447#ifdef USING_CGEN
448 /* Don't include this unless using CGEN to keep frag size down. */
449 struct {
450 const struct cgen_insn *insn;
451 unsigned char opindex, opinfo;
452 } cgen;
453#endif
454 } fr_targ;
e9296bdb 455
a5a78175
ILT
456 /* Where the frag was created, or where it became a variant frag. */
457 char *fr_file;
458 unsigned int fr_line;
459
e9296bdb 460 /* Data begins here. */
7f2cb270 461 char fr_literal[1];
fecd2382 462};
6efd877d 463
fecd2382 464#define SIZEOF_STRUCT_FRAG \
e9296bdb 465((char *)zero_address_frag.fr_literal-(char *)&zero_address_frag)
a39116f1 466/* We want to say fr_literal[0] above. */
fecd2382
RP
467
468typedef struct frag fragS;
469
7f2cb270
KR
470/* Current frag we are building. This frag is incomplete. It is, however,
471 included in frchain_now. The fr_fix field is bogus; instead, use:
472 obstack_next_free(&frags)-frag_now->fr_literal. */
473COMMON fragS *frag_now;
a089d2da 474extern int frag_now_fix PARAMS ((void));
fecd2382 475
7f2cb270
KR
476/* For foreign-segment symbol fixups. */
477COMMON fragS zero_address_frag;
478/* For local common (N_BSS segment) fixups. */
479COMMON fragS bss_address_frag;
fecd2382
RP
480
481/* main program "as.c" (command arguments etc) */
482
def66e24
DM
483COMMON unsigned char flag_no_comments; /* -f */
484COMMON unsigned char flag_debug; /* -D */
485COMMON unsigned char flag_signed_overflow_ok; /* -J */
a7aa7a2b 486#ifndef WORKING_DOT_WORD
def66e24 487COMMON unsigned char flag_warn_displacement; /* -K */
a7aa7a2b 488#endif
e9296bdb
KR
489
490/* True if local symbols should be retained. */
58bd5f50 491COMMON int flag_keep_locals; /* -L */
e9296bdb 492
011d16ac 493/* True if we are assembling in MRI mode. */
3b85367c
KR
494COMMON int flag_mri;
495
011d16ac
ILT
496/* True if we are assembling in m68k MRI mode. */
497COMMON int flag_m68k_mri;
498
e9296bdb
KR
499/* Should the data section be made read-only and appended to the text
500 section? */
def66e24 501COMMON unsigned char flag_readonly_data_in_text; /* -R */
e9296bdb
KR
502
503/* True if warnings should be inhibited. */
58bd5f50 504COMMON int flag_no_warnings; /* -W */
e9296bdb
KR
505
506/* True if we should attempt to generate output even if non-fatal errors
507 are detected. */
def66e24 508COMMON unsigned char flag_always_generate_output; /* -Z */
fecd2382 509
e9296bdb
KR
510/* This is true if the assembler should output time and space usage. */
511
512COMMON unsigned char flag_print_statistics;
513
7f2cb270
KR
514/* name of emitted object file */
515COMMON char *out_file_name;
fecd2382 516
590c50d8
ILT
517/* name of file defining extensions to the basic instruction set */
518COMMON char *insttbl_file_name;
519
7f2cb270
KR
520/* TRUE if we need a second pass. */
521COMMON int need_pass_2;
09952cd9 522
7f2cb270
KR
523/* TRUE if we should do no relaxing, and
524 leave lots of padding. */
525COMMON int linkrelax;
fecd2382 526
7f955c18
KR
527/* TRUE if we should produce a listing. */
528extern int listing;
529
a089d2da
ILT
530/* Type of debugging information we should generate. We currently
531 only support stabs and ECOFF. */
532
533enum debug_info_type { DEBUG_NONE, DEBUG_STABS, DEBUG_ECOFF };
534
535extern enum debug_info_type debug_type;
536
7e047ac2
ILT
537/* Maximum level of macro nesting. */
538extern int max_macro_nest;
539
011d16ac
ILT
540/* Obstack chunk size. Keep large for efficient space use, make small to
541 increase malloc calls for monitoring memory allocation. */
542extern int chunksize;
543
7f2cb270 544struct _pseudo_type
6efd877d 545 {
7f2cb270 546 /* assembler mnemonic, lower case, no '.' */
9777b772 547 const char *poc_name;
7f2cb270 548 /* Do the work */
604633ae 549 void (*poc_handler) PARAMS ((int));
7f2cb270
KR
550 /* Value to pass to handler */
551 int poc_val;
552 };
6efd877d 553
7f2cb270 554typedef struct _pseudo_type pseudo_typeS;
fecd2382 555
87e48495
KR
556/* Prefer varargs for non-ANSI compiler, since some will barf if the
557 ellipsis definition is used with a no-arguments declaration. */
558#if defined (HAVE_VARARGS_H) && !defined (__STDC__)
559#undef HAVE_STDARG_H
560#endif
561
562#if defined (HAVE_STDARG_H)
563#define USE_STDARG
564#endif
565#if !defined (USE_STDARG) && defined (HAVE_VARARGS_H)
566#define USE_VARARGS
567#endif
fecd2382 568
87e48495 569#ifdef USE_STDARG
590c50d8 570#if (__GNUC__ >= 2) && !defined(VMS)
68878ef1 571/* for use with -Wformat */
7f955c18 572#define PRINTF_LIKE(FCN) void FCN (const char *format, ...) \
68878ef1 573 __attribute__ ((format (printf, 1, 2)))
a57180ad
ILT
574#define PRINTF_WHERE_LIKE(FCN) void FCN (char *file, unsigned int line, \
575 const char *format, ...) \
576 __attribute__ ((format (printf, 3, 4)))
68878ef1 577#else /* ANSI C with stdarg, but not GNU C */
87e48495
KR
578#define PRINTF_LIKE(FCN) void FCN PARAMS ((const char *format, ...))
579#define PRINTF_WHERE_LIKE(FCN) void FCN PARAMS ((char *file, \
580 unsigned int line, \
581 const char *format, ...))
68878ef1 582#endif
87e48495 583#else /* not using stdarg */
68878ef1 584#define PRINTF_LIKE(FCN) void FCN ()
a57180ad 585#define PRINTF_WHERE_LIKE(FCN) void FCN ()
68878ef1 586#endif
fecd2382 587
68878ef1
KR
588PRINTF_LIKE (as_bad);
589PRINTF_LIKE (as_fatal);
590PRINTF_LIKE (as_tsktsk);
591PRINTF_LIKE (as_warn);
a57180ad
ILT
592PRINTF_WHERE_LIKE (as_bad_where);
593PRINTF_WHERE_LIKE (as_warn_where);
d5f41403 594void as_assert PARAMS ((const char *, int, const char *));
9777b772 595void as_abort PARAMS ((const char *, int, const char *));
7f955c18 596
b17c891e
KR
597void fprint_value PARAMS ((FILE *file, addressT value));
598void sprint_value PARAMS ((char *buf, addressT value));
fecd2382 599
68878ef1
KR
600int had_errors PARAMS ((void));
601int had_warnings PARAMS ((void));
fecd2382 602
604633ae 603void print_version_id PARAMS ((void));
7f2cb270
KR
604char *app_push PARAMS ((void));
605char *atof_ieee PARAMS ((char *str, int what_kind, LITTLENUM_TYPE * words));
606char *input_scrub_include_file PARAMS ((char *filename, char *position));
607char *input_scrub_new_file PARAMS ((char *filename));
608char *input_scrub_next_buffer PARAMS ((char **bufp));
011d16ac 609int do_scrub_chars PARAMS ((int (*get) (char **), char *to, int tolen));
7f2cb270
KR
610int gen_to_words PARAMS ((LITTLENUM_TYPE * words, int precision,
611 long exponent_bits));
612int had_err PARAMS ((void));
7f2cb270 613int ignore_input PARAMS ((void));
a089d2da
ILT
614void cond_finish_check PARAMS ((int));
615void cond_exit_macro PARAMS ((int));
7f2cb270
KR
616int seen_at_least_1_file PARAMS ((void));
617void app_pop PARAMS ((char *arg));
618void as_howmuch PARAMS ((FILE * stream));
a193acc0 619void as_perror PARAMS ((const char *gripe, const char *filename));
7f955c18 620void as_where PARAMS ((char **namep, unsigned int *linep));
7f2cb270 621void bump_line_counters PARAMS ((void));
7e027ce6 622void do_scrub_begin PARAMS ((int));
7f2cb270
KR
623void input_scrub_begin PARAMS ((void));
624void input_scrub_close PARAMS ((void));
625void input_scrub_end PARAMS ((void));
7f2cb270 626void new_logical_line PARAMS ((char *fname, int line_number));
68878ef1 627void subsegs_begin PARAMS ((void));
7f2cb270 628void subseg_change PARAMS ((segT seg, int subseg));
b17c891e 629segT subseg_new PARAMS ((const char *name, subsegT subseg));
e7501ac7 630segT subseg_force_new PARAMS ((const char *name, subsegT subseg));
68878ef1 631void subseg_set PARAMS ((segT seg, subsegT subseg));
a193acc0
ILT
632#ifdef BFD_ASSEMBLER
633segT subseg_get PARAMS ((const char *, int));
634#endif
fecd2382 635
a089d2da
ILT
636void start_dependencies PARAMS ((char *));
637void register_dependency PARAMS ((char *));
638void print_dependencies PARAMS ((void));
639
7f955c18
KR
640struct expressionS;
641struct fix;
642struct symbol;
9777b772 643struct relax_type;
7f955c18
KR
644
645#ifdef BFD_ASSEMBLER
646/* literal.c */
647valueT add_to_literal_pool PARAMS ((struct symbol *, valueT, segT, int));
648#endif
649
b11fb939
KR
650#include "expr.h" /* Before targ-*.h */
651
a39116f1 652/* this one starts the chain of target dependant headers */
fecd2382
RP
653#include "targ-env.h"
654
fecd2382 655#include "struc-symbol.h"
fecd2382 656#include "write.h"
fecd2382
RP
657#include "frags.h"
658#include "hash.h"
659#include "read.h"
660#include "symbols.h"
661
662#include "tc.h"
663#include "obj.h"
664
a7aa7a2b
ILT
665#ifdef USE_EMULATIONS
666#include "emul.h"
667#endif
c593cf41
SC
668#include "listing.h"
669
9777b772
KR
670#ifndef LOCAL_LABELS_DOLLAR
671#define LOCAL_LABELS_DOLLAR 0
b17c891e 672#endif
9777b772
KR
673
674#ifndef LOCAL_LABELS_FB
675#define LOCAL_LABELS_FB 0
b17c891e 676#endif
b17c891e 677
7f955c18
KR
678#endif /* GAS */
679
a39116f1 680/* end of as.h */
This page took 0.239444 seconds and 4 git commands to generate.