📄 c-arm.texi
字号:
@c Copyright 1996, 1997, 1998, 1999, 2000, 2001@c 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 -mxscaleThis option specifies the target processor. The assembler will issue anerror message if an attempt is made to assemble an instruction whichwill 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 issuean error message if an attempt is made to assemble an instruction whichwill not execute on the target architecture.The option @code{-marmv5te} specifies that v5t architecture should beused with the El Segundo extensions enabled.@cindex @code{-mthumb} command line option, ARM@item -mthumbThis option specifies that only Thumb instructions should be assembled.@cindex @code{-mall} command line option, ARM@item -mallThis 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 thetarget processor. @cindex @code{-mfpe-old} command line option, ARM@item -mfpe-oldDo not allow the assembly of floating point multiple instructions.@cindex @code{-mno-fpu} command line option, ARM@item -mno-fpuDo not allow the assembly of any floating point instructions.@cindex @code{-mthumb-interwork} command line option, ARM@item -mthumb-interworkThis option specifies that the output generated by the assembler shouldbe 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 shouldbe marked as supporting the indicated version of the Arm Procedure.Calling Standard.@cindex @code{-matpcs} command line option, ARM@item -matpcsThis option specifies that the output generated by the assembler should be marked as supporting the Arm/Thumb Procedure Calling Standard. Ifenabled this option will cause the assembler to create an emptydebugging section in the object file called .arm.atpcs. Debuggers canuse this to determine the ABI being used by.@cindex @code{-mapcs-float} command line option, ARM@item -mapcs-floatThis indicates the the floating point variant of the APCS should beused. In this variant floating point arguments are passed in FPregisters rather than integer registers.@cindex @code{-mapcs-reentrant} command line option, ARM@item -mapcs-reentrantThis 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 -EBThis option specifies that the output generated by the assembler shouldbe marked as being encoded for a big-endian processor.@cindex @code{-EL} command line option, ARM@item -ELThis option specifies that the output generated by the assembler shouldbe marked as being encoded for a little-endian processor.@cindex @code{-k} command line option, ARM@cindex PIC code generation for ARM@item -kThis option specifies that the output of the assembler should be markedas position-independent code (PIC).@cindex @code{-moabi} command line option, ARM@item -moabiThis indicates that the code should be assembled using the old ARM ELFconventions, based on a beta release release of the ARM-ELFspecifications, rather than the default conventions which are based onthe 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 characterThe presence of a @samp{@@} on a line indicates the start of a commentthat extends to the end of the current line. If a @samp{#} appears asthe first character of a line, the whole line is treated as a comment.@cindex line separator, ARM@cindex statement separator, ARM@cindex ARM line separatorThe @samp{;} character can be used instead of a newline to separatestatements.@cindex immediate character, ARM@cindex ARM immediate characterEither @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 thefirst argument is zero (ie no alignment is needed) the assembler willbehave as if the argument had been 2 (ie pad to the next four byteboundary). 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}. Forexample:@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 16selects Thumb, with the value 32 selecting ARM.@cindex @code{thumb} directive, ARM@item .thumbThis performs the same action as @var{.code 16}.@cindex @code{arm} directive, ARM@item .armThis performs the same action as @var{.code 32}.@cindex @code{force_thumb} directive, ARM@item .force_thumbThis directive forces the selection of Thumb instructions, even if thetarget processor does not support those instructions@cindex @code{thumb_func} directive, ARM@item .thumb_funcThis directive specifies that the following symbol is the name of aThumb encoded function. This information is necessary in order to allowthe assembler and linker to generate correct code for interworkingbetween Arm and Thumb instructions and should be used even ifinterworking is not going to be performed. The presence of thisdirective also implies @code{.thumb}@cindex @code{thumb_set} directive, ARM@item .thumb_setThis performs the equivalent of a @code{.set} directive in that itcreates a symbol which is an alias for another symbol (possibly not yetdefined). This directive also has the added property in that it marksthe aliased symbol as being a thumb function entry point, in the sameway that the @code{.thumb_func} directive does.@cindex @code{.ltorg} directive, ARM@item .ltorgThis directive causes the current contents of the literal pool to bedumped into the current section (which is assumed to be the .textsection) at the current location (aligned to a word boundary).@cindex @code{.pool} directive, ARM@item .poolThis 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 alsoimplements several pseudo opcodes, including several synthetic loadinstructions. @table @code@cindex @code{NOP} pseudo op, ARM@item NOP@smallexample nop@end smallexampleThis pseudo op will always evaluate to a legal ARM instruction that doesnothing. Currently it will evaluate to MOV r0, r0.@cindex @code{LDR reg,=<label>} pseudo op, ARM@item LDR @smallexample ldr <register> , = <expression>@end smallexampleIf expression evaluates to a numeric constant then a MOV or MVNinstruction will be used in place of the LDR instruction, if theconstant can be generated by either of these instructions. Otherwisethe constant will be placed into the nearest literal pool (if it notalready there) and a PC relative LDR instruction will be generated.@cindex @code{ADR reg,<label>} pseudo op, ARM@item ADR@smallexample adr <register> <label>@end smallexampleThis instruction will load the address of @var{label} into the indicatedregister. The instruction will evaluate to a PC relative ADD or SUBinstruction depending upon where the label is located. If the label isout of range, or if it is not defined in the same file (and section) asthe ADR instruction, then an error will be generated. This instructionwill not make use of the literal pool.@cindex @code{ADRL reg,<label>} pseudo op, ARM@item ADRL @smallexample adrl <register> <label>@end smallexampleThis instruction will load the address of @var{label} into the indicatedregister. The instruction will evaluate to one or two PC relative ADDor SUB instructions depending upon where the label is located. If asecond instruction is not needed a NOP instruction will be generated inits place, so that this instruction is always 8 bytes long.If the label is out of range, or if it is not defined in the same file(and section) as the ADRL instruction, then an error will be generated.This instruction will not make use of the literal pool.@end tableFor information on the ARM or Thumb instruction sets, see @cite{ARMSoftware Development Toolkit Reference Manual}, Advanced RISC MachinesLtd.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -