as.texinfo revision 1.6
1\input texinfo @c                               -*-Texinfo-*-
2@c  Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3@c  2001
4@c  Free Software Foundation, Inc.
5@c UPDATE!!  On future updates--
6@c   (1)   check for new machine-dep cmdline options in
7@c         md_parse_option definitions in config/tc-*.c
8@c   (2)   for platform-specific directives, examine md_pseudo_op
9@c         in config/tc-*.c
10@c   (3)   for object-format specific directives, examine obj_pseudo_op
11@c         in config/obj-*.c       
12@c   (4)   portable directives in potable[] in read.c
13@c %**start of header
14@setfilename as.info
15@c ---config---
16@c defaults, config file may override:
17@set have-stabs
18@c ---
19@include asconfig.texi
20@include gasver.texi
21@c ---
22@c common OR combinations of conditions
23@ifset AOUT
24@set aout-bout
25@end ifset
26@ifset ARM/Thumb
27@set ARM
28@end ifset
29@ifset BOUT
30@set aout-bout
31@end ifset
32@ifset H8/300
33@set H8
34@end ifset
35@ifset H8/500
36@set H8
37@end ifset
38@ifset SH
39@set H8
40@end ifset
41@ifset HPPA
42@set abnormal-separator
43@end ifset
44@c ------------
45@ifset GENERIC
46@settitle Using @value{AS}
47@end ifset
48@ifclear GENERIC
49@settitle Using @value{AS} (@value{TARGET})
50@end ifclear
51@setchapternewpage odd
52@c %**end of header
53
54@c @smallbook
55@c @set SMALL
56@c WARE! Some of the machine-dependent sections contain tables of machine
57@c instructions.  Except in multi-column format, these tables look silly.
58@c Unfortunately, Texinfo doesn't have a general-purpose multi-col format, so
59@c the multi-col format is faked within @example sections.
60@c 
61@c Again unfortunately, the natural size that fits on a page, for these tables,
62@c is different depending on whether or not smallbook is turned on.
63@c This matters, because of order: text flow switches columns at each page
64@c break.
65@c 
66@c The format faked in this source works reasonably well for smallbook,
67@c not well for the default large-page format.  This manual expects that if you
68@c turn on @smallbook, you will also uncomment the "@set SMALL" to enable the
69@c tables in question.  You can turn on one without the other at your
70@c discretion, of course. 
71@ifinfo
72@set SMALL
73@c the insn tables look just as silly in info files regardless of smallbook,
74@c might as well show 'em anyways.
75@end ifinfo
76
77@ifinfo
78@format
79START-INFO-DIR-ENTRY
80* As: (as).                     The GNU assembler.
81END-INFO-DIR-ENTRY
82@end format
83@end ifinfo
84
85@finalout
86@syncodeindex ky cp
87
88@ifinfo
89This file documents the GNU Assembler "@value{AS}".
90
91Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001 Free Software Foundation, Inc.
92
93      Permission is granted to copy, distribute and/or modify this document
94      under the terms of the GNU Free Documentation License, Version 1.1
95      or any later version published by the Free Software Foundation;
96      with no Invariant Sections, with no Front-Cover Texts, and with no
97      Back-Cover Texts.  A copy of the license is included in the
98      section entitled "GNU Free Documentation License".
99
100@ignore
101Permission is granted to process this file through Tex and print the
102results, provided the printed document carries copying permission
103notice identical to this one except for the removal of this paragraph
104(this paragraph not being relevant to the printed manual).
105
106@end ignore
107@end ifinfo
108
109@titlepage
110@title Using @value{AS}
111@subtitle The @sc{gnu} Assembler
112@ifclear GENERIC
113@subtitle for the @value{TARGET} family
114@end ifclear
115@sp 1
116@subtitle Version @value{VERSION}
117@sp 1
118@sp 13
119The Free Software Foundation Inc.  thanks The Nice Computer
120Company of Australia for loaning Dean Elsner to write the
121first (Vax) version of @code{as} for Project @sc{gnu}.
122The proprietors, management and staff of TNCCA thank FSF for
123distracting the boss while they got some work
124done.
125@sp 3
126@author Dean Elsner, Jay Fenlason & friends
127@page
128@tex
129{\parskip=0pt
130\hfill {\it Using {\tt @value{AS}}}\par
131\hfill Edited by Cygnus Support\par
132}
133%"boxit" macro for figures:
134%Modified from Knuth's ``boxit'' macro from TeXbook (answer to exercise 21.3)
135\gdef\boxit#1#2{\vbox{\hrule\hbox{\vrule\kern3pt
136     \vbox{\parindent=0pt\parskip=0pt\hsize=#1\kern3pt\strut\hfil
137#2\hfil\strut\kern3pt}\kern3pt\vrule}\hrule}}%box with visible outline
138\gdef\ibox#1#2{\hbox to #1{#2\hfil}\kern8pt}% invisible box
139@end tex
140
141@vskip 0pt plus 1filll
142Copyright @copyright{} 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001 Free Software Foundation, Inc.
143
144      Permission is granted to copy, distribute and/or modify this document
145      under the terms of the GNU Free Documentation License, Version 1.1
146      or any later version published by the Free Software Foundation;
147      with no Invariant Sections, with no Front-Cover Texts, and with no
148      Back-Cover Texts.  A copy of the license is included in the
149      section entitled "GNU Free Documentation License".
150
151@end titlepage
152
153@ifinfo
154@node Top
155@top Using @value{AS}
156
157This file is a user guide to the @sc{gnu} assembler @code{@value{AS}} version
158@value{VERSION}.
159@ifclear GENERIC
160This version of the file describes @code{@value{AS}} configured to generate
161code for @value{TARGET} architectures.
162@end ifclear
163
164This document is distributed under the terms of the GNU Free
165Documentation License.  A copy of the license is included in the
166section entitled "GNU Free Documentation License".
167
168@menu
169* Overview::                    Overview
170* Invoking::                    Command-Line Options
171* Syntax::                      Syntax
172* Sections::                    Sections and Relocation
173* Symbols::                     Symbols
174* Expressions::                 Expressions
175* Pseudo Ops::                  Assembler Directives
176* Machine Dependencies::        Machine Dependent Features
177* Reporting Bugs::              Reporting Bugs
178* Acknowledgements::            Who Did What
179* GNU Free Documentation License::  GNU Free Documentation License
180* Index::                       Index
181@end menu
182@end ifinfo
183
184@node Overview
185@chapter Overview
186@iftex
187This manual is a user guide to the @sc{gnu} assembler @code{@value{AS}}.
188@ifclear GENERIC
189This version of the manual describes @code{@value{AS}} configured to generate
190code for @value{TARGET} architectures.
191@end ifclear
192@end iftex
193
194@cindex invocation summary
195@cindex option summary
196@cindex summary of options
197Here is a brief summary of how to invoke @code{@value{AS}}.  For details,
198@pxref{Invoking,,Comand-Line Options}.
199
200@c We don't use deffn and friends for the following because they seem
201@c to be limited to one line for the header.
202@smallexample
203@value{AS} [ -a[cdhlns][=file] ] [ -D ]  [ --defsym @var{sym}=@var{val} ]
204 [ -f ] [ --gstabs ] [ --gdwarf2 ] [ --help ] [ -I @var{dir} ] [ -J ] [ -K ] [ -L ]
205 [ --keep-locals ] [ -o @var{objfile} ] [ -R ] [ --statistics ] [ -v ]
206 [ -version ] [ --version ] [ -W ] [ --warn ] [ --fatal-warnings ] 
207 [ -w ] [ -x ] [ -Z ] [ --target-help ]
208@ifset A29K
209@c am29k has no machine-dependent assembler options
210@end ifset
211@ifset ARC
212 [ -marc[5|6|7|8] ]
213 [ -EB | -EL ]
214@end ifset
215@ifset ARM
216 [ -m[arm]1 | -m[arm]2 | -m[arm]250 | -m[arm]3 | -m[arm]6 | -m[arm]60 |
217   -m[arm]600 | -m[arm]610 | -m[arm]620 | -m[arm]7[t][[d]m[i]][fe] | -m[arm]70 |
218   -m[arm]700 | -m[arm]710[c] | -m[arm]7100 | -m[arm]7500 | -m[arm]8 |
219   -m[arm]810 | -m[arm]9 | -m[arm]920 | -m[arm]920t | -m[arm]9tdmi |
220   -mstrongarm | -mstrongarm110 | -mstrongarm1100 ]
221 [ -m[arm]v2 | -m[arm]v2a | -m[arm]v3 | -m[arm]v3m | -m[arm]v4 | -m[arm]v4t |
222   -m[arm]v5 | -[arm]v5t | -[arm]v5te ]
223 [ -mthumb | -mall ]
224 [ -mfpa10 | -mfpa11 | -mfpe-old | -mno-fpu ]
225 [ -EB | -EL ]
226 [ -mapcs-32 | -mapcs-26 | -mapcs-float | -mapcs-reentrant ]
227 [ -mthumb-interwork ]
228 [ -moabi ]
229 [ -k ]
230@end ifset
231@ifset D10V
232 [ -O ]
233@end ifset
234@ifset D30V
235 [ -O | -n | -N ]
236@end ifset
237@ifset H8
238@c Hitachi family chips have no machine-dependent assembler options
239@end ifset
240@ifset HPPA
241@c HPPA has no machine-dependent assembler options (yet).
242@end ifset
243@ifset PJ
244 [ -mb | -me ]
245@end ifset
246@ifset SPARC
247@c The order here is important.  See c-sparc.texi.
248 [ -Av6 | -Av7 | -Av8 | -Asparclet | -Asparclite
249   -Av8plus | -Av8plusa | -Av9 | -Av9a ]
250 [ -xarch=v8plus | -xarch=v8plusa ] [ -bump ] [ -32 | -64 ]
251@end ifset
252@ifset TIC54X
253 [ -mcpu=54[123589] | -mcpu=54[56]lp ] [ -mfar-mode | -mf ] 
254 [ -merrors-to-file <filename> | -me <filename> ]
255@end ifset
256@ifset Z8000
257@c Z8000 has no machine-dependent assembler options
258@end ifset
259@ifset I960
260@c see md_parse_option in tc-i960.c
261 [ -ACA | -ACA_A | -ACB | -ACC | -AKA | -AKB | -AKC | -AMC ]
262 [ -b ] [ -no-relax ]
263@end ifset
264@ifset M32R
265 [ --m32rx | --[no-]warn-explicit-parallel-conflicts | --W[n]p ]
266@end ifset
267@ifset M680X0
268 [ -l ] [ -m68000 | -m68010 | -m68020 | ... ]
269@end ifset
270@ifset MCORE
271 [ -jsri2bsr ] [ -sifilter ] [ -relax ]
272 [ -mcpu=[210|340] ]
273@end ifset
274@ifset M68HC11
275 [ -m68hc11 | -m68hc12 ]
276 [ --force-long-branchs ] [ --short-branchs ] [ --strict-direct-mode ]
277 [ --print-insn-syntax ] [ --print-opcodes ] [ --generate-example ]
278@end ifset
279@ifset MIPS
280 [ -nocpp ] [ -EL ] [ -EB ] [ -G @var{num} ] [ -mcpu=@var{CPU} ]
281 [ -mips1 ] [ -mips2 ] [ -mips3 ] [ -mips4 ] [ -mips5 ]
282 [ -mips32 ] [ -mips64 ]
283 [ -m4650 ] [ -no-m4650 ]
284 [ --trap ] [ --break ]
285 [ --emulation=@var{name} ]
286@end ifset
287 [ -- | @var{files} @dots{} ]
288@end smallexample
289
290@table @code
291@item -a[cdhlmns]
292Turn on listings, in any of a variety of ways:
293
294@table @code
295@item -ac
296omit false conditionals
297
298@item -ad
299omit debugging directives
300
301@item -ah
302include high-level source
303
304@item -al
305include assembly
306
307@item -am
308include macro expansions
309
310@item -an
311omit forms processing
312
313@item -as
314include symbols
315
316@item =file
317set the name of the listing file
318@end table
319
320You may combine these options; for example, use @samp{-aln} for assembly
321listing without forms processing.  The @samp{=file} option, if used, must be
322the last one.  By itself, @samp{-a} defaults to @samp{-ahls}.
323
324@item -D
325Ignored.  This option is accepted for script compatibility with calls to
326other assemblers.
327
328@item --defsym @var{sym}=@var{value}
329Define the symbol @var{sym} to be @var{value} before assembling the input file.
330@var{value} must be an integer constant.  As in C, a leading @samp{0x}
331indicates a hexadecimal value, and a leading @samp{0} indicates an octal value.
332
333@item -f
334``fast''---skip whitespace and comment preprocessing (assume source is
335compiler output).
336
337@item --gstabs
338Generate stabs debugging information for each assembler line.  This
339may help debugging assembler code, if the debugger can handle it.
340
341@item --gdwarf2
342Generate DWARF2 debugging information for each assembler line.  This
343may help debugging assembler code, if the debugger can handle it.  Note - this
344option is only supported by some targets, not all of them.
345
346@item --help
347Print a summary of the command line options and exit.
348
349@item --target-help
350Print a summary of all target specific options and exit.
351
352@item -I @var{dir}
353Add directory @var{dir} to the search list for @code{.include} directives.
354
355@item -J
356Don't warn about signed overflow.
357
358@item -K
359@ifclear DIFF-TBL-KLUGE
360This option is accepted but has no effect on the @value{TARGET} family.
361@end ifclear
362@ifset DIFF-TBL-KLUGE
363Issue warnings when difference tables altered for long displacements.
364@end ifset
365
366@item -L
367@itemx --keep-locals
368Keep (in the symbol table) local symbols.  On traditional a.out systems
369these start with @samp{L}, but different systems have different local
370label prefixes.
371
372@item -o @var{objfile}
373Name the object-file output from @code{@value{AS}} @var{objfile}.
374
375@item -R
376Fold the data section into the text section.
377
378@item --statistics
379Print the maximum space (in bytes) and total time (in seconds) used by
380assembly.
381
382@item --strip-local-absolute
383Remove local absolute symbols from the outgoing symbol table.
384
385@item -v
386@itemx -version
387Print the @code{as} version.
388
389@item --version
390Print the @code{as} version and exit.
391
392@item -W
393@itemx --no-warn
394Suppress warning messages.
395
396@item --fatal-warnings
397Treat warnings as errors.
398
399@item --warn
400Don't suppress warning messages or treat them as errors.
401
402@item -w
403Ignored.
404
405@item -x
406Ignored.
407
408@item -Z
409Generate an object file even after errors.
410
411@item -- | @var{files} @dots{}
412Standard input, or source files to assemble.
413
414@end table
415
416@ifset ARC
417The following options are available when @value{AS} is configured for
418an ARC processor.
419
420@table @code
421@item -marc[5|6|7|8]
422This option selects the core processor variant.
423@item -EB | -EL
424Select either big-endian (-EB) or little-endian (-EL) output.
425@end table
426@end ifset
427
428@ifset ARM
429The following options are available when @value{AS} is configured for the ARM
430processor family.
431
432@table @code
433@item -m[arm][1|2|3|6|7|8|9][...] 
434Specify which ARM processor variant is the target.
435@item -m[arm]v[2|2a|3|3m|4|4t|5|5t]
436Specify which ARM architecture variant is used by the target.
437@item -mthumb | -mall
438Enable or disable Thumb only instruction decoding.
439@item -mfpa10 | -mfpa11 | -mfpe-old | -mno-fpu
440Select which Floating Point architecture is the target.
441@item -mapcs-32 | -mapcs-26 | -mapcs-float | -mapcs-reentrant | -moabi
442Select which procedure calling convention is in use.
443@item -EB | -EL
444Select either big-endian (-EB) or little-endian (-EL) output.
445@item -mthumb-interwork
446Specify that the code has been generated with interworking between Thumb and
447ARM code in mind.
448@item -k
449Specify that PIC code has been generated.
450@end table
451@end ifset
452
453@ifset D10V
454The following options are available when @value{AS} is configured for
455a D10V processor.
456@table @code
457@cindex D10V optimization
458@cindex optimization, D10V
459@item -O
460Optimize output by parallelizing instructions.
461@end table
462@end ifset
463
464@ifset D30V
465The following options are available when @value{AS} is configured for a D30V
466processor.
467@table @code
468@cindex D30V optimization
469@cindex optimization, D30V
470@item -O
471Optimize output by parallelizing instructions.
472
473@cindex D30V nops
474@item -n
475Warn when nops are generated.
476
477@cindex D30V nops after 32-bit multiply
478@item -N
479Warn when a nop after a 32-bit multiply instruction is generated.
480@end table
481@end ifset
482
483@ifset I960
484The following options are available when @value{AS} is configured for the
485Intel 80960 processor.
486
487@table @code
488@item -ACA | -ACA_A | -ACB | -ACC | -AKA | -AKB | -AKC | -AMC
489Specify which variant of the 960 architecture is the target.
490
491@item -b
492Add code to collect statistics about branches taken.
493
494@item -no-relax
495Do not alter compare-and-branch instructions for long displacements;
496error if necessary.
497
498@end table
499@end ifset
500
501@ifset M32R
502The following options are available when @value{AS} is configured for the
503Mitsubishi M32R series.
504
505@table @code
506
507@item --m32rx
508Specify which processor in the M32R family is the target.  The default
509is normally the M32R, but this option changes it to the M32RX.
510
511@item --warn-explicit-parallel-conflicts or --Wp
512Produce warning messages when questionable parallel constructs are
513encountered. 
514
515@item --no-warn-explicit-parallel-conflicts or --Wnp
516Do not produce warning messages when questionable parallel constructs are 
517encountered. 
518
519@end table
520@end ifset
521
522@ifset M680X0
523The following options are available when @value{AS} is configured for the
524Motorola 68000 series.
525
526@table @code
527
528@item -l
529Shorten references to undefined symbols, to one word instead of two.
530
531@item -m68000 | -m68008 | -m68010 | -m68020 | -m68030 | -m68040 | -m68060
532@itemx | -m68302 | -m68331 | -m68332 | -m68333 | -m68340 | -mcpu32 | -m5200
533Specify what processor in the 68000 family is the target.  The default
534is normally the 68020, but this can be changed at configuration time.
535
536@item -m68881 | -m68882 | -mno-68881 | -mno-68882
537The target machine does (or does not) have a floating-point coprocessor.
538The default is to assume a coprocessor for 68020, 68030, and cpu32.  Although
539the basic 68000 is not compatible with the 68881, a combination of the
540two can be specified, since it's possible to do emulation of the
541coprocessor instructions with the main processor.
542
543@item -m68851 | -mno-68851
544The target machine does (or does not) have a memory-management
545unit coprocessor.  The default is to assume an MMU for 68020 and up.
546
547@end table
548@end ifset
549
550@ifset PJ
551The following options are available when @value{AS} is configured for
552a picoJava processor.
553
554@table @code
555
556@cindex PJ endianness
557@cindex endianness, PJ
558@cindex big endian output, PJ
559@item -mb
560Generate ``big endian'' format output.
561
562@cindex little endian output, PJ
563@item -ml
564Generate ``little endian'' format output.
565
566@end table
567@end ifset
568
569@ifset M68HC11
570The following options are available when @value{AS} is configured for the
571Motorola 68HC11 or 68HC12 series.
572
573@table @code
574
575@item -m68hc11 | -m68hc12
576Specify what processor is the target.  The default is
577defined by the configuration option when building the assembler.
578
579@item --force-long-branchs
580Relative branches are turned into absolute ones. This concerns
581conditional branches, unconditional branches and branches to a
582sub routine.
583
584@item -S | --short-branchs
585Do not turn relative branchs into absolute ones
586when the offset is out of range.
587
588@item --strict-direct-mode
589Do not turn the direct addressing mode into extended addressing mode
590when the instruction does not support direct addressing mode.
591
592@item --print-insn-syntax
593Print the syntax of instruction in case of error.
594
595@item --print-opcodes
596print the list of instructions with syntax and then exit.
597
598@item --generate-example
599print an example of instruction for each possible instruction and then exit.
600This option is only useful for testing @code{@value{AS}}.
601
602@end table
603@end ifset
604
605@ifset SPARC
606The following options are available when @code{@value{AS}} is configured
607for the SPARC architecture:
608
609@table @code
610@item -Av6 | -Av7 | -Av8 | -Asparclet | -Asparclite
611@itemx -Av8plus | -Av8plusa | -Av9 | -Av9a
612Explicitly select a variant of the SPARC architecture.
613
614@samp{-Av8plus} and @samp{-Av8plusa} select a 32 bit environment.
615@samp{-Av9} and @samp{-Av9a} select a 64 bit environment.
616
617@samp{-Av8plusa} and @samp{-Av9a} enable the SPARC V9 instruction set with
618UltraSPARC extensions.
619
620@item -xarch=v8plus | -xarch=v8plusa
621For compatibility with the Solaris v9 assembler.  These options are
622equivalent to -Av8plus and -Av8plusa, respectively.
623
624@item -bump
625Warn when the assembler switches to another architecture.
626@end table
627@end ifset
628
629@ifset TIC54X
630The following options are available when @value{AS} is configured for the 'c54x
631architecture. 
632
633@table @code
634@item -mfar-mode
635Enable extended addressing mode.  All addresses and relocations will assume
636extended addressing (usually 23 bits).
637@item -mcpu=@var{CPU_VERSION}
638Sets the CPU version being compiled for.
639@item -merrors-to-file @var{FILENAME}
640Redirect error output to a file, for broken systems which don't support such
641behaviour in the shell.
642@end table
643@end ifset
644
645@ifset MIPS
646The following options are available when @value{AS} is configured for
647a MIPS processor.
648
649@table @code
650@item -G @var{num}
651This option sets the largest size of an object that can be referenced
652implicitly with the @code{gp} register.  It is only accepted for targets that
653use ECOFF format, such as a DECstation running Ultrix.  The default value is 8.
654
655@cindex MIPS endianness
656@cindex endianness, MIPS
657@cindex big endian output, MIPS
658@item -EB
659Generate ``big endian'' format output.
660
661@cindex little endian output, MIPS
662@item -EL
663Generate ``little endian'' format output.
664
665@cindex MIPS ISA
666@item -mips1
667@itemx -mips2
668@itemx -mips3
669@itemx -mips4
670@itemx -mips32
671Generate code for a particular MIPS Instruction Set Architecture level.
672@samp{-mips1} corresponds to the @sc{r2000} and @sc{r3000} processors,
673@samp{-mips2} to the @sc{r6000} processor, and @samp{-mips3} to the @sc{r4000}
674processor.
675@samp{-mips5}, @samp{-mips32}, and @samp{-mips64} correspond
676to generic @sc{MIPS V}, @sc{MIPS32}, and @sc{MIPS64} ISA
677processors, respectively.
678
679@item -m4650
680@itemx -no-m4650
681Generate code for the MIPS @sc{r4650} chip.  This tells the assembler to accept
682the @samp{mad} and @samp{madu} instruction, and to not schedule @samp{nop}
683instructions around accesses to the @samp{HI} and @samp{LO} registers.
684@samp{-no-m4650} turns off this option.
685
686@item -mcpu=@var{CPU}
687Generate code for a particular MIPS cpu.  It is exactly equivalent to
688@samp{-m@var{cpu}}, except that there are more value of @var{cpu}
689understood.
690
691@cindex emulation
692@item --emulation=@var{name}
693This option causes @code{@value{AS}} to emulate @code{@value{AS}} configured
694for some other target, in all respects, including output format (choosing
695between ELF and ECOFF only), handling of pseudo-opcodes which may generate
696debugging information or store symbol table information, and default
697endianness.  The available configuration names are: @samp{mipsecoff},
698@samp{mipself}, @samp{mipslecoff}, @samp{mipsbecoff}, @samp{mipslelf},
699@samp{mipsbelf}.  The first two do not alter the default endianness from that
700of the primary target for which the assembler was configured; the others change
701the default to little- or big-endian as indicated by the @samp{b} or @samp{l}
702in the name.  Using @samp{-EB} or @samp{-EL} will override the endianness
703selection in any case.
704
705This option is currently supported only when the primary target
706@code{@value{AS}} is configured for is a MIPS ELF or ECOFF target.
707Furthermore, the primary target or others specified with
708@samp{--enable-targets=@dots{}} at configuration time must include support for
709the other format, if both are to be available.  For example, the Irix 5
710configuration includes support for both.
711
712Eventually, this option will support more configurations, with more
713fine-grained control over the assembler's behavior, and will be supported for
714more processors.
715
716@item -nocpp
717@code{@value{AS}} ignores this option.  It is accepted for compatibility with
718the native tools.
719
720@need 900
721@item --trap
722@itemx --no-trap
723@itemx --break
724@itemx --no-break
725Control how to deal with multiplication overflow and division by zero.
726@samp{--trap} or @samp{--no-break} (which are synonyms) take a trap exception
727(and only work for Instruction Set Architecture level 2 and higher);
728@samp{--break} or @samp{--no-trap} (also synonyms, and the default) take a
729break exception.
730@end table
731@end ifset
732
733@ifset MCORE
734The following options are available when @value{AS} is configured for
735an MCore processor.
736
737@table @code
738@item -jsri2bsr
739@itemx -nojsri2bsr
740Enable or disable the JSRI to BSR transformation.  By default this is enabled.
741The command line option @samp{-nojsri2bsr} can be used to disable it.
742
743@item -sifilter
744@itemx -nosifilter
745Enable or disable the silicon filter behaviour.  By default this is disabled.
746The default can be overridden by the @samp{-sifilter} command line option.
747
748@item -relax
749Alter jump instructions for long displacements.
750
751@item -mcpu=[210|340]
752Select the cpu type on the target hardware.  This controls which instructions
753can be assembled.
754
755@item -EB
756Assemble for a big endian target.
757
758@item -EL
759Assemble for a little endian target.
760
761@end table
762@end ifset
763
764@menu
765* Manual::                      Structure of this Manual
766* GNU Assembler::               The GNU Assembler
767* Object Formats::              Object File Formats
768* Command Line::                Command Line
769* Input Files::                 Input Files
770* Object::                      Output (Object) File
771* Errors::                      Error and Warning Messages
772@end menu
773
774@node Manual
775@section Structure of this Manual
776
777@cindex manual, structure and purpose
778This manual is intended to describe what you need to know to use
779@sc{gnu} @code{@value{AS}}.  We cover the syntax expected in source files, including
780notation for symbols, constants, and expressions; the directives that
781@code{@value{AS}} understands; and of course how to invoke @code{@value{AS}}.
782
783@ifclear GENERIC
784We also cover special features in the @value{TARGET}
785configuration of @code{@value{AS}}, including assembler directives.
786@end ifclear
787@ifset GENERIC
788This manual also describes some of the machine-dependent features of
789various flavors of the assembler.
790@end ifset
791
792@cindex machine instructions (not covered)
793On the other hand, this manual is @emph{not} intended as an introduction
794to programming in assembly language---let alone programming in general!
795In a similar vein, we make no attempt to introduce the machine
796architecture; we do @emph{not} describe the instruction set, standard
797mnemonics, registers or addressing modes that are standard to a
798particular architecture.
799@ifset GENERIC
800You may want to consult the manufacturer's
801machine architecture manual for this information.
802@end ifset
803@ifclear GENERIC
804@ifset H8/300
805For information on the H8/300 machine instruction set, see @cite{H8/300
806Series Programming Manual} (Hitachi ADE--602--025).  For the H8/300H,
807see @cite{H8/300H Series Programming Manual} (Hitachi).
808@end ifset
809@ifset H8/500
810For information on the H8/500 machine instruction set, see @cite{H8/500
811Series Programming Manual} (Hitachi M21T001).
812@end ifset
813@ifset SH
814For information on the Hitachi SH machine instruction set, see
815@cite{SH-Microcomputer User's Manual} (Hitachi Micro Systems, Inc.).
816@end ifset
817@ifset Z8000
818For information on the Z8000 machine instruction set, see @cite{Z8000 CPU Technical Manual}
819@end ifset
820@end ifclear
821
822@c I think this is premature---doc@cygnus.com, 17jan1991
823@ignore
824Throughout this manual, we assume that you are running @dfn{GNU},
825the portable operating system from the @dfn{Free Software
826Foundation, Inc.}.  This restricts our attention to certain kinds of
827computer (in particular, the kinds of computers that @sc{gnu} can run on);
828once this assumption is granted examples and definitions need less
829qualification.
830
831@code{@value{AS}} is part of a team of programs that turn a high-level
832human-readable series of instructions into a low-level
833computer-readable series of instructions.  Different versions of
834@code{@value{AS}} are used for different kinds of computer.
835@end ignore
836
837@c There used to be a section "Terminology" here, which defined
838@c "contents", "byte", "word", and "long".  Defining "word" to any
839@c particular size is confusing when the .word directive may generate 16
840@c bits on one machine and 32 bits on another; in general, for the user
841@c version of this manual, none of these terms seem essential to define.
842@c They were used very little even in the former draft of the manual;
843@c this draft makes an effort to avoid them (except in names of
844@c directives).
845
846@node GNU Assembler
847@section The GNU Assembler
848
849@sc{gnu} @code{as} is really a family of assemblers.
850@ifclear GENERIC
851This manual describes @code{@value{AS}}, a member of that family which is
852configured for the @value{TARGET} architectures.
853@end ifclear
854If you use (or have used) the @sc{gnu} assembler on one architecture, you
855should find a fairly similar environment when you use it on another
856architecture.  Each version has much in common with the others,
857including object file formats, most assembler directives (often called
858@dfn{pseudo-ops}) and assembler syntax.@refill
859
860@cindex purpose of @sc{gnu} assembler
861@code{@value{AS}} is primarily intended to assemble the output of the
862@sc{gnu} C compiler @code{@value{GCC}} for use by the linker
863@code{@value{LD}}.  Nevertheless, we've tried to make @code{@value{AS}}
864assemble correctly everything that other assemblers for the same
865machine would assemble.
866@ifset VAX
867Any exceptions are documented explicitly (@pxref{Machine Dependencies}).
868@end ifset
869@ifset M680X0
870@c This remark should appear in generic version of manual; assumption
871@c here is that generic version sets M680x0.
872This doesn't mean @code{@value{AS}} always uses the same syntax as another
873assembler for the same architecture; for example, we know of several
874incompatible versions of 680x0 assembly language syntax.
875@end ifset
876
877Unlike older assemblers, @code{@value{AS}} is designed to assemble a source
878program in one pass of the source file.  This has a subtle impact on the
879@kbd{.org} directive (@pxref{Org,,@code{.org}}).
880
881@node Object Formats
882@section Object File Formats
883
884@cindex object file format
885The @sc{gnu} assembler can be configured to produce several alternative
886object file formats.  For the most part, this does not affect how you
887write assembly language programs; but directives for debugging symbols
888are typically different in different file formats.  @xref{Symbol
889Attributes,,Symbol Attributes}.
890@ifclear GENERIC
891@ifclear MULTI-OBJ
892On the @value{TARGET}, @code{@value{AS}} is configured to produce
893@value{OBJ-NAME} format object files.
894@end ifclear
895@c The following should exhaust all configs that set MULTI-OBJ, ideally
896@ifset A29K
897On the @value{TARGET}, @code{@value{AS}} can be configured to produce either
898@code{a.out} or COFF format object files.
899@end ifset
900@ifset I960
901On the @value{TARGET}, @code{@value{AS}} can be configured to produce either
902@code{b.out} or COFF format object files.
903@end ifset
904@ifset HPPA
905On the @value{TARGET}, @code{@value{AS}} can be configured to produce either
906SOM or ELF format object files.
907@end ifset
908@end ifclear
909
910@node Command Line
911@section Command Line
912
913@cindex command line conventions
914After the program name @code{@value{AS}}, the command line may contain
915options and file names.  Options may appear in any order, and may be
916before, after, or between file names.  The order of file names is
917significant.
918
919@cindex standard input, as input file
920@kindex --
921@file{--} (two hyphens) by itself names the standard input file
922explicitly, as one of the files for @code{@value{AS}} to assemble.
923
924@cindex options, command line
925Except for @samp{--} any command line argument that begins with a
926hyphen (@samp{-}) is an option.  Each option changes the behavior of
927@code{@value{AS}}.  No option changes the way another option works.  An
928option is a @samp{-} followed by one or more letters; the case of
929the letter is important.   All options are optional.
930
931Some options expect exactly one file name to follow them.  The file
932name may either immediately follow the option's letter (compatible
933with older assemblers) or it may be the next command argument (@sc{gnu}
934standard).  These two command lines are equivalent:
935
936@smallexample
937@value{AS} -o my-object-file.o mumble.s
938@value{AS} -omy-object-file.o mumble.s
939@end smallexample
940
941@node Input Files
942@section Input Files
943
944@cindex input
945@cindex source program
946@cindex files, input
947We use the phrase @dfn{source program}, abbreviated @dfn{source}, to
948describe the program input to one run of @code{@value{AS}}.  The program may
949be in one or more files; how the source is partitioned into files
950doesn't change the meaning of the source.
951
952@c I added "con" prefix to "catenation" just to prove I can overcome my
953@c APL training...   doc@cygnus.com
954The source program is a concatenation of the text in all the files, in the
955order specified.
956
957Each time you run @code{@value{AS}} it assembles exactly one source
958program.  The source program is made up of one or more files.
959(The standard input is also a file.)
960
961You give @code{@value{AS}} a command line that has zero or more input file
962names.  The input files are read (from left file name to right).  A
963command line argument (in any position) that has no special meaning
964is taken to be an input file name.
965
966If you give @code{@value{AS}} no file names it attempts to read one input file
967from the @code{@value{AS}} standard input, which is normally your terminal.  You
968may have to type @key{ctl-D} to tell @code{@value{AS}} there is no more program
969to assemble.
970
971Use @samp{--} if you need to explicitly name the standard input file
972in your command line.
973
974If the source is empty, @code{@value{AS}} produces a small, empty object
975file.
976
977@subheading Filenames and Line-numbers
978
979@cindex input file linenumbers
980@cindex line numbers, in input files
981There are two ways of locating a line in the input file (or files) and
982either may be used in reporting error messages.  One way refers to a line
983number in a physical file; the other refers to a line number in a
984``logical'' file.  @xref{Errors, ,Error and Warning Messages}.
985
986@dfn{Physical files} are those files named in the command line given
987to @code{@value{AS}}.
988
989@dfn{Logical files} are simply names declared explicitly by assembler
990directives; they bear no relation to physical files.  Logical file names help
991error messages reflect the original source file, when @code{@value{AS}} source
992is itself synthesized from other files.  @code{@value{AS}} understands the
993@samp{#} directives emitted by the @code{@value{GCC}} preprocessor.  See also
994@ref{File,,@code{.file}}.
995
996@node Object
997@section Output (Object) File
998
999@cindex object file
1000@cindex output file
1001@kindex a.out
1002@kindex .o
1003Every time you run @code{@value{AS}} it produces an output file, which is
1004your assembly language program translated into numbers.  This file
1005is the object file.  Its default name is
1006@ifclear BOUT
1007@code{a.out}.
1008@end ifclear
1009@ifset BOUT
1010@ifset GENERIC
1011@code{a.out}, or 
1012@end ifset
1013@code{b.out} when @code{@value{AS}} is configured for the Intel 80960.
1014@end ifset
1015You can give it another name by using the @code{-o} option.  Conventionally,
1016object file names end with @file{.o}.  The default name is used for historical
1017reasons: older assemblers were capable of assembling self-contained programs
1018directly into a runnable program.  (For some formats, this isn't currently
1019possible, but it can be done for the @code{a.out} format.)
1020
1021@cindex linker
1022@kindex ld
1023The object file is meant for input to the linker @code{@value{LD}}.  It contains
1024assembled program code, information to help @code{@value{LD}} integrate
1025the assembled program into a runnable file, and (optionally) symbolic
1026information for the debugger.
1027
1028@c link above to some info file(s) like the description of a.out.
1029@c don't forget to describe @sc{gnu} info as well as Unix lossage.
1030
1031@node Errors
1032@section Error and Warning Messages
1033
1034@cindex error messages
1035@cindex warning messages
1036@cindex messages from assembler
1037@code{@value{AS}} may write warnings and error messages to the standard error
1038file (usually your terminal).  This should not happen when  a compiler
1039runs @code{@value{AS}} automatically.  Warnings report an assumption made so
1040that @code{@value{AS}} could keep assembling a flawed program; errors report a
1041grave problem that stops the assembly.
1042
1043@cindex format of warning messages
1044Warning messages have the format
1045
1046@smallexample
1047file_name:@b{NNN}:Warning Message Text
1048@end smallexample
1049
1050@noindent
1051@cindex line numbers, in warnings/errors
1052(where @b{NNN} is a line number).  If a logical file name has been given
1053(@pxref{File,,@code{.file}}) it is used for the filename, otherwise the name of
1054the current input file is used.  If a logical line number was given
1055@ifset GENERIC
1056(@pxref{Line,,@code{.line}})
1057@end ifset
1058@ifclear GENERIC
1059@ifclear A29K
1060(@pxref{Line,,@code{.line}})
1061@end ifclear
1062@ifset A29K
1063(@pxref{Ln,,@code{.ln}})
1064@end ifset
1065@end ifclear
1066then it is used to calculate the number printed,
1067otherwise the actual line in the current source file is printed.  The
1068message text is intended to be self explanatory (in the grand Unix
1069tradition).
1070
1071@cindex format of error messages
1072Error messages have the format
1073@smallexample
1074file_name:@b{NNN}:FATAL:Error Message Text
1075@end smallexample
1076The file name and line number are derived as for warning
1077messages.  The actual message text may be rather less explanatory
1078because many of them aren't supposed to happen.
1079
1080@node Invoking
1081@chapter Command-Line Options
1082
1083@cindex options, all versions of assembler
1084This chapter describes command-line options available in @emph{all}
1085versions of the @sc{gnu} assembler; @pxref{Machine Dependencies}, for options specific
1086@ifclear GENERIC
1087to the @value{TARGET}.
1088@end ifclear
1089@ifset GENERIC
1090to particular machine architectures.
1091@end ifset
1092
1093If you are invoking @code{@value{AS}} via the @sc{gnu} C compiler (version 2),
1094you can use the @samp{-Wa} option to pass arguments through to the assembler.
1095The assembler arguments must be separated from each other (and the @samp{-Wa})
1096by commas.  For example:
1097
1098@smallexample
1099gcc -c -g -O -Wa,-alh,-L file.c
1100@end smallexample
1101
1102@noindent
1103This passes two options to the assembler: @samp{-alh} (emit a listing to
1104standard output with with high-level and assembly source) and @samp{-L} (retain
1105local symbols in the symbol table).
1106
1107Usually you do not need to use this @samp{-Wa} mechanism, since many compiler
1108command-line options are automatically passed to the assembler by the compiler.
1109(You can call the @sc{gnu} compiler driver with the @samp{-v} option to see
1110precisely what options it passes to each compilation pass, including the
1111assembler.)
1112
1113@menu
1114* a::             -a[cdhlns] enable listings
1115* D::             -D for compatibility
1116* f::             -f to work faster
1117* I::             -I for .include search path
1118@ifclear DIFF-TBL-KLUGE
1119* K::             -K for compatibility
1120@end ifclear
1121@ifset DIFF-TBL-KLUGE
1122* K::             -K for difference tables
1123@end ifset
1124
1125* L::             -L to retain local labels
1126* M::		  -M or --mri to assemble in MRI compatibility mode
1127* MD::            --MD for dependency tracking
1128* o::             -o to name the object file
1129* R::             -R to join data and text sections
1130* statistics::    --statistics to see statistics about assembly
1131* traditional-format:: --traditional-format for compatible output
1132* v::             -v to announce version
1133* W::             -W, --no-warn, --warn, --fatal-warnings to control warnings
1134* Z::             -Z to make object file even after errors
1135@end menu
1136
1137@node a
1138@section Enable Listings: @code{-a[cdhlns]}
1139
1140@kindex -a
1141@kindex -ac
1142@kindex -ad
1143@kindex -ah
1144@kindex -al
1145@kindex -an
1146@kindex -as
1147@cindex listings, enabling
1148@cindex assembly listings, enabling
1149
1150These options enable listing output from the assembler.  By itself,
1151@samp{-a} requests high-level, assembly, and symbols listing.
1152You can use other letters to select specific options for the list:
1153@samp{-ah} requests a high-level language listing,
1154@samp{-al} requests an output-program assembly listing, and
1155@samp{-as} requests a symbol table listing.
1156High-level listings require that a compiler debugging option like
1157@samp{-g} be used, and that assembly listings (@samp{-al}) be requested
1158also.
1159
1160Use the @samp{-ac} option to omit false conditionals from a listing.  Any lines
1161which are not assembled because of a false @code{.if} (or @code{.ifdef}, or any
1162other conditional), or a true @code{.if} followed by an @code{.else}, will be
1163omitted from the listing.
1164
1165Use the @samp{-ad} option to omit debugging directives from the
1166listing.
1167
1168Once you have specified one of these options, you can further control
1169listing output and its appearance using the directives @code{.list},
1170@code{.nolist}, @code{.psize}, @code{.eject}, @code{.title}, and
1171@code{.sbttl}.
1172The @samp{-an} option turns off all forms processing.
1173If you do not request listing output with one of the @samp{-a} options, the
1174listing-control directives have no effect.
1175
1176The letters after @samp{-a} may be combined into one option,
1177@emph{e.g.}, @samp{-aln}.
1178
1179@node D
1180@section @code{-D}
1181
1182@kindex -D
1183This option has no effect whatsoever, but it is accepted to make it more
1184likely that scripts written for other assemblers also work with
1185@code{@value{AS}}.
1186
1187@node f
1188@section Work Faster: @code{-f}
1189
1190@kindex -f
1191@cindex trusted compiler
1192@cindex faster processing (@code{-f})
1193@samp{-f} should only be used when assembling programs written by a
1194(trusted) compiler.  @samp{-f} stops the assembler from doing whitespace
1195and comment preprocessing on
1196the input file(s) before assembling them.  @xref{Preprocessing,
1197,Preprocessing}.
1198
1199@quotation
1200@emph{Warning:} if you use @samp{-f} when the files actually need to be
1201preprocessed (if they contain comments, for example), @code{@value{AS}} does
1202not work correctly.
1203@end quotation
1204
1205@node I
1206@section @code{.include} search path: @code{-I} @var{path}
1207
1208@kindex -I @var{path}
1209@cindex paths for @code{.include}
1210@cindex search path for @code{.include}
1211@cindex @code{include} directive search path
1212Use this option to add a @var{path} to the list of directories
1213@code{@value{AS}} searches for files specified in @code{.include}
1214directives (@pxref{Include,,@code{.include}}).  You may use @code{-I} as
1215many times as necessary to include a variety of paths.  The current
1216working directory is always searched first; after that, @code{@value{AS}}
1217searches any @samp{-I} directories in the same order as they were
1218specified (left to right) on the command line.
1219
1220@node K
1221@section Difference Tables: @code{-K}
1222
1223@kindex -K
1224@ifclear DIFF-TBL-KLUGE
1225On the @value{TARGET} family, this option is allowed, but has no effect.  It is
1226permitted for compatibility with the @sc{gnu} assembler on other platforms,
1227where it can be used to warn when the assembler alters the machine code
1228generated for @samp{.word} directives in difference tables.  The @value{TARGET}
1229family does not have the addressing limitations that sometimes lead to this
1230alteration on other platforms.
1231@end ifclear
1232
1233@ifset DIFF-TBL-KLUGE
1234@cindex difference tables, warning
1235@cindex warning for altered difference tables
1236@code{@value{AS}} sometimes alters the code emitted for directives of the form
1237@samp{.word @var{sym1}-@var{sym2}}; @pxref{Word,,@code{.word}}.
1238You can use the @samp{-K} option if you want a warning issued when this
1239is done.
1240@end ifset
1241
1242@node L
1243@section Include Local Labels: @code{-L}
1244
1245@kindex -L
1246@cindex local labels, retaining in output
1247Labels beginning with @samp{L} (upper case only) are called @dfn{local
1248labels}. @xref{Symbol Names}.  Normally you do not see such labels when
1249debugging, because they are intended for the use of programs (like
1250compilers) that compose assembler programs, not for your notice.
1251Normally both @code{@value{AS}} and @code{@value{LD}} discard such labels, so you do not
1252normally debug with them.
1253
1254This option tells @code{@value{AS}} to retain those @samp{L@dots{}} symbols
1255in the object file.  Usually if you do this you also tell the linker
1256@code{@value{LD}} to preserve symbols whose names begin with @samp{L}.
1257
1258By default, a local label is any label beginning with @samp{L}, but each
1259target is allowed to redefine the local label prefix.
1260@ifset HPPA
1261On the HPPA local labels begin with @samp{L$}.
1262@end ifset
1263
1264@node M
1265@section Assemble in MRI Compatibility Mode: @code{-M}
1266
1267@kindex -M
1268@cindex MRI compatibility mode
1269The @code{-M} or @code{--mri} option selects MRI compatibility mode.  This
1270changes the syntax and pseudo-op handling of @code{@value{AS}} to make it
1271compatible with the @code{ASM68K} or the @code{ASM960} (depending upon the
1272configured target) assembler from Microtec Research.  The exact nature of the
1273MRI syntax will not be documented here; see the MRI manuals for more
1274information.  Note in particular that the handling of macros and macro
1275arguments is somewhat different.  The purpose of this option is to permit
1276assembling existing MRI assembler code using @code{@value{AS}}.
1277
1278The MRI compatibility is not complete.  Certain operations of the MRI assembler
1279depend upon its object file format, and can not be supported using other object
1280file formats.  Supporting these would require enhancing each object file format
1281individually.  These are:
1282
1283@itemize @bullet
1284@item global symbols in common section
1285
1286The m68k MRI assembler supports common sections which are merged by the linker.
1287Other object file formats do not support this.  @code{@value{AS}} handles
1288common sections by treating them as a single common symbol.  It permits local
1289symbols to be defined within a common section, but it can not support global
1290symbols, since it has no way to describe them.
1291
1292@item complex relocations
1293
1294The MRI assemblers support relocations against a negated section address, and
1295relocations which combine the start addresses of two or more sections.  These
1296are not support by other object file formats.
1297
1298@item @code{END} pseudo-op specifying start address
1299
1300The MRI @code{END} pseudo-op permits the specification of a start address.
1301This is not supported by other object file formats.  The start address may
1302instead be specified using the @code{-e} option to the linker, or in a linker
1303script.
1304
1305@item @code{IDNT}, @code{.ident} and @code{NAME} pseudo-ops
1306
1307The MRI @code{IDNT}, @code{.ident} and @code{NAME} pseudo-ops assign a module
1308name to the output file.  This is not supported by other object file formats.
1309
1310@item @code{ORG} pseudo-op
1311
1312The m68k MRI @code{ORG} pseudo-op begins an absolute section at a given
1313address.  This differs from the usual @code{@value{AS}} @code{.org} pseudo-op,
1314which changes the location within the current section.  Absolute sections are
1315not supported by other object file formats.  The address of a section may be
1316assigned within a linker script.
1317@end itemize
1318
1319There are some other features of the MRI assembler which are not supported by
1320@code{@value{AS}}, typically either because they are difficult or because they
1321seem of little consequence.  Some of these may be supported in future releases.
1322
1323@itemize @bullet
1324
1325@item EBCDIC strings
1326
1327EBCDIC strings are not supported.
1328
1329@item packed binary coded decimal
1330
1331Packed binary coded decimal is not supported.  This means that the @code{DC.P}
1332and @code{DCB.P} pseudo-ops are not supported.
1333
1334@item @code{FEQU} pseudo-op
1335
1336The m68k @code{FEQU} pseudo-op is not supported.
1337
1338@item @code{NOOBJ} pseudo-op
1339
1340The m68k @code{NOOBJ} pseudo-op is not supported.
1341
1342@item @code{OPT} branch control options
1343
1344The m68k @code{OPT} branch control options---@code{B}, @code{BRS}, @code{BRB},
1345@code{BRL}, and @code{BRW}---are ignored.  @code{@value{AS}} automatically
1346relaxes all branches, whether forward or backward, to an appropriate size, so
1347these options serve no purpose.
1348
1349@item @code{OPT} list control options
1350
1351The following m68k @code{OPT} list control options are ignored: @code{C},
1352@code{CEX}, @code{CL}, @code{CRE}, @code{E}, @code{G}, @code{I}, @code{M},
1353@code{MEX}, @code{MC}, @code{MD}, @code{X}.
1354
1355@item other @code{OPT} options
1356
1357The following m68k @code{OPT} options are ignored: @code{NEST}, @code{O},
1358@code{OLD}, @code{OP}, @code{P}, @code{PCO}, @code{PCR}, @code{PCS}, @code{R}.
1359
1360@item @code{OPT} @code{D} option is default
1361
1362The m68k @code{OPT} @code{D} option is the default, unlike the MRI assembler.
1363@code{OPT NOD} may be used to turn it off.
1364
1365@item @code{XREF} pseudo-op.
1366
1367The m68k @code{XREF} pseudo-op is ignored.
1368
1369@item @code{.debug} pseudo-op
1370
1371The i960 @code{.debug} pseudo-op is not supported.
1372
1373@item @code{.extended} pseudo-op
1374
1375The i960 @code{.extended} pseudo-op is not supported.
1376
1377@item @code{.list} pseudo-op.
1378
1379The various options of the i960 @code{.list} pseudo-op are not supported.
1380
1381@item @code{.optimize} pseudo-op
1382
1383The i960 @code{.optimize} pseudo-op is not supported.
1384
1385@item @code{.output} pseudo-op
1386
1387The i960 @code{.output} pseudo-op is not supported.
1388
1389@item @code{.setreal} pseudo-op
1390
1391The i960 @code{.setreal} pseudo-op is not supported.
1392
1393@end itemize
1394
1395@node MD
1396@section Dependency tracking: @code{--MD}
1397
1398@kindex --MD
1399@cindex dependency tracking
1400@cindex make rules
1401
1402@code{@value{AS}} can generate a dependency file for the file it creates.  This
1403file consists of a single rule suitable for @code{make} describing the
1404dependencies of the main source file.
1405
1406The rule is written to the file named in its argument.
1407
1408This feature is used in the automatic updating of makefiles.
1409
1410@node o
1411@section Name the Object File: @code{-o}
1412
1413@kindex -o
1414@cindex naming object file
1415@cindex object file name
1416There is always one object file output when you run @code{@value{AS}}.  By
1417default it has the name
1418@ifset GENERIC
1419@ifset I960
1420@file{a.out} (or @file{b.out}, for Intel 960 targets only).
1421@end ifset
1422@ifclear I960
1423@file{a.out}.
1424@end ifclear
1425@end ifset
1426@ifclear GENERIC
1427@ifset I960
1428@file{b.out}.
1429@end ifset
1430@ifclear I960
1431@file{a.out}.
1432@end ifclear
1433@end ifclear
1434You use this option (which takes exactly one filename) to give the
1435object file a different name.
1436
1437Whatever the object file is called, @code{@value{AS}} overwrites any
1438existing file of the same name.
1439
1440@node R
1441@section Join Data and Text Sections: @code{-R}
1442
1443@kindex -R
1444@cindex data and text sections, joining
1445@cindex text and data sections, joining
1446@cindex joining text and data sections
1447@cindex merging text and data sections
1448@code{-R} tells @code{@value{AS}} to write the object file as if all
1449data-section data lives in the text section.  This is only done at
1450the very last moment:  your binary data are the same, but data
1451section parts are relocated differently.  The data section part of
1452your object file is zero bytes long because all its bytes are
1453appended to the text section.  (@xref{Sections,,Sections and Relocation}.)
1454
1455When you specify @code{-R} it would be possible to generate shorter
1456address displacements (because we do not have to cross between text and
1457data section).  We refrain from doing this simply for compatibility with
1458older versions of @code{@value{AS}}.  In future, @code{-R} may work this way.
1459
1460@ifset COFF
1461When @code{@value{AS}} is configured for COFF output,
1462this option is only useful if you use sections named @samp{.text} and
1463@samp{.data}.
1464@end ifset
1465
1466@ifset HPPA
1467@code{-R} is not supported for any of the HPPA targets.  Using
1468@code{-R} generates a warning from @code{@value{AS}}.
1469@end ifset
1470
1471@node statistics
1472@section Display Assembly Statistics: @code{--statistics}
1473
1474@kindex --statistics
1475@cindex statistics, about assembly
1476@cindex time, total for assembly
1477@cindex space used, maximum for assembly
1478Use @samp{--statistics} to display two statistics about the resources used by
1479@code{@value{AS}}: the maximum amount of space allocated during the assembly
1480(in bytes), and the total execution time taken for the assembly (in @sc{cpu}
1481seconds).
1482
1483@node traditional-format
1484@section Compatible output: @code{--traditional-format}
1485
1486@kindex --traditional-format
1487For some targets, the output of @code{@value{AS}} is different in some ways
1488from the output of some existing assembler.  This switch requests
1489@code{@value{AS}} to use the traditional format instead.
1490
1491For example, it disables the exception frame optimizations which
1492@code{@value{AS}} normally does by default on @code{@value{GCC}} output.
1493
1494@node v
1495@section Announce Version: @code{-v}
1496
1497@kindex -v
1498@kindex -version
1499@cindex assembler version
1500@cindex version of assembler
1501You can find out what version of as is running by including the
1502option @samp{-v} (which you can also spell as @samp{-version}) on the
1503command line.
1504
1505@node W
1506@section Control Warnings: @code{-W}, @code{--warn}, @code{--no-warn}, @code{--fatal-warnings}
1507
1508@code{@value{AS}} should never give a warning or error message when
1509assembling compiler output.  But programs written by people often
1510cause @code{@value{AS}} to give a warning that a particular assumption was
1511made.  All such warnings are directed to the standard error file.
1512
1513@kindex @samp{-W}
1514@kindex @samp{--no-warn}
1515@cindex suppressing warnings
1516@cindex warnings, suppressing
1517If you use the @code{-W} and @code{--no-warn} options, no warnings are issued.
1518This only affects the warning messages: it does not change any particular of
1519how @code{@value{AS}} assembles your file.  Errors, which stop the assembly,
1520are still reported.
1521
1522@kindex @samp{--fatal-warnings}
1523@cindex errors, caused by warnings
1524@cindex warnings, causing error
1525If you use the @code{--fatal-warnings} option, @code{@value{AS}} considers
1526files that generate warnings to be in error.
1527
1528@kindex @samp{--warn}
1529@cindex warnings, switching on
1530You can switch these options off again by specifying @code{--warn}, which
1531causes warnings to be output as usual.
1532
1533@node Z
1534@section Generate Object File in Spite of Errors: @code{-Z}
1535@cindex object file, after errors
1536@cindex errors, continuing after
1537After an error message, @code{@value{AS}} normally produces no output.  If for
1538some reason you are interested in object file output even after
1539@code{@value{AS}} gives an error message on your program, use the @samp{-Z}
1540option.  If there are any errors, @code{@value{AS}} continues anyways, and
1541writes an object file after a final warning message of the form @samp{@var{n}
1542errors, @var{m} warnings, generating bad object file.}
1543
1544@node Syntax
1545@chapter Syntax
1546
1547@cindex machine-independent syntax
1548@cindex syntax, machine-independent
1549This chapter describes the machine-independent syntax allowed in a
1550source file.  @code{@value{AS}} syntax is similar to what many other
1551assemblers use; it is inspired by the BSD 4.2
1552@ifclear VAX
1553assembler.
1554@end ifclear
1555@ifset VAX
1556assembler, except that @code{@value{AS}} does not assemble Vax bit-fields.
1557@end ifset
1558
1559@menu
1560* Preprocessing::              Preprocessing
1561* Whitespace::                  Whitespace
1562* Comments::                    Comments
1563* Symbol Intro::                Symbols
1564* Statements::                  Statements
1565* Constants::                   Constants
1566@end menu
1567
1568@node Preprocessing
1569@section Preprocessing
1570
1571@cindex preprocessing
1572The @code{@value{AS}} internal preprocessor:
1573@itemize @bullet
1574@cindex whitespace, removed by preprocessor
1575@item
1576adjusts and removes extra whitespace.  It leaves one space or tab before
1577the keywords on a line, and turns any other whitespace on the line into
1578a single space.
1579
1580@cindex comments, removed by preprocessor
1581@item
1582removes all comments, replacing them with a single space, or an
1583appropriate number of newlines.
1584
1585@cindex constants, converted by preprocessor
1586@item
1587converts character constants into the appropriate numeric values.
1588@end itemize
1589
1590It does not do macro processing, include file handling, or
1591anything else you may get from your C compiler's preprocessor.  You can
1592do include file processing with the @code{.include} directive
1593(@pxref{Include,,@code{.include}}).  You can use the @sc{gnu} C compiler driver
1594to get other ``CPP'' style preprocessing, by giving the input file a
1595@samp{.S} suffix.  @xref{Overall Options,, Options Controlling the Kind of
1596Output, gcc.info, Using GNU CC}.
1597
1598Excess whitespace, comments, and character constants
1599cannot be used in the portions of the input text that are not
1600preprocessed.
1601
1602@cindex turning preprocessing on and off
1603@cindex preprocessing, turning on and off
1604@kindex #NO_APP
1605@kindex #APP
1606If the first line of an input file is @code{#NO_APP} or if you use the
1607@samp{-f} option, whitespace and comments are not removed from the input file.
1608Within an input file, you can ask for whitespace and comment removal in
1609specific portions of the by putting a line that says @code{#APP} before the
1610text that may contain whitespace or comments, and putting a line that says
1611@code{#NO_APP} after this text.  This feature is mainly intend to support
1612@code{asm} statements in compilers whose output is otherwise free of comments
1613and whitespace.
1614
1615@node Whitespace
1616@section Whitespace
1617
1618@cindex whitespace
1619@dfn{Whitespace} is one or more blanks or tabs, in any order.
1620Whitespace is used to separate symbols, and to make programs neater for
1621people to read.  Unless within character constants
1622(@pxref{Characters,,Character Constants}), any whitespace means the same
1623as exactly one space.
1624
1625@node Comments
1626@section Comments
1627
1628@cindex comments
1629There are two ways of rendering comments to @code{@value{AS}}.  In both
1630cases the comment is equivalent to one space.
1631
1632Anything from @samp{/*} through the next @samp{*/} is a comment.
1633This means you may not nest these comments.
1634
1635@smallexample
1636/*
1637  The only way to include a newline ('\n') in a comment
1638  is to use this sort of comment.
1639*/
1640
1641/* This sort of comment does not nest. */
1642@end smallexample
1643
1644@cindex line comment character
1645Anything from the @dfn{line comment} character to the next newline
1646is considered a comment and is ignored.  The line comment character is
1647@ifset A29K
1648@samp{;} for the AMD 29K family;
1649@end ifset
1650@ifset ARC
1651@samp{;} on the ARC;
1652@end ifset
1653@ifset ARM
1654@samp{@@} on the ARM;
1655@end ifset
1656@ifset H8/300
1657@samp{;} for the H8/300 family;
1658@end ifset
1659@ifset H8/500
1660@samp{!} for the H8/500 family;
1661@end ifset
1662@ifset HPPA
1663@samp{;} for the HPPA;
1664@end ifset
1665@ifset I80386
1666@samp{#} on the i386 and x86-64;
1667@end ifset
1668@ifset I960
1669@samp{#} on the i960;
1670@end ifset
1671@ifset PJ
1672@samp{;} for picoJava;
1673@end ifset
1674@ifset SH
1675@samp{!} for the Hitachi SH;
1676@end ifset
1677@ifset SPARC
1678@samp{!} on the SPARC;
1679@end ifset
1680@ifset M32R
1681@samp{#} on the m32r;
1682@end ifset
1683@ifset M680X0
1684@samp{|} on the 680x0;
1685@end ifset
1686@ifset M68HC11
1687@samp{#} on the 68HC11 and 68HC12;
1688@end ifset
1689@ifset VAX
1690@samp{#} on the Vax;
1691@end ifset
1692@ifset Z8000
1693@samp{!} for the Z8000;
1694@end ifset
1695@ifset V850
1696@samp{#} on the V850;
1697@end ifset
1698see @ref{Machine Dependencies}.  @refill
1699@c FIXME What about m88k, i860?
1700
1701@ifset GENERIC
1702On some machines there are two different line comment characters.  One
1703character only begins a comment if it is the first non-whitespace character on
1704a line, while the other always begins a comment.
1705@end ifset
1706
1707@ifset V850
1708The V850 assembler also supports a double dash as starting a comment that
1709extends to the end of the line.
1710
1711@samp{--};
1712@end ifset
1713
1714@kindex #
1715@cindex lines starting with @code{#}
1716@cindex logical line numbers
1717To be compatible with past assemblers, lines that begin with @samp{#} have a
1718special interpretation.  Following the @samp{#} should be an absolute
1719expression (@pxref{Expressions}): the logical line number of the @emph{next}
1720line.  Then a string (@pxref{Strings,, Strings}) is allowed: if present it is a
1721new logical file name.  The rest of the line, if any, should be whitespace.
1722
1723If the first non-whitespace characters on the line are not numeric,
1724the line is ignored.  (Just like a comment.)
1725
1726@smallexample
1727                          # This is an ordinary comment.
1728# 42-6 "new_file_name"    # New logical file name
1729                          # This is logical line # 36.
1730@end smallexample
1731This feature is deprecated, and may disappear from future versions
1732of @code{@value{AS}}.
1733
1734@node Symbol Intro
1735@section Symbols
1736
1737@cindex characters used in symbols
1738@ifclear SPECIAL-SYMS
1739A @dfn{symbol} is one or more characters chosen from the set of all
1740letters (both upper and lower case), digits and the three characters
1741@samp{_.$}.
1742@end ifclear
1743@ifset SPECIAL-SYMS
1744@ifclear GENERIC
1745@ifset H8
1746A @dfn{symbol} is one or more characters chosen from the set of all
1747letters (both upper and lower case), digits and the three characters
1748@samp{._$}.  (Save that, on the H8/300 only, you may not use @samp{$} in
1749symbol names.)
1750@end ifset
1751@end ifclear
1752@end ifset
1753@ifset GENERIC
1754On most machines, you can also use @code{$} in symbol names; exceptions
1755are noted in @ref{Machine Dependencies}.
1756@end ifset
1757No symbol may begin with a digit.  Case is significant.
1758There is no length limit: all characters are significant.  Symbols are
1759delimited by characters not in that set, or by the beginning of a file
1760(since the source program must end with a newline, the end of a file is
1761not a possible symbol delimiter).  @xref{Symbols}.
1762@cindex length of symbols
1763
1764@node Statements
1765@section Statements
1766
1767@cindex statements, structure of
1768@cindex line separator character
1769@cindex statement separator character
1770@ifclear GENERIC
1771@ifclear abnormal-separator
1772A @dfn{statement} ends at a newline character (@samp{\n}) or at a
1773semicolon (@samp{;}).  The newline or semicolon is considered part of
1774the preceding statement.  Newlines and semicolons within character
1775constants are an exception: they do not end statements.
1776@end ifclear
1777@ifset abnormal-separator
1778@ifset A29K
1779A @dfn{statement} ends at a newline character (@samp{\n}) or an ``at''
1780sign (@samp{@@}).  The newline or at sign is considered part of the
1781preceding statement.  Newlines and at signs within character constants
1782are an exception: they do not end statements.
1783@end ifset
1784@ifset HPPA
1785A @dfn{statement} ends at a newline character (@samp{\n}) or an exclamation 
1786point (@samp{!}).  The newline or exclamation point is considered part of the
1787preceding statement.  Newlines and exclamation points within character
1788constants are an exception: they do not end statements.
1789@end ifset
1790@ifset H8
1791A @dfn{statement} ends at a newline character (@samp{\n}); or (for the
1792H8/300) a dollar sign (@samp{$}); or (for the
1793Hitachi-SH or the
1794H8/500) a semicolon
1795(@samp{;}).  The newline or separator character is considered part of
1796the preceding statement.  Newlines and separators within character
1797constants are an exception: they do not end statements.
1798@end ifset
1799@end ifset
1800@end ifclear
1801@ifset GENERIC
1802A @dfn{statement} ends at a newline character (@samp{\n}) or line
1803separator character.  (The line separator is usually @samp{;}, unless
1804this conflicts with the comment character; @pxref{Machine Dependencies}.)  The
1805newline or separator character is considered part of the preceding
1806statement.  Newlines and separators within character constants are an
1807exception: they do not end statements.
1808@end ifset
1809
1810@cindex newline, required at file end
1811@cindex EOF, newline must precede
1812It is an error to end any statement with end-of-file:  the last
1813character of any input file should be a newline.@refill
1814
1815An empty statement is allowed, and may include whitespace.  It is ignored.
1816
1817@cindex instructions and directives
1818@cindex directives and instructions
1819@c "key symbol" is not used elsewhere in the document; seems pedantic to
1820@c @defn{} it in that case, as was done previously...  doc@cygnus.com,
1821@c 13feb91.
1822A statement begins with zero or more labels, optionally followed by a
1823key symbol which determines what kind of statement it is.  The key
1824symbol determines the syntax of the rest of the statement.  If the
1825symbol begins with a dot @samp{.} then the statement is an assembler
1826directive: typically valid for any computer.  If the symbol begins with
1827a letter the statement is an assembly language @dfn{instruction}: it
1828assembles into a machine language instruction.
1829@ifset GENERIC
1830Different versions of @code{@value{AS}} for different computers
1831recognize different instructions.  In fact, the same symbol may
1832represent a different instruction in a different computer's assembly
1833language.@refill
1834@end ifset
1835
1836@cindex @code{:} (label)
1837@cindex label (@code{:})
1838A label is a symbol immediately followed by a colon (@code{:}).
1839Whitespace before a label or after a colon is permitted, but you may not
1840have whitespace between a label's symbol and its colon. @xref{Labels}.
1841
1842@ifset HPPA
1843For HPPA targets, labels need not be immediately followed by a colon, but 
1844the definition of a label must begin in column zero.  This also implies that
1845only one label may be defined on each line.
1846@end ifset
1847
1848@smallexample
1849label:     .directive    followed by something
1850another_label:           # This is an empty statement.
1851           instruction   operand_1, operand_2, @dots{}
1852@end smallexample
1853
1854@node Constants
1855@section Constants
1856
1857@cindex constants
1858A constant is a number, written so that its value is known by
1859inspection, without knowing any context.  Like this:
1860@smallexample
1861@group
1862.byte  74, 0112, 092, 0x4A, 0X4a, 'J, '\J # All the same value.
1863.ascii "Ring the bell\7"                  # A string constant.
1864.octa  0x123456789abcdef0123456789ABCDEF0 # A bignum.
1865.float 0f-314159265358979323846264338327\
186695028841971.693993751E-40                 # - pi, a flonum.
1867@end group
1868@end smallexample
1869
1870@menu
1871* Characters::                  Character Constants
1872* Numbers::                     Number Constants
1873@end menu
1874
1875@node Characters
1876@subsection Character Constants
1877
1878@cindex character constants
1879@cindex constants, character
1880There are two kinds of character constants.  A @dfn{character} stands
1881for one character in one byte and its value may be used in
1882numeric expressions.  String constants (properly called string
1883@emph{literals}) are potentially many bytes and their values may not be
1884used in arithmetic expressions.
1885
1886@menu
1887* Strings::                     Strings
1888* Chars::                       Characters
1889@end menu
1890
1891@node Strings
1892@subsubsection Strings
1893
1894@cindex string constants
1895@cindex constants, string
1896A @dfn{string} is written between double-quotes.  It may contain
1897double-quotes or null characters.  The way to get special characters
1898into a string is to @dfn{escape} these characters: precede them with
1899a backslash @samp{\} character.  For example @samp{\\} represents
1900one backslash:  the first @code{\} is an escape which tells
1901@code{@value{AS}} to interpret the second character literally as a backslash
1902(which prevents @code{@value{AS}} from recognizing the second @code{\} as an
1903escape character).  The complete list of escapes follows.
1904
1905@cindex escape codes, character
1906@cindex character escape codes
1907@table @kbd
1908@c      @item \a
1909@c      Mnemonic for ACKnowledge; for ASCII this is octal code 007.
1910@c
1911@cindex @code{\b} (backspace character)
1912@cindex backspace (@code{\b})
1913@item \b
1914Mnemonic for backspace; for ASCII this is octal code 010.
1915
1916@c      @item \e
1917@c      Mnemonic for EOText; for ASCII this is octal code 004.
1918@c
1919@cindex @code{\f} (formfeed character)
1920@cindex formfeed (@code{\f})
1921@item \f
1922Mnemonic for FormFeed; for ASCII this is octal code 014.
1923
1924@cindex @code{\n} (newline character)
1925@cindex newline (@code{\n})
1926@item \n
1927Mnemonic for newline; for ASCII this is octal code 012.
1928
1929@c      @item \p
1930@c      Mnemonic for prefix; for ASCII this is octal code 033, usually known as @code{escape}.
1931@c
1932@cindex @code{\r} (carriage return character)
1933@cindex carriage return (@code{\r})
1934@item \r
1935Mnemonic for carriage-Return; for ASCII this is octal code 015.
1936
1937@c      @item \s
1938@c      Mnemonic for space; for ASCII this is octal code 040.  Included for compliance with
1939@c      other assemblers.
1940@c
1941@cindex @code{\t} (tab)
1942@cindex tab (@code{\t})
1943@item \t
1944Mnemonic for horizontal Tab; for ASCII this is octal code 011.
1945
1946@c      @item \v
1947@c      Mnemonic for Vertical tab; for ASCII this is octal code 013.
1948@c      @item \x @var{digit} @var{digit} @var{digit}
1949@c      A hexadecimal character code.  The numeric code is 3 hexadecimal digits.
1950@c
1951@cindex @code{\@var{ddd}} (octal character code)
1952@cindex octal character code (@code{\@var{ddd}})
1953@item \ @var{digit} @var{digit} @var{digit}
1954An octal character code.  The numeric code is 3 octal digits.
1955For compatibility with other Unix systems, 8 and 9 are accepted as digits:
1956for example, @code{\008} has the value 010, and @code{\009} the value 011.
1957
1958@cindex @code{\@var{xd...}} (hex character code)
1959@cindex hex character code (@code{\@var{xd...}})
1960@item \@code{x} @var{hex-digits...}
1961A hex character code.  All trailing hex digits are combined.  Either upper or
1962lower case @code{x} works.
1963
1964@cindex @code{\\} (@samp{\} character)
1965@cindex backslash (@code{\\})
1966@item \\
1967Represents one @samp{\} character.
1968
1969@c      @item \'
1970@c      Represents one @samp{'} (accent acute) character.
1971@c      This is needed in single character literals
1972@c      (@xref{Characters,,Character Constants}.) to represent
1973@c      a @samp{'}.
1974@c
1975@cindex @code{\"} (doublequote character)
1976@cindex doublequote (@code{\"})
1977@item \"
1978Represents one @samp{"} character.  Needed in strings to represent
1979this character, because an unescaped @samp{"} would end the string.
1980
1981@item \ @var{anything-else}
1982Any other character when escaped by @kbd{\} gives a warning, but
1983assembles as if the @samp{\} was not present.  The idea is that if
1984you used an escape sequence you clearly didn't want the literal
1985interpretation of the following character.  However @code{@value{AS}} has no
1986other interpretation, so @code{@value{AS}} knows it is giving you the wrong
1987code and warns you of the fact.
1988@end table
1989
1990Which characters are escapable, and what those escapes represent,
1991varies widely among assemblers.  The current set is what we think
1992the BSD 4.2 assembler recognizes, and is a subset of what most C
1993compilers recognize.  If you are in doubt, do not use an escape
1994sequence.
1995
1996@node Chars
1997@subsubsection Characters
1998
1999@cindex single character constant
2000@cindex character, single
2001@cindex constant, single character
2002A single character may be written as a single quote immediately
2003followed by that character.  The same escapes apply to characters as
2004to strings.  So if you want to write the character backslash, you
2005must write @kbd{'\\} where the first @code{\} escapes the second
2006@code{\}.  As you can see, the quote is an acute accent, not a
2007grave accent.  A newline
2008@ifclear GENERIC
2009@ifclear abnormal-separator
2010(or semicolon @samp{;})
2011@end ifclear
2012@ifset abnormal-separator
2013@ifset A29K
2014(or at sign @samp{@@})
2015@end ifset
2016@ifset H8
2017(or dollar sign @samp{$}, for the H8/300; or semicolon @samp{;} for the
2018Hitachi SH or
2019H8/500)
2020@end ifset
2021@end ifset
2022@end ifclear
2023immediately following an acute accent is taken as a literal character
2024and does not count as the end of a statement.  The value of a character
2025constant in a numeric expression is the machine's byte-wide code for
2026that character.  @code{@value{AS}} assumes your character code is ASCII:
2027@kbd{'A} means 65, @kbd{'B} means 66, and so on. @refill
2028
2029@node Numbers
2030@subsection Number Constants
2031
2032@cindex constants, number
2033@cindex number constants
2034@code{@value{AS}} distinguishes three kinds of numbers according to how they
2035are stored in the target machine.  @emph{Integers} are numbers that
2036would fit into an @code{int} in the C language.  @emph{Bignums} are
2037integers, but they are stored in more than 32 bits.  @emph{Flonums}
2038are floating point numbers, described below.
2039
2040@menu
2041* Integers::                    Integers
2042* Bignums::                     Bignums
2043* Flonums::                     Flonums
2044@ifclear GENERIC
2045@ifset I960
2046* Bit Fields::                  Bit Fields
2047@end ifset
2048@end ifclear
2049@end menu
2050
2051@node Integers
2052@subsubsection Integers
2053@cindex integers
2054@cindex constants, integer
2055
2056@cindex binary integers
2057@cindex integers, binary
2058A binary integer is @samp{0b} or @samp{0B} followed by zero or more of
2059the binary digits @samp{01}.
2060
2061@cindex octal integers
2062@cindex integers, octal
2063An octal integer is @samp{0} followed by zero or more of the octal
2064digits (@samp{01234567}).
2065
2066@cindex decimal integers
2067@cindex integers, decimal
2068A decimal integer starts with a non-zero digit followed by zero or
2069more digits (@samp{0123456789}).
2070
2071@cindex hexadecimal integers
2072@cindex integers, hexadecimal
2073A hexadecimal integer is @samp{0x} or @samp{0X} followed by one or
2074more hexadecimal digits chosen from @samp{0123456789abcdefABCDEF}.
2075
2076Integers have the usual values.  To denote a negative integer, use
2077the prefix operator @samp{-} discussed under expressions
2078(@pxref{Prefix Ops,,Prefix Operators}).
2079
2080@node Bignums
2081@subsubsection Bignums
2082
2083@cindex bignums
2084@cindex constants, bignum
2085A @dfn{bignum} has the same syntax and semantics as an integer
2086except that the number (or its negative) takes more than 32 bits to
2087represent in binary.  The distinction is made because in some places
2088integers are permitted while bignums are not.
2089
2090@node Flonums
2091@subsubsection Flonums
2092@cindex flonums
2093@cindex floating point numbers
2094@cindex constants, floating point
2095
2096@cindex precision, floating point
2097A @dfn{flonum} represents a floating point number.  The translation is
2098indirect: a decimal floating point number from the text is converted by
2099@code{@value{AS}} to a generic binary floating point number of more than
2100sufficient precision.  This generic floating point number is converted
2101to a particular computer's floating point format (or formats) by a
2102portion of @code{@value{AS}} specialized to that computer.
2103
2104A flonum is written by writing (in order)
2105@itemize @bullet
2106@item
2107The digit @samp{0}.
2108@ifset HPPA
2109(@samp{0} is optional on the HPPA.)
2110@end ifset
2111
2112@item
2113A letter, to tell @code{@value{AS}} the rest of the number is a flonum.
2114@ifset GENERIC
2115@kbd{e} is recommended.  Case is not important.
2116@ignore
2117@c FIXME: verify if flonum syntax really this vague for most cases
2118(Any otherwise illegal letter works here, but that might be changed.  Vax BSD
21194.2 assembler seems to allow any of @samp{defghDEFGH}.)
2120@end ignore
2121
2122On the H8/300, H8/500,
2123Hitachi SH,
2124and AMD 29K architectures, the letter must be
2125one of the letters @samp{DFPRSX} (in upper or lower case).
2126
2127On the ARC, the letter must be one of the letters @samp{DFRS}
2128(in upper or lower case).
2129
2130On the Intel 960 architecture, the letter must be
2131one of the letters @samp{DFT} (in upper or lower case).
2132
2133On the HPPA architecture, the letter must be @samp{E} (upper case only).
2134@end ifset
2135@ifclear GENERIC
2136@ifset A29K
2137One of the letters @samp{DFPRSX} (in upper or lower case).
2138@end ifset
2139@ifset ARC
2140One of the letters @samp{DFRS} (in upper or lower case).
2141@end ifset
2142@ifset H8
2143One of the letters @samp{DFPRSX} (in upper or lower case).
2144@end ifset
2145@ifset HPPA
2146The letter @samp{E} (upper case only).
2147@end ifset
2148@ifset I960
2149One of the letters @samp{DFT} (in upper or lower case).
2150@end ifset
2151@end ifclear
2152
2153@item
2154An optional sign: either @samp{+} or @samp{-}.
2155
2156@item
2157An optional @dfn{integer part}: zero or more decimal digits.
2158
2159@item
2160An optional @dfn{fractional part}: @samp{.} followed by zero
2161or more decimal digits.
2162
2163@item
2164An optional exponent, consisting of:
2165
2166@itemize @bullet
2167@item
2168An @samp{E} or @samp{e}.
2169@c I can't find a config where "EXP_CHARS" is other than 'eE', but in
2170@c principle this can perfectly well be different on different targets.
2171@item
2172Optional sign: either @samp{+} or @samp{-}.
2173@item
2174One or more decimal digits.
2175@end itemize
2176
2177@end itemize
2178
2179At least one of the integer part or the fractional part must be
2180present.  The floating point number has the usual base-10 value.
2181
2182@code{@value{AS}} does all processing using integers.  Flonums are computed
2183independently of any floating point hardware in the computer running
2184@code{@value{AS}}.
2185
2186@ifclear GENERIC
2187@ifset I960
2188@c Bit fields are written as a general facility but are also controlled
2189@c by a conditional-compilation flag---which is as of now (21mar91)
2190@c turned on only by the i960 config of GAS.
2191@node Bit Fields
2192@subsubsection Bit Fields
2193
2194@cindex bit fields
2195@cindex constants, bit field
2196You can also define numeric constants as @dfn{bit fields}.
2197specify two numbers separated by a colon---
2198@example
2199@var{mask}:@var{value}
2200@end example
2201@noindent
2202@code{@value{AS}} applies a bitwise @sc{and} between @var{mask} and
2203@var{value}.
2204
2205The resulting number is then packed
2206@ifset GENERIC
2207@c this conditional paren in case bit fields turned on elsewhere than 960
2208(in host-dependent byte order)
2209@end ifset
2210into a field whose width depends on which assembler directive has the
2211bit-field as its argument.  Overflow (a result from the bitwise and
2212requiring more binary digits to represent) is not an error; instead,
2213more constants are generated, of the specified width, beginning with the
2214least significant digits.@refill
2215
2216The directives @code{.byte}, @code{.hword}, @code{.int}, @code{.long},
2217@code{.short}, and @code{.word} accept bit-field arguments.
2218@end ifset
2219@end ifclear
2220
2221@node Sections
2222@chapter Sections and Relocation
2223@cindex sections
2224@cindex relocation
2225
2226@menu
2227* Secs Background::             Background
2228* Ld Sections::                 Linker Sections
2229* As Sections::                 Assembler Internal Sections
2230* Sub-Sections::                Sub-Sections
2231* bss::                         bss Section
2232@end menu
2233
2234@node Secs Background
2235@section Background
2236
2237Roughly, a section is a range of addresses, with no gaps; all data
2238``in'' those addresses is treated the same for some particular purpose.
2239For example there may be a ``read only'' section.
2240
2241@cindex linker, and assembler
2242@cindex assembler, and linker
2243The linker @code{@value{LD}} reads many object files (partial programs) and
2244combines their contents to form a runnable program.  When @code{@value{AS}}
2245emits an object file, the partial program is assumed to start at address 0.
2246@code{@value{LD}} assigns the final addresses for the partial program, so that
2247different partial programs do not overlap.  This is actually an
2248oversimplification, but it suffices to explain how @code{@value{AS}} uses
2249sections.
2250
2251@code{@value{LD}} moves blocks of bytes of your program to their run-time
2252addresses.  These blocks slide to their run-time addresses as rigid
2253units; their length does not change and neither does the order of bytes
2254within them.  Such a rigid unit is called a @emph{section}.  Assigning
2255run-time addresses to sections is called @dfn{relocation}.  It includes
2256the task of adjusting mentions of object-file addresses so they refer to
2257the proper run-time addresses.
2258@ifset H8
2259For the H8/300 and H8/500,
2260and for the Hitachi SH,
2261@code{@value{AS}} pads sections if needed to
2262ensure they end on a word (sixteen bit) boundary.
2263@end ifset
2264
2265@cindex standard assembler sections
2266An object file written by @code{@value{AS}} has at least three sections, any
2267of which may be empty.  These are named @dfn{text}, @dfn{data} and
2268@dfn{bss} sections.
2269
2270@ifset COFF
2271@ifset GENERIC
2272When it generates COFF output,
2273@end ifset
2274@code{@value{AS}} can also generate whatever other named sections you specify
2275using the @samp{.section} directive (@pxref{Section,,@code{.section}}).
2276If you do not use any directives that place output in the @samp{.text}
2277or @samp{.data} sections, these sections still exist, but are empty.
2278@end ifset
2279
2280@ifset HPPA
2281@ifset GENERIC
2282When @code{@value{AS}} generates SOM or ELF output for the HPPA,
2283@end ifset
2284@code{@value{AS}} can also generate whatever other named sections you
2285specify using the @samp{.space} and @samp{.subspace} directives.  See
2286@cite{HP9000 Series 800 Assembly Language Reference Manual}
2287(HP 92432-90001) for details on the @samp{.space} and @samp{.subspace}
2288assembler directives.
2289
2290@ifset SOM
2291Additionally, @code{@value{AS}} uses different names for the standard
2292text, data, and bss sections when generating SOM output.  Program text
2293is placed into the @samp{$CODE$} section, data into @samp{$DATA$}, and
2294BSS into @samp{$BSS$}.
2295@end ifset
2296@end ifset
2297
2298Within the object file, the text section starts at address @code{0}, the
2299data section follows, and the bss section follows the data section.
2300
2301@ifset HPPA
2302When generating either SOM or ELF output files on the HPPA, the text
2303section starts at address @code{0}, the data section at address
2304@code{0x4000000}, and the bss section follows the data section.
2305@end ifset
2306
2307To let @code{@value{LD}} know which data changes when the sections are
2308relocated, and how to change that data, @code{@value{AS}} also writes to the
2309object file details of the relocation needed.  To perform relocation
2310@code{@value{LD}} must know, each time an address in the object
2311file is mentioned:
2312@itemize @bullet
2313@item
2314Where in the object file is the beginning of this reference to
2315an address?
2316@item
2317How long (in bytes) is this reference?
2318@item
2319Which section does the address refer to?  What is the numeric value of
2320@display
2321(@var{address}) @minus{} (@var{start-address of section})?
2322@end display
2323@item
2324Is the reference to an address ``Program-Counter relative''?
2325@end itemize
2326
2327@cindex addresses, format of
2328@cindex section-relative addressing
2329In fact, every address @code{@value{AS}} ever uses is expressed as
2330@display
2331(@var{section}) + (@var{offset into section})
2332@end display
2333@noindent
2334Further, most expressions @code{@value{AS}} computes have this section-relative
2335nature.
2336@ifset SOM
2337(For some object formats, such as SOM for the HPPA, some expressions are
2338symbol-relative instead.)
2339@end ifset
2340
2341In this manual we use the notation @{@var{secname} @var{N}@} to mean ``offset
2342@var{N} into section @var{secname}.''
2343
2344Apart from text, data and bss sections you need to know about the
2345@dfn{absolute} section.  When @code{@value{LD}} mixes partial programs,
2346addresses in the absolute section remain unchanged.  For example, address
2347@code{@{absolute 0@}} is ``relocated'' to run-time address 0 by
2348@code{@value{LD}}.  Although the linker never arranges two partial programs'
2349data sections with overlapping addresses after linking, @emph{by definition}
2350their absolute sections must overlap.  Address @code{@{absolute@ 239@}} in one
2351part of a program is always the same address when the program is running as
2352address @code{@{absolute@ 239@}} in any other part of the program.
2353
2354The idea of sections is extended to the @dfn{undefined} section.  Any
2355address whose section is unknown at assembly time is by definition
2356rendered @{undefined @var{U}@}---where @var{U} is filled in later.
2357Since numbers are always defined, the only way to generate an undefined
2358address is to mention an undefined symbol.  A reference to a named
2359common block would be such a symbol: its value is unknown at assembly
2360time so it has section @emph{undefined}.
2361
2362By analogy the word @emph{section} is used to describe groups of sections in
2363the linked program.  @code{@value{LD}} puts all partial programs' text
2364sections in contiguous addresses in the linked program.  It is
2365customary to refer to the @emph{text section} of a program, meaning all
2366the addresses of all partial programs' text sections.  Likewise for
2367data and bss sections.
2368
2369Some sections are manipulated by @code{@value{LD}}; others are invented for
2370use of @code{@value{AS}} and have no meaning except during assembly.
2371
2372@node Ld Sections
2373@section Linker Sections
2374@code{@value{LD}} deals with just four kinds of sections, summarized below.
2375
2376@table @strong
2377
2378@ifset COFF
2379@cindex named sections
2380@cindex sections, named
2381@item named sections
2382@end ifset
2383@ifset aout-bout
2384@cindex text section
2385@cindex data section
2386@itemx text section
2387@itemx data section
2388@end ifset
2389These sections hold your program.  @code{@value{AS}} and @code{@value{LD}} treat them as
2390separate but equal sections.  Anything you can say of one section is
2391true another.
2392@ifset aout-bout
2393When the program is running, however, it is
2394customary for the text section to be unalterable.  The
2395text section is often shared among processes: it contains
2396instructions, constants and the like.  The data section of a running
2397program is usually alterable: for example, C variables would be stored
2398in the data section.
2399@end ifset
2400
2401@cindex bss section
2402@item bss section
2403This section contains zeroed bytes when your program begins running.  It
2404is used to hold uninitialized variables or common storage.  The length of
2405each partial program's bss section is important, but because it starts
2406out containing zeroed bytes there is no need to store explicit zero
2407bytes in the object file.  The bss section was invented to eliminate
2408those explicit zeros from object files.
2409
2410@cindex absolute section
2411@item absolute section
2412Address 0 of this section is always ``relocated'' to runtime address 0.
2413This is useful if you want to refer to an address that @code{@value{LD}} must
2414not change when relocating.  In this sense we speak of absolute
2415addresses being ``unrelocatable'': they do not change during relocation.
2416
2417@cindex undefined section
2418@item undefined section
2419This ``section'' is a catch-all for address references to objects not in
2420the preceding sections.
2421@c FIXME: ref to some other doc on obj-file formats could go here.
2422@end table
2423
2424@cindex relocation example
2425An idealized example of three relocatable sections follows.
2426@ifset COFF
2427The example uses the traditional section names @samp{.text} and @samp{.data}.
2428@end ifset
2429Memory addresses are on the horizontal axis.
2430
2431@c TEXI2ROFF-KILL
2432@ifinfo
2433@c END TEXI2ROFF-KILL
2434@smallexample
2435                      +-----+----+--+
2436partial program # 1:  |ttttt|dddd|00|
2437                      +-----+----+--+
2438
2439                      text   data bss
2440                      seg.   seg. seg.
2441
2442                      +---+---+---+
2443partial program # 2:  |TTT|DDD|000|
2444                      +---+---+---+
2445
2446                      +--+---+-----+--+----+---+-----+~~
2447linked program:       |  |TTT|ttttt|  |dddd|DDD|00000|
2448                      +--+---+-----+--+----+---+-----+~~
2449
2450    addresses:        0 @dots{}
2451@end smallexample
2452@c TEXI2ROFF-KILL
2453@end ifinfo
2454@need 5000
2455@tex
2456
2457\line{\it Partial program \#1: \hfil}
2458\line{\ibox{2.5cm}{\tt text}\ibox{2cm}{\tt data}\ibox{1cm}{\tt bss}\hfil}
2459\line{\boxit{2.5cm}{\tt ttttt}\boxit{2cm}{\tt dddd}\boxit{1cm}{\tt 00}\hfil}
2460
2461\line{\it Partial program \#2: \hfil}
2462\line{\ibox{1cm}{\tt text}\ibox{1.5cm}{\tt data}\ibox{1cm}{\tt bss}\hfil}
2463\line{\boxit{1cm}{\tt TTT}\boxit{1.5cm}{\tt DDDD}\boxit{1cm}{\tt 000}\hfil}
2464
2465\line{\it linked program: \hfil}
2466\line{\ibox{.5cm}{}\ibox{1cm}{\tt text}\ibox{2.5cm}{}\ibox{.75cm}{}\ibox{2cm}{\tt data}\ibox{1.5cm}{}\ibox{2cm}{\tt bss}\hfil}
2467\line{\boxit{.5cm}{}\boxit{1cm}{\tt TTT}\boxit{2.5cm}{\tt
2468ttttt}\boxit{.75cm}{}\boxit{2cm}{\tt dddd}\boxit{1.5cm}{\tt
2469DDDD}\boxit{2cm}{\tt 00000}\ \dots\hfil}
2470
2471\line{\it addresses: \hfil}
2472\line{0\dots\hfil}
2473
2474@end tex
2475@c END TEXI2ROFF-KILL
2476
2477@node As Sections
2478@section Assembler Internal Sections
2479
2480@cindex internal assembler sections
2481@cindex sections in messages, internal
2482These sections are meant only for the internal use of @code{@value{AS}}.  They
2483have no meaning at run-time.  You do not really need to know about these
2484sections for most purposes; but they can be mentioned in @code{@value{AS}}
2485warning messages, so it might be helpful to have an idea of their
2486meanings to @code{@value{AS}}.  These sections are used to permit the
2487value of every expression in your assembly language program to be a
2488section-relative address.
2489
2490@table @b
2491@cindex assembler internal logic error
2492@item ASSEMBLER-INTERNAL-LOGIC-ERROR!
2493An internal assembler logic error has been found.  This means there is a
2494bug in the assembler.
2495
2496@cindex expr (internal section)
2497@item expr section
2498The assembler stores complex expression internally as combinations of
2499symbols.  When it needs to represent an expression as a symbol, it puts
2500it in the expr section.
2501@c FIXME item debug
2502@c FIXME item transfer[t] vector preload
2503@c FIXME item transfer[t] vector postload
2504@c FIXME item register
2505@end table
2506
2507@node Sub-Sections
2508@section Sub-Sections
2509
2510@cindex numbered subsections
2511@cindex grouping data
2512@ifset aout-bout
2513Assembled bytes
2514@ifset COFF
2515conventionally
2516@end ifset
2517fall into two sections: text and data.
2518@end ifset
2519You may have separate groups of
2520@ifset GENERIC
2521data in named sections
2522@end ifset
2523@ifclear GENERIC
2524@ifclear aout-bout
2525data in named sections
2526@end ifclear
2527@ifset aout-bout
2528text or data
2529@end ifset
2530@end ifclear
2531that you want to end up near to each other in the object file, even though they
2532are not contiguous in the assembler source.  @code{@value{AS}} allows you to
2533use @dfn{subsections} for this purpose.  Within each section, there can be
2534numbered subsections with values from 0 to 8192.  Objects assembled into the
2535same subsection go into the object file together with other objects in the same
2536subsection.  For example, a compiler might want to store constants in the text
2537section, but might not want to have them interspersed with the program being
2538assembled.  In this case, the compiler could issue a @samp{.text 0} before each
2539section of code being output, and a @samp{.text 1} before each group of
2540constants being output.
2541
2542Subsections are optional.  If you do not use subsections, everything
2543goes in subsection number zero.
2544
2545@ifset GENERIC
2546Each subsection is zero-padded up to a multiple of four bytes.
2547(Subsections may be padded a different amount on different flavors
2548of @code{@value{AS}}.)
2549@end ifset
2550@ifclear GENERIC
2551@ifset H8
2552On the H8/300 and H8/500 platforms, each subsection is zero-padded to a word
2553boundary (two bytes).
2554The same is true on the Hitachi SH.
2555@end ifset
2556@ifset I960
2557@c FIXME section padding (alignment)?
2558@c Rich Pixley says padding here depends on target obj code format; that
2559@c doesn't seem particularly useful to say without further elaboration,
2560@c so for now I say nothing about it.  If this is a generic BFD issue,
2561@c these paragraphs might need to vanish from this manual, and be
2562@c discussed in BFD chapter of binutils (or some such).
2563@end ifset
2564@ifset A29K
2565On the AMD 29K family, no particular padding is added to section or
2566subsection sizes; @value{AS} forces no alignment on this platform.
2567@end ifset
2568@end ifclear
2569
2570Subsections appear in your object file in numeric order, lowest numbered
2571to highest.  (All this to be compatible with other people's assemblers.)
2572The object file contains no representation of subsections; @code{@value{LD}} and
2573other programs that manipulate object files see no trace of them.
2574They just see all your text subsections as a text section, and all your
2575data subsections as a data section.
2576
2577To specify which subsection you want subsequent statements assembled
2578into, use a numeric argument to specify it, in a @samp{.text
2579@var{expression}} or a @samp{.data @var{expression}} statement.
2580@ifset COFF
2581@ifset GENERIC
2582When generating COFF output, you
2583@end ifset
2584@ifclear GENERIC
2585You
2586@end ifclear
2587can also use an extra subsection
2588argument with arbitrary named sections: @samp{.section @var{name},
2589@var{expression}}.
2590@end ifset
2591@var{Expression} should be an absolute expression.
2592(@xref{Expressions}.)  If you just say @samp{.text} then @samp{.text 0}
2593is assumed.  Likewise @samp{.data} means @samp{.data 0}.  Assembly
2594begins in @code{text 0}.  For instance:
2595@smallexample
2596.text 0     # The default subsection is text 0 anyway.
2597.ascii "This lives in the first text subsection. *"
2598.text 1
2599.ascii "But this lives in the second text subsection."
2600.data 0
2601.ascii "This lives in the data section,"
2602.ascii "in the first data subsection."
2603.text 0
2604.ascii "This lives in the first text section,"
2605.ascii "immediately following the asterisk (*)."
2606@end smallexample
2607
2608Each section has a @dfn{location counter} incremented by one for every byte
2609assembled into that section.  Because subsections are merely a convenience
2610restricted to @code{@value{AS}} there is no concept of a subsection location
2611counter.  There is no way to directly manipulate a location counter---but the
2612@code{.align} directive changes it, and any label definition captures its
2613current value.  The location counter of the section where statements are being
2614assembled is said to be the @dfn{active} location counter.
2615
2616@node bss
2617@section bss Section
2618
2619@cindex bss section
2620@cindex common variable storage
2621The bss section is used for local common variable storage.
2622You may allocate address space in the bss section, but you may
2623not dictate data to load into it before your program executes.  When
2624your program starts running, all the contents of the bss
2625section are zeroed bytes.
2626
2627The @code{.lcomm} pseudo-op defines a symbol in the bss section; see
2628@ref{Lcomm,,@code{.lcomm}}.
2629
2630The @code{.comm} pseudo-op may be used to declare a common symbol, which is
2631another form of uninitialized symbol; see @xref{Comm,,@code{.comm}}.
2632
2633@ifset GENERIC
2634When assembling for a target which supports multiple sections, such as ELF or
2635COFF, you may switch into the @code{.bss} section and define symbols as usual;
2636see @ref{Section,,@code{.section}}.  You may only assemble zero values into the
2637section.  Typically the section will only contain symbol definitions and
2638@code{.skip} directives (@pxref{Skip,,@code{.skip}}).
2639@end ifset
2640
2641@node Symbols
2642@chapter Symbols
2643
2644@cindex symbols
2645Symbols are a central concept: the programmer uses symbols to name
2646things, the linker uses symbols to link, and the debugger uses symbols
2647to debug.
2648
2649@quotation
2650@cindex debuggers, and symbol order
2651@emph{Warning:} @code{@value{AS}} does not place symbols in the object file in
2652the same order they were declared.  This may break some debuggers.
2653@end quotation
2654
2655@menu
2656* Labels::                      Labels
2657* Setting Symbols::             Giving Symbols Other Values
2658* Symbol Names::                Symbol Names
2659* Dot::                         The Special Dot Symbol
2660* Symbol Attributes::           Symbol Attributes
2661@end menu
2662
2663@node Labels
2664@section Labels
2665
2666@cindex labels
2667A @dfn{label} is written as a symbol immediately followed by a colon
2668@samp{:}.  The symbol then represents the current value of the
2669active location counter, and is, for example, a suitable instruction
2670operand.  You are warned if you use the same symbol to represent two
2671different locations: the first definition overrides any other
2672definitions.
2673
2674@ifset HPPA
2675On the HPPA, the usual form for a label need not be immediately followed by a
2676colon, but instead must start in column zero.  Only one label may be defined on
2677a single line.  To work around this, the HPPA version of @code{@value{AS}} also
2678provides a special directive @code{.label} for defining labels more flexibly.
2679@end ifset
2680
2681@node Setting Symbols
2682@section Giving Symbols Other Values
2683
2684@cindex assigning values to symbols
2685@cindex symbol values, assigning
2686A symbol can be given an arbitrary value by writing a symbol, followed
2687by an equals sign @samp{=}, followed by an expression
2688(@pxref{Expressions}).  This is equivalent to using the @code{.set}
2689directive.  @xref{Set,,@code{.set}}.
2690
2691@node Symbol Names
2692@section Symbol Names
2693
2694@cindex symbol names
2695@cindex names, symbol
2696@ifclear SPECIAL-SYMS
2697Symbol names begin with a letter or with one of @samp{._}.  On most
2698machines, you can also use @code{$} in symbol names; exceptions are
2699noted in @ref{Machine Dependencies}.  That character may be followed by any
2700string of digits, letters, dollar signs (unless otherwise noted in
2701@ref{Machine Dependencies}), and underscores.
2702@end ifclear
2703@ifset A29K
2704For the AMD 29K family, @samp{?} is also allowed in the
2705body of a symbol name, though not at its beginning.
2706@end ifset
2707
2708@ifset SPECIAL-SYMS
2709@ifset H8
2710Symbol names begin with a letter or with one of @samp{._}.  On the
2711Hitachi SH or the
2712H8/500, you can also use @code{$} in symbol names.  That character may
2713be followed by any string of digits, letters, dollar signs (save on the
2714H8/300), and underscores.
2715@end ifset
2716@end ifset
2717
2718Case of letters is significant: @code{foo} is a different symbol name
2719than @code{Foo}.
2720
2721Each symbol has exactly one name.  Each name in an assembly language program
2722refers to exactly one symbol.  You may use that symbol name any number of times
2723in a program.
2724
2725@subheading Local Symbol Names
2726
2727@cindex local symbol names
2728@cindex symbol names, local
2729@cindex temporary symbol names
2730@cindex symbol names, temporary
2731Local symbols help compilers and programmers use names temporarily.
2732There are ten local symbol names, which are re-used throughout the
2733program.  You may refer to them using the names @samp{0} @samp{1}
2734@dots{} @samp{9}.  To define a local symbol, write a label of the form
2735@samp{@b{N}:} (where @b{N} represents any digit).  To refer to the most
2736recent previous definition of that symbol write @samp{@b{N}b}, using the
2737same digit as when you defined the label.  To refer to the next
2738definition of a local label, write @samp{@b{N}f}---where @b{N} gives you
2739a choice of 10 forward references.  The @samp{b} stands for
2740``backwards'' and the @samp{f} stands for ``forwards''.
2741
2742Local symbols are not emitted by the current @sc{gnu} C compiler.
2743
2744There is no restriction on how you can use these labels, but
2745remember that at any point in the assembly you can refer to at most
274610 prior local labels and to at most 10 forward local labels.
2747
2748Local symbol names are only a notation device.  They are immediately
2749transformed into more conventional symbol names before the assembler
2750uses them.  The symbol names stored in the symbol table, appearing in
2751error messages and optionally emitted to the object file have these
2752parts:
2753
2754@table @code
2755@item L
2756All local labels begin with @samp{L}. Normally both @code{@value{AS}} and
2757@code{@value{LD}} forget symbols that start with @samp{L}. These labels are
2758used for symbols you are never intended to see.  If you use the
2759@samp{-L} option then @code{@value{AS}} retains these symbols in the
2760object file. If you also instruct @code{@value{LD}} to retain these symbols,
2761you may use them in debugging.
2762
2763@item @var{digit}
2764If the label is written @samp{0:} then the digit is @samp{0}.
2765If the label is written @samp{1:} then the digit is @samp{1}.
2766And so on up through @samp{9:}.
2767
2768@item @kbd{C-A}
2769This unusual character is included so you do not accidentally invent
2770a symbol of the same name.  The character has ASCII value
2771@samp{\001}.
2772
2773@item @emph{ordinal number}
2774This is a serial number to keep the labels distinct.  The first
2775@samp{0:} gets the number @samp{1}; The 15th @samp{0:} gets the
2776number @samp{15}; @emph{etc.}.  Likewise for the other labels @samp{1:}
2777through @samp{9:}.
2778@end table
2779
2780For instance, the first @code{1:} is named @code{L1@kbd{C-A}1}, the 44th
2781@code{3:} is named @code{L3@kbd{C-A}44}.
2782
2783@node Dot
2784@section The Special Dot Symbol
2785
2786@cindex dot (symbol)
2787@cindex @code{.} (symbol)
2788@cindex current address
2789@cindex location counter
2790The special symbol @samp{.} refers to the current address that
2791@code{@value{AS}} is assembling into.  Thus, the expression @samp{melvin:
2792.long .} defines @code{melvin} to contain its own address.
2793Assigning a value to @code{.} is treated the same as a @code{.org}
2794directive.  Thus, the expression @samp{.=.+4} is the same as saying
2795@ifclear no-space-dir
2796@samp{.space 4}.
2797@end ifclear
2798@ifset no-space-dir
2799@ifset A29K
2800@samp{.block 4}.
2801@end ifset
2802@end ifset
2803
2804@node Symbol Attributes
2805@section Symbol Attributes
2806
2807@cindex symbol attributes
2808@cindex attributes, symbol
2809Every symbol has, as well as its name, the attributes ``Value'' and
2810``Type''.  Depending on output format, symbols can also have auxiliary
2811attributes.
2812@ifset INTERNALS
2813The detailed definitions are in @file{a.out.h}.
2814@end ifset
2815
2816If you use a symbol without defining it, @code{@value{AS}} assumes zero for
2817all these attributes, and probably won't warn you.  This makes the
2818symbol an externally defined symbol, which is generally what you
2819would want.
2820
2821@menu
2822* Symbol Value::                Value
2823* Symbol Type::                 Type
2824@ifset aout-bout
2825@ifset GENERIC
2826* a.out Symbols::               Symbol Attributes: @code{a.out}
2827@end ifset
2828@ifclear GENERIC
2829@ifclear BOUT
2830* a.out Symbols::               Symbol Attributes: @code{a.out}
2831@end ifclear
2832@ifset BOUT
2833* a.out Symbols::               Symbol Attributes: @code{a.out}, @code{b.out}
2834@end ifset
2835@end ifclear
2836@end ifset
2837@ifset COFF
2838* COFF Symbols::                Symbol Attributes for COFF
2839@end ifset
2840@ifset SOM
2841* SOM Symbols::                Symbol Attributes for SOM
2842@end ifset
2843@end menu
2844
2845@node Symbol Value
2846@subsection Value
2847
2848@cindex value of a symbol
2849@cindex symbol value
2850The value of a symbol is (usually) 32 bits.  For a symbol which labels a
2851location in the text, data, bss or absolute sections the value is the
2852number of addresses from the start of that section to the label.
2853Naturally for text, data and bss sections the value of a symbol changes
2854as @code{@value{LD}} changes section base addresses during linking.  Absolute
2855symbols' values do not change during linking: that is why they are
2856called absolute.
2857
2858The value of an undefined symbol is treated in a special way.  If it is
28590 then the symbol is not defined in this assembler source file, and
2860@code{@value{LD}} tries to determine its value from other files linked into the
2861same program.  You make this kind of symbol simply by mentioning a symbol
2862name without defining it.  A non-zero value represents a @code{.comm}
2863common declaration.  The value is how much common storage to reserve, in
2864bytes (addresses).  The symbol refers to the first address of the
2865allocated storage.
2866
2867@node Symbol Type
2868@subsection Type
2869
2870@cindex type of a symbol
2871@cindex symbol type
2872The type attribute of a symbol contains relocation (section)
2873information, any flag settings indicating that a symbol is external, and
2874(optionally), other information for linkers and debuggers.  The exact
2875format depends on the object-code output format in use.
2876
2877@ifset aout-bout
2878@ifclear GENERIC
2879@ifset BOUT
2880@c The following avoids a "widow" subsection title.  @group would be
2881@c better if it were available outside examples.
2882@need 1000
2883@node a.out Symbols
2884@subsection Symbol Attributes: @code{a.out}, @code{b.out}
2885
2886@cindex @code{b.out} symbol attributes
2887@cindex symbol attributes, @code{b.out}
2888These symbol attributes appear only when @code{@value{AS}} is configured for
2889one of the Berkeley-descended object output formats---@code{a.out} or
2890@code{b.out}.
2891
2892@end ifset
2893@ifclear BOUT
2894@node a.out Symbols
2895@subsection Symbol Attributes: @code{a.out}
2896
2897@cindex @code{a.out} symbol attributes
2898@cindex symbol attributes, @code{a.out}
2899
2900@end ifclear
2901@end ifclear
2902@ifset GENERIC
2903@node a.out Symbols
2904@subsection Symbol Attributes: @code{a.out}
2905
2906@cindex @code{a.out} symbol attributes
2907@cindex symbol attributes, @code{a.out}
2908
2909@end ifset
2910@menu
2911* Symbol Desc::                 Descriptor
2912* Symbol Other::                Other
2913@end menu
2914
2915@node Symbol Desc
2916@subsubsection Descriptor
2917
2918@cindex descriptor, of @code{a.out} symbol
2919This is an arbitrary 16-bit value.  You may establish a symbol's
2920descriptor value by using a @code{.desc} statement
2921(@pxref{Desc,,@code{.desc}}).  A descriptor value means nothing to
2922@code{@value{AS}}.
2923
2924@node Symbol Other
2925@subsubsection Other
2926
2927@cindex other attribute, of @code{a.out} symbol
2928This is an arbitrary 8-bit value.  It means nothing to @code{@value{AS}}.
2929@end ifset
2930
2931@ifset COFF
2932@node COFF Symbols
2933@subsection Symbol Attributes for COFF
2934
2935@cindex COFF symbol attributes
2936@cindex symbol attributes, COFF
2937
2938The COFF format supports a multitude of auxiliary symbol attributes;
2939like the primary symbol attributes, they are set between @code{.def} and
2940@code{.endef} directives.
2941
2942@subsubsection Primary Attributes
2943
2944@cindex primary attributes, COFF symbols
2945The symbol name is set with @code{.def}; the value and type,
2946respectively, with @code{.val} and @code{.type}.
2947
2948@subsubsection Auxiliary Attributes
2949
2950@cindex auxiliary attributes, COFF symbols
2951The @code{@value{AS}} directives @code{.dim}, @code{.line}, @code{.scl},
2952@code{.size}, and @code{.tag} can generate auxiliary symbol table
2953information for COFF.
2954@end ifset
2955
2956@ifset SOM
2957@node SOM Symbols
2958@subsection Symbol Attributes for SOM
2959
2960@cindex SOM symbol attributes
2961@cindex symbol attributes, SOM
2962
2963The SOM format for the HPPA supports a multitude of symbol attributes set with
2964the @code{.EXPORT} and @code{.IMPORT} directives.
2965
2966The attributes are described in @cite{HP9000 Series 800 Assembly 
2967Language Reference Manual} (HP 92432-90001) under the @code{IMPORT} and
2968@code{EXPORT} assembler directive documentation.
2969@end ifset
2970
2971@node Expressions
2972@chapter Expressions
2973
2974@cindex expressions
2975@cindex addresses
2976@cindex numeric values
2977An @dfn{expression} specifies an address or numeric value.
2978Whitespace may precede and/or follow an expression.
2979
2980The result of an expression must be an absolute number, or else an offset into
2981a particular section.  If an expression is not absolute, and there is not
2982enough information when @code{@value{AS}} sees the expression to know its
2983section, a second pass over the source program might be necessary to interpret
2984the expression---but the second pass is currently not implemented.
2985@code{@value{AS}} aborts with an error message in this situation.
2986
2987@menu
2988* Empty Exprs::                 Empty Expressions
2989* Integer Exprs::               Integer Expressions
2990@end menu
2991
2992@node Empty Exprs
2993@section Empty Expressions
2994
2995@cindex empty expressions
2996@cindex expressions, empty
2997An empty expression has no value: it is just whitespace or null.
2998Wherever an absolute expression is required, you may omit the
2999expression, and @code{@value{AS}} assumes a value of (absolute) 0.  This
3000is compatible with other assemblers.
3001
3002@node Integer Exprs
3003@section Integer Expressions
3004
3005@cindex integer expressions
3006@cindex expressions, integer
3007An @dfn{integer expression} is one or more @emph{arguments} delimited
3008by @emph{operators}.
3009
3010@menu
3011* Arguments::                   Arguments
3012* Operators::                   Operators
3013* Prefix Ops::                  Prefix Operators
3014* Infix Ops::                   Infix Operators
3015@end menu
3016
3017@node Arguments
3018@subsection Arguments
3019
3020@cindex expression arguments
3021@cindex arguments in expressions
3022@cindex operands in expressions
3023@cindex arithmetic operands
3024@dfn{Arguments} are symbols, numbers or subexpressions.  In other
3025contexts arguments are sometimes called ``arithmetic operands''.  In
3026this manual, to avoid confusing them with the ``instruction operands'' of
3027the machine language, we use the term ``argument'' to refer to parts of
3028expressions only, reserving the word ``operand'' to refer only to machine
3029instruction operands.
3030
3031Symbols are evaluated to yield @{@var{section} @var{NNN}@} where
3032@var{section} is one of text, data, bss, absolute,
3033or undefined.  @var{NNN} is a signed, 2's complement 32 bit
3034integer.
3035
3036Numbers are usually integers.
3037
3038A number can be a flonum or bignum.  In this case, you are warned
3039that only the low order 32 bits are used, and @code{@value{AS}} pretends
3040these 32 bits are an integer.  You may write integer-manipulating
3041instructions that act on exotic constants, compatible with other
3042assemblers.
3043
3044@cindex subexpressions
3045Subexpressions are a left parenthesis @samp{(} followed by an integer
3046expression, followed by a right parenthesis @samp{)}; or a prefix
3047operator followed by an argument.
3048
3049@node Operators
3050@subsection Operators
3051
3052@cindex operators, in expressions
3053@cindex arithmetic functions
3054@cindex functions, in expressions
3055@dfn{Operators} are arithmetic functions, like @code{+} or @code{%}.  Prefix
3056operators are followed by an argument.  Infix operators appear
3057between their arguments.  Operators may be preceded and/or followed by
3058whitespace.
3059
3060@node Prefix Ops
3061@subsection Prefix Operator
3062
3063@cindex prefix operators
3064@code{@value{AS}} has the following @dfn{prefix operators}.  They each take
3065one argument, which must be absolute.
3066
3067@c the tex/end tex stuff surrounding this small table is meant to make
3068@c it align, on the printed page, with the similar table in the next
3069@c section (which is inside an enumerate).
3070@tex
3071\global\advance\leftskip by \itemindent
3072@end tex
3073
3074@table @code
3075@item -
3076@dfn{Negation}.  Two's complement negation.
3077@item ~
3078@dfn{Complementation}.  Bitwise not.
3079@end table
3080
3081@tex
3082\global\advance\leftskip by -\itemindent
3083@end tex
3084
3085@node Infix Ops
3086@subsection Infix Operators
3087
3088@cindex infix operators
3089@cindex operators, permitted arguments
3090@dfn{Infix operators} take two arguments, one on either side.  Operators
3091have precedence, but operations with equal precedence are performed left
3092to right.  Apart from @code{+} or @code{-}, both arguments must be
3093absolute, and the result is absolute.
3094
3095@enumerate
3096@cindex operator precedence
3097@cindex precedence of operators
3098
3099@item
3100Highest Precedence
3101
3102@table @code
3103@item *
3104@dfn{Multiplication}.
3105
3106@item /
3107@dfn{Division}.  Truncation is the same as the C operator @samp{/}
3108
3109@item %
3110@dfn{Remainder}.
3111
3112@item <
3113@itemx <<
3114@dfn{Shift Left}.  Same as the C operator @samp{<<}.
3115
3116@item >
3117@itemx >>
3118@dfn{Shift Right}.  Same as the C operator @samp{>>}.
3119@end table
3120
3121@item
3122Intermediate precedence
3123
3124@table @code
3125@item |
3126
3127@dfn{Bitwise Inclusive Or}.
3128
3129@item &
3130@dfn{Bitwise And}.
3131
3132@item ^
3133@dfn{Bitwise Exclusive Or}.
3134
3135@item !
3136@dfn{Bitwise Or Not}.
3137@end table
3138
3139@item
3140Low Precedence
3141
3142@table @code
3143@cindex addition, permitted arguments
3144@cindex plus, permitted arguments
3145@cindex arguments for addition
3146@item +
3147@dfn{Addition}.  If either argument is absolute, the result has the section of
3148the other argument.  You may not add together arguments from different
3149sections.
3150
3151@cindex subtraction, permitted arguments
3152@cindex minus, permitted arguments
3153@cindex arguments for subtraction
3154@item -
3155@dfn{Subtraction}.  If the right argument is absolute, the
3156result has the section of the left argument.
3157If both arguments are in the same section, the result is absolute.
3158You may not subtract arguments from different sections.
3159@c FIXME is there still something useful to say about undefined - undefined ?
3160
3161@cindex comparison expressions
3162@cindex expressions, comparison
3163@item  ==
3164@dfn{Is Equal To}
3165@item <>
3166@dfn{Is Not Equal To}
3167@item <
3168@dfn{Is Less Than}
3169@itemx >
3170@dfn{Is Greater Than}
3171@itemx >=
3172@dfn{Is Greater Than Or Equal To}
3173@itemx <=
3174@dfn{Is Less Than Or Equal To}
3175
3176The comparison operators can be used as infix operators.  A true results has a
3177value of -1 whereas a false result has a value of 0.   Note, these operators
3178perform signed comparisons.
3179@end table
3180
3181@item Lowest Precedence
3182
3183@table @code
3184@item &&
3185@dfn{Logical And}.
3186
3187@item ||
3188@dfn{Logical Or}.
3189
3190These two logical operations can be used to combine the results of sub
3191expressions.  Note, unlike the comparison operators a true result returns a
3192value of 1 but a false results does still return 0.  Also note that the logical
3193or operator has a slightly lower precedence than logical and.
3194
3195@end table
3196@end enumerate
3197
3198In short, it's only meaningful to add or subtract the @emph{offsets} in an
3199address; you can only have a defined section in one of the two arguments.
3200
3201@node Pseudo Ops
3202@chapter Assembler Directives
3203
3204@cindex directives, machine independent
3205@cindex pseudo-ops, machine independent
3206@cindex machine independent directives
3207All assembler directives have names that begin with a period (@samp{.}).
3208The rest of the name is letters, usually in lower case.
3209
3210This chapter discusses directives that are available regardless of the
3211target machine configuration for the @sc{gnu} assembler.
3212@ifset GENERIC
3213Some machine configurations provide additional directives.
3214@xref{Machine Dependencies}.
3215@end ifset
3216@ifclear GENERIC
3217@ifset machine-directives
3218@xref{Machine Dependencies} for additional directives.
3219@end ifset
3220@end ifclear
3221
3222@menu
3223* Abort::                       @code{.abort}
3224@ifset COFF
3225* ABORT::                       @code{.ABORT}
3226@end ifset
3227
3228* Align::                       @code{.align @var{abs-expr} , @var{abs-expr}}
3229* Ascii::                       @code{.ascii "@var{string}"}@dots{}
3230* Asciz::                       @code{.asciz "@var{string}"}@dots{}
3231* Balign::                      @code{.balign @var{abs-expr} , @var{abs-expr}}
3232* Byte::                        @code{.byte @var{expressions}}
3233* Comm::                        @code{.comm @var{symbol} , @var{length} }
3234* Data::                        @code{.data @var{subsection}}
3235@ifset COFF
3236* Def::                         @code{.def @var{name}}
3237@end ifset
3238@ifset aout-bout
3239* Desc::                        @code{.desc @var{symbol}, @var{abs-expression}}
3240@end ifset
3241@ifset COFF
3242* Dim::                         @code{.dim}
3243@end ifset
3244
3245* Double::                      @code{.double @var{flonums}}
3246* Eject::                       @code{.eject}
3247* Else::                        @code{.else}
3248* Elseif::                      @code{.elseif}
3249* End::				@code{.end}
3250@ifset COFF
3251* Endef::                       @code{.endef}
3252@end ifset
3253
3254* Endfunc::                     @code{.endfunc}
3255* Endif::                       @code{.endif}
3256* Equ::                         @code{.equ @var{symbol}, @var{expression}}
3257* Equiv::                       @code{.equiv @var{symbol}, @var{expression}}
3258* Err::				@code{.err}
3259* Exitm::			@code{.exitm}
3260* Extern::                      @code{.extern}
3261* Fail::			@code{.fail}
3262@ifclear no-file-dir
3263* File::                        @code{.file @var{string}}
3264@end ifclear
3265
3266* Fill::                        @code{.fill @var{repeat} , @var{size} , @var{value}}
3267* Float::                       @code{.float @var{flonums}}
3268* Func::                        @code{.func}  
3269* Global::                      @code{.global @var{symbol}}, @code{.globl @var{symbol}}
3270@ifset ELF
3271* Hidden::                      @code{.hidden @var{names}}
3272@end ifset
3273
3274* hword::                       @code{.hword @var{expressions}}
3275* Ident::                       @code{.ident}
3276* If::                          @code{.if @var{absolute expression}}
3277* Include::                     @code{.include "@var{file}"}
3278* Int::                         @code{.int @var{expressions}}
3279@ifset ELF
3280* Internal::                    @code{.internal @var{names}}
3281@end ifset
3282
3283* Irp::				@code{.irp @var{symbol},@var{values}}@dots{}
3284* Irpc::			@code{.irpc @var{symbol},@var{values}}@dots{}
3285* Lcomm::                       @code{.lcomm @var{symbol} , @var{length}}
3286* Lflags::                      @code{.lflags}
3287@ifclear no-line-dir
3288* Line::                        @code{.line @var{line-number}}
3289@end ifclear
3290
3291* Ln::                          @code{.ln @var{line-number}}
3292* Linkonce::			@code{.linkonce [@var{type}]}
3293* List::                        @code{.list}
3294* Long::                        @code{.long @var{expressions}}
3295@ignore
3296* Lsym::                        @code{.lsym @var{symbol}, @var{expression}}
3297@end ignore
3298
3299* Macro::			@code{.macro @var{name} @var{args}}@dots{}
3300* MRI::				@code{.mri @var{val}}
3301* Nolist::                      @code{.nolist}
3302* Octa::                        @code{.octa @var{bignums}}
3303* Org::                         @code{.org @var{new-lc} , @var{fill}}
3304* P2align::                     @code{.p2align @var{abs-expr} , @var{abs-expr}}
3305@ifset ELF
3306* PopSection::                  @code{.popsection}
3307* Previous::                    @code{.previous}
3308@end ifset
3309
3310* Print::			@code{.print @var{string}}
3311@ifset ELF
3312* Protected::                   @code{.protected @var{names}}
3313@end ifset
3314
3315* Psize::                       @code{.psize @var{lines}, @var{columns}}
3316* Purgem::			@code{.purgem @var{name}}
3317@ifset ELF
3318* PushSection::                 @code{.pushsection @var{name}}
3319@end ifset
3320
3321* Quad::                        @code{.quad @var{bignums}}
3322* Rept::			@code{.rept @var{count}}
3323* Sbttl::                       @code{.sbttl "@var{subheading}"}
3324@ifset COFF
3325* Scl::                         @code{.scl @var{class}}
3326* Section::                     @code{.section @var{name}, @var{subsection}}
3327@end ifset
3328
3329* Set::                         @code{.set @var{symbol}, @var{expression}}
3330* Short::                       @code{.short @var{expressions}}
3331* Single::                      @code{.single @var{flonums}}
3332* Size::                        @code{.size [@var{name} , @var{expression}]}
3333* Skip::                        @code{.skip @var{size} , @var{fill}}
3334* Sleb128::			@code{.sleb128 @var{expressions}}
3335* Space::                       @code{.space @var{size} , @var{fill}}
3336@ifset have-stabs
3337* Stab::                        @code{.stabd, .stabn, .stabs}
3338@end ifset
3339
3340* String::                      @code{.string "@var{str}"}
3341* Struct::			@code{.struct @var{expression}}
3342@ifset ELF
3343* SubSection::                  @code{.subsection}
3344* Symver::                      @code{.symver @var{name},@var{name2@@nodename}}
3345@end ifset
3346
3347@ifset COFF
3348* Tag::                         @code{.tag @var{structname}}
3349@end ifset
3350
3351* Text::                        @code{.text @var{subsection}}
3352* Title::                       @code{.title "@var{heading}"}
3353* Type::                        @code{.type <@var{int} | @var{name} , @var{type description}>}
3354* Uleb128::                     @code{.uleb128 @var{expressions}}
3355@ifset COFF
3356* Val::                         @code{.val @var{addr}}
3357@end ifset
3358
3359@ifset ELF
3360* Version::                     @code{.version "@var{string}"}
3361* VTableEntry::                 @code{.vtable_entry @var{table}, @var{offset}}
3362* VTableInherit::               @code{.vtable_inherit @var{child}, @var{parent}}
3363* Weak::                        @code{.weak @var{names}}
3364@end ifset
3365
3366* Word::                        @code{.word @var{expressions}}
3367* Deprecated::                  Deprecated Directives
3368@end menu
3369
3370@node Abort
3371@section @code{.abort}
3372
3373@cindex @code{abort} directive
3374@cindex stopping the assembly
3375This directive stops the assembly immediately.  It is for
3376compatibility with other assemblers.  The original idea was that the
3377assembly language source would be piped into the assembler.  If the sender
3378of the source quit, it could use this directive tells @code{@value{AS}} to
3379quit also.  One day @code{.abort} will not be supported.
3380
3381@ifset COFF
3382@node ABORT
3383@section @code{.ABORT}
3384
3385@cindex @code{ABORT} directive
3386When producing COFF output, @code{@value{AS}} accepts this directive as a
3387synonym for @samp{.abort}.
3388
3389@ifset BOUT
3390When producing @code{b.out} output, @code{@value{AS}} accepts this directive,
3391but ignores it.
3392@end ifset
3393@end ifset
3394
3395@node Align
3396@section @code{.align @var{abs-expr}, @var{abs-expr}, @var{abs-expr}}
3397
3398@cindex padding the location counter
3399@cindex @code{align} directive
3400Pad the location counter (in the current subsection) to a particular storage
3401boundary.  The first expression (which must be absolute) is the alignment
3402required, as described below.
3403
3404The second expression (also absolute) gives the fill value to be stored in the
3405padding bytes.  It (and the comma) may be omitted.  If it is omitted, the
3406padding bytes are normally zero.  However, on some systems, if the section is
3407marked as containing code and the fill value is omitted, the space is filled
3408with no-op instructions.
3409
3410The third expression is also absolute, and is also optional.  If it is present,
3411it is the maximum number of bytes that should be skipped by this alignment
3412directive.  If doing the alignment would require skipping more bytes than the
3413specified maximum, then the alignment is not done at all.  You can omit the
3414fill value (the second argument) entirely by simply using two commas after the
3415required alignment; this can be useful if you want the alignment to be filled
3416with no-op instructions when appropriate.
3417
3418The way the required alignment is specified varies from system to system.
3419For the a29k, hppa, m68k, m88k, w65, sparc, and Hitachi SH, and i386 using ELF
3420format,
3421the first expression is the
3422alignment request in bytes.  For example @samp{.align 8} advances
3423the location counter until it is a multiple of 8.  If the location counter
3424is already a multiple of 8, no change is needed.
3425
3426For other systems, including the i386 using a.out format, and the arm and
3427strongarm, it is the
3428number of low-order zero bits the location counter must have after
3429advancement.  For example @samp{.align 3} advances the location
3430counter until it a multiple of 8.  If the location counter is already a
3431multiple of 8, no change is needed.
3432
3433This inconsistency is due to the different behaviors of the various
3434native assemblers for these systems which GAS must emulate.
3435GAS also provides @code{.balign} and @code{.p2align} directives,
3436described later, which have a consistent behavior across all
3437architectures (but are specific to GAS).
3438
3439@node Ascii
3440@section @code{.ascii "@var{string}"}@dots{}
3441
3442@cindex @code{ascii} directive
3443@cindex string literals
3444@code{.ascii} expects zero or more string literals (@pxref{Strings})
3445separated by commas.  It assembles each string (with no automatic
3446trailing zero byte) into consecutive addresses.
3447
3448@node Asciz
3449@section @code{.asciz "@var{string}"}@dots{}
3450
3451@cindex @code{asciz} directive
3452@cindex zero-terminated strings
3453@cindex null-terminated strings
3454@code{.asciz} is just like @code{.ascii}, but each string is followed by
3455a zero byte.  The ``z'' in @samp{.asciz} stands for ``zero''.
3456
3457@node Balign
3458@section @code{.balign[wl] @var{abs-expr}, @var{abs-expr}, @var{abs-expr}}
3459
3460@cindex padding the location counter given number of bytes
3461@cindex @code{balign} directive
3462Pad the location counter (in the current subsection) to a particular
3463storage boundary.  The first expression (which must be absolute) is the
3464alignment request in bytes.  For example @samp{.balign 8} advances
3465the location counter until it is a multiple of 8.  If the location counter
3466is already a multiple of 8, no change is needed.
3467
3468The second expression (also absolute) gives the fill value to be stored in the
3469padding bytes.  It (and the comma) may be omitted.  If it is omitted, the
3470padding bytes are normally zero.  However, on some systems, if the section is
3471marked as containing code and the fill value is omitted, the space is filled
3472with no-op instructions.
3473
3474The third expression is also absolute, and is also optional.  If it is present,
3475it is the maximum number of bytes that should be skipped by this alignment
3476directive.  If doing the alignment would require skipping more bytes than the
3477specified maximum, then the alignment is not done at all.  You can omit the
3478fill value (the second argument) entirely by simply using two commas after the
3479required alignment; this can be useful if you want the alignment to be filled
3480with no-op instructions when appropriate.
3481
3482@cindex @code{balignw} directive
3483@cindex @code{balignl} directive
3484The @code{.balignw} and @code{.balignl} directives are variants of the
3485@code{.balign} directive.  The @code{.balignw} directive treats the fill
3486pattern as a two byte word value.  The @code{.balignl} directives treats the
3487fill pattern as a four byte longword value.  For example, @code{.balignw
34884,0x368d} will align to a multiple of 4.  If it skips two bytes, they will be
3489filled in with the value 0x368d (the exact placement of the bytes depends upon
3490the endianness of the processor).  If it skips 1 or 3 bytes, the fill value is
3491undefined.
3492
3493@node Byte
3494@section @code{.byte @var{expressions}}
3495
3496@cindex @code{byte} directive
3497@cindex integers, one byte
3498@code{.byte} expects zero or more expressions, separated by commas.
3499Each expression is assembled into the next byte.
3500
3501@node Comm
3502@section @code{.comm @var{symbol} , @var{length} }
3503
3504@cindex @code{comm} directive
3505@cindex symbol, common
3506@code{.comm} declares a common symbol named @var{symbol}.  When linking, a
3507common symbol in one object file may be merged with a defined or common symbol
3508of the same name in another object file.  If @code{@value{LD}} does not see a
3509definition for the symbol--just one or more common symbols--then it will
3510allocate @var{length} bytes of uninitialized memory.  @var{length} must be an
3511absolute expression.  If @code{@value{LD}} sees multiple common symbols with
3512the same name, and they do not all have the same size, it will allocate space
3513using the largest size.
3514
3515@ifset ELF
3516When using ELF, the @code{.comm} directive takes an optional third argument.
3517This is the desired alignment of the symbol, specified as a byte boundary (for
3518example, an alignment of 16 means that the least significant 4 bits of the
3519address should be zero).  The alignment must be an absolute expression, and it
3520must be a power of two.  If @code{@value{LD}} allocates uninitialized memory
3521for the common symbol, it will use the alignment when placing the symbol.  If
3522no alignment is specified, @code{@value{AS}} will set the alignment to the
3523largest power of two less than or equal to the size of the symbol, up to a
3524maximum of 16.
3525@end ifset
3526
3527@ifset HPPA
3528The syntax for @code{.comm} differs slightly on the HPPA.  The syntax is
3529@samp{@var{symbol} .comm, @var{length}}; @var{symbol} is optional.
3530@end ifset
3531
3532@node Data
3533@section @code{.data @var{subsection}}
3534
3535@cindex @code{data} directive
3536@code{.data} tells @code{@value{AS}} to assemble the following statements onto the
3537end of the data subsection numbered @var{subsection} (which is an
3538absolute expression).  If @var{subsection} is omitted, it defaults
3539to zero.
3540
3541@ifset COFF
3542@node Def
3543@section @code{.def @var{name}}
3544
3545@cindex @code{def} directive
3546@cindex COFF symbols, debugging
3547@cindex debugging COFF symbols
3548Begin defining debugging information for a symbol @var{name}; the
3549definition extends until the @code{.endef} directive is encountered.
3550@ifset BOUT
3551
3552This directive is only observed when @code{@value{AS}} is configured for COFF
3553format output; when producing @code{b.out}, @samp{.def} is recognized,
3554but ignored.
3555@end ifset
3556@end ifset
3557
3558@ifset aout-bout
3559@node Desc
3560@section @code{.desc @var{symbol}, @var{abs-expression}}
3561
3562@cindex @code{desc} directive
3563@cindex COFF symbol descriptor
3564@cindex symbol descriptor, COFF
3565This directive sets the descriptor of the symbol (@pxref{Symbol Attributes})
3566to the low 16 bits of an absolute expression.
3567
3568@ifset COFF
3569The @samp{.desc} directive is not available when @code{@value{AS}} is
3570configured for COFF output; it is only for @code{a.out} or @code{b.out}
3571object format.  For the sake of compatibility, @code{@value{AS}} accepts
3572it, but produces no output, when configured for COFF.
3573@end ifset
3574@end ifset
3575
3576@ifset COFF
3577@node Dim
3578@section @code{.dim}
3579
3580@cindex @code{dim} directive
3581@cindex COFF auxiliary symbol information
3582@cindex auxiliary symbol information, COFF
3583This directive is generated by compilers to include auxiliary debugging
3584information in the symbol table.  It is only permitted inside
3585@code{.def}/@code{.endef} pairs.
3586@ifset BOUT
3587
3588@samp{.dim} is only meaningful when generating COFF format output; when
3589@code{@value{AS}} is generating @code{b.out}, it accepts this directive but
3590ignores it.
3591@end ifset
3592@end ifset
3593
3594@node Double
3595@section @code{.double @var{flonums}}
3596
3597@cindex @code{double} directive
3598@cindex floating point numbers (double)
3599@code{.double} expects zero or more flonums, separated by commas.  It
3600assembles floating point numbers.
3601@ifset GENERIC
3602The exact kind of floating point numbers emitted depends on how
3603@code{@value{AS}} is configured.  @xref{Machine Dependencies}.
3604@end ifset
3605@ifclear GENERIC
3606@ifset IEEEFLOAT
3607On the @value{TARGET} family @samp{.double} emits 64-bit floating-point numbers
3608in @sc{ieee} format.
3609@end ifset
3610@end ifclear
3611
3612@node Eject
3613@section @code{.eject}
3614
3615@cindex @code{eject} directive
3616@cindex new page, in listings
3617@cindex page, in listings
3618@cindex listing control: new page
3619Force a page break at this point, when generating assembly listings.
3620
3621@node Else
3622@section @code{.else}
3623
3624@cindex @code{else} directive
3625@code{.else} is part of the @code{@value{AS}} support for conditional
3626assembly; @pxref{If,,@code{.if}}.  It marks the beginning of a section
3627of code to be assembled if the condition for the preceding @code{.if}
3628was false.
3629
3630@node Elseif
3631@section @code{.elseif}
3632
3633@cindex @code{elseif} directive
3634@code{.elseif} is part of the @code{@value{AS}} support for conditional
3635assembly; @pxref{If,,@code{.if}}.  It is shorthand for beginning a new
3636@code{.if} block that would otherwise fill the entire @code{.else} section.
3637
3638@node End
3639@section @code{.end}
3640
3641@cindex @code{end} directive
3642@code{.end} marks the end of the assembly file.  @code{@value{AS}} does not
3643process anything in the file past the @code{.end} directive.
3644
3645@ifset COFF
3646@node Endef
3647@section @code{.endef}
3648
3649@cindex @code{endef} directive
3650This directive flags the end of a symbol definition begun with
3651@code{.def}.
3652@ifset BOUT
3653
3654@samp{.endef} is only meaningful when generating COFF format output; if
3655@code{@value{AS}} is configured to generate @code{b.out}, it accepts this
3656directive but ignores it.
3657@end ifset
3658@end ifset
3659
3660@node Endfunc
3661@section @code{.endfunc}
3662@cindex @code{endfunc} directive
3663@code{.endfunc} marks the end of a function specified with @code{.func}.
3664
3665@node Endif
3666@section @code{.endif}
3667
3668@cindex @code{endif} directive
3669@code{.endif} is part of the @code{@value{AS}} support for conditional assembly;
3670it marks the end of a block of code that is only assembled
3671conditionally.  @xref{If,,@code{.if}}.
3672
3673@node Equ
3674@section @code{.equ @var{symbol}, @var{expression}}
3675
3676@cindex @code{equ} directive
3677@cindex assigning values to symbols
3678@cindex symbols, assigning values to
3679This directive sets the value of @var{symbol} to @var{expression}.
3680It is synonymous with @samp{.set}; @pxref{Set,,@code{.set}}.
3681
3682@ifset HPPA
3683The syntax for @code{equ} on the HPPA is 
3684@samp{@var{symbol} .equ @var{expression}}.
3685@end ifset
3686
3687@node Equiv
3688@section @code{.equiv @var{symbol}, @var{expression}}
3689@cindex @code{equiv} directive
3690The @code{.equiv} directive is like @code{.equ} and @code{.set}, except that
3691the assembler will signal an error if @var{symbol} is already defined.
3692
3693Except for the contents of the error message, this is roughly equivalent to 
3694@smallexample
3695.ifdef SYM
3696.err
3697.endif
3698.equ SYM,VAL
3699@end smallexample
3700
3701@node Err
3702@section @code{.err}
3703@cindex @code{err} directive
3704If @code{@value{AS}} assembles a @code{.err} directive, it will print an error
3705message and, unless the @code{-Z} option was used, it will not generate an
3706object file.  This can be used to signal error an conditionally compiled code.
3707
3708@node Exitm
3709@section @code{.exitm}
3710Exit early from the current macro definition.  @xref{Macro}.
3711
3712@node Extern
3713@section @code{.extern}
3714
3715@cindex @code{extern} directive
3716@code{.extern} is accepted in the source program---for compatibility
3717with other assemblers---but it is ignored.  @code{@value{AS}} treats
3718all undefined symbols as external.
3719
3720@node Fail
3721@section @code{.fail @var{expression}}
3722
3723@cindex @code{fail} directive
3724Generates an error or a warning.  If the value of the @var{expression} is 500
3725or more, @code{@value{AS}} will print a warning message.  If the value is less
3726than 500, @code{@value{AS}} will print an error message.  The message will
3727include the value of @var{expression}.  This can occasionally be useful inside
3728complex nested macros or conditional assembly.
3729
3730@ifclear no-file-dir
3731@node File
3732@section @code{.file @var{string}}
3733
3734@cindex @code{file} directive
3735@cindex logical file name
3736@cindex file name, logical
3737@code{.file} tells @code{@value{AS}} that we are about to start a new logical
3738file.  @var{string} is the new file name.  In general, the filename is
3739recognized whether or not it is surrounded by quotes @samp{"}; but if you wish
3740to specify an empty file name, you must give the quotes--@code{""}.  This
3741statement may go away in future: it is only recognized to be compatible with
3742old @code{@value{AS}} programs.
3743@ifset A29K
3744In some configurations of @code{@value{AS}}, @code{.file} has already been
3745removed to avoid conflicts with other assemblers.  @xref{Machine Dependencies}.
3746@end ifset
3747@end ifclear
3748
3749@node Fill
3750@section @code{.fill @var{repeat} , @var{size} , @var{value}}
3751
3752@cindex @code{fill} directive
3753@cindex writing patterns in memory
3754@cindex patterns, writing in memory
3755@var{result}, @var{size} and @var{value} are absolute expressions.
3756This emits @var{repeat} copies of @var{size} bytes.  @var{Repeat}
3757may be zero or more.  @var{Size} may be zero or more, but if it is
3758more than 8, then it is deemed to have the value 8, compatible with
3759other people's assemblers.  The contents of each @var{repeat} bytes
3760is taken from an 8-byte number.  The highest order 4 bytes are
3761zero.  The lowest order 4 bytes are @var{value} rendered in the
3762byte-order of an integer on the computer @code{@value{AS}} is assembling for.
3763Each @var{size} bytes in a repetition is taken from the lowest order
3764@var{size} bytes of this number.  Again, this bizarre behavior is
3765compatible with other people's assemblers.
3766
3767@var{size} and @var{value} are optional.
3768If the second comma and @var{value} are absent, @var{value} is
3769assumed zero.  If the first comma and following tokens are absent,
3770@var{size} is assumed to be 1.
3771
3772@node Float
3773@section @code{.float @var{flonums}}
3774
3775@cindex floating point numbers (single)
3776@cindex @code{float} directive
3777This directive assembles zero or more flonums, separated by commas.  It
3778has the same effect as @code{.single}.
3779@ifset GENERIC
3780The exact kind of floating point numbers emitted depends on how
3781@code{@value{AS}} is configured.
3782@xref{Machine Dependencies}.
3783@end ifset
3784@ifclear GENERIC
3785@ifset IEEEFLOAT
3786On the @value{TARGET} family, @code{.float} emits 32-bit floating point numbers
3787in @sc{ieee} format.
3788@end ifset
3789@end ifclear
3790
3791@node Func
3792@section @code{.func @var{name}[,@var{label}]}
3793@cindex @code{func} directive
3794@code{.func} emits debugging information to denote function @var{name}, and
3795is ignored unless the file is assembled with debugging enabled.
3796Only @samp{--gstabs} is currently supported.
3797@var{label} is the entry point of the function and if omitted @var{name}
3798prepended with the @samp{leading char} is used.
3799@samp{leading char} is usually @code{_} or nothing, depending on the target.
3800All functions are currently defined to have @code{void} return type.
3801The function must be terminated with @code{.endfunc}.
3802
3803@node Global
3804@section @code{.global @var{symbol}}, @code{.globl @var{symbol}}
3805
3806@cindex @code{global} directive
3807@cindex symbol, making visible to linker
3808@code{.global} makes the symbol visible to @code{@value{LD}}.  If you define
3809@var{symbol} in your partial program, its value is made available to
3810other partial programs that are linked with it.  Otherwise,
3811@var{symbol} takes its attributes from a symbol of the same name
3812from another file linked into the same program.
3813
3814Both spellings (@samp{.globl} and @samp{.global}) are accepted, for
3815compatibility with other assemblers.
3816
3817@ifset HPPA
3818On the HPPA, @code{.global} is not always enough to make it accessible to other
3819partial programs.  You may need the HPPA-only @code{.EXPORT} directive as well.
3820@xref{HPPA Directives,, HPPA Assembler Directives}.
3821@end ifset
3822
3823@ifset ELF
3824@node Hidden
3825@section @code{.hidden @var{names}}
3826
3827@cindex @code{.hidden} directive
3828@cindex Visibility
3829This one of the ELF visibility directives.  The other two are
3830@code{.internal} (@pxref{Internal,,@code{.internal}}) and 
3831@code{.protected} (@pxref{Protected,,@code{.protected}}).
3832
3833This directive overrides the named symbols default visibility (which is set by
3834their binding: local, global or weak).  The directive sets the visibility to
3835@code{hidden} which means that the symbols are not visible to other components.
3836Such symbols are always considered to be @code{protected} as well. 
3837@end ifset
3838
3839@node hword
3840@section @code{.hword @var{expressions}}
3841
3842@cindex @code{hword} directive
3843@cindex integers, 16-bit
3844@cindex numbers, 16-bit
3845@cindex sixteen bit integers
3846This expects zero or more @var{expressions}, and emits
3847a 16 bit number for each.
3848
3849@ifset GENERIC
3850This directive is a synonym for @samp{.short}; depending on the target
3851architecture, it may also be a synonym for @samp{.word}.
3852@end ifset
3853@ifclear GENERIC
3854@ifset W32
3855This directive is a synonym for @samp{.short}.
3856@end ifset
3857@ifset W16
3858This directive is a synonym for both @samp{.short} and @samp{.word}.
3859@end ifset
3860@end ifclear
3861
3862@node Ident
3863@section @code{.ident}
3864
3865@cindex @code{ident} directive
3866This directive is used by some assemblers to place tags in object files.
3867@code{@value{AS}} simply accepts the directive for source-file
3868compatibility with such assemblers, but does not actually emit anything
3869for it.
3870
3871@node If
3872@section @code{.if @var{absolute expression}}
3873
3874@cindex conditional assembly
3875@cindex @code{if} directive
3876@code{.if} marks the beginning of a section of code which is only
3877considered part of the source program being assembled if the argument
3878(which must be an @var{absolute expression}) is non-zero.  The end of
3879the conditional section of code must be marked by @code{.endif}
3880(@pxref{Endif,,@code{.endif}}); optionally, you may include code for the
3881alternative condition, flagged by @code{.else} (@pxref{Else,,@code{.else}}).
3882If you have several conditions to check, @code{.elseif} may be used to avoid
3883nesting blocks if/else within each subsequent @code{.else} block.
3884
3885The following variants of @code{.if} are also supported:
3886@table @code
3887@cindex @code{ifdef} directive
3888@item .ifdef @var{symbol}
3889Assembles the following section of code if the specified @var{symbol}
3890has been defined.
3891
3892@cindex @code{ifc} directive
3893@item .ifc @var{string1},@var{string2}
3894Assembles the following section of code if the two strings are the same.  The
3895strings may be optionally quoted with single quotes.  If they are not quoted,
3896the first string stops at the first comma, and the second string stops at the
3897end of the line.  Strings which contain whitespace should be quoted.  The
3898string comparison is case sensitive.
3899
3900@cindex @code{ifeq} directive
3901@item .ifeq @var{absolute expression}
3902Assembles the following section of code if the argument is zero.
3903
3904@cindex @code{ifeqs} directive
3905@item .ifeqs @var{string1},@var{string2}
3906Another form of @code{.ifc}.  The strings must be quoted using double quotes.
3907
3908@cindex @code{ifge} directive
3909@item .ifge @var{absolute expression}
3910Assembles the following section of code if the argument is greater than or
3911equal to zero.
3912
3913@cindex @code{ifgt} directive
3914@item .ifgt @var{absolute expression}
3915Assembles the following section of code if the argument is greater than zero.
3916
3917@cindex @code{ifle} directive
3918@item .ifle @var{absolute expression}
3919Assembles the following section of code if the argument is less than or equal
3920to zero.
3921
3922@cindex @code{iflt} directive
3923@item .iflt @var{absolute expression}
3924Assembles the following section of code if the argument is less than zero.
3925
3926@cindex @code{ifnc} directive
3927@item .ifnc @var{string1},@var{string2}.
3928Like @code{.ifc}, but the sense of the test is reversed: this assembles the
3929following section of code if the two strings are not the same.
3930
3931@cindex @code{ifndef} directive
3932@cindex @code{ifnotdef} directive
3933@item .ifndef @var{symbol}
3934@itemx .ifnotdef @var{symbol}
3935Assembles the following section of code if the specified @var{symbol}
3936has not been defined.  Both spelling variants are equivalent.
3937
3938@cindex @code{ifne} directive
3939@item .ifne @var{absolute expression}
3940Assembles the following section of code if the argument is not equal to zero
3941(in other words, this is equivalent to @code{.if}).
3942
3943@cindex @code{ifnes} directive
3944@item .ifnes @var{string1},@var{string2}
3945Like @code{.ifeqs}, but the sense of the test is reversed: this assembles the
3946following section of code if the two strings are not the same.
3947@end table
3948
3949@node Include
3950@section @code{.include "@var{file}"}
3951
3952@cindex @code{include} directive
3953@cindex supporting files, including
3954@cindex files, including
3955This directive provides a way to include supporting files at specified
3956points in your source program.  The code from @var{file} is assembled as
3957if it followed the point of the @code{.include}; when the end of the
3958included file is reached, assembly of the original file continues.  You
3959can control the search paths used with the @samp{-I} command-line option
3960(@pxref{Invoking,,Command-Line Options}).  Quotation marks are required
3961around @var{file}.
3962
3963@node Int
3964@section @code{.int @var{expressions}}
3965
3966@cindex @code{int} directive
3967@cindex integers, 32-bit
3968Expect zero or more @var{expressions}, of any section, separated by commas.
3969For each expression, emit a number that, at run time, is the value of that
3970expression.  The byte order and bit size of the number depends on what kind
3971of target the assembly is for.
3972
3973@ifclear GENERIC
3974@ifset H8
3975On the H8/500 and most forms of the H8/300, @code{.int} emits 16-bit
3976integers.  On the H8/300H and the Hitachi SH, however, @code{.int} emits
397732-bit integers.
3978@end ifset
3979@end ifclear
3980
3981@ifset ELF
3982@node Internal
3983@section @code{.internal @var{names}}
3984
3985@cindex @code{.internal} directive
3986@cindex Visibility
3987This one of the ELF visibility directives.  The other two are
3988@code{.hidden} (@pxref{Hidden,,@code{.hidden}}) and 
3989@code{.protected} (@pxref{Protected,,@code{.protected}}).
3990
3991This directive overrides the named symbols default visibility (which is set by
3992their binding: local, global or weak).  The directive sets the visibility to
3993@code{internal} which means that the symbols are considered to be @code{hidden}
3994(ie not visible to other components), and that some extra, processor specific
3995processing must also be performed upon the  symbols as well.
3996@end ifset
3997
3998@node Irp
3999@section @code{.irp @var{symbol},@var{values}}@dots{}
4000
4001@cindex @code{irp} directive
4002Evaluate a sequence of statements assigning different values to @var{symbol}.
4003The sequence of statements starts at the @code{.irp} directive, and is
4004terminated by an @code{.endr} directive.  For each @var{value}, @var{symbol} is
4005set to @var{value}, and the sequence of statements is assembled.  If no
4006@var{value} is listed, the sequence of statements is assembled once, with
4007@var{symbol} set to the null string.  To refer to @var{symbol} within the
4008sequence of statements, use @var{\symbol}.
4009
4010For example, assembling
4011
4012@example
4013        .irp    param,1,2,3
4014        move    d\param,sp@@-
4015        .endr
4016@end example
4017
4018is equivalent to assembling
4019
4020@example
4021        move    d1,sp@@-
4022        move    d2,sp@@-
4023        move    d3,sp@@-
4024@end example
4025
4026@node Irpc
4027@section @code{.irpc @var{symbol},@var{values}}@dots{}
4028
4029@cindex @code{irpc} directive
4030Evaluate a sequence of statements assigning different values to @var{symbol}.
4031The sequence of statements starts at the @code{.irpc} directive, and is
4032terminated by an @code{.endr} directive.  For each character in @var{value},
4033@var{symbol} is set to the character, and the sequence of statements is
4034assembled.  If no @var{value} is listed, the sequence of statements is
4035assembled once, with @var{symbol} set to the null string.  To refer to
4036@var{symbol} within the sequence of statements, use @var{\symbol}.
4037
4038For example, assembling
4039
4040@example
4041        .irpc    param,123
4042        move    d\param,sp@@-
4043        .endr
4044@end example
4045
4046is equivalent to assembling
4047
4048@example
4049        move    d1,sp@@-
4050        move    d2,sp@@-
4051        move    d3,sp@@-
4052@end example
4053
4054@node Lcomm
4055@section @code{.lcomm @var{symbol} , @var{length}}
4056
4057@cindex @code{lcomm} directive
4058@cindex local common symbols
4059@cindex symbols, local common
4060Reserve @var{length} (an absolute expression) bytes for a local common
4061denoted by @var{symbol}.  The section and value of @var{symbol} are
4062those of the new local common.  The addresses are allocated in the bss
4063section, so that at run-time the bytes start off zeroed.  @var{Symbol}
4064is not declared global (@pxref{Global,,@code{.global}}), so is normally
4065not visible to @code{@value{LD}}.
4066
4067@ifset GENERIC
4068Some targets permit a third argument to be used with @code{.lcomm}.  This
4069argument specifies the desired alignment of the symbol in the bss section.
4070@end ifset
4071
4072@ifset HPPA
4073The syntax for @code{.lcomm} differs slightly on the HPPA.  The syntax is
4074@samp{@var{symbol} .lcomm, @var{length}}; @var{symbol} is optional.
4075@end ifset
4076
4077@node Lflags
4078@section @code{.lflags}
4079
4080@cindex @code{lflags} directive (ignored)
4081@code{@value{AS}} accepts this directive, for compatibility with other
4082assemblers, but ignores it.
4083
4084@ifclear no-line-dir
4085@node Line
4086@section @code{.line @var{line-number}}
4087
4088@cindex @code{line} directive
4089@end ifclear
4090@ifset no-line-dir
4091@node Ln
4092@section @code{.ln @var{line-number}}
4093
4094@cindex @code{ln} directive
4095@end ifset
4096@cindex logical line number
4097@ifset aout-bout
4098Change the logical line number.  @var{line-number} must be an absolute
4099expression.  The next line has that logical line number.  Therefore any other
4100statements on the current line (after a statement separator character) are
4101reported as on logical line number @var{line-number} @minus{} 1.  One day
4102@code{@value{AS}} will no longer support this directive: it is recognized only
4103for compatibility with existing assembler programs.
4104
4105@ifset GENERIC
4106@ifset A29K
4107@emph{Warning:} In the AMD29K configuration of @value{AS}, this command is
4108not available; use the synonym @code{.ln} in that context.
4109@end ifset
4110@end ifset
4111@end ifset
4112
4113@ifclear no-line-dir
4114Even though this is a directive associated with the @code{a.out} or
4115@code{b.out} object-code formats, @code{@value{AS}} still recognizes it
4116when producing COFF output, and treats @samp{.line} as though it
4117were the COFF @samp{.ln} @emph{if} it is found outside a
4118@code{.def}/@code{.endef} pair.
4119
4120Inside a @code{.def}, @samp{.line} is, instead, one of the directives
4121used by compilers to generate auxiliary symbol information for
4122debugging.
4123@end ifclear
4124
4125@node Linkonce
4126@section @code{.linkonce [@var{type}]}
4127@cindex COMDAT
4128@cindex @code{linkonce} directive
4129@cindex common sections
4130Mark the current section so that the linker only includes a single copy of it.
4131This may be used to include the same section in several different object files,
4132but ensure that the linker will only include it once in the final output file.
4133The @code{.linkonce} pseudo-op must be used for each instance of the section.
4134Duplicate sections are detected based on the section name, so it should be
4135unique.
4136
4137This directive is only supported by a few object file formats; as of this
4138writing, the only object file format which supports it is the Portable
4139Executable format used on Windows NT.
4140
4141The @var{type} argument is optional.  If specified, it must be one of the
4142following strings.  For example:
4143@smallexample
4144.linkonce same_size
4145@end smallexample
4146Not all types may be supported on all object file formats.
4147
4148@table @code
4149@item discard
4150Silently discard duplicate sections.  This is the default.
4151
4152@item one_only
4153Warn if there are duplicate sections, but still keep only one copy.
4154
4155@item same_size
4156Warn if any of the duplicates have different sizes.
4157
4158@item same_contents
4159Warn if any of the duplicates do not have exactly the same contents.
4160@end table
4161
4162@node Ln
4163@section @code{.ln @var{line-number}}
4164
4165@cindex @code{ln} directive
4166@ifclear no-line-dir
4167@samp{.ln} is a synonym for @samp{.line}.
4168@end ifclear
4169@ifset no-line-dir
4170Tell @code{@value{AS}} to change the logical line number.  @var{line-number}
4171must be an absolute expression.  The next line has that logical
4172line number, so any other statements on the current line (after a
4173statement separator character @code{;}) are reported as on logical
4174line number @var{line-number} @minus{} 1.
4175@ifset BOUT
4176
4177This directive is accepted, but ignored, when @code{@value{AS}} is
4178configured for @code{b.out}; its effect is only associated with COFF
4179output format.
4180@end ifset
4181@end ifset
4182
4183@node MRI
4184@section @code{.mri @var{val}}
4185
4186@cindex @code{mri} directive
4187@cindex MRI mode, temporarily
4188If @var{val} is non-zero, this tells @code{@value{AS}} to enter MRI mode.  If
4189@var{val} is zero, this tells @code{@value{AS}} to exit MRI mode.  This change
4190affects code assembled until the next @code{.mri} directive, or until the end
4191of the file.  @xref{M, MRI mode, MRI mode}.
4192
4193@node List
4194@section @code{.list}
4195
4196@cindex @code{list} directive
4197@cindex listing control, turning on
4198Control (in conjunction with the @code{.nolist} directive) whether or
4199not assembly listings are generated.  These two directives maintain an
4200internal counter (which is zero initially).   @code{.list} increments the
4201counter, and @code{.nolist} decrements it.  Assembly listings are
4202generated whenever the counter is greater than zero.
4203
4204By default, listings are disabled.  When you enable them (with the
4205@samp{-a} command line option; @pxref{Invoking,,Command-Line Options}),
4206the initial value of the listing counter is one.
4207
4208@node Long
4209@section @code{.long @var{expressions}}
4210
4211@cindex @code{long} directive
4212@code{.long} is the same as @samp{.int}, @pxref{Int,,@code{.int}}.
4213
4214@ignore
4215@c no one seems to know what this is for or whether this description is
4216@c what it really ought to do
4217@node Lsym
4218@section @code{.lsym @var{symbol}, @var{expression}}
4219
4220@cindex @code{lsym} directive
4221@cindex symbol, not referenced in assembly
4222@code{.lsym} creates a new symbol named @var{symbol}, but does not put it in
4223the hash table, ensuring it cannot be referenced by name during the
4224rest of the assembly.  This sets the attributes of the symbol to be
4225the same as the expression value:
4226@smallexample
4227@var{other} = @var{descriptor} = 0
4228@var{type} = @r{(section of @var{expression})}
4229@var{value} = @var{expression}
4230@end smallexample
4231@noindent
4232The new symbol is not flagged as external.
4233@end ignore
4234
4235@node Macro
4236@section @code{.macro}
4237
4238@cindex macros
4239The commands @code{.macro} and @code{.endm} allow you to define macros that
4240generate assembly output.  For example, this definition specifies a macro
4241@code{sum} that puts a sequence of numbers into memory:
4242
4243@example
4244        .macro  sum from=0, to=5
4245        .long   \from
4246        .if     \to-\from
4247        sum     "(\from+1)",\to
4248        .endif
4249        .endm
4250@end example
4251
4252@noindent
4253With that definition, @samp{SUM 0,5} is equivalent to this assembly input:
4254
4255@example
4256        .long   0
4257        .long   1
4258        .long   2
4259        .long   3
4260        .long   4
4261        .long   5
4262@end example
4263
4264@ftable @code
4265@item .macro @var{macname}
4266@itemx .macro @var{macname} @var{macargs} @dots{}
4267@cindex @code{macro} directive
4268Begin the definition of a macro called @var{macname}.  If your macro
4269definition requires arguments, specify their names after the macro name,
4270separated by commas or spaces.  You can supply a default value for any
4271macro argument by following the name with @samp{=@var{deflt}}.  For
4272example, these are all valid @code{.macro} statements:
4273
4274@table @code
4275@item .macro comm
4276Begin the definition of a macro called @code{comm}, which takes no
4277arguments.
4278
4279@item .macro plus1 p, p1
4280@itemx .macro plus1 p p1
4281Either statement begins the definition of a macro called @code{plus1},
4282which takes two arguments; within the macro definition, write
4283@samp{\p} or @samp{\p1} to evaluate the arguments.
4284
4285@item .macro reserve_str p1=0 p2
4286Begin the definition of a macro called @code{reserve_str}, with two
4287arguments.  The first argument has a default value, but not the second.
4288After the definition is complete, you can call the macro either as
4289@samp{reserve_str @var{a},@var{b}} (with @samp{\p1} evaluating to
4290@var{a} and @samp{\p2} evaluating to @var{b}), or as @samp{reserve_str
4291,@var{b}} (with @samp{\p1} evaluating as the default, in this case
4292@samp{0}, and @samp{\p2} evaluating to @var{b}).
4293@end table
4294
4295When you call a macro, you can specify the argument values either by
4296position, or by keyword.  For example, @samp{sum 9,17} is equivalent to
4297@samp{sum to=17, from=9}.
4298
4299@item .endm
4300@cindex @code{endm} directive
4301Mark the end of a macro definition.
4302
4303@item .exitm
4304@cindex @code{exitm} directive
4305Exit early from the current macro definition.
4306
4307@cindex number of macros executed
4308@cindex macros, count executed
4309@item \@@
4310@code{@value{AS}} maintains a counter of how many macros it has
4311executed in this pseudo-variable; you can copy that number to your
4312output with @samp{\@@}, but @emph{only within a macro definition}.
4313
4314@ignore
4315@item LOCAL @var{name} [ , @dots{} ]
4316@emph{Warning: @code{LOCAL} is only available if you select ``alternate
4317macro syntax'' with @samp{-a} or @samp{--alternate}.}  @xref{Alternate,,
4318Alternate macro syntax}.
4319
4320Generate a string replacement for each of the @var{name} arguments, and
4321replace any instances of @var{name} in each macro expansion.  The
4322replacement string is unique in the assembly, and different for each
4323separate macro expansion.  @code{LOCAL} allows you to write macros that
4324define symbols, without fear of conflict between separate macro expansions.
4325@end ignore
4326@end ftable
4327
4328@node Nolist
4329@section @code{.nolist}
4330
4331@cindex @code{nolist} directive
4332@cindex listing control, turning off
4333Control (in conjunction with the @code{.list} directive) whether or
4334not assembly listings are generated.  These two directives maintain an
4335internal counter (which is zero initially).   @code{.list} increments the
4336counter, and @code{.nolist} decrements it.  Assembly listings are
4337generated whenever the counter is greater than zero.
4338
4339@node Octa
4340@section @code{.octa @var{bignums}}
4341
4342@c FIXME: double size emitted for "octa" on i960, others?  Or warn?
4343@cindex @code{octa} directive
4344@cindex integer, 16-byte
4345@cindex sixteen byte integer
4346This directive expects zero or more bignums, separated by commas.  For each
4347bignum, it emits a 16-byte integer.
4348
4349The term ``octa'' comes from contexts in which a ``word'' is two bytes;
4350hence @emph{octa}-word for 16 bytes.
4351
4352@node Org
4353@section @code{.org @var{new-lc} , @var{fill}}
4354
4355@cindex @code{org} directive
4356@cindex location counter, advancing
4357@cindex advancing location counter
4358@cindex current address, advancing
4359Advance the location counter of the current section to
4360@var{new-lc}.  @var{new-lc} is either an absolute expression or an
4361expression with the same section as the current subsection.  That is,
4362you can't use @code{.org} to cross sections: if @var{new-lc} has the
4363wrong section, the @code{.org} directive is ignored.  To be compatible
4364with former assemblers, if the section of @var{new-lc} is absolute,
4365@code{@value{AS}} issues a warning, then pretends the section of @var{new-lc}
4366is the same as the current subsection.
4367
4368@code{.org} may only increase the location counter, or leave it
4369unchanged; you cannot use @code{.org} to move the location counter
4370backwards.
4371
4372@c double negative used below "not undefined" because this is a specific
4373@c reference to "undefined" (as SEG_UNKNOWN is called in this manual)
4374@c section. doc@cygnus.com 18feb91
4375Because @code{@value{AS}} tries to assemble programs in one pass, @var{new-lc}
4376may not be undefined.  If you really detest this restriction we eagerly await
4377a chance to share your improved assembler.
4378
4379Beware that the origin is relative to the start of the section, not
4380to the start of the subsection.  This is compatible with other
4381people's assemblers.
4382
4383When the location counter (of the current subsection) is advanced, the
4384intervening bytes are filled with @var{fill} which should be an
4385absolute expression.  If the comma and @var{fill} are omitted,
4386@var{fill} defaults to zero.
4387
4388@node P2align
4389@section @code{.p2align[wl] @var{abs-expr}, @var{abs-expr}, @var{abs-expr}}
4390
4391@cindex padding the location counter given a power of two
4392@cindex @code{p2align} directive
4393Pad the location counter (in the current subsection) to a particular
4394storage boundary.  The first expression (which must be absolute) is the
4395number of low-order zero bits the location counter must have after
4396advancement.  For example @samp{.p2align 3} advances the location
4397counter until it a multiple of 8.  If the location counter is already a
4398multiple of 8, no change is needed.
4399
4400The second expression (also absolute) gives the fill value to be stored in the
4401padding bytes.  It (and the comma) may be omitted.  If it is omitted, the
4402padding bytes are normally zero.  However, on some systems, if the section is
4403marked as containing code and the fill value is omitted, the space is filled
4404with no-op instructions.
4405
4406The third expression is also absolute, and is also optional.  If it is present,
4407it is the maximum number of bytes that should be skipped by this alignment
4408directive.  If doing the alignment would require skipping more bytes than the
4409specified maximum, then the alignment is not done at all.  You can omit the
4410fill value (the second argument) entirely by simply using two commas after the
4411required alignment; this can be useful if you want the alignment to be filled
4412with no-op instructions when appropriate.
4413
4414@cindex @code{p2alignw} directive
4415@cindex @code{p2alignl} directive
4416The @code{.p2alignw} and @code{.p2alignl} directives are variants of the
4417@code{.p2align} directive.  The @code{.p2alignw} directive treats the fill
4418pattern as a two byte word value.  The @code{.p2alignl} directives treats the
4419fill pattern as a four byte longword value.  For example, @code{.p2alignw
44202,0x368d} will align to a multiple of 4.  If it skips two bytes, they will be
4421filled in with the value 0x368d (the exact placement of the bytes depends upon
4422the endianness of the processor).  If it skips 1 or 3 bytes, the fill value is
4423undefined.
4424
4425@ifset ELF
4426@node Previous
4427@section @code{.previous}
4428
4429@cindex @code{.previous} directive
4430@cindex Section Stack
4431This is one of the ELF section stack manipulation directives.  The others are
4432@code{.section} (@pxref{Section}), @code{.subsection} (@pxref{SubSection}),
4433@code{.pushsection} (@pxref{PushSection}), and @code{.popsection}
4434(@pxref{PopSection}).
4435
4436This directive swaps the current section (and subsection) with most recently
4437referenced section (and subsection) prior to this one.  Multiple
4438@code{.previous} directives in a row will flip between two sections (and their
4439subsections).
4440
4441In terms of the section stack, this directive swaps the current section with
4442the top section on the section stack.
4443@end ifset
4444
4445@ifset ELF
4446@node PopSection
4447@section @code{.popsection}
4448
4449@cindex @code{.popsection} directive
4450@cindex Section Stack
4451This is one of the ELF section stack manipulation directives.  The others are
4452@code{.section} (@pxref{Section}), @code{.subsection} (@pxref{SubSection}), 
4453@code{.pushsection} (@pxref{PushSection}), and @code{.previous} 
4454(@pxref{Previous}).
4455
4456This directive replaces the current section (and subsection) with the top
4457section (and subsection) on the section stack.  This section is popped off the
4458stack. 
4459@end ifset
4460
4461@node Print
4462@section @code{.print @var{string}}
4463
4464@cindex @code{print} directive
4465@code{@value{AS}} will print @var{string} on the standard output during
4466assembly.  You must put @var{string} in double quotes.
4467
4468@ifset ELF
4469@node Protected
4470@section @code{.protected @var{names}}
4471
4472@cindex @code{.protected} directive
4473@cindex Visibility
4474This one of the ELF visibility directives.  The other two are
4475@code{.hidden} (@pxref{Hidden}) and @code{.internal} (@pxref{Internal}).
4476
4477This directive overrides the named symbols default visibility (which is set by
4478their binding: local, global or weak).  The directive sets the visibility to
4479@code{protected} which means that any references to the symbols from within the
4480components that defines them must be resolved to the definition in that
4481component, even if a definition in another component would normally preempt
4482this. 
4483@end ifset
4484
4485@node Psize
4486@section @code{.psize @var{lines} , @var{columns}}
4487
4488@cindex @code{psize} directive
4489@cindex listing control: paper size
4490@cindex paper size, for listings
4491Use this directive to declare the number of lines---and, optionally, the
4492number of columns---to use for each page, when generating listings.
4493
4494If you do not use @code{.psize}, listings use a default line-count
4495of 60.  You may omit the comma and @var{columns} specification; the
4496default width is 200 columns.
4497
4498@code{@value{AS}} generates formfeeds whenever the specified number of
4499lines is exceeded (or whenever you explicitly request one, using
4500@code{.eject}).
4501
4502If you specify @var{lines} as @code{0}, no formfeeds are generated save
4503those explicitly specified with @code{.eject}.
4504
4505@node Purgem
4506@section @code{.purgem @var{name}}
4507
4508@cindex @code{purgem} directive
4509Undefine the macro @var{name}, so that later uses of the string will not be
4510expanded.  @xref{Macro}.
4511
4512@ifset ELF
4513@node PushSection
4514@section @code{.pushsection @var{name} , @var{subsection}}
4515
4516@cindex @code{.pushsection} directive
4517@cindex Section Stack
4518This is one of the ELF section stack manipulation directives.  The others are
4519@code{.section} (@pxref{Section}), @code{.subsection} (@pxref{SubSection}), 
4520@code{.popsection} (@pxref{PopSection}), and @code{.previous} 
4521(@pxref{Previous}).
4522
4523This directive is a synonym for @code{.section}.  It pushes the current section
4524(and subsection) onto the top of the section stack, and then replaces the
4525current section and subsection with @code{name} and @code{subsection}.
4526@end ifset
4527
4528@node Quad
4529@section @code{.quad @var{bignums}}
4530
4531@cindex @code{quad} directive
4532@code{.quad} expects zero or more bignums, separated by commas.  For
4533each bignum, it emits
4534@ifclear bignum-16
4535an 8-byte integer.  If the bignum won't fit in 8 bytes, it prints a
4536warning message; and just takes the lowest order 8 bytes of the bignum.
4537@cindex eight-byte integer
4538@cindex integer, 8-byte
4539
4540The term ``quad'' comes from contexts in which a ``word'' is two bytes;
4541hence @emph{quad}-word for 8 bytes.
4542@end ifclear
4543@ifset bignum-16
4544a 16-byte integer.  If the bignum won't fit in 16 bytes, it prints a
4545warning message; and just takes the lowest order 16 bytes of the bignum.
4546@cindex sixteen-byte integer
4547@cindex integer, 16-byte
4548@end ifset
4549
4550@node Rept
4551@section @code{.rept @var{count}}
4552
4553@cindex @code{rept} directive
4554Repeat the sequence of lines between the @code{.rept} directive and the next
4555@code{.endr} directive @var{count} times.
4556
4557For example, assembling
4558
4559@example
4560        .rept   3
4561        .long   0
4562        .endr
4563@end example
4564
4565is equivalent to assembling
4566
4567@example
4568        .long   0
4569        .long   0
4570        .long   0
4571@end example
4572
4573@node Sbttl
4574@section @code{.sbttl "@var{subheading}"}
4575
4576@cindex @code{sbttl} directive
4577@cindex subtitles for listings
4578@cindex listing control: subtitle
4579Use @var{subheading} as the title (third line, immediately after the
4580title line) when generating assembly listings.
4581
4582This directive affects subsequent pages, as well as the current page if
4583it appears within ten lines of the top of a page.
4584
4585@ifset COFF
4586@node Scl
4587@section @code{.scl @var{class}}
4588
4589@cindex @code{scl} directive
4590@cindex symbol storage class (COFF)
4591@cindex COFF symbol storage class
4592Set the storage-class value for a symbol.  This directive may only be
4593used inside a @code{.def}/@code{.endef} pair.  Storage class may flag
4594whether a symbol is static or external, or it may record further
4595symbolic debugging information.
4596@ifset BOUT
4597
4598The @samp{.scl} directive is primarily associated with COFF output; when
4599configured to generate @code{b.out} output format, @code{@value{AS}}
4600accepts this directive but ignores it.
4601@end ifset
4602@end ifset
4603
4604@node Section
4605@section @code{.section @var{name}} (COFF version)
4606
4607@cindex @code{section} directive
4608@cindex named section
4609Use the @code{.section} directive to assemble the following code into a section
4610named @var{name}.
4611
4612This directive is only supported for targets that actually support arbitrarily
4613named sections; on @code{a.out} targets, for example, it is not accepted, even
4614with a standard @code{a.out} section name.
4615
4616For COFF targets, the @code{.section} directive is used in one of the following
4617ways:
4618
4619@smallexample
4620.section @var{name}[, "@var{flags}"]
4621.section @var{name}[, @var{subsegment}]
4622@end smallexample
4623
4624If the optional argument is quoted, it is taken as flags to use for the
4625section.  Each flag is a single character.  The following flags are recognized:
4626@table @code
4627@item b
4628bss section (uninitialized data)
4629@item n
4630section is not loaded
4631@item w
4632writable section
4633@item d
4634data section
4635@item r
4636read-only section
4637@item x
4638executable section
4639@item s
4640shared section (meaningful for PE targets)
4641@end table
4642
4643If no flags are specified, the default flags depend upon the section name.  If
4644the section name is not recognized, the default will be for the section to be
4645loaded and writable.
4646
4647If the optional argument to the @code{.section} directive is not quoted, it is
4648taken as a subsegment number (@pxref{Sub-Sections}).
4649
4650
4651@section @code{.section @var{name}} (ELF version)
4652
4653@cindex @code{section} directive
4654@cindex named section
4655@ifset ELF
4656@cindex Section Stack
4657This is one of the ELF section stack manipulation directives.  The others are
4658@code{.subsection} (@pxref{SubSection}), @code{.pushsection} 
4659(@pxref{PushSection}), @code{.popsection} (@pxref{PopSection}), and
4660@code{.previous} (@pxref{Previous}).
4661@end ifset
4662
4663For ELF targets, the @code{.section} directive is used like this:
4664
4665@smallexample
4666.section @var{name} [, "@var{flags}"[, @@@var{type}]]
4667@end smallexample
4668
4669The optional @var{flags} argument is a quoted string which may contain any
4670combination of the following characters:
4671@table @code
4672@item a
4673section is allocatable
4674@item w
4675section is writable
4676@item x
4677section is executable
4678@end table
4679
4680The optional @var{type} argument may contain one of the following constants:
4681@table @code
4682@item @@progbits
4683section contains data
4684@item @@nobits
4685section does not contain data (i.e., section only occupies space)
4686@end table
4687
4688If no flags are specified, the default flags depend upon the section name.  If
4689the section name is not recognized, the default will be for the section to have
4690none of the above flags: it will not be allocated in memory, nor writable, nor
4691executable.  The section will contain data.
4692
4693For ELF targets, the assembler supports another type of @code{.section}
4694directive for compatibility with the Solaris assembler:
4695
4696@smallexample
4697.section "@var{name}"[, @var{flags}...]
4698@end smallexample
4699
4700Note that the section name is quoted.  There may be a sequence of comma
4701separated flags:
4702@table @code
4703@item #alloc
4704section is allocatable
4705@item #write
4706section is writable
4707@item #execinstr
4708section is executable
4709@end table
4710
4711This directive replaces the current section and subsection.  The replaced
4712section and subsection are pushed onto the section stack.  See the contents of
4713the gas testsuite directory @code{gas/testsuite/gas/elf} for some examples of
4714how this directive and the other section stack directives work.
4715
4716@node Set
4717@section @code{.set @var{symbol}, @var{expression}}
4718
4719@cindex @code{set} directive
4720@cindex symbol value, setting
4721Set the value of @var{symbol} to @var{expression}.  This
4722changes @var{symbol}'s value and type to conform to
4723@var{expression}.  If @var{symbol} was flagged as external, it remains
4724flagged (@pxref{Symbol Attributes}).
4725
4726You may @code{.set} a symbol many times in the same assembly.
4727
4728If you @code{.set} a global symbol, the value stored in the object
4729file is the last value stored into it.
4730
4731@ifset HPPA
4732The syntax for @code{set} on the HPPA is
4733@samp{@var{symbol} .set @var{expression}}.
4734@end ifset
4735
4736@node Short
4737@section @code{.short @var{expressions}}
4738
4739@cindex @code{short} directive
4740@ifset GENERIC
4741@code{.short} is normally the same as @samp{.word}.
4742@xref{Word,,@code{.word}}.
4743
4744In some configurations, however, @code{.short} and @code{.word} generate
4745numbers of different lengths; @pxref{Machine Dependencies}.
4746@end ifset
4747@ifclear GENERIC
4748@ifset W16
4749@code{.short} is the same as @samp{.word}.  @xref{Word,,@code{.word}}.
4750@end ifset
4751@ifset W32
4752This expects zero or more @var{expressions}, and emits
4753a 16 bit number for each.
4754@end ifset
4755@end ifclear
4756
4757@node Single
4758@section @code{.single @var{flonums}}
4759
4760@cindex @code{single} directive
4761@cindex floating point numbers (single)
4762This directive assembles zero or more flonums, separated by commas.  It
4763has the same effect as @code{.float}.
4764@ifset GENERIC
4765The exact kind of floating point numbers emitted depends on how
4766@code{@value{AS}} is configured.  @xref{Machine Dependencies}.
4767@end ifset
4768@ifclear GENERIC
4769@ifset IEEEFLOAT
4770On the @value{TARGET} family, @code{.single} emits 32-bit floating point
4771numbers in @sc{ieee} format.
4772@end ifset
4773@end ifclear
4774
4775@node Size
4776@section @code{.size} (COFF version)
4777
4778@cindex @code{size} directive
4779This directive is generated by compilers to include auxiliary debugging
4780information in the symbol table.  It is only permitted inside
4781@code{.def}/@code{.endef} pairs.
4782
4783@ifset BOUT
4784@samp{.size} is only meaningful when generating COFF format output; when
4785@code{@value{AS}} is generating @code{b.out}, it accepts this directive but
4786ignores it.
4787@end ifset
4788
4789@section @code{.size @var{name} , @var{expression}} (ELF version)
4790@cindex @code{size} directive
4791
4792This directive is used to set the size associated with a symbol @var{name}.
4793The size in bytes is computed from @var{expression} which can make use of label
4794arithmetic.  This directive is typically used to set the size of function
4795symbols.
4796
4797@node Sleb128
4798@section @code{.sleb128 @var{expressions}}
4799
4800@cindex @code{sleb128} directive
4801@var{sleb128} stands for ``signed little endian base 128.''  This is a 
4802compact, variable length representation of numbers used by the DWARF
4803symbolic debugging format.  @xref{Uleb128,@code{.uleb128}}.
4804
4805@ifclear no-space-dir
4806@node Skip
4807@section @code{.skip @var{size} , @var{fill}}
4808
4809@cindex @code{skip} directive
4810@cindex filling memory
4811This directive emits @var{size} bytes, each of value @var{fill}.  Both
4812@var{size} and @var{fill} are absolute expressions.  If the comma and
4813@var{fill} are omitted, @var{fill} is assumed to be zero.  This is the same as
4814@samp{.space}.
4815
4816@node Space
4817@section @code{.space @var{size} , @var{fill}}
4818
4819@cindex @code{space} directive
4820@cindex filling memory
4821This directive emits @var{size} bytes, each of value @var{fill}.  Both
4822@var{size} and @var{fill} are absolute expressions.  If the comma
4823and @var{fill} are omitted, @var{fill} is assumed to be zero.  This is the same
4824as @samp{.skip}.
4825
4826@ifset HPPA
4827@quotation
4828@emph{Warning:} @code{.space} has a completely different meaning for HPPA
4829targets; use @code{.block} as a substitute.  See @cite{HP9000 Series 800
4830Assembly Language Reference Manual} (HP 92432-90001) for the meaning of the
4831@code{.space} directive.  @xref{HPPA Directives,,HPPA Assembler Directives},
4832for a summary.
4833@end quotation
4834@end ifset
4835@end ifclear
4836
4837@ifset A29K
4838@ifclear GENERIC
4839@node Space
4840@section @code{.space}
4841@cindex @code{space} directive
4842@end ifclear
4843On the AMD 29K, this directive is ignored; it is accepted for
4844compatibility with other AMD 29K assemblers.
4845
4846@quotation
4847@emph{Warning:} In most versions of the @sc{gnu} assembler, the directive
4848@code{.space} has the effect of @code{.block}  @xref{Machine Dependencies}.
4849@end quotation
4850@end ifset
4851
4852@ifset have-stabs
4853@node Stab
4854@section @code{.stabd, .stabn, .stabs}
4855
4856@cindex symbolic debuggers, information for
4857@cindex @code{stab@var{x}} directives
4858There are three directives that begin @samp{.stab}.
4859All emit symbols (@pxref{Symbols}), for use by symbolic debuggers.
4860The symbols are not entered in the @code{@value{AS}} hash table: they
4861cannot be referenced elsewhere in the source file.
4862Up to five fields are required:
4863
4864@table @var
4865@item string
4866This is the symbol's name.  It may contain any character except
4867@samp{\000}, so is more general than ordinary symbol names.  Some
4868debuggers used to code arbitrarily complex structures into symbol names
4869using this field.
4870
4871@item type
4872An absolute expression.  The symbol's type is set to the low 8 bits of
4873this expression.  Any bit pattern is permitted, but @code{@value{LD}}
4874and debuggers choke on silly bit patterns.
4875
4876@item other
4877An absolute expression.  The symbol's ``other'' attribute is set to the
4878low 8 bits of this expression.
4879
4880@item desc
4881An absolute expression.  The symbol's descriptor is set to the low 16
4882bits of this expression.
4883
4884@item value
4885An absolute expression which becomes the symbol's value.
4886@end table
4887
4888If a warning is detected while reading a @code{.stabd}, @code{.stabn},
4889or @code{.stabs} statement, the symbol has probably already been created;
4890you get a half-formed symbol in your object file.  This is
4891compatible with earlier assemblers!
4892
4893@table @code
4894@cindex @code{stabd} directive
4895@item .stabd @var{type} , @var{other} , @var{desc}
4896
4897The ``name'' of the symbol generated is not even an empty string.
4898It is a null pointer, for compatibility.  Older assemblers used a
4899null pointer so they didn't waste space in object files with empty
4900strings.
4901
4902The symbol's value is set to the location counter,
4903relocatably.  When your program is linked, the value of this symbol
4904is the address of the location counter when the @code{.stabd} was
4905assembled.
4906
4907@cindex @code{stabn} directive
4908@item .stabn @var{type} , @var{other} , @var{desc} , @var{value}
4909The name of the symbol is set to the empty string @code{""}.
4910
4911@cindex @code{stabs} directive
4912@item .stabs @var{string} ,  @var{type} , @var{other} , @var{desc} , @var{value}
4913All five fields are specified.
4914@end table
4915@end ifset
4916@c end     have-stabs
4917
4918@node String
4919@section @code{.string} "@var{str}"
4920
4921@cindex string, copying to object file
4922@cindex @code{string} directive
4923
4924Copy the characters in @var{str} to the object file.  You may specify more than
4925one string to copy, separated by commas.  Unless otherwise specified for a
4926particular machine, the assembler marks the end of each string with a 0 byte.
4927You can use any of the escape sequences described in @ref{Strings,,Strings}.
4928
4929@node Struct
4930@section @code{.struct @var{expression}}
4931
4932@cindex @code{struct} directive
4933Switch to the absolute section, and set the section offset to @var{expression},
4934which must be an absolute expression.  You might use this as follows:
4935@smallexample
4936        .struct 0
4937field1:
4938        .struct field1 + 4
4939field2:
4940        .struct field2 + 4
4941field3:
4942@end smallexample
4943This would define the symbol @code{field1} to have the value 0, the symbol
4944@code{field2} to have the value 4, and the symbol @code{field3} to have the
4945value 8.  Assembly would be left in the absolute section, and you would need to
4946use a @code{.section} directive of some sort to change to some other section
4947before further assembly.
4948
4949@ifset ELF
4950@node SubSection
4951@section @code{.subsection @var{name}}
4952
4953@cindex @code{.subsection} directive
4954@cindex Section Stack
4955This is one of the ELF section stack manipulation directives.  The others are
4956@code{.section} (@pxref{Section}), @code{.pushsection} (@pxref{PushSection}), 
4957@code{.popsection} (@pxref{PopSection}), and @code{.previous} 
4958(@pxref{Previous}).
4959
4960This directive replaces the current subsection with @code{name}.  The current
4961section is not changed.  The replaced subsection is put onto the section stack
4962in place of the then current top of stack subsection.
4963@end ifset
4964
4965@ifset ELF
4966@node Symver
4967@section @code{.symver}
4968@cindex @code{symver} directive
4969@cindex symbol versioning
4970@cindex versions of symbols
4971Use the @code{.symver} directive to bind symbols to specific version nodes
4972within a source file.  This is only supported on ELF platforms, and is
4973typically used when assembling files to be linked into a shared library.
4974There are cases where it may make sense to use this in objects to be bound
4975into an application itself so as to override a versioned symbol from a
4976shared library.
4977
4978For ELF targets, the @code{.symver} directive can be used like this:
4979@smallexample
4980.symver @var{name}, @var{name2@@nodename}
4981@end smallexample
4982If the symbol @var{name} is defined within the file
4983being assembled, the @code{.symver} directive effectively creates a symbol
4984alias with the name @var{name2@@nodename}, and in fact the main reason that we
4985just don't try and create a regular alias is that the @var{@@} character isn't
4986permitted in symbol names.  The @var{name2} part of the name is the actual name
4987of the symbol by which it will be externally referenced.  The name @var{name}
4988itself is merely a name of convenience that is used so that it is possible to
4989have definitions for multiple versions of a function within a single source
4990file, and so that the compiler can unambiguously know which version of a
4991function is being mentioned.  The @var{nodename} portion of the alias should be
4992the name of a node specified in the version script supplied to the linker when
4993building a shared library.  If you are attempting to override a versioned
4994symbol from a shared library, then @var{nodename} should correspond to the
4995nodename of the symbol you are trying to override.
4996
4997If the symbol @var{name} is not defined within the file being assembled, all
4998references to @var{name} will be changed to @var{name2@@nodename}.  If no
4999reference to @var{name} is made, @var{name2@@nodename} will be removed from the
5000symbol table.
5001
5002Another usage of the @code{.symver} directive is:
5003@smallexample
5004.symver @var{name}, @var{name2@@@@nodename}
5005@end smallexample
5006In this case, the symbol @var{name} must exist and be defined within
5007the file being assembled. It is similar to @var{name2@@nodename}. The
5008difference is @var{name2@@@@nodename} will also be used to resolve
5009references to @var{name2} by the linker.
5010
5011The third usage of the @code{.symver} directive is:
5012@smallexample
5013.symver @var{name}, @var{name2@@@@@@nodename}
5014@end smallexample
5015When @var{name} is not defined within the
5016file being assembled, it is treated as @var{name2@@nodename}. When
5017@var{name} is defined within the file being assembled, the symbol
5018name, @var{name}, will be changed to @var{name2@@@@nodename}.
5019@end ifset
5020
5021@ifset COFF
5022@node Tag
5023@section @code{.tag @var{structname}}
5024
5025@cindex COFF structure debugging
5026@cindex structure debugging, COFF
5027@cindex @code{tag} directive
5028This directive is generated by compilers to include auxiliary debugging
5029information in the symbol table.  It is only permitted inside
5030@code{.def}/@code{.endef} pairs.  Tags are used to link structure
5031definitions in the symbol table with instances of those structures.
5032@ifset BOUT
5033
5034@samp{.tag} is only used when generating COFF format output; when
5035@code{@value{AS}} is generating @code{b.out}, it accepts this directive but
5036ignores it.
5037@end ifset
5038@end ifset
5039
5040@node Text
5041@section @code{.text @var{subsection}}
5042
5043@cindex @code{text} directive
5044Tells @code{@value{AS}} to assemble the following statements onto the end of
5045the text subsection numbered @var{subsection}, which is an absolute
5046expression.  If @var{subsection} is omitted, subsection number zero
5047is used.
5048
5049@node Title
5050@section @code{.title "@var{heading}"}
5051
5052@cindex @code{title} directive
5053@cindex listing control: title line
5054Use @var{heading} as the title (second line, immediately after the
5055source file name and pagenumber) when generating assembly listings.
5056
5057This directive affects subsequent pages, as well as the current page if
5058it appears within ten lines of the top of a page.
5059
5060@node Type
5061@section @code{.type @var{int}} (COFF version)
5062
5063@cindex COFF symbol type
5064@cindex symbol type, COFF
5065@cindex @code{type} directive
5066This directive, permitted only within @code{.def}/@code{.endef} pairs,
5067records the integer @var{int} as the type attribute of a symbol table entry.
5068
5069@ifset BOUT
5070@samp{.type} is associated only with COFF format output; when
5071@code{@value{AS}} is configured for @code{b.out} output, it accepts this
5072directive but ignores it.
5073@end ifset
5074
5075@section @code{.type @var{name} , @var{type description}} (ELF version)
5076
5077@cindex ELF symbol type
5078@cindex symbol type, ELF
5079@cindex @code{type} directive
5080This directive is used to set the type of symbol @var{name} to be either a
5081function symbol or an object symbol.  There are five different syntaxes
5082supported for the @var{type description} field, in order to provide
5083compatibility with various other assemblers.  The syntaxes supported are:
5084
5085@smallexample
5086  .type <name>,#function
5087  .type <name>,#object
5088
5089  .type <name>,@@function
5090  .type <name>,@@object
5091
5092  .type <name>,%function
5093  .type <name>,%object
5094  
5095  .type <name>,"function"
5096  .type <name>,"object"
5097  
5098  .type <name> STT_FUNCTION
5099  .type <name> STT_OBJECT
5100@end smallexample
5101
5102@node Uleb128
5103@section @code{.uleb128 @var{expressions}}
5104
5105@cindex @code{uleb128} directive
5106@var{uleb128} stands for ``unsigned little endian base 128.''  This is a 
5107compact, variable length representation of numbers used by the DWARF
5108symbolic debugging format.  @xref{Sleb128,@code{.sleb128}}.
5109
5110@ifset COFF
5111@node Val
5112@section @code{.val @var{addr}}
5113
5114@cindex @code{val} directive
5115@cindex COFF value attribute
5116@cindex value attribute, COFF
5117This directive, permitted only within @code{.def}/@code{.endef} pairs,
5118records the address @var{addr} as the value attribute of a symbol table
5119entry.
5120@ifset BOUT
5121
5122@samp{.val} is used only for COFF output; when @code{@value{AS}} is
5123configured for @code{b.out}, it accepts this directive but ignores it.
5124@end ifset
5125@end ifset
5126
5127@ifset ELF
5128@node Version
5129@section @code{.version "@var{string}"}
5130
5131@cindex @code{.version}
5132This directive creates a @code{.note} section and places into it an ELF
5133formatted note of type NT_VERSION.  The note's name is set to @code{string}.
5134@end ifset
5135
5136@ifset ELF
5137@node VTableEntry
5138@section @code{.vtable_entry @var{table}, @var{offset}}
5139
5140@cindex @code{.vtable_entry}
5141This directive finds or creates a symbol @code{table} and creates a
5142@code{VTABLE_ENTRY} relocation for it with an addend of @code{offset}.
5143
5144@node VTableInherit
5145@section @code{.vtable_inherit @var{child}, @var{parent}}
5146
5147@cindex @code{.vtable_inherit}
5148This directive finds the symbol @code{child} and finds or creates the symbol
5149@code{parent} and then creates a @code{VTABLE_INHERIT} relocation for the
5150parent whose addend is the value of the child symbol.  As a special case the
5151parent name of @code{0} is treated as refering the @code{*ABS*} section.
5152@end ifset
5153
5154@ifset ELF
5155@node Weak
5156@section @code{.weak @var{names}}
5157
5158@cindex @code{.weak}
5159This directive sets the weak attribute on the comma separated list of symbol
5160@code{names}.  If the symbols do not already exist, they will be created.
5161@end ifset
5162
5163@node Word
5164@section @code{.word @var{expressions}}
5165
5166@cindex @code{word} directive
5167This directive expects zero or more @var{expressions}, of any section,
5168separated by commas.
5169@ifclear GENERIC
5170@ifset W32
5171For each expression, @code{@value{AS}} emits a 32-bit number.
5172@end ifset
5173@ifset W16
5174For each expression, @code{@value{AS}} emits a 16-bit number.
5175@end ifset
5176@end ifclear
5177@ifset GENERIC
5178
5179The size of the number emitted, and its byte order,
5180depend on what target computer the assembly is for.
5181@end ifset
5182
5183@c on amd29k, i960, sparc the "special treatment to support compilers" doesn't
5184@c happen---32-bit addressability, period; no long/short jumps.
5185@ifset DIFF-TBL-KLUGE
5186@cindex difference tables altered
5187@cindex altered difference tables
5188@quotation
5189@emph{Warning: Special Treatment to support Compilers}
5190@end quotation
5191
5192@ifset GENERIC
5193Machines with a 32-bit address space, but that do less than 32-bit
5194addressing, require the following special treatment.  If the machine of
5195interest to you does 32-bit addressing (or doesn't require it;
5196@pxref{Machine Dependencies}), you can ignore this issue.
5197
5198@end ifset
5199In order to assemble compiler output into something that works,
5200@code{@value{AS}} occasionally does strange things to @samp{.word} directives.
5201Directives of the form @samp{.word sym1-sym2} are often emitted by
5202compilers as part of jump tables.  Therefore, when @code{@value{AS}} assembles a
5203directive of the form @samp{.word sym1-sym2}, and the difference between
5204@code{sym1} and @code{sym2} does not fit in 16 bits, @code{@value{AS}}
5205creates a @dfn{secondary jump table}, immediately before the next label.
5206This secondary jump table is preceded by a short-jump to the
5207first byte after the secondary table.  This short-jump prevents the flow
5208of control from accidentally falling into the new table.  Inside the
5209table is a long-jump to @code{sym2}.  The original @samp{.word}
5210contains @code{sym1} minus the address of the long-jump to
5211@code{sym2}.
5212
5213If there were several occurrences of @samp{.word sym1-sym2} before the
5214secondary jump table, all of them are adjusted.  If there was a
5215@samp{.word sym3-sym4}, that also did not fit in sixteen bits, a
5216long-jump to @code{sym4} is included in the secondary jump table,
5217and the @code{.word} directives are adjusted to contain @code{sym3}
5218minus the address of the long-jump to @code{sym4}; and so on, for as many
5219entries in the original jump table as necessary.
5220
5221@ifset INTERNALS
5222@emph{This feature may be disabled by compiling @code{@value{AS}} with the
5223@samp{-DWORKING_DOT_WORD} option.} This feature is likely to confuse
5224assembly language programmers.
5225@end ifset
5226@end ifset
5227@c end     DIFF-TBL-KLUGE
5228
5229@node Deprecated
5230@section Deprecated Directives
5231
5232@cindex deprecated directives
5233@cindex obsolescent directives
5234One day these directives won't work.
5235They are included for compatibility with older assemblers.
5236@table @t
5237@item .abort
5238@item .line
5239@end table
5240
5241@ifset GENERIC
5242@node Machine Dependencies
5243@chapter Machine Dependent Features
5244
5245@cindex machine dependencies
5246The machine instruction sets are (almost by definition) different on
5247each machine where @code{@value{AS}} runs.  Floating point representations
5248vary as well, and @code{@value{AS}} often supports a few additional
5249directives or command-line options for compatibility with other
5250assemblers on a particular platform.  Finally, some versions of
5251@code{@value{AS}} support special pseudo-instructions for branch
5252optimization.
5253
5254This chapter discusses most of these differences, though it does not
5255include details on any machine's instruction set.  For details on that
5256subject, see the hardware manufacturer's manual.
5257
5258@menu
5259@ifset A29K
5260* AMD29K-Dependent::            AMD 29K Dependent Features
5261@end ifset
5262@ifset ARC
5263* ARC-Dependent::               ARC Dependent Features
5264@end ifset
5265@ifset ARM
5266* ARM-Dependent::               ARM Dependent Features
5267@end ifset
5268@ifset D10V
5269* D10V-Dependent::              D10V Dependent Features
5270@end ifset
5271@ifset D30V
5272* D30V-Dependent::              D30V Dependent Features
5273@end ifset
5274@ifset H8/300
5275* H8/300-Dependent::            Hitachi H8/300 Dependent Features
5276@end ifset
5277@ifset H8/500
5278* H8/500-Dependent::            Hitachi H8/500 Dependent Features
5279@end ifset
5280@ifset HPPA
5281* HPPA-Dependent::              HPPA Dependent Features
5282@end ifset
5283@ifset I370
5284* ESA/390-Dependent::           IBM ESA/390 Dependent Features
5285@end ifset
5286@ifset I80386
5287* i386-Dependent::              Intel 80386 and AMD x86-64 Dependent Features
5288@end ifset
5289@ifset I860
5290* i860-Dependent::              Intel 80860 Dependent Features
5291@end ifset
5292@ifset I960
5293* i960-Dependent::              Intel 80960 Dependent Features
5294@end ifset
5295@ifset M32R
5296* M32R-Dependent::              M32R Dependent Features
5297@end ifset
5298@ifset M680X0
5299* M68K-Dependent::              M680x0 Dependent Features
5300@end ifset
5301@ifset M68HC11
5302* M68HC11-Dependent::           M68HC11 and 68HC12 Dependent Features
5303@end ifset
5304@ifset MIPS
5305* MIPS-Dependent::              MIPS Dependent Features
5306@end ifset
5307@ifset SH
5308* SH-Dependent::                Hitachi SH Dependent Features
5309@end ifset
5310@ifset PJ
5311* PJ-Dependent::                picoJava Dependent Features
5312@end ifset
5313@ifset SPARC
5314* Sparc-Dependent::             SPARC Dependent Features
5315@end ifset
5316@ifset TIC54X
5317* TIC54X-Dependent::            TI TMS320C54x Dependent Features
5318@end ifset
5319@ifset V850
5320* V850-Dependent::              V850 Dependent Features
5321@end ifset
5322@ifset Z8000
5323* Z8000-Dependent::             Z8000 Dependent Features
5324@end ifset
5325@ifset VAX
5326* Vax-Dependent::               VAX Dependent Features
5327@end ifset
5328@end menu
5329
5330@lowersections
5331@end ifset
5332
5333@c The following major nodes are *sections* in the GENERIC version, *chapters*
5334@c in single-cpu versions.  This is mainly achieved by @lowersections.  There is a
5335@c peculiarity: to preserve cross-references, there must be a node called
5336@c "Machine Dependencies".  Hence the conditional nodenames in each
5337@c major node below.  Node defaulting in makeinfo requires adjacency of
5338@c node and sectioning commands; hence the repetition of @chapter BLAH
5339@c in both conditional blocks.
5340
5341@ifset ARC
5342@include c-arc.texi
5343@end ifset
5344
5345@ifset A29K
5346@include c-a29k.texi
5347@end ifset
5348
5349@ifset ARM
5350@include c-arm.texi
5351@end ifset
5352
5353@ifset Hitachi-all
5354@ifclear GENERIC
5355@node Machine Dependencies
5356@chapter Machine Dependent Features
5357
5358The machine instruction sets are different on each Hitachi chip family,
5359and there are also some syntax differences among the families.  This
5360chapter describes the specific @code{@value{AS}} features for each
5361family.
5362
5363@menu
5364* H8/300-Dependent::            Hitachi H8/300 Dependent Features
5365* H8/500-Dependent::            Hitachi H8/500 Dependent Features
5366* SH-Dependent::                Hitachi SH Dependent Features
5367@end menu
5368@lowersections
5369@end ifclear
5370@end ifset
5371
5372@ifset D10V
5373@include c-d10v.texi
5374@end ifset
5375
5376@ifset D30V
5377@include c-d30v.texi
5378@end ifset
5379
5380@ifset H8/300
5381@include c-h8300.texi
5382@end ifset
5383
5384@ifset H8/500
5385@include c-h8500.texi
5386@end ifset
5387
5388@ifset HPPA
5389@include c-hppa.texi
5390@end ifset
5391
5392@ifset I370
5393@include c-i370.texi
5394@end ifset
5395
5396@ifset I80386
5397@include c-i386.texi
5398@end ifset
5399
5400@ifset I860
5401@include c-i860.texi
5402@end ifset
5403
5404@ifset I960
5405@include c-i960.texi
5406@end ifset
5407
5408@ifset M32R
5409@include c-m32r.texi
5410@end ifset
5411
5412@ifset M680X0
5413@include c-m68k.texi
5414@end ifset
5415
5416@ifset M68HC11
5417@include c-m68hc11.texi
5418@end ifset
5419
5420@ifset MIPS
5421@include c-mips.texi
5422@end ifset
5423
5424@ifset NS32K
5425@include c-ns32k.texi
5426@end ifset
5427
5428@ifset PJ
5429@include c-pj.texi
5430@end ifset
5431
5432@ifset SH
5433@include c-sh.texi
5434@end ifset
5435
5436@ifset SPARC
5437@include c-sparc.texi
5438@end ifset
5439
5440@ifset TIC54X
5441@include c-tic54x.texi
5442@end ifset
5443
5444@ifset Z8000
5445@include c-z8k.texi
5446@end ifset
5447
5448@ifset VAX
5449@include c-vax.texi
5450@end ifset
5451
5452@ifset V850
5453@include c-v850.texi
5454@end ifset
5455
5456@ifset GENERIC
5457@c reverse effect of @down at top of generic Machine-Dep chapter
5458@raisesections
5459@end ifset
5460
5461@node Reporting Bugs
5462@chapter Reporting Bugs
5463@cindex bugs in assembler
5464@cindex reporting bugs in assembler
5465
5466Your bug reports play an essential role in making @code{@value{AS}} reliable.
5467
5468Reporting a bug may help you by bringing a solution to your problem, or it may
5469not.  But in any case the principal function of a bug report is to help the
5470entire community by making the next version of @code{@value{AS}} work better.
5471Bug reports are your contribution to the maintenance of @code{@value{AS}}.
5472
5473In order for a bug report to serve its purpose, you must include the
5474information that enables us to fix the bug.
5475
5476@menu
5477* Bug Criteria::                Have you found a bug?
5478* Bug Reporting::               How to report bugs
5479@end menu
5480
5481@node Bug Criteria
5482@section Have you found a bug?
5483@cindex bug criteria
5484
5485If you are not sure whether you have found a bug, here are some guidelines:
5486
5487@itemize @bullet
5488@cindex fatal signal
5489@cindex assembler crash
5490@cindex crash of assembler
5491@item
5492If the assembler gets a fatal signal, for any input whatever, that is a
5493@code{@value{AS}} bug.  Reliable assemblers never crash.
5494
5495@cindex error on valid input
5496@item
5497If @code{@value{AS}} produces an error message for valid input, that is a bug.
5498
5499@cindex invalid input
5500@item
5501If @code{@value{AS}} does not produce an error message for invalid input, that
5502is a bug.  However, you should note that your idea of ``invalid input'' might
5503be our idea of ``an extension'' or ``support for traditional practice''.
5504
5505@item
5506If you are an experienced user of assemblers, your suggestions for improvement
5507of @code{@value{AS}} are welcome in any case.
5508@end itemize
5509
5510@node Bug Reporting
5511@section How to report bugs
5512@cindex bug reports
5513@cindex assembler bugs, reporting
5514
5515A number of companies and individuals offer support for @sc{gnu} products.  If
5516you obtained @code{@value{AS}} from a support organization, we recommend you
5517contact that organization first.
5518
5519You can find contact information for many support companies and
5520individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
5521distribution.
5522
5523In any event, we also recommend that you send bug reports for @code{@value{AS}}
5524to @samp{bug-binutils@@gnu.org}.
5525
5526The fundamental principle of reporting bugs usefully is this:
5527@strong{report all the facts}.  If you are not sure whether to state a
5528fact or leave it out, state it!
5529
5530Often people omit facts because they think they know what causes the problem
5531and assume that some details do not matter.  Thus, you might assume that the
5532name of a symbol you use in an example does not matter.  Well, probably it does
5533not, but one cannot be sure.  Perhaps the bug is a stray memory reference which
5534happens to fetch from the location where that name is stored in memory;
5535perhaps, if the name were different, the contents of that location would fool
5536the assembler into doing the right thing despite the bug.  Play it safe and
5537give a specific, complete example.  That is the easiest thing for you to do,
5538and the most helpful.
5539
5540Keep in mind that the purpose of a bug report is to enable us to fix the bug if
5541it is new to us.  Therefore, always write your bug reports on the assumption
5542that the bug has not been reported previously.
5543
5544Sometimes people give a few sketchy facts and ask, ``Does this ring a
5545bell?''  Those bug reports are useless, and we urge everyone to
5546@emph{refuse to respond to them} except to chide the sender to report
5547bugs properly.
5548
5549To enable us to fix the bug, you should include all these things:
5550
5551@itemize @bullet
5552@item
5553The version of @code{@value{AS}}.  @code{@value{AS}} announces it if you start
5554it with the @samp{--version} argument.
5555
5556Without this, we will not know whether there is any point in looking for
5557the bug in the current version of @code{@value{AS}}.
5558
5559@item
5560Any patches you may have applied to the @code{@value{AS}} source.
5561
5562@item
5563The type of machine you are using, and the operating system name and
5564version number.
5565
5566@item
5567What compiler (and its version) was used to compile @code{@value{AS}}---e.g.
5568``@code{gcc-2.7}''.
5569
5570@item
5571The command arguments you gave the assembler to assemble your example and
5572observe the bug.  To guarantee you will not omit something important, list them
5573all.  A copy of the Makefile (or the output from make) is sufficient.
5574
5575If we were to try to guess the arguments, we would probably guess wrong
5576and then we might not encounter the bug.
5577
5578@item
5579A complete input file that will reproduce the bug.  If the bug is observed when
5580the assembler is invoked via a compiler, send the assembler source, not the
5581high level language source.  Most compilers will produce the assembler source
5582when run with the @samp{-S} option.  If you are using @code{@value{GCC}}, use
5583the options @samp{-v --save-temps}; this will save the assembler source in a
5584file with an extension of @file{.s}, and also show you exactly how
5585@code{@value{AS}} is being run.
5586
5587@item
5588A description of what behavior you observe that you believe is
5589incorrect.  For example, ``It gets a fatal signal.''
5590
5591Of course, if the bug is that @code{@value{AS}} gets a fatal signal, then we
5592will certainly notice it.  But if the bug is incorrect output, we might not
5593notice unless it is glaringly wrong.  You might as well not give us a chance to
5594make a mistake.
5595
5596Even if the problem you experience is a fatal signal, you should still say so
5597explicitly.  Suppose something strange is going on, such as, your copy of
5598@code{@value{AS}} is out of synch, or you have encountered a bug in the C
5599library on your system.  (This has happened!)  Your copy might crash and ours
5600would not.  If you told us to expect a crash, then when ours fails to crash, we
5601would know that the bug was not happening for us.  If you had not told us to
5602expect a crash, then we would not be able to draw any conclusion from our
5603observations.
5604
5605@item
5606If you wish to suggest changes to the @code{@value{AS}} source, send us context
5607diffs, as generated by @code{diff} with the @samp{-u}, @samp{-c}, or @samp{-p}
5608option.  Always send diffs from the old file to the new file.  If you even
5609discuss something in the @code{@value{AS}} source, refer to it by context, not
5610by line number.
5611
5612The line numbers in our development sources will not match those in your
5613sources.  Your line numbers would convey no useful information to us.
5614@end itemize
5615
5616Here are some things that are not necessary:
5617
5618@itemize @bullet
5619@item
5620A description of the envelope of the bug.
5621
5622Often people who encounter a bug spend a lot of time investigating
5623which changes to the input file will make the bug go away and which
5624changes will not affect it.
5625
5626This is often time consuming and not very useful, because the way we
5627will find the bug is by running a single example under the debugger
5628with breakpoints, not by pure deduction from a series of examples.
5629We recommend that you save your time for something else.
5630
5631Of course, if you can find a simpler example to report @emph{instead}
5632of the original one, that is a convenience for us.  Errors in the
5633output will be easier to spot, running under the debugger will take
5634less time, and so on.
5635
5636However, simplification is not vital; if you do not want to do this,
5637report the bug anyway and send us the entire test case you used.
5638
5639@item
5640A patch for the bug.
5641
5642A patch for the bug does help us if it is a good one.  But do not omit
5643the necessary information, such as the test case, on the assumption that
5644a patch is all we need.  We might see problems with your patch and decide
5645to fix the problem another way, or we might not understand it at all.
5646
5647Sometimes with a program as complicated as @code{@value{AS}} it is very hard to
5648construct an example that will make the program follow a certain path through
5649the code.  If you do not send us the example, we will not be able to construct
5650one, so we will not be able to verify that the bug is fixed.
5651
5652And if we cannot understand what bug you are trying to fix, or why your
5653patch should be an improvement, we will not install it.  A test case will
5654help us to understand.
5655
5656@item
5657A guess about what the bug is or what it depends on.
5658
5659Such guesses are usually wrong.  Even we cannot guess right about such
5660things without first using the debugger to find the facts.
5661@end itemize
5662
5663@node Acknowledgements
5664@chapter Acknowledgements
5665
5666If you have contributed to @code{@value{AS}} and your name isn't listed here,
5667it is not meant as a slight.  We just don't know about it.  Send mail to the
5668maintainer, and we'll correct the situation.  Currently 
5669@c (January 1994), 
5670the maintainer is Ken Raeburn (email address @code{raeburn@@cygnus.com}).
5671
5672Dean Elsner wrote the original @sc{gnu} assembler for the VAX.@footnote{Any
5673more details?}
5674
5675Jay Fenlason maintained GAS for a while, adding support for GDB-specific debug
5676information and the 68k series machines, most of the preprocessing pass, and
5677extensive changes in @file{messages.c}, @file{input-file.c}, @file{write.c}.
5678
5679K. Richard Pixley maintained GAS for a while, adding various enhancements and
5680many bug fixes, including merging support for several processors, breaking GAS
5681up to handle multiple object file format back ends (including heavy rewrite,
5682testing, an integration of the coff and b.out back ends), adding configuration
5683including heavy testing and verification of cross assemblers and file splits
5684and renaming, converted GAS to strictly ANSI C including full prototypes, added
5685support for m680[34]0 and cpu32, did considerable work on i960 including a COFF
5686port (including considerable amounts of reverse engineering), a SPARC opcode
5687file rewrite, DECstation, rs6000, and hp300hpux host ports, updated ``know''
5688assertions and made them work, much other reorganization, cleanup, and lint.
5689
5690Ken Raeburn wrote the high-level BFD interface code to replace most of the code
5691in format-specific I/O modules.
5692
5693The original VMS support was contributed by David L. Kashtan.  Eric Youngdale
5694has done much work with it since.
5695
5696The Intel 80386 machine description was written by Eliot Dresselhaus.
5697
5698Minh Tran-Le at IntelliCorp contributed some AIX 386 support.
5699
5700The Motorola 88k machine description was contributed by Devon Bowen of Buffalo
5701University and Torbjorn Granlund of the Swedish Institute of Computer Science.
5702
5703Keith Knowles at the Open Software Foundation wrote the original MIPS back end
5704(@file{tc-mips.c}, @file{tc-mips.h}), and contributed Rose format support
5705(which hasn't been merged in yet).  Ralph Campbell worked with the MIPS code to
5706support a.out format.
5707
5708Support for the Zilog Z8k and Hitachi H8/300 and H8/500 processors (tc-z8k,
5709tc-h8300, tc-h8500), and IEEE 695 object file format (obj-ieee), was written by
5710Steve Chamberlain of Cygnus Support.  Steve also modified the COFF back end to
5711use BFD for some low-level operations, for use with the H8/300 and AMD 29k
5712targets.
5713
5714John Gilmore built the AMD 29000 support, added @code{.include} support, and
5715simplified the configuration of which versions accept which directives.  He
5716updated the 68k machine description so that Motorola's opcodes always produced
5717fixed-size instructions (e.g. @code{jsr}), while synthetic instructions
5718remained shrinkable (@code{jbsr}).  John fixed many bugs, including true tested
5719cross-compilation support, and one bug in relaxation that took a week and
5720required the proverbial one-bit fix.
5721
5722Ian Lance Taylor of Cygnus Support merged the Motorola and MIT syntax for the
572368k, completed support for some COFF targets (68k, i386 SVR3, and SCO Unix),
5724added support for MIPS ECOFF and ELF targets, wrote the initial RS/6000 and
5725PowerPC assembler, and made a few other minor patches.
5726
5727Steve Chamberlain made @code{@value{AS}} able to generate listings.
5728
5729Hewlett-Packard contributed support for the HP9000/300.
5730
5731Jeff Law wrote GAS and BFD support for the native HPPA object format (SOM)
5732along with a fairly extensive HPPA testsuite (for both SOM and ELF object
5733formats).  This work was supported by both the Center for Software Science at
5734the University of Utah and Cygnus Support.
5735
5736Support for ELF format files has been worked on by Mark Eichin of Cygnus
5737Support (original, incomplete implementation for SPARC), Pete Hoogenboom and
5738Jeff Law at the University of Utah (HPPA mainly), Michael Meissner of the Open
5739Software Foundation (i386 mainly), and Ken Raeburn of Cygnus Support (sparc,
5740and some initial 64-bit support).
5741
5742Linas Vepstas added GAS support for the ESA/390 "IBM 370" architecture.
5743
5744Richard Henderson rewrote the Alpha assembler. Klaus Kaempf wrote GAS and BFD
5745support for openVMS/Alpha.
5746
5747Timothy Wall, Michael Hayes, and Greg Smart contributed to the various tic*
5748flavors.
5749
5750Several engineers at Cygnus Support have also provided many small bug fixes and
5751configuration enhancements.
5752
5753Many others have contributed large or small bugfixes and enhancements.  If
5754you have contributed significant work and are not mentioned on this list, and
5755want to be, let us know.  Some of the history has been lost; we are not
5756intentionally leaving anyone out.
5757
5758@node GNU Free Documentation License
5759@chapter GNU Free Documentation License
5760
5761                GNU Free Documentation License
5762                
5763                   Version 1.1, March 2000
5764
5765 Copyright (C) 2000  Free Software Foundation, Inc.
5766  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
5767     
5768 Everyone is permitted to copy and distribute verbatim copies
5769 of this license document, but changing it is not allowed.
5770
5771
57720. PREAMBLE
5773
5774The purpose of this License is to make a manual, textbook, or other
5775written document "free" in the sense of freedom: to assure everyone
5776the effective freedom to copy and redistribute it, with or without
5777modifying it, either commercially or noncommercially.  Secondarily,
5778this License preserves for the author and publisher a way to get
5779credit for their work, while not being considered responsible for
5780modifications made by others.
5781
5782This License is a kind of "copyleft", which means that derivative
5783works of the document must themselves be free in the same sense.  It
5784complements the GNU General Public License, which is a copyleft
5785license designed for free software.
5786
5787We have designed this License in order to use it for manuals for free
5788software, because free software needs free documentation: a free
5789program should come with manuals providing the same freedoms that the
5790software does.  But this License is not limited to software manuals;
5791it can be used for any textual work, regardless of subject matter or
5792whether it is published as a printed book.  We recommend this License
5793principally for works whose purpose is instruction or reference.
5794
5795
57961. APPLICABILITY AND DEFINITIONS
5797
5798This License applies to any manual or other work that contains a
5799notice placed by the copyright holder saying it can be distributed
5800under the terms of this License.  The "Document", below, refers to any
5801such manual or work.  Any member of the public is a licensee, and is
5802addressed as "you".
5803
5804A "Modified Version" of the Document means any work containing the
5805Document or a portion of it, either copied verbatim, or with
5806modifications and/or translated into another language.
5807
5808A "Secondary Section" is a named appendix or a front-matter section of
5809the Document that deals exclusively with the relationship of the
5810publishers or authors of the Document to the Document's overall subject
5811(or to related matters) and contains nothing that could fall directly
5812within that overall subject.  (For example, if the Document is in part a
5813textbook of mathematics, a Secondary Section may not explain any
5814mathematics.)  The relationship could be a matter of historical
5815connection with the subject or with related matters, or of legal,
5816commercial, philosophical, ethical or political position regarding
5817them.
5818
5819The "Invariant Sections" are certain Secondary Sections whose titles
5820are designated, as being those of Invariant Sections, in the notice
5821that says that the Document is released under this License.
5822
5823The "Cover Texts" are certain short passages of text that are listed,
5824as Front-Cover Texts or Back-Cover Texts, in the notice that says that
5825the Document is released under this License.
5826
5827A "Transparent" copy of the Document means a machine-readable copy,
5828represented in a format whose specification is available to the
5829general public, whose contents can be viewed and edited directly and
5830straightforwardly with generic text editors or (for images composed of
5831pixels) generic paint programs or (for drawings) some widely available
5832drawing editor, and that is suitable for input to text formatters or
5833for automatic translation to a variety of formats suitable for input
5834to text formatters.  A copy made in an otherwise Transparent file
5835format whose markup has been designed to thwart or discourage
5836subsequent modification by readers is not Transparent.  A copy that is
5837not "Transparent" is called "Opaque".
5838
5839Examples of suitable formats for Transparent copies include plain
5840ASCII without markup, Texinfo input format, LaTeX input format, SGML
5841or XML using a publicly available DTD, and standard-conforming simple
5842HTML designed for human modification.  Opaque formats include
5843PostScript, PDF, proprietary formats that can be read and edited only
5844by proprietary word processors, SGML or XML for which the DTD and/or
5845processing tools are not generally available, and the
5846machine-generated HTML produced by some word processors for output
5847purposes only.
5848
5849The "Title Page" means, for a printed book, the title page itself,
5850plus such following pages as are needed to hold, legibly, the material
5851this License requires to appear in the title page.  For works in
5852formats which do not have any title page as such, "Title Page" means
5853the text near the most prominent appearance of the work's title,
5854preceding the beginning of the body of the text.
5855
5856
58572. VERBATIM COPYING
5858
5859You may copy and distribute the Document in any medium, either
5860commercially or noncommercially, provided that this License, the
5861copyright notices, and the license notice saying this License applies
5862to the Document are reproduced in all copies, and that you add no other
5863conditions whatsoever to those of this License.  You may not use
5864technical measures to obstruct or control the reading or further
5865copying of the copies you make or distribute.  However, you may accept
5866compensation in exchange for copies.  If you distribute a large enough
5867number of copies you must also follow the conditions in section 3.
5868
5869You may also lend copies, under the same conditions stated above, and
5870you may publicly display copies.
5871
5872
58733. COPYING IN QUANTITY
5874
5875If you publish printed copies of the Document numbering more than 100,
5876and the Document's license notice requires Cover Texts, you must enclose
5877the copies in covers that carry, clearly and legibly, all these Cover
5878Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
5879the back cover.  Both covers must also clearly and legibly identify
5880you as the publisher of these copies.  The front cover must present
5881the full title with all words of the title equally prominent and
5882visible.  You may add other material on the covers in addition.
5883Copying with changes limited to the covers, as long as they preserve
5884the title of the Document and satisfy these conditions, can be treated
5885as verbatim copying in other respects.
5886
5887If the required texts for either cover are too voluminous to fit
5888legibly, you should put the first ones listed (as many as fit
5889reasonably) on the actual cover, and continue the rest onto adjacent
5890pages.
5891
5892If you publish or distribute Opaque copies of the Document numbering
5893more than 100, you must either include a machine-readable Transparent
5894copy along with each Opaque copy, or state in or with each Opaque copy
5895a publicly-accessible computer-network location containing a complete
5896Transparent copy of the Document, free of added material, which the
5897general network-using public has access to download anonymously at no
5898charge using public-standard network protocols.  If you use the latter
5899option, you must take reasonably prudent steps, when you begin
5900distribution of Opaque copies in quantity, to ensure that this
5901Transparent copy will remain thus accessible at the stated location
5902until at least one year after the last time you distribute an Opaque
5903copy (directly or through your agents or retailers) of that edition to
5904the public.
5905
5906It is requested, but not required, that you contact the authors of the
5907Document well before redistributing any large number of copies, to give
5908them a chance to provide you with an updated version of the Document.
5909
5910
59114. MODIFICATIONS
5912
5913You may copy and distribute a Modified Version of the Document under
5914the conditions of sections 2 and 3 above, provided that you release
5915the Modified Version under precisely this License, with the Modified
5916Version filling the role of the Document, thus licensing distribution
5917and modification of the Modified Version to whoever possesses a copy
5918of it.  In addition, you must do these things in the Modified Version:
5919
5920A. Use in the Title Page (and on the covers, if any) a title distinct
5921   from that of the Document, and from those of previous versions
5922   (which should, if there were any, be listed in the History section
5923   of the Document).  You may use the same title as a previous version
5924   if the original publisher of that version gives permission.
5925B. List on the Title Page, as authors, one or more persons or entities
5926   responsible for authorship of the modifications in the Modified
5927   Version, together with at least five of the principal authors of the
5928   Document (all of its principal authors, if it has less than five).
5929C. State on the Title page the name of the publisher of the
5930   Modified Version, as the publisher.
5931D. Preserve all the copyright notices of the Document.
5932E. Add an appropriate copyright notice for your modifications
5933   adjacent to the other copyright notices.
5934F. Include, immediately after the copyright notices, a license notice
5935   giving the public permission to use the Modified Version under the
5936   terms of this License, in the form shown in the Addendum below.
5937G. Preserve in that license notice the full lists of Invariant Sections
5938   and required Cover Texts given in the Document's license notice.
5939H. Include an unaltered copy of this License.
5940I. Preserve the section entitled "History", and its title, and add to
5941   it an item stating at least the title, year, new authors, and
5942   publisher of the Modified Version as given on the Title Page.  If
5943   there is no section entitled "History" in the Document, create one
5944   stating the title, year, authors, and publisher of the Document as
5945   given on its Title Page, then add an item describing the Modified
5946   Version as stated in the previous sentence.
5947J. Preserve the network location, if any, given in the Document for
5948   public access to a Transparent copy of the Document, and likewise
5949   the network locations given in the Document for previous versions
5950   it was based on.  These may be placed in the "History" section.
5951   You may omit a network location for a work that was published at
5952   least four years before the Document itself, or if the original
5953   publisher of the version it refers to gives permission.
5954K. In any section entitled "Acknowledgements" or "Dedications",
5955   preserve the section's title, and preserve in the section all the
5956   substance and tone of each of the contributor acknowledgements
5957   and/or dedications given therein.
5958L. Preserve all the Invariant Sections of the Document,
5959   unaltered in their text and in their titles.  Section numbers
5960   or the equivalent are not considered part of the section titles.
5961M. Delete any section entitled "Endorsements".  Such a section
5962   may not be included in the Modified Version.
5963N. Do not retitle any existing section as "Endorsements"
5964   or to conflict in title with any Invariant Section.
5965
5966If the Modified Version includes new front-matter sections or
5967appendices that qualify as Secondary Sections and contain no material
5968copied from the Document, you may at your option designate some or all
5969of these sections as invariant.  To do this, add their titles to the
5970list of Invariant Sections in the Modified Version's license notice.
5971These titles must be distinct from any other section titles.
5972
5973You may add a section entitled "Endorsements", provided it contains
5974nothing but endorsements of your Modified Version by various
5975parties--for example, statements of peer review or that the text has
5976been approved by an organization as the authoritative definition of a
5977standard.
5978
5979You may add a passage of up to five words as a Front-Cover Text, and a
5980passage of up to 25 words as a Back-Cover Text, to the end of the list
5981of Cover Texts in the Modified Version.  Only one passage of
5982Front-Cover Text and one of Back-Cover Text may be added by (or
5983through arrangements made by) any one entity.  If the Document already
5984includes a cover text for the same cover, previously added by you or
5985by arrangement made by the same entity you are acting on behalf of,
5986you may not add another; but you may replace the old one, on explicit
5987permission from the previous publisher that added the old one.
5988
5989The author(s) and publisher(s) of the Document do not by this License
5990give permission to use their names for publicity for or to assert or
5991imply endorsement of any Modified Version.
5992
5993
59945. COMBINING DOCUMENTS
5995
5996You may combine the Document with other documents released under this
5997License, under the terms defined in section 4 above for modified
5998versions, provided that you include in the combination all of the
5999Invariant Sections of all of the original documents, unmodified, and
6000list them all as Invariant Sections of your combined work in its
6001license notice.
6002
6003The combined work need only contain one copy of this License, and
6004multiple identical Invariant Sections may be replaced with a single
6005copy.  If there are multiple Invariant Sections with the same name but
6006different contents, make the title of each such section unique by
6007adding at the end of it, in parentheses, the name of the original
6008author or publisher of that section if known, or else a unique number.
6009Make the same adjustment to the section titles in the list of
6010Invariant Sections in the license notice of the combined work.
6011
6012In the combination, you must combine any sections entitled "History"
6013in the various original documents, forming one section entitled
6014"History"; likewise combine any sections entitled "Acknowledgements",
6015and any sections entitled "Dedications".  You must delete all sections
6016entitled "Endorsements."
6017
6018
60196. COLLECTIONS OF DOCUMENTS
6020
6021You may make a collection consisting of the Document and other documents
6022released under this License, and replace the individual copies of this
6023License in the various documents with a single copy that is included in
6024the collection, provided that you follow the rules of this License for
6025verbatim copying of each of the documents in all other respects.
6026
6027You may extract a single document from such a collection, and distribute
6028it individually under this License, provided you insert a copy of this
6029License into the extracted document, and follow this License in all
6030other respects regarding verbatim copying of that document.
6031
6032
60337. AGGREGATION WITH INDEPENDENT WORKS
6034
6035A compilation of the Document or its derivatives with other separate
6036and independent documents or works, in or on a volume of a storage or
6037distribution medium, does not as a whole count as a Modified Version
6038of the Document, provided no compilation copyright is claimed for the
6039compilation.  Such a compilation is called an "aggregate", and this
6040License does not apply to the other self-contained works thus compiled
6041with the Document, on account of their being thus compiled, if they
6042are not themselves derivative works of the Document.
6043
6044If the Cover Text requirement of section 3 is applicable to these
6045copies of the Document, then if the Document is less than one quarter
6046of the entire aggregate, the Document's Cover Texts may be placed on
6047covers that surround only the Document within the aggregate.
6048Otherwise they must appear on covers around the whole aggregate.
6049
6050
60518. TRANSLATION
6052
6053Translation is considered a kind of modification, so you may
6054distribute translations of the Document under the terms of section 4.
6055Replacing Invariant Sections with translations requires special
6056permission from their copyright holders, but you may include
6057translations of some or all Invariant Sections in addition to the
6058original versions of these Invariant Sections.  You may include a
6059translation of this License provided that you also include the
6060original English version of this License.  In case of a disagreement
6061between the translation and the original English version of this
6062License, the original English version will prevail.
6063
6064
60659. TERMINATION
6066
6067You may not copy, modify, sublicense, or distribute the Document except
6068as expressly provided for under this License.  Any other attempt to
6069copy, modify, sublicense or distribute the Document is void, and will
6070automatically terminate your rights under this License.  However,
6071parties who have received copies, or rights, from you under this
6072License will not have their licenses terminated so long as such
6073parties remain in full compliance.
6074
6075
607610. FUTURE REVISIONS OF THIS LICENSE
6077
6078The Free Software Foundation may publish new, revised versions
6079of the GNU Free Documentation License from time to time.  Such new
6080versions will be similar in spirit to the present version, but may
6081differ in detail to address new problems or concerns.  See
6082http://www.gnu.org/copyleft/.
6083
6084Each version of the License is given a distinguishing version number.
6085If the Document specifies that a particular numbered version of this
6086License "or any later version" applies to it, you have the option of
6087following the terms and conditions either of that specified version or
6088of any later version that has been published (not as a draft) by the
6089Free Software Foundation.  If the Document does not specify a version
6090number of this License, you may choose any version ever published (not
6091as a draft) by the Free Software Foundation.
6092
6093
6094ADDENDUM: How to use this License for your documents
6095
6096To use this License in a document you have written, include a copy of
6097the License in the document and put the following copyright and
6098license notices just after the title page:
6099
6100@smallexample
6101    Copyright (c)  YEAR  YOUR NAME.
6102    Permission is granted to copy, distribute and/or modify this document
6103    under the terms of the GNU Free Documentation License, Version 1.1
6104    or any later version published by the Free Software Foundation;
6105    with the Invariant Sections being LIST THEIR TITLES, with the
6106    Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
6107    A copy of the license is included in the section entitled "GNU
6108    Free Documentation License".
6109@end smallexample
6110
6111If you have no Invariant Sections, write "with no Invariant Sections"
6112instead of saying which ones are invariant.  If you have no
6113Front-Cover Texts, write "no Front-Cover Texts" instead of
6114"Front-Cover Texts being LIST"; likewise for Back-Cover Texts.
6115
6116If your document contains nontrivial examples of program code, we
6117recommend releasing these examples in parallel under your choice of
6118free software license, such as the GNU General Public License,
6119to permit their use in free software.
6120
6121@node Index
6122@unnumbered Index
6123
6124@printindex cp
6125
6126@contents
6127@bye
6128@c Local Variables:
6129@c fill-column: 79
6130@c End:
6131