@c Copyright (C) 1996, 1998, 1999, 2000 Free Software Foundation, Inc. @c This is part of the GAS manual. @c For copying conditions, see the file as.texinfo. @ifset GENERIC @page @node ARM-Dependent @chapter ARM Dependent Features @end ifset @ifclear GENERIC @node Machine Dependencies @chapter ARM Dependent Features @end ifclear @cindex ARM support @cindex Thumb support @menu * ARM Options:: Options * ARM Syntax:: Syntax * ARM Floating Point:: Floating Point * ARM Directives:: ARM Machine Directives * ARM Opcodes:: Opcodes @end menu @node ARM Options @section Options @cindex ARM options (none) @cindex options for ARM (none) @table @code @cindex @code{-marm} command line option, ARM @item -marm@code{[2|250|3|6|60|600|610|620|7|7m|7d|7dm|7di|7dmi|70|700|700i|710|710c|7100|7500|7500fe|7tdmi|8|810|9|9tdmi|920|strongarm|strongarm110|strongarm1100]} @itemx -mxscale This option specifies the target processor. The assembler will issue an error message if an attempt is made to assemble an instruction which will not execute on the target processor. @cindex @code{-marmv} command line option, ARM @item -marmv@code{[2|2a|3|3m|4|4t|5|5t|5te]} This option specifies the target architecture. The assembler will issue an error message if an attempt is made to assemble an instruction which will not execute on the target architecture. The option @code{-marmv5te} specifies that v5t architecture should be used with the El Segundo extensions enabled. @cindex @code{-mthumb} command line option, ARM @item -mthumb This option specifies that only Thumb instructions should be assembled. @cindex @code{-mall} command line option, ARM @item -mall This option specifies that any Arm or Thumb instruction should be assembled. @cindex @code{-mfpa} command line option, ARM @item -mfpa @code{[10|11]} This option specifies the floating point architecture in use on the target processor. @cindex @code{-mfpe-old} command line option, ARM @item -mfpe-old Do not allow the assembly of floating point multiple instructions. @cindex @code{-mno-fpu} command line option, ARM @item -mno-fpu Do not allow the assembly of any floating point instructions. @cindex @code{-mthumb-interwork} command line option, ARM @item -mthumb-interwork This option specifies that the output generated by the assembler should be marked as supporting interworking. @cindex @code{-mapcs} command line option, ARM @item -mapcs @code{[26|32]} This option specifies that the output generated by the assembler should be marked as supporting the indicated version of the Arm Procedure. Calling Standard. @cindex @code{-matpcs} command line option, ARM @item -matpcs This option specifies that the output generated by the assembler should be marked as supporting the Arm/Thumb Procedure Calling Standard. If enabled this option will cause the assembler to create an empty debugging section in the object file called .arm.atpcs. Debuggers can use this to determine the ABI being used by. @cindex @code{-mapcs-float} command line option, ARM @item -mapcs-float This indicates the the floating point variant of the APCS should be used. In this variant floating point arguments are passed in FP registers rather than integer registers. @cindex @code{-mapcs-reentrant} command line option, ARM @item -mapcs-reentrant This indicates that the reentrant variant of the APCS should be used. This variant supports position independent code. @cindex @code{-EB} command line option, ARM @item -EB This option specifies that the output generated by the assembler should be marked as being encoded for a big-endian processor. @cindex @code{-EL} command line option, ARM @item -EL This option specifies that the output generated by the assembler should be marked as being encoded for a little-endian processor. @cindex @code{-k} command line option, ARM @cindex PIC code generation for ARM @item -k This option specifies that the output of the assembler should be marked as position-independent code (PIC). @cindex @code{-moabi} command line option, ARM @item -moabi This indicates that the code should be assembled using the old ARM ELF conventions, based on a beta release release of the ARM-ELF specifications, rather than the default conventions which are based on the final release of the ARM-ELF specifications. @end table @node ARM Syntax @section Syntax @menu * ARM-Chars:: Special Characters * ARM-Regs:: Register Names @end menu @node ARM-Chars @subsection Special Characters @cindex line comment character, ARM @cindex ARM line comment character The presence of a @samp{@@} on a line indicates the start of a comment that extends to the end of the current line. If a @samp{#} appears as the first character of a line, the whole line is treated as a comment. @cindex line separator, ARM @cindex statement separator, ARM @cindex ARM line separator The @samp{;} character can be used instead of a newline to separate statements. @cindex immediate character, ARM @cindex ARM immediate character Either @samp{#} or @samp{$} can be used to indicate immediate operands. @cindex identifiers, ARM @cindex ARM identifiers *TODO* Explain about /data modifier on symbols. @node ARM-Regs @subsection Register Names @cindex ARM register names @cindex register names, ARM *TODO* Explain about ARM register naming, and the predefined names. @node ARM Floating Point @section Floating Point @cindex floating point, ARM (@sc{ieee}) @cindex ARM floating point (@sc{ieee}) The ARM family uses @sc{ieee} floating-point numbers. @node ARM Directives @section ARM Machine Directives @cindex machine directives, ARM @cindex ARM machine directives @table @code @cindex @code{align} directive, ARM @item .align @var{expression} [, @var{expression}] This is the generic @var{.align} directive. For the ARM however if the first argument is zero (ie no alignment is needed) the assembler will behave as if the argument had been 2 (ie pad to the next four byte boundary). This is for compatability with ARM's own assembler. @cindex @code{req} directive, ARM @item @var{name} .req @var{register name} This creates an alias for @var{register name} called @var{name}. For example: @smallexample foo .req r0 @end smallexample @cindex @code{code} directive, ARM @item .code @code{[16|32]} This directive selects the instruction set being generated. The value 16 selects Thumb, with the value 32 selecting ARM. @cindex @code{thumb} directive, ARM @item .thumb This performs the same action as @var{.code 16}. @cindex @code{arm} directive, ARM @item .arm This performs the same action as @var{.code 32}. @cindex @code{force_thumb} directive, ARM @item .force_thumb This directive forces the selection of Thumb instructions, even if the target processor does not support those instructions @cindex @code{thumb_func} directive, ARM @item .thumb_func This directive specifies that the following symbol is the name of a Thumb encoded function. This information is necessary in order to allow the assembler and linker to generate correct code for interworking between Arm and Thumb instructions and should be used even if interworking is not going to be performed. The presence of this directive also implies @code{.thumb} @cindex @code{thumb_set} directive, ARM @item .thumb_set This performs the equivalent of a @code{.set} directive in that it creates a symbol which is an alias for another symbol (possibly not yet defined). This directive also has the added property in that it marks the aliased symbol as being a thumb function entry point, in the same way that the @code{.thumb_func} directive does. @cindex @code{.ltorg} directive, ARM @item .ltorg This directive causes the current contents of the literal pool to be dumped into the current section (which is assumed to be the .text section) at the current location (aligned to a word boundary). @cindex @code{.pool} directive, ARM @item .pool This is a synonym for .ltorg. @end table @node ARM Opcodes @section Opcodes @cindex ARM opcodes @cindex opcodes for ARM @code{@value{AS}} implements all the standard ARM opcodes. It also implements several pseudo opcodes, including several synthetic load instructions. @table @code @cindex @code{NOP} pseudo op, ARM @item NOP @smallexample nop @end smallexample This pseudo op will always evaluate to a legal ARM instruction that does nothing. Currently it will evaluate to MOV r0, r0. @cindex @code{LDR reg,=