aarch64-none-linux-gnu-as.1 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979
  1. .\" Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35)
  2. .\"
  3. .\" Standard preamble:
  4. .\" ========================================================================
  5. .de Sp \" Vertical space (when we can't use .PP)
  6. .if t .sp .5v
  7. .if n .sp
  8. ..
  9. .de Vb \" Begin verbatim text
  10. .ft CW
  11. .nf
  12. .ne \\$1
  13. ..
  14. .de Ve \" End verbatim text
  15. .ft R
  16. .fi
  17. ..
  18. .\" Set up some character translations and predefined strings. \*(-- will
  19. .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
  20. .\" double quote, and \*(R" will give a right double quote. \*(C+ will
  21. .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
  22. .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
  23. .\" nothing in troff, for use with C<>.
  24. .tr \(*W-
  25. .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
  26. .ie n \{\
  27. . ds -- \(*W-
  28. . ds PI pi
  29. . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
  30. . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
  31. . ds L" ""
  32. . ds R" ""
  33. . ds C` ""
  34. . ds C' ""
  35. 'br\}
  36. .el\{\
  37. . ds -- \|\(em\|
  38. . ds PI \(*p
  39. . ds L" ``
  40. . ds R" ''
  41. . ds C`
  42. . ds C'
  43. 'br\}
  44. .\"
  45. .\" Escape single quotes in literal strings from groff's Unicode transform.
  46. .ie \n(.g .ds Aq \(aq
  47. .el .ds Aq '
  48. .\"
  49. .\" If the F register is >0, we'll generate index entries on stderr for
  50. .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
  51. .\" entries marked with X<> in POD. Of course, you'll have to process the
  52. .\" output yourself in some meaningful fashion.
  53. .\"
  54. .\" Avoid warning from groff about undefined register 'F'.
  55. .de IX
  56. ..
  57. .if !\nF .nr F 0
  58. .if \nF>0 \{\
  59. . de IX
  60. . tm Index:\\$1\t\\n%\t"\\$2"
  61. ..
  62. . if !\nF==2 \{\
  63. . nr % 0
  64. . nr F 2
  65. . \}
  66. .\}
  67. .\"
  68. .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
  69. .\" Fear. Run. Save yourself. No user-serviceable parts.
  70. . \" fudge factors for nroff and troff
  71. .if n \{\
  72. . ds #H 0
  73. . ds #V .8m
  74. . ds #F .3m
  75. . ds #[ \f1
  76. . ds #] \fP
  77. .\}
  78. .if t \{\
  79. . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
  80. . ds #V .6m
  81. . ds #F 0
  82. . ds #[ \&
  83. . ds #] \&
  84. .\}
  85. . \" simple accents for nroff and troff
  86. .if n \{\
  87. . ds ' \&
  88. . ds ` \&
  89. . ds ^ \&
  90. . ds , \&
  91. . ds ~ ~
  92. . ds /
  93. .\}
  94. .if t \{\
  95. . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
  96. . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
  97. . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
  98. . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
  99. . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
  100. . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
  101. .\}
  102. . \" troff and (daisy-wheel) nroff accents
  103. .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
  104. .ds 8 \h'\*(#H'\(*b\h'-\*(#H'
  105. .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
  106. .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
  107. .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
  108. .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
  109. .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
  110. .ds ae a\h'-(\w'a'u*4/10)'e
  111. .ds Ae A\h'-(\w'A'u*4/10)'E
  112. . \" corrections for vroff
  113. .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
  114. .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
  115. . \" for low resolution devices (crt and lpr)
  116. .if \n(.H>23 .if \n(.V>19 \
  117. \{\
  118. . ds : e
  119. . ds 8 ss
  120. . ds o a
  121. . ds d- d\h'-1'\(ga
  122. . ds D- D\h'-1'\(hy
  123. . ds th \o'bp'
  124. . ds Th \o'LP'
  125. . ds ae ae
  126. . ds Ae AE
  127. .\}
  128. .rm #[ #] #H #V #F C
  129. .\" ========================================================================
  130. .\"
  131. .IX Title "AS 1"
  132. .TH AS 1 "2021-07-02" "binutils-2.36.1" "GNU Development Tools"
  133. .\" For nroff, turn off justification. Always turn off hyphenation; it makes
  134. .\" way too many mistakes in technical documents.
  135. .if n .ad l
  136. .nh
  137. .SH "NAME"
  138. AS \- the portable GNU assembler.
  139. .SH "SYNOPSIS"
  140. .IX Header "SYNOPSIS"
  141. as [\fB\-a\fR[\fBcdghlns\fR][=\fIfile\fR]] [\fB\-\-alternate\fR] [\fB\-D\fR]
  142. [\fB\-\-compress\-debug\-sections\fR] [\fB\-\-nocompress\-debug\-sections\fR]
  143. [\fB\-\-debug\-prefix\-map\fR \fIold\fR=\fInew\fR]
  144. [\fB\-\-defsym\fR \fIsym\fR=\fIval\fR] [\fB\-f\fR] [\fB\-g\fR] [\fB\-\-gstabs\fR]
  145. [\fB\-\-gstabs+\fR] [\fB\-\-gdwarf\-<N>\fR] [\fB\-\-gdwarf\-sections\fR]
  146. [\fB\-\-gdwarf\-cie\-version\fR=\fI\s-1VERSION\s0\fR]
  147. [\fB\-\-help\fR] [\fB\-I\fR \fIdir\fR] [\fB\-J\fR]
  148. [\fB\-K\fR] [\fB\-L\fR] [\fB\-\-listing\-lhs\-width\fR=\fI\s-1NUM\s0\fR]
  149. [\fB\-\-listing\-lhs\-width2\fR=\fI\s-1NUM\s0\fR] [\fB\-\-listing\-rhs\-width\fR=\fI\s-1NUM\s0\fR]
  150. [\fB\-\-listing\-cont\-lines\fR=\fI\s-1NUM\s0\fR] [\fB\-\-keep\-locals\fR]
  151. [\fB\-\-no\-pad\-sections\fR]
  152. [\fB\-o\fR \fIobjfile\fR] [\fB\-R\fR]
  153. [\fB\-\-statistics\fR]
  154. [\fB\-v\fR] [\fB\-version\fR] [\fB\-\-version\fR]
  155. [\fB\-W\fR] [\fB\-\-warn\fR] [\fB\-\-fatal\-warnings\fR] [\fB\-w\fR] [\fB\-x\fR]
  156. [\fB\-Z\fR] [\fB@\fR\fI\s-1FILE\s0\fR]
  157. [\fB\-\-sectname\-subst\fR] [\fB\-\-size\-check=[error|warning]\fR]
  158. [\fB\-\-elf\-stt\-common=[no|yes]\fR]
  159. [\fB\-\-generate\-missing\-build\-notes=[no|yes]\fR]
  160. [\fB\-\-target\-help\fR] [\fItarget-options\fR]
  161. [\fB\-\-\fR|\fIfiles\fR ...]
  162. .SH "TARGET"
  163. .IX Header "TARGET"
  164. \&\fITarget AArch64 options:\fR
  165. [\fB\-EB\fR|\fB\-EL\fR]
  166. [\fB\-mabi\fR=\fI\s-1ABI\s0\fR]
  167. .PP
  168. \&\fITarget Alpha options:\fR
  169. [\fB\-m\fR\fIcpu\fR]
  170. [\fB\-mdebug\fR | \fB\-no\-mdebug\fR]
  171. [\fB\-replace\fR | \fB\-noreplace\fR]
  172. [\fB\-relax\fR] [\fB\-g\fR] [\fB\-G\fR\fIsize\fR]
  173. [\fB\-F\fR] [\fB\-32addr\fR]
  174. .PP
  175. \&\fITarget \s-1ARC\s0 options:\fR
  176. [\fB\-mcpu=\fR\fIcpu\fR]
  177. [\fB\-mA6\fR|\fB\-mARC600\fR|\fB\-mARC601\fR|\fB\-mA7\fR|\fB\-mARC700\fR|\fB\-mEM\fR|\fB\-mHS\fR]
  178. [\fB\-mcode\-density\fR]
  179. [\fB\-mrelax\fR]
  180. [\fB\-EB\fR|\fB\-EL\fR]
  181. .PP
  182. \&\fITarget \s-1ARM\s0 options:\fR
  183. [\fB\-mcpu\fR=\fIprocessor\fR[+\fIextension\fR...]]
  184. [\fB\-march\fR=\fIarchitecture\fR[+\fIextension\fR...]]
  185. [\fB\-mfpu\fR=\fIfloating-point-format\fR]
  186. [\fB\-mfloat\-abi\fR=\fIabi\fR]
  187. [\fB\-meabi\fR=\fIver\fR]
  188. [\fB\-mthumb\fR]
  189. [\fB\-EB\fR|\fB\-EL\fR]
  190. [\fB\-mapcs\-32\fR|\fB\-mapcs\-26\fR|\fB\-mapcs\-float\fR|
  191. \fB\-mapcs\-reentrant\fR]
  192. [\fB\-mthumb\-interwork\fR] [\fB\-k\fR]
  193. .PP
  194. \&\fITarget Blackfin options:\fR
  195. [\fB\-mcpu\fR=\fIprocessor\fR[\-\fIsirevision\fR]]
  196. [\fB\-mfdpic\fR]
  197. [\fB\-mno\-fdpic\fR]
  198. [\fB\-mnopic\fR]
  199. .PP
  200. \&\fITarget \s-1BPF\s0 options:\fR
  201. [\fB\-EL\fR] [\fB\-EB\fR]
  202. .PP
  203. \&\fITarget \s-1CRIS\s0 options:\fR
  204. [\fB\-\-underscore\fR | \fB\-\-no\-underscore\fR]
  205. [\fB\-\-pic\fR] [\fB\-N\fR]
  206. [\fB\-\-emulation=criself\fR | \fB\-\-emulation=crisaout\fR]
  207. [\fB\-\-march=v0_v10\fR | \fB\-\-march=v10\fR | \fB\-\-march=v32\fR | \fB\-\-march=common_v10_v32\fR]
  208. .PP
  209. \&\fITarget C\-SKY options:\fR
  210. [\fB\-march=\fR\fIarch\fR] [\fB\-mcpu=\fR\fIcpu\fR]
  211. [\fB\-EL\fR] [\fB\-mlittle\-endian\fR] [\fB\-EB\fR] [\fB\-mbig\-endian\fR]
  212. [\fB\-fpic\fR] [\fB\-pic\fR]
  213. [\fB\-mljump\fR] [\fB\-mno\-ljump\fR]
  214. [\fB\-force2bsr\fR] [\fB\-mforce2bsr\fR] [\fB\-no\-force2bsr\fR] [\fB\-mno\-force2bsr\fR]
  215. [\fB\-jsri2bsr\fR] [\fB\-mjsri2bsr\fR] [\fB\-no\-jsri2bsr\fR ] [\fB\-mno\-jsri2bsr\fR]
  216. [\fB\-mnolrw\fR ] [\fB\-mno\-lrw\fR]
  217. [\fB\-melrw\fR] [\fB\-mno\-elrw\fR]
  218. [\fB\-mlaf\fR ] [\fB\-mliterals\-after\-func\fR]
  219. [\fB\-mno\-laf\fR] [\fB\-mno\-literals\-after\-func\fR]
  220. [\fB\-mlabr\fR] [\fB\-mliterals\-after\-br\fR]
  221. [\fB\-mno\-labr\fR] [\fB\-mnoliterals\-after\-br\fR]
  222. [\fB\-mistack\fR] [\fB\-mno\-istack\fR]
  223. [\fB\-mhard\-float\fR] [\fB\-mmp\fR] [\fB\-mcp\fR] [\fB\-mcache\fR]
  224. [\fB\-msecurity\fR] [\fB\-mtrust\fR]
  225. [\fB\-mdsp\fR] [\fB\-medsp\fR] [\fB\-mvdsp\fR]
  226. .PP
  227. \&\fITarget D10V options:\fR
  228. [\fB\-O\fR]
  229. .PP
  230. \&\fITarget D30V options:\fR
  231. [\fB\-O\fR|\fB\-n\fR|\fB\-N\fR]
  232. .PP
  233. \&\fITarget \s-1EPIPHANY\s0 options:\fR
  234. [\fB\-mepiphany\fR|\fB\-mepiphany16\fR]
  235. .PP
  236. \&\fITarget H8/300 options:\fR
  237. [\-h\-tick\-hex]
  238. .PP
  239. \&\fITarget i386 options:\fR
  240. [\fB\-\-32\fR|\fB\-\-x32\fR|\fB\-\-64\fR] [\fB\-n\fR]
  241. [\fB\-march\fR=\fI\s-1CPU\s0\fR[+\fI\s-1EXTENSION\s0\fR...]] [\fB\-mtune\fR=\fI\s-1CPU\s0\fR]
  242. .PP
  243. \&\fITarget \s-1IA\-64\s0 options:\fR
  244. [\fB\-mconstant\-gp\fR|\fB\-mauto\-pic\fR]
  245. [\fB\-milp32\fR|\fB\-milp64\fR|\fB\-mlp64\fR|\fB\-mp64\fR]
  246. [\fB\-mle\fR|\fBmbe\fR]
  247. [\fB\-mtune=itanium1\fR|\fB\-mtune=itanium2\fR]
  248. [\fB\-munwind\-check=warning\fR|\fB\-munwind\-check=error\fR]
  249. [\fB\-mhint.b=ok\fR|\fB\-mhint.b=warning\fR|\fB\-mhint.b=error\fR]
  250. [\fB\-x\fR|\fB\-xexplicit\fR] [\fB\-xauto\fR] [\fB\-xdebug\fR]
  251. .PP
  252. \&\fITarget \s-1IP2K\s0 options:\fR
  253. [\fB\-mip2022\fR|\fB\-mip2022ext\fR]
  254. .PP
  255. \&\fITarget M32C options:\fR
  256. [\fB\-m32c\fR|\fB\-m16c\fR] [\-relax] [\-h\-tick\-hex]
  257. .PP
  258. \&\fITarget M32R options:\fR
  259. [\fB\-\-m32rx\fR|\fB\-\-[no\-]warn\-explicit\-parallel\-conflicts\fR|
  260. \fB\-\-W[n]p\fR]
  261. .PP
  262. \&\fITarget M680X0 options:\fR
  263. [\fB\-l\fR] [\fB\-m68000\fR|\fB\-m68010\fR|\fB\-m68020\fR|...]
  264. .PP
  265. \&\fITarget M68HC11 options:\fR
  266. [\fB\-m68hc11\fR|\fB\-m68hc12\fR|\fB\-m68hcs12\fR|\fB\-mm9s12x\fR|\fB\-mm9s12xg\fR]
  267. [\fB\-mshort\fR|\fB\-mlong\fR]
  268. [\fB\-mshort\-double\fR|\fB\-mlong\-double\fR]
  269. [\fB\-\-force\-long\-branches\fR] [\fB\-\-short\-branches\fR]
  270. [\fB\-\-strict\-direct\-mode\fR] [\fB\-\-print\-insn\-syntax\fR]
  271. [\fB\-\-print\-opcodes\fR] [\fB\-\-generate\-example\fR]
  272. .PP
  273. \&\fITarget \s-1MCORE\s0 options:\fR
  274. [\fB\-jsri2bsr\fR] [\fB\-sifilter\fR] [\fB\-relax\fR]
  275. [\fB\-mcpu=[210|340]\fR]
  276. .PP
  277. \&\fITarget Meta options:\fR
  278. [\fB\-mcpu=\fR\fIcpu\fR] [\fB\-mfpu=\fR\fIcpu\fR] [\fB\-mdsp=\fR\fIcpu\fR]
  279. \&\fITarget \s-1MICROBLAZE\s0 options:\fR
  280. .PP
  281. \&\fITarget \s-1MIPS\s0 options:\fR
  282. [\fB\-nocpp\fR] [\fB\-EL\fR] [\fB\-EB\fR] [\fB\-O\fR[\fIoptimization level\fR]]
  283. [\fB\-g\fR[\fIdebug level\fR]] [\fB\-G\fR \fInum\fR] [\fB\-KPIC\fR] [\fB\-call_shared\fR]
  284. [\fB\-non_shared\fR] [\fB\-xgot\fR [\fB\-mvxworks\-pic\fR]
  285. [\fB\-mabi\fR=\fI\s-1ABI\s0\fR] [\fB\-32\fR] [\fB\-n32\fR] [\fB\-64\fR] [\fB\-mfp32\fR] [\fB\-mgp32\fR]
  286. [\fB\-mfp64\fR] [\fB\-mgp64\fR] [\fB\-mfpxx\fR]
  287. [\fB\-modd\-spreg\fR] [\fB\-mno\-odd\-spreg\fR]
  288. [\fB\-march\fR=\fI\s-1CPU\s0\fR] [\fB\-mtune\fR=\fI\s-1CPU\s0\fR] [\fB\-mips1\fR] [\fB\-mips2\fR]
  289. [\fB\-mips3\fR] [\fB\-mips4\fR] [\fB\-mips5\fR] [\fB\-mips32\fR] [\fB\-mips32r2\fR]
  290. [\fB\-mips32r3\fR] [\fB\-mips32r5\fR] [\fB\-mips32r6\fR] [\fB\-mips64\fR] [\fB\-mips64r2\fR]
  291. [\fB\-mips64r3\fR] [\fB\-mips64r5\fR] [\fB\-mips64r6\fR]
  292. [\fB\-construct\-floats\fR] [\fB\-no\-construct\-floats\fR]
  293. [\fB\-mignore\-branch\-isa\fR] [\fB\-mno\-ignore\-branch\-isa\fR]
  294. [\fB\-mnan=\fR\fIencoding\fR]
  295. [\fB\-trap\fR] [\fB\-no\-break\fR] [\fB\-break\fR] [\fB\-no\-trap\fR]
  296. [\fB\-mips16\fR] [\fB\-no\-mips16\fR]
  297. [\fB\-mmips16e2\fR] [\fB\-mno\-mips16e2\fR]
  298. [\fB\-mmicromips\fR] [\fB\-mno\-micromips\fR]
  299. [\fB\-msmartmips\fR] [\fB\-mno\-smartmips\fR]
  300. [\fB\-mips3d\fR] [\fB\-no\-mips3d\fR]
  301. [\fB\-mdmx\fR] [\fB\-no\-mdmx\fR]
  302. [\fB\-mdsp\fR] [\fB\-mno\-dsp\fR]
  303. [\fB\-mdspr2\fR] [\fB\-mno\-dspr2\fR]
  304. [\fB\-mdspr3\fR] [\fB\-mno\-dspr3\fR]
  305. [\fB\-mmsa\fR] [\fB\-mno\-msa\fR]
  306. [\fB\-mxpa\fR] [\fB\-mno\-xpa\fR]
  307. [\fB\-mmt\fR] [\fB\-mno\-mt\fR]
  308. [\fB\-mmcu\fR] [\fB\-mno\-mcu\fR]
  309. [\fB\-mcrc\fR] [\fB\-mno\-crc\fR]
  310. [\fB\-mginv\fR] [\fB\-mno\-ginv\fR]
  311. [\fB\-mloongson\-mmi\fR] [\fB\-mno\-loongson\-mmi\fR]
  312. [\fB\-mloongson\-cam\fR] [\fB\-mno\-loongson\-cam\fR]
  313. [\fB\-mloongson\-ext\fR] [\fB\-mno\-loongson\-ext\fR]
  314. [\fB\-mloongson\-ext2\fR] [\fB\-mno\-loongson\-ext2\fR]
  315. [\fB\-minsn32\fR] [\fB\-mno\-insn32\fR]
  316. [\fB\-mfix7000\fR] [\fB\-mno\-fix7000\fR]
  317. [\fB\-mfix\-rm7000\fR] [\fB\-mno\-fix\-rm7000\fR]
  318. [\fB\-mfix\-vr4120\fR] [\fB\-mno\-fix\-vr4120\fR]
  319. [\fB\-mfix\-vr4130\fR] [\fB\-mno\-fix\-vr4130\fR]
  320. [\fB\-mfix\-r5900\fR] [\fB\-mno\-fix\-r5900\fR]
  321. [\fB\-mdebug\fR] [\fB\-no\-mdebug\fR]
  322. [\fB\-mpdr\fR] [\fB\-mno\-pdr\fR]
  323. .PP
  324. \&\fITarget \s-1MMIX\s0 options:\fR
  325. [\fB\-\-fixed\-special\-register\-names\fR] [\fB\-\-globalize\-symbols\fR]
  326. [\fB\-\-gnu\-syntax\fR] [\fB\-\-relax\fR] [\fB\-\-no\-predefined\-symbols\fR]
  327. [\fB\-\-no\-expand\fR] [\fB\-\-no\-merge\-gregs\fR] [\fB\-x\fR]
  328. [\fB\-\-linker\-allocated\-gregs\fR]
  329. .PP
  330. \&\fITarget Nios \s-1II\s0 options:\fR
  331. [\fB\-relax\-all\fR] [\fB\-relax\-section\fR] [\fB\-no\-relax\fR]
  332. [\fB\-EB\fR] [\fB\-EL\fR]
  333. .PP
  334. \&\fITarget \s-1NDS32\s0 options:\fR
  335. [\fB\-EL\fR] [\fB\-EB\fR] [\fB\-O\fR] [\fB\-Os\fR] [\fB\-mcpu=\fR\fIcpu\fR]
  336. [\fB\-misa=\fR\fIisa\fR] [\fB\-mabi=\fR\fIabi\fR] [\fB\-mall\-ext\fR]
  337. [\fB\-m[no\-]16\-bit\fR] [\fB\-m[no\-]perf\-ext\fR] [\fB\-m[no\-]perf2\-ext\fR]
  338. [\fB\-m[no\-]string\-ext\fR] [\fB\-m[no\-]dsp\-ext\fR] [\fB\-m[no\-]mac\fR] [\fB\-m[no\-]div\fR]
  339. [\fB\-m[no\-]audio\-isa\-ext\fR] [\fB\-m[no\-]fpu\-sp\-ext\fR] [\fB\-m[no\-]fpu\-dp\-ext\fR]
  340. [\fB\-m[no\-]fpu\-fma\fR] [\fB\-mfpu\-freg=\fR\fI\s-1FREG\s0\fR] [\fB\-mreduced\-regs\fR]
  341. [\fB\-mfull\-regs\fR] [\fB\-m[no\-]dx\-regs\fR] [\fB\-mpic\fR] [\fB\-mno\-relax\fR]
  342. [\fB\-mb2bb\fR]
  343. .PP
  344. \&\fITarget \s-1PDP11\s0 options:\fR
  345. [\fB\-mpic\fR|\fB\-mno\-pic\fR] [\fB\-mall\fR] [\fB\-mno\-extensions\fR]
  346. [\fB\-m\fR\fIextension\fR|\fB\-mno\-\fR\fIextension\fR]
  347. [\fB\-m\fR\fIcpu\fR] [\fB\-m\fR\fImachine\fR]
  348. .PP
  349. \&\fITarget picoJava options:\fR
  350. [\fB\-mb\fR|\fB\-me\fR]
  351. .PP
  352. \&\fITarget PowerPC options:\fR
  353. [\fB\-a32\fR|\fB\-a64\fR]
  354. [\fB\-mpwrx\fR|\fB\-mpwr2\fR|\fB\-mpwr\fR|\fB\-m601\fR|\fB\-mppc\fR|\fB\-mppc32\fR|\fB\-m603\fR|\fB\-m604\fR|\fB\-m403\fR|\fB\-m405\fR|
  355. \fB\-m440\fR|\fB\-m464\fR|\fB\-m476\fR|\fB\-m7400\fR|\fB\-m7410\fR|\fB\-m7450\fR|\fB\-m7455\fR|\fB\-m750cl\fR|\fB\-mgekko\fR|
  356. \fB\-mbroadway\fR|\fB\-mppc64\fR|\fB\-m620\fR|\fB\-me500\fR|\fB\-e500x2\fR|\fB\-me500mc\fR|\fB\-me500mc64\fR|\fB\-me5500\fR|
  357. \fB\-me6500\fR|\fB\-mppc64bridge\fR|\fB\-mbooke\fR|\fB\-mpower4\fR|\fB\-mpwr4\fR|\fB\-mpower5\fR|\fB\-mpwr5\fR|\fB\-mpwr5x\fR|
  358. \fB\-mpower6\fR|\fB\-mpwr6\fR|\fB\-mpower7\fR|\fB\-mpwr7\fR|\fB\-mpower8\fR|\fB\-mpwr8\fR|\fB\-mpower9\fR|\fB\-mpwr9\fR\fB\-ma2\fR|
  359. \fB\-mcell\fR|\fB\-mspe\fR|\fB\-mspe2\fR|\fB\-mtitan\fR|\fB\-me300\fR|\fB\-mcom\fR]
  360. [\fB\-many\fR] [\fB\-maltivec\fR|\fB\-mvsx\fR|\fB\-mhtm\fR|\fB\-mvle\fR]
  361. [\fB\-mregnames\fR|\fB\-mno\-regnames\fR]
  362. [\fB\-mrelocatable\fR|\fB\-mrelocatable\-lib\fR|\fB\-K \s-1PIC\s0\fR] [\fB\-memb\fR]
  363. [\fB\-mlittle\fR|\fB\-mlittle\-endian\fR|\fB\-le\fR|\fB\-mbig\fR|\fB\-mbig\-endian\fR|\fB\-be\fR]
  364. [\fB\-msolaris\fR|\fB\-mno\-solaris\fR]
  365. [\fB\-nops=\fR\fIcount\fR]
  366. .PP
  367. \&\fITarget \s-1PRU\s0 options:\fR
  368. [\fB\-link\-relax\fR]
  369. [\fB\-mnolink\-relax\fR]
  370. [\fB\-mno\-warn\-regname\-label\fR]
  371. .PP
  372. \&\fITarget RISC-V options:\fR
  373. [\fB\-fpic\fR|\fB\-fPIC\fR|\fB\-fno\-pic\fR]
  374. [\fB\-march\fR=\fI\s-1ISA\s0\fR]
  375. [\fB\-mabi\fR=\fI\s-1ABI\s0\fR]
  376. [\fB\-mlittle\-endian\fR|\fB\-mbig\-endian\fR]
  377. .PP
  378. \&\fITarget \s-1RL78\s0 options:\fR
  379. [\fB\-mg10\fR]
  380. [\fB\-m32bit\-doubles\fR|\fB\-m64bit\-doubles\fR]
  381. .PP
  382. \&\fITarget \s-1RX\s0 options:\fR
  383. [\fB\-mlittle\-endian\fR|\fB\-mbig\-endian\fR]
  384. [\fB\-m32bit\-doubles\fR|\fB\-m64bit\-doubles\fR]
  385. [\fB\-muse\-conventional\-section\-names\fR]
  386. [\fB\-msmall\-data\-limit\fR]
  387. [\fB\-mpid\fR]
  388. [\fB\-mrelax\fR]
  389. [\fB\-mint\-register=\fR\fInumber\fR]
  390. [\fB\-mgcc\-abi\fR|\fB\-mrx\-abi\fR]
  391. .PP
  392. \&\fITarget s390 options:\fR
  393. [\fB\-m31\fR|\fB\-m64\fR] [\fB\-mesa\fR|\fB\-mzarch\fR] [\fB\-march\fR=\fI\s-1CPU\s0\fR]
  394. [\fB\-mregnames\fR|\fB\-mno\-regnames\fR]
  395. [\fB\-mwarn\-areg\-zero\fR]
  396. .PP
  397. \&\fITarget \s-1SCORE\s0 options:\fR
  398. [\fB\-EB\fR][\fB\-EL\fR][\fB\-FIXDD\fR][\fB\-NWARN\fR]
  399. [\fB\-SCORE5\fR][\fB\-SCORE5U\fR][\fB\-SCORE7\fR][\fB\-SCORE3\fR]
  400. [\fB\-march=score7\fR][\fB\-march=score3\fR]
  401. [\fB\-USE_R1\fR][\fB\-KPIC\fR][\fB\-O0\fR][\fB\-G\fR \fInum\fR][\fB\-V\fR]
  402. .PP
  403. \&\fITarget \s-1SPARC\s0 options:\fR
  404. [\fB\-Av6\fR|\fB\-Av7\fR|\fB\-Av8\fR|\fB\-Aleon\fR|\fB\-Asparclet\fR|\fB\-Asparclite\fR
  405. \fB\-Av8plus\fR|\fB\-Av8plusa\fR|\fB\-Av8plusb\fR|\fB\-Av8plusc\fR|\fB\-Av8plusd\fR
  406. \fB\-Av8plusv\fR|\fB\-Av8plusm\fR|\fB\-Av9\fR|\fB\-Av9a\fR|\fB\-Av9b\fR|\fB\-Av9c\fR
  407. \fB\-Av9d\fR|\fB\-Av9e\fR|\fB\-Av9v\fR|\fB\-Av9m\fR|\fB\-Asparc\fR|\fB\-Asparcvis\fR
  408. \fB\-Asparcvis2\fR|\fB\-Asparcfmaf\fR|\fB\-Asparcima\fR|\fB\-Asparcvis3\fR
  409. \fB\-Asparcvisr\fR|\fB\-Asparc5\fR]
  410. [\fB\-xarch=v8plus\fR|\fB\-xarch=v8plusa\fR]|\fB\-xarch=v8plusb\fR|\fB\-xarch=v8plusc\fR
  411. \fB\-xarch=v8plusd\fR|\fB\-xarch=v8plusv\fR|\fB\-xarch=v8plusm\fR|\fB\-xarch=v9\fR
  412. \fB\-xarch=v9a\fR|\fB\-xarch=v9b\fR|\fB\-xarch=v9c\fR|\fB\-xarch=v9d\fR|\fB\-xarch=v9e\fR
  413. \fB\-xarch=v9v\fR|\fB\-xarch=v9m\fR|\fB\-xarch=sparc\fR|\fB\-xarch=sparcvis\fR
  414. \fB\-xarch=sparcvis2\fR|\fB\-xarch=sparcfmaf\fR|\fB\-xarch=sparcima\fR
  415. \fB\-xarch=sparcvis3\fR|\fB\-xarch=sparcvisr\fR|\fB\-xarch=sparc5\fR
  416. \fB\-bump\fR]
  417. [\fB\-32\fR|\fB\-64\fR]
  418. [\fB\-\-enforce\-aligned\-data\fR][\fB\-\-dcti\-couples\-detect\fR]
  419. .PP
  420. \&\fITarget \s-1TIC54X\s0 options:\fR
  421. [\fB\-mcpu=54[123589]\fR|\fB\-mcpu=54[56]lp\fR] [\fB\-mfar\-mode\fR|\fB\-mf\fR]
  422. [\fB\-merrors\-to\-file\fR \fI<filename>\fR|\fB\-me\fR \fI<filename>\fR]
  423. .PP
  424. \&\fITarget \s-1TIC6X\s0 options:\fR
  425. [\fB\-march=\fR\fIarch\fR] [\fB\-mbig\-endian\fR|\fB\-mlittle\-endian\fR]
  426. [\fB\-mdsbt\fR|\fB\-mno\-dsbt\fR] [\fB\-mpid=no\fR|\fB\-mpid=near\fR|\fB\-mpid=far\fR]
  427. [\fB\-mpic\fR|\fB\-mno\-pic\fR]
  428. .PP
  429. \&\fITarget TILE-Gx options:\fR
  430. [\fB\-m32\fR|\fB\-m64\fR][\fB\-EB\fR][\fB\-EL\fR]
  431. .PP
  432. \&\fITarget Visium options:\fR
  433. [\fB\-mtune=\fR\fIarch\fR]
  434. .PP
  435. \&\fITarget Xtensa options:\fR
  436. [\fB\-\-[no\-]text\-section\-literals\fR] [\fB\-\-[no\-]auto\-litpools\fR]
  437. [\fB\-\-[no\-]absolute\-literals\fR]
  438. [\fB\-\-[no\-]target\-align\fR] [\fB\-\-[no\-]longcalls\fR]
  439. [\fB\-\-[no\-]transform\fR]
  440. [\fB\-\-rename\-section\fR \fIoldname\fR=\fInewname\fR]
  441. [\fB\-\-[no\-]trampolines\fR]
  442. [\fB\-\-abi\-windowed\fR|\fB\-\-abi\-call0\fR]
  443. .PP
  444. \&\fITarget Z80 options:\fR
  445. [\fB\-march=\fR\fI\s-1CPU\s0\fR\fI[\-EXT]\fR\fI[+EXT]\fR]
  446. [\fB\-local\-prefix=\fR\fI\s-1PREFIX\s0\fR]
  447. [\fB\-colonless\fR]
  448. [\fB\-sdcc\fR]
  449. [\fB\-fp\-s=\fR\fI\s-1FORMAT\s0\fR]
  450. [\fB\-fp\-d=\fR\fI\s-1FORMAT\s0\fR]
  451. .SH "DESCRIPTION"
  452. .IX Header "DESCRIPTION"
  453. \&\s-1GNU\s0 \fBas\fR is really a family of assemblers.
  454. If you use (or have used) the \s-1GNU\s0 assembler on one architecture, you
  455. should find a fairly similar environment when you use it on another
  456. architecture. Each version has much in common with the others,
  457. including object file formats, most assembler directives (often called
  458. \&\fIpseudo-ops\fR) and assembler syntax.
  459. .PP
  460. \&\fBas\fR is primarily intended to assemble the output of the
  461. \&\s-1GNU C\s0 compiler \f(CW\*(C`gcc\*(C'\fR for use by the linker
  462. \&\f(CW\*(C`ld\*(C'\fR. Nevertheless, we've tried to make \fBas\fR
  463. assemble correctly everything that other assemblers for the same
  464. machine would assemble.
  465. Any exceptions are documented explicitly.
  466. This doesn't mean \fBas\fR always uses the same syntax as another
  467. assembler for the same architecture; for example, we know of several
  468. incompatible versions of 680x0 assembly language syntax.
  469. .PP
  470. Each time you run \fBas\fR it assembles exactly one source
  471. program. The source program is made up of one or more files.
  472. (The standard input is also a file.)
  473. .PP
  474. You give \fBas\fR a command line that has zero or more input file
  475. names. The input files are read (from left file name to right). A
  476. command-line argument (in any position) that has no special meaning
  477. is taken to be an input file name.
  478. .PP
  479. If you give \fBas\fR no file names it attempts to read one input file
  480. from the \fBas\fR standard input, which is normally your terminal. You
  481. may have to type \fBctl-D\fR to tell \fBas\fR there is no more program
  482. to assemble.
  483. .PP
  484. Use \fB\-\-\fR if you need to explicitly name the standard input file
  485. in your command line.
  486. .PP
  487. If the source is empty, \fBas\fR produces a small, empty object
  488. file.
  489. .PP
  490. \&\fBas\fR may write warnings and error messages to the standard error
  491. file (usually your terminal). This should not happen when a compiler
  492. runs \fBas\fR automatically. Warnings report an assumption made so
  493. that \fBas\fR could keep assembling a flawed program; errors report a
  494. grave problem that stops the assembly.
  495. .PP
  496. If you are invoking \fBas\fR via the \s-1GNU C\s0 compiler,
  497. you can use the \fB\-Wa\fR option to pass arguments through to the assembler.
  498. The assembler arguments must be separated from each other (and the \fB\-Wa\fR)
  499. by commas. For example:
  500. .PP
  501. .Vb 1
  502. \& gcc \-c \-g \-O \-Wa,\-alh,\-L file.c
  503. .Ve
  504. .PP
  505. This passes two options to the assembler: \fB\-alh\fR (emit a listing to
  506. standard output with high-level and assembly source) and \fB\-L\fR (retain
  507. local symbols in the symbol table).
  508. .PP
  509. Usually you do not need to use this \fB\-Wa\fR mechanism, since many compiler
  510. command-line options are automatically passed to the assembler by the compiler.
  511. (You can call the \s-1GNU\s0 compiler driver with the \fB\-v\fR option to see
  512. precisely what options it passes to each compilation pass, including the
  513. assembler.)
  514. .SH "OPTIONS"
  515. .IX Header "OPTIONS"
  516. .IP "\fB@\fR\fIfile\fR" 4
  517. .IX Item "@file"
  518. Read command-line options from \fIfile\fR. The options read are
  519. inserted in place of the original @\fIfile\fR option. If \fIfile\fR
  520. does not exist, or cannot be read, then the option will be treated
  521. literally, and not removed.
  522. .Sp
  523. Options in \fIfile\fR are separated by whitespace. A whitespace
  524. character may be included in an option by surrounding the entire
  525. option in either single or double quotes. Any character (including a
  526. backslash) may be included by prefixing the character to be included
  527. with a backslash. The \fIfile\fR may itself contain additional
  528. @\fIfile\fR options; any such options will be processed recursively.
  529. .IP "\fB\-a[cdghlmns]\fR" 4
  530. .IX Item "-a[cdghlmns]"
  531. Turn on listings, in any of a variety of ways:
  532. .RS 4
  533. .IP "\fB\-ac\fR" 4
  534. .IX Item "-ac"
  535. omit false conditionals
  536. .IP "\fB\-ad\fR" 4
  537. .IX Item "-ad"
  538. omit debugging directives
  539. .IP "\fB\-ag\fR" 4
  540. .IX Item "-ag"
  541. include general information, like as version and options passed
  542. .IP "\fB\-ah\fR" 4
  543. .IX Item "-ah"
  544. include high-level source
  545. .IP "\fB\-al\fR" 4
  546. .IX Item "-al"
  547. include assembly
  548. .IP "\fB\-am\fR" 4
  549. .IX Item "-am"
  550. include macro expansions
  551. .IP "\fB\-an\fR" 4
  552. .IX Item "-an"
  553. omit forms processing
  554. .IP "\fB\-as\fR" 4
  555. .IX Item "-as"
  556. include symbols
  557. .IP "\fB=file\fR" 4
  558. .IX Item "=file"
  559. set the name of the listing file
  560. .RE
  561. .RS 4
  562. .Sp
  563. You may combine these options; for example, use \fB\-aln\fR for assembly
  564. listing without forms processing. The \fB=file\fR option, if used, must be
  565. the last one. By itself, \fB\-a\fR defaults to \fB\-ahls\fR.
  566. .RE
  567. .IP "\fB\-\-alternate\fR" 4
  568. .IX Item "--alternate"
  569. Begin in alternate macro mode.
  570. .IP "\fB\-\-compress\-debug\-sections\fR" 4
  571. .IX Item "--compress-debug-sections"
  572. Compress \s-1DWARF\s0 debug sections using zlib with \s-1SHF_COMPRESSED\s0 from the
  573. \&\s-1ELF ABI.\s0 The resulting object file may not be compatible with older
  574. linkers and object file utilities. Note if compression would make a
  575. given section \fIlarger\fR then it is not compressed.
  576. .IP "\fB\-\-compress\-debug\-sections=none\fR" 4
  577. .IX Item "--compress-debug-sections=none"
  578. .PD 0
  579. .IP "\fB\-\-compress\-debug\-sections=zlib\fR" 4
  580. .IX Item "--compress-debug-sections=zlib"
  581. .IP "\fB\-\-compress\-debug\-sections=zlib\-gnu\fR" 4
  582. .IX Item "--compress-debug-sections=zlib-gnu"
  583. .IP "\fB\-\-compress\-debug\-sections=zlib\-gabi\fR" 4
  584. .IX Item "--compress-debug-sections=zlib-gabi"
  585. .PD
  586. These options control how \s-1DWARF\s0 debug sections are compressed.
  587. \&\fB\-\-compress\-debug\-sections=none\fR is equivalent to
  588. \&\fB\-\-nocompress\-debug\-sections\fR.
  589. \&\fB\-\-compress\-debug\-sections=zlib\fR and
  590. \&\fB\-\-compress\-debug\-sections=zlib\-gabi\fR are equivalent to
  591. \&\fB\-\-compress\-debug\-sections\fR.
  592. \&\fB\-\-compress\-debug\-sections=zlib\-gnu\fR compresses \s-1DWARF\s0 debug
  593. sections using zlib. The debug sections are renamed to begin with
  594. \&\fB.zdebug\fR. Note if compression would make a given section
  595. \&\fIlarger\fR then it is not compressed nor renamed.
  596. .IP "\fB\-\-nocompress\-debug\-sections\fR" 4
  597. .IX Item "--nocompress-debug-sections"
  598. Do not compress \s-1DWARF\s0 debug sections. This is usually the default for all
  599. targets except the x86/x86_64, but a configure time option can be used to
  600. override this.
  601. .IP "\fB\-D\fR" 4
  602. .IX Item "-D"
  603. Ignored. This option is accepted for script compatibility with calls to
  604. other assemblers.
  605. .IP "\fB\-\-debug\-prefix\-map\fR \fIold\fR\fB=\fR\fInew\fR" 4
  606. .IX Item "--debug-prefix-map old=new"
  607. When assembling files in directory \fI\fIold\fI\fR, record debugging
  608. information describing them as in \fI\fInew\fI\fR instead.
  609. .IP "\fB\-\-defsym\fR \fIsym\fR\fB=\fR\fIvalue\fR" 4
  610. .IX Item "--defsym sym=value"
  611. Define the symbol \fIsym\fR to be \fIvalue\fR before assembling the input file.
  612. \&\fIvalue\fR must be an integer constant. As in C, a leading \fB0x\fR
  613. indicates a hexadecimal value, and a leading \fB0\fR indicates an octal
  614. value. The value of the symbol can be overridden inside a source file via the
  615. use of a \f(CW\*(C`.set\*(C'\fR pseudo-op.
  616. .IP "\fB\-f\fR" 4
  617. .IX Item "-f"
  618. \&\*(L"fast\*(R"\-\-\-skip whitespace and comment preprocessing (assume source is
  619. compiler output).
  620. .IP "\fB\-g\fR" 4
  621. .IX Item "-g"
  622. .PD 0
  623. .IP "\fB\-\-gen\-debug\fR" 4
  624. .IX Item "--gen-debug"
  625. .PD
  626. Generate debugging information for each assembler source line using whichever
  627. debug format is preferred by the target. This currently means either \s-1STABS,
  628. ECOFF\s0 or \s-1DWARF2.\s0 When the debug format is \s-1DWARF\s0 then a \f(CW\*(C`.debug_info\*(C'\fR and
  629. \&\f(CW\*(C`.debug_line\*(C'\fR section is only emitted when the assembly file doesn't
  630. generate one itself.
  631. .IP "\fB\-\-gstabs\fR" 4
  632. .IX Item "--gstabs"
  633. Generate stabs debugging information for each assembler line. This
  634. may help debugging assembler code, if the debugger can handle it.
  635. .IP "\fB\-\-gstabs+\fR" 4
  636. .IX Item "--gstabs+"
  637. Generate stabs debugging information for each assembler line, with \s-1GNU\s0
  638. extensions that probably only gdb can handle, and that could make other
  639. debuggers crash or refuse to read your program. This
  640. may help debugging assembler code. Currently the only \s-1GNU\s0 extension is
  641. the location of the current working directory at assembling time.
  642. .IP "\fB\-\-gdwarf\-2\fR" 4
  643. .IX Item "--gdwarf-2"
  644. Generate \s-1DWARF2\s0 debugging information for each assembler line. This
  645. may help debugging assembler code, if the debugger can handle it. Note\-\-\-this
  646. option is only supported by some targets, not all of them.
  647. .IP "\fB\-\-gdwarf\-3\fR" 4
  648. .IX Item "--gdwarf-3"
  649. This option is the same as the \fB\-\-gdwarf\-2\fR option, except that it
  650. allows for the possibility of the generation of extra debug information as per
  651. version 3 of the \s-1DWARF\s0 specification. Note \- enabling this option does not
  652. guarantee the generation of any extra information, the choice to do so is on a
  653. per target basis.
  654. .IP "\fB\-\-gdwarf\-4\fR" 4
  655. .IX Item "--gdwarf-4"
  656. This option is the same as the \fB\-\-gdwarf\-2\fR option, except that it
  657. allows for the possibility of the generation of extra debug information as per
  658. version 4 of the \s-1DWARF\s0 specification. Note \- enabling this option does not
  659. guarantee the generation of any extra information, the choice to do so is on a
  660. per target basis.
  661. .IP "\fB\-\-gdwarf\-5\fR" 4
  662. .IX Item "--gdwarf-5"
  663. This option is the same as the \fB\-\-gdwarf\-2\fR option, except that it
  664. allows for the possibility of the generation of extra debug information as per
  665. version 5 of the \s-1DWARF\s0 specification. Note \- enabling this option does not
  666. guarantee the generation of any extra information, the choice to do so is on a
  667. per target basis.
  668. .IP "\fB\-\-gdwarf\-sections\fR" 4
  669. .IX Item "--gdwarf-sections"
  670. Instead of creating a .debug_line section, create a series of
  671. \&.debug_line.\fIfoo\fR sections where \fIfoo\fR is the name of the
  672. corresponding code section. For example a code section called \fI.text.func\fR
  673. will have its dwarf line number information placed into a section called
  674. \&\fI.debug_line.text.func\fR. If the code section is just called \fI.text\fR
  675. then debug line section will still be called just \fI.debug_line\fR without any
  676. suffix.
  677. .IP "\fB\-\-gdwarf\-cie\-version=\fR\fIversion\fR" 4
  678. .IX Item "--gdwarf-cie-version=version"
  679. Control which version of \s-1DWARF\s0 Common Information Entries (CIEs) are produced.
  680. When this flag is not specificed the default is version 1, though some targets
  681. can modify this default. Other possible values for \fIversion\fR are 3 or 4.
  682. .IP "\fB\-\-size\-check=error\fR" 4
  683. .IX Item "--size-check=error"
  684. .PD 0
  685. .IP "\fB\-\-size\-check=warning\fR" 4
  686. .IX Item "--size-check=warning"
  687. .PD
  688. Issue an error or warning for invalid \s-1ELF\s0 .size directive.
  689. .IP "\fB\-\-elf\-stt\-common=no\fR" 4
  690. .IX Item "--elf-stt-common=no"
  691. .PD 0
  692. .IP "\fB\-\-elf\-stt\-common=yes\fR" 4
  693. .IX Item "--elf-stt-common=yes"
  694. .PD
  695. These options control whether the \s-1ELF\s0 assembler should generate common
  696. symbols with the \f(CW\*(C`STT_COMMON\*(C'\fR type. The default can be controlled
  697. by a configure option \fB\-\-enable\-elf\-stt\-common\fR.
  698. .IP "\fB\-\-generate\-missing\-build\-notes=yes\fR" 4
  699. .IX Item "--generate-missing-build-notes=yes"
  700. .PD 0
  701. .IP "\fB\-\-generate\-missing\-build\-notes=no\fR" 4
  702. .IX Item "--generate-missing-build-notes=no"
  703. .PD
  704. These options control whether the \s-1ELF\s0 assembler should generate \s-1GNU\s0 Build
  705. attribute notes if none are present in the input sources.
  706. The default can be controlled by the \fB\-\-enable\-generate\-build\-notes\fR
  707. configure option.
  708. .IP "\fB\-\-help\fR" 4
  709. .IX Item "--help"
  710. Print a summary of the command-line options and exit.
  711. .IP "\fB\-\-target\-help\fR" 4
  712. .IX Item "--target-help"
  713. Print a summary of all target specific options and exit.
  714. .IP "\fB\-I\fR \fIdir\fR" 4
  715. .IX Item "-I dir"
  716. Add directory \fIdir\fR to the search list for \f(CW\*(C`.include\*(C'\fR directives.
  717. .IP "\fB\-J\fR" 4
  718. .IX Item "-J"
  719. Don't warn about signed overflow.
  720. .IP "\fB\-K\fR" 4
  721. .IX Item "-K"
  722. Issue warnings when difference tables altered for long displacements.
  723. .IP "\fB\-L\fR" 4
  724. .IX Item "-L"
  725. .PD 0
  726. .IP "\fB\-\-keep\-locals\fR" 4
  727. .IX Item "--keep-locals"
  728. .PD
  729. Keep (in the symbol table) local symbols. These symbols start with
  730. system-specific local label prefixes, typically \fB.L\fR for \s-1ELF\s0 systems
  731. or \fBL\fR for traditional a.out systems.
  732. .IP "\fB\-\-listing\-lhs\-width=\fR\fInumber\fR" 4
  733. .IX Item "--listing-lhs-width=number"
  734. Set the maximum width, in words, of the output data column for an assembler
  735. listing to \fInumber\fR.
  736. .IP "\fB\-\-listing\-lhs\-width2=\fR\fInumber\fR" 4
  737. .IX Item "--listing-lhs-width2=number"
  738. Set the maximum width, in words, of the output data column for continuation
  739. lines in an assembler listing to \fInumber\fR.
  740. .IP "\fB\-\-listing\-rhs\-width=\fR\fInumber\fR" 4
  741. .IX Item "--listing-rhs-width=number"
  742. Set the maximum width of an input source line, as displayed in a listing, to
  743. \&\fInumber\fR bytes.
  744. .IP "\fB\-\-listing\-cont\-lines=\fR\fInumber\fR" 4
  745. .IX Item "--listing-cont-lines=number"
  746. Set the maximum number of lines printed in a listing for a single line of input
  747. to \fInumber\fR + 1.
  748. .IP "\fB\-\-no\-pad\-sections\fR" 4
  749. .IX Item "--no-pad-sections"
  750. Stop the assembler for padding the ends of output sections to the alignment
  751. of that section. The default is to pad the sections, but this can waste space
  752. which might be needed on targets which have tight memory constraints.
  753. .IP "\fB\-o\fR \fIobjfile\fR" 4
  754. .IX Item "-o objfile"
  755. Name the object-file output from \fBas\fR \fIobjfile\fR.
  756. .IP "\fB\-R\fR" 4
  757. .IX Item "-R"
  758. Fold the data section into the text section.
  759. .IP "\fB\-\-sectname\-subst\fR" 4
  760. .IX Item "--sectname-subst"
  761. Honor substitution sequences in section names.
  762. .IP "\fB\-\-statistics\fR" 4
  763. .IX Item "--statistics"
  764. Print the maximum space (in bytes) and total time (in seconds) used by
  765. assembly.
  766. .IP "\fB\-\-strip\-local\-absolute\fR" 4
  767. .IX Item "--strip-local-absolute"
  768. Remove local absolute symbols from the outgoing symbol table.
  769. .IP "\fB\-v\fR" 4
  770. .IX Item "-v"
  771. .PD 0
  772. .IP "\fB\-version\fR" 4
  773. .IX Item "-version"
  774. .PD
  775. Print the \fBas\fR version.
  776. .IP "\fB\-\-version\fR" 4
  777. .IX Item "--version"
  778. Print the \fBas\fR version and exit.
  779. .IP "\fB\-W\fR" 4
  780. .IX Item "-W"
  781. .PD 0
  782. .IP "\fB\-\-no\-warn\fR" 4
  783. .IX Item "--no-warn"
  784. .PD
  785. Suppress warning messages.
  786. .IP "\fB\-\-fatal\-warnings\fR" 4
  787. .IX Item "--fatal-warnings"
  788. Treat warnings as errors.
  789. .IP "\fB\-\-warn\fR" 4
  790. .IX Item "--warn"
  791. Don't suppress warning messages or treat them as errors.
  792. .IP "\fB\-w\fR" 4
  793. .IX Item "-w"
  794. Ignored.
  795. .IP "\fB\-x\fR" 4
  796. .IX Item "-x"
  797. Ignored.
  798. .IP "\fB\-Z\fR" 4
  799. .IX Item "-Z"
  800. Generate an object file even after errors.
  801. .IP "\fB\-\- |\fR \fIfiles\fR \fB...\fR" 4
  802. .IX Item "-- | files ..."
  803. Standard input, or source files to assemble.
  804. .PP
  805. The following options are available when as is configured for the
  806. 64\-bit mode of the \s-1ARM\s0 Architecture (AArch64).
  807. .IP "\fB\-EB\fR" 4
  808. .IX Item "-EB"
  809. This option specifies that the output generated by the assembler should
  810. be marked as being encoded for a big-endian processor.
  811. .IP "\fB\-EL\fR" 4
  812. .IX Item "-EL"
  813. This option specifies that the output generated by the assembler should
  814. be marked as being encoded for a little-endian processor.
  815. .IP "\fB\-mabi=\fR\fIabi\fR" 4
  816. .IX Item "-mabi=abi"
  817. Specify which \s-1ABI\s0 the source code uses. The recognized arguments
  818. are: \f(CW\*(C`ilp32\*(C'\fR and \f(CW\*(C`lp64\*(C'\fR, which decides the generated object
  819. file in \s-1ELF32\s0 and \s-1ELF64\s0 format respectively. The default is \f(CW\*(C`lp64\*(C'\fR.
  820. .IP "\fB\-mcpu=\fR\fIprocessor\fR\fB[+\fR\fIextension\fR\fB...]\fR" 4
  821. .IX Item "-mcpu=processor[+extension...]"
  822. This option specifies the target processor. The assembler will issue an error
  823. message if an attempt is made to assemble an instruction which will not execute
  824. on the target processor. The following processor names are recognized:
  825. \&\f(CW\*(C`cortex\-a34\*(C'\fR,
  826. \&\f(CW\*(C`cortex\-a35\*(C'\fR,
  827. \&\f(CW\*(C`cortex\-a53\*(C'\fR,
  828. \&\f(CW\*(C`cortex\-a55\*(C'\fR,
  829. \&\f(CW\*(C`cortex\-a57\*(C'\fR,
  830. \&\f(CW\*(C`cortex\-a65\*(C'\fR,
  831. \&\f(CW\*(C`cortex\-a65ae\*(C'\fR,
  832. \&\f(CW\*(C`cortex\-a72\*(C'\fR,
  833. \&\f(CW\*(C`cortex\-a73\*(C'\fR,
  834. \&\f(CW\*(C`cortex\-a75\*(C'\fR,
  835. \&\f(CW\*(C`cortex\-a76\*(C'\fR,
  836. \&\f(CW\*(C`cortex\-a76ae\*(C'\fR,
  837. \&\f(CW\*(C`cortex\-a77\*(C'\fR,
  838. \&\f(CW\*(C`cortex\-a78\*(C'\fR,
  839. \&\f(CW\*(C`cortex\-a78ae\*(C'\fR,
  840. \&\f(CW\*(C`cortex\-a78c\*(C'\fR,
  841. \&\f(CW\*(C`ares\*(C'\fR,
  842. \&\f(CW\*(C`exynos\-m1\*(C'\fR,
  843. \&\f(CW\*(C`falkor\*(C'\fR,
  844. \&\f(CW\*(C`neoverse\-n1\*(C'\fR,
  845. \&\f(CW\*(C`neoverse\-n2\*(C'\fR,
  846. \&\f(CW\*(C`neoverse\-e1\*(C'\fR,
  847. \&\f(CW\*(C`neoverse\-v1\*(C'\fR,
  848. \&\f(CW\*(C`qdf24xx\*(C'\fR,
  849. \&\f(CW\*(C`saphira\*(C'\fR,
  850. \&\f(CW\*(C`thunderx\*(C'\fR,
  851. \&\f(CW\*(C`vulcan\*(C'\fR,
  852. \&\f(CW\*(C`xgene1\*(C'\fR
  853. \&\f(CW\*(C`xgene2\*(C'\fR,
  854. \&\f(CW\*(C`cortex\-r82\*(C'\fR,
  855. and
  856. \&\f(CW\*(C`cortex\-x1\*(C'\fR.
  857. The special name \f(CW\*(C`all\*(C'\fR may be used to allow the assembler to accept
  858. instructions valid for any supported processor, including all optional
  859. extensions.
  860. .Sp
  861. In addition to the basic instruction set, the assembler can be told to
  862. accept, or restrict, various extension mnemonics that extend the
  863. processor.
  864. .Sp
  865. If some implementations of a particular processor can have an
  866. extension, then then those extensions are automatically enabled.
  867. Consequently, you will not normally have to specify any additional
  868. extensions.
  869. .IP "\fB\-march=\fR\fIarchitecture\fR\fB[+\fR\fIextension\fR\fB...]\fR" 4
  870. .IX Item "-march=architecture[+extension...]"
  871. This option specifies the target architecture. The assembler will
  872. issue an error message if an attempt is made to assemble an
  873. instruction which will not execute on the target architecture. The
  874. following architecture names are recognized: \f(CW\*(C`armv8\-a\*(C'\fR,
  875. \&\f(CW\*(C`armv8.1\-a\*(C'\fR, \f(CW\*(C`armv8.2\-a\*(C'\fR, \f(CW\*(C`armv8.3\-a\*(C'\fR, \f(CW\*(C`armv8.4\-a\*(C'\fR
  876. \&\f(CW\*(C`armv8.5\-a\*(C'\fR, \f(CW\*(C`armv8.6\-a\*(C'\fR, \f(CW\*(C`armv8.7\-a\*(C'\fR, and \f(CW\*(C`armv8\-r\*(C'\fR.
  877. .Sp
  878. If both \fB\-mcpu\fR and \fB\-march\fR are specified, the
  879. assembler will use the setting for \fB\-mcpu\fR. If neither are
  880. specified, the assembler will default to \fB\-mcpu=all\fR.
  881. .Sp
  882. The architecture option can be extended with the same instruction set
  883. extension options as the \fB\-mcpu\fR option. Unlike
  884. \&\fB\-mcpu\fR, extensions are not always enabled by default,
  885. .IP "\fB\-mverbose\-error\fR" 4
  886. .IX Item "-mverbose-error"
  887. This option enables verbose error messages for AArch64 gas. This option
  888. is enabled by default.
  889. .IP "\fB\-mno\-verbose\-error\fR" 4
  890. .IX Item "-mno-verbose-error"
  891. This option disables verbose error messages in AArch64 gas.
  892. .PP
  893. The following options are available when as is configured for an Alpha
  894. processor.
  895. .IP "\fB\-m\fR\fIcpu\fR" 4
  896. .IX Item "-mcpu"
  897. This option specifies the target processor. If an attempt is made to
  898. assemble an instruction which will not execute on the target processor,
  899. the assembler may either expand the instruction as a macro or issue an
  900. error message. This option is equivalent to the \f(CW\*(C`.arch\*(C'\fR directive.
  901. .Sp
  902. The following processor names are recognized:
  903. \&\f(CW21064\fR,
  904. \&\f(CW\*(C`21064a\*(C'\fR,
  905. \&\f(CW21066\fR,
  906. \&\f(CW21068\fR,
  907. \&\f(CW21164\fR,
  908. \&\f(CW\*(C`21164a\*(C'\fR,
  909. \&\f(CW\*(C`21164pc\*(C'\fR,
  910. \&\f(CW21264\fR,
  911. \&\f(CW\*(C`21264a\*(C'\fR,
  912. \&\f(CW\*(C`21264b\*(C'\fR,
  913. \&\f(CW\*(C`ev4\*(C'\fR,
  914. \&\f(CW\*(C`ev5\*(C'\fR,
  915. \&\f(CW\*(C`lca45\*(C'\fR,
  916. \&\f(CW\*(C`ev5\*(C'\fR,
  917. \&\f(CW\*(C`ev56\*(C'\fR,
  918. \&\f(CW\*(C`pca56\*(C'\fR,
  919. \&\f(CW\*(C`ev6\*(C'\fR,
  920. \&\f(CW\*(C`ev67\*(C'\fR,
  921. \&\f(CW\*(C`ev68\*(C'\fR.
  922. The special name \f(CW\*(C`all\*(C'\fR may be used to allow the assembler to accept
  923. instructions valid for any Alpha processor.
  924. .Sp
  925. In order to support existing practice in \s-1OSF/1\s0 with respect to \f(CW\*(C`.arch\*(C'\fR,
  926. and existing practice within \fB\s-1MILO\s0\fR (the Linux \s-1ARC\s0 bootloader), the
  927. numbered processor names (e.g. 21064) enable the processor-specific PALcode
  928. instructions, while the \*(L"electro-vlasic\*(R" names (e.g. \f(CW\*(C`ev4\*(C'\fR) do not.
  929. .IP "\fB\-mdebug\fR" 4
  930. .IX Item "-mdebug"
  931. .PD 0
  932. .IP "\fB\-no\-mdebug\fR" 4
  933. .IX Item "-no-mdebug"
  934. .PD
  935. Enables or disables the generation of \f(CW\*(C`.mdebug\*(C'\fR encapsulation for
  936. stabs directives and procedure descriptors. The default is to automatically
  937. enable \f(CW\*(C`.mdebug\*(C'\fR when the first stabs directive is seen.
  938. .IP "\fB\-relax\fR" 4
  939. .IX Item "-relax"
  940. This option forces all relocations to be put into the object file, instead
  941. of saving space and resolving some relocations at assembly time. Note that
  942. this option does not propagate all symbol arithmetic into the object file,
  943. because not all symbol arithmetic can be represented. However, the option
  944. can still be useful in specific applications.
  945. .IP "\fB\-replace\fR" 4
  946. .IX Item "-replace"
  947. .PD 0
  948. .IP "\fB\-noreplace\fR" 4
  949. .IX Item "-noreplace"
  950. .PD
  951. Enables or disables the optimization of procedure calls, both at assemblage
  952. and at link time. These options are only available for \s-1VMS\s0 targets and
  953. \&\f(CW\*(C`\-replace\*(C'\fR is the default. See section 1.4.1 of the OpenVMS Linker
  954. Utility Manual.
  955. .IP "\fB\-g\fR" 4
  956. .IX Item "-g"
  957. This option is used when the compiler generates debug information. When
  958. \&\fBgcc\fR is using \fBmips-tfile\fR to generate debug
  959. information for \s-1ECOFF,\s0 local labels must be passed through to the object
  960. file. Otherwise this option has no effect.
  961. .IP "\fB\-G\fR\fIsize\fR" 4
  962. .IX Item "-Gsize"
  963. A local common symbol larger than \fIsize\fR is placed in \f(CW\*(C`.bss\*(C'\fR,
  964. while smaller symbols are placed in \f(CW\*(C`.sbss\*(C'\fR.
  965. .IP "\fB\-F\fR" 4
  966. .IX Item "-F"
  967. .PD 0
  968. .IP "\fB\-32addr\fR" 4
  969. .IX Item "-32addr"
  970. .PD
  971. These options are ignored for backward compatibility.
  972. .PP
  973. The following options are available when as is configured for an \s-1ARC\s0
  974. processor.
  975. .IP "\fB\-mcpu=\fR\fIcpu\fR" 4
  976. .IX Item "-mcpu=cpu"
  977. This option selects the core processor variant.
  978. .IP "\fB\-EB | \-EL\fR" 4
  979. .IX Item "-EB | -EL"
  980. Select either big-endian (\-EB) or little-endian (\-EL) output.
  981. .IP "\fB\-mcode\-density\fR" 4
  982. .IX Item "-mcode-density"
  983. Enable Code Density extension instructions.
  984. .PP
  985. The following options are available when as is configured for the \s-1ARM\s0
  986. processor family.
  987. .IP "\fB\-mcpu=\fR\fIprocessor\fR\fB[+\fR\fIextension\fR\fB...]\fR" 4
  988. .IX Item "-mcpu=processor[+extension...]"
  989. Specify which \s-1ARM\s0 processor variant is the target.
  990. .IP "\fB\-march=\fR\fIarchitecture\fR\fB[+\fR\fIextension\fR\fB...]\fR" 4
  991. .IX Item "-march=architecture[+extension...]"
  992. Specify which \s-1ARM\s0 architecture variant is used by the target.
  993. .IP "\fB\-mfpu=\fR\fIfloating-point-format\fR" 4
  994. .IX Item "-mfpu=floating-point-format"
  995. Select which Floating Point architecture is the target.
  996. .IP "\fB\-mfloat\-abi=\fR\fIabi\fR" 4
  997. .IX Item "-mfloat-abi=abi"
  998. Select which floating point \s-1ABI\s0 is in use.
  999. .IP "\fB\-mthumb\fR" 4
  1000. .IX Item "-mthumb"
  1001. Enable Thumb only instruction decoding.
  1002. .IP "\fB\-mapcs\-32 | \-mapcs\-26 | \-mapcs\-float | \-mapcs\-reentrant\fR" 4
  1003. .IX Item "-mapcs-32 | -mapcs-26 | -mapcs-float | -mapcs-reentrant"
  1004. Select which procedure calling convention is in use.
  1005. .IP "\fB\-EB | \-EL\fR" 4
  1006. .IX Item "-EB | -EL"
  1007. Select either big-endian (\-EB) or little-endian (\-EL) output.
  1008. .IP "\fB\-mthumb\-interwork\fR" 4
  1009. .IX Item "-mthumb-interwork"
  1010. Specify that the code has been generated with interworking between Thumb and
  1011. \&\s-1ARM\s0 code in mind.
  1012. .IP "\fB\-mccs\fR" 4
  1013. .IX Item "-mccs"
  1014. Turns on CodeComposer Studio assembly syntax compatibility mode.
  1015. .IP "\fB\-k\fR" 4
  1016. .IX Item "-k"
  1017. Specify that \s-1PIC\s0 code has been generated.
  1018. .PP
  1019. The following options are available when as is configured for
  1020. the Blackfin processor family.
  1021. .IP "\fB\-mcpu=\fR\fIprocessor\fR[\fB\-\fR\fIsirevision\fR]" 4
  1022. .IX Item "-mcpu=processor[-sirevision]"
  1023. This option specifies the target processor. The optional \fIsirevision\fR
  1024. is not used in assembler. It's here such that \s-1GCC\s0 can easily pass down its
  1025. \&\f(CW\*(C`\-mcpu=\*(C'\fR option. The assembler will issue an
  1026. error message if an attempt is made to assemble an instruction which
  1027. will not execute on the target processor. The following processor names are
  1028. recognized:
  1029. \&\f(CW\*(C`bf504\*(C'\fR,
  1030. \&\f(CW\*(C`bf506\*(C'\fR,
  1031. \&\f(CW\*(C`bf512\*(C'\fR,
  1032. \&\f(CW\*(C`bf514\*(C'\fR,
  1033. \&\f(CW\*(C`bf516\*(C'\fR,
  1034. \&\f(CW\*(C`bf518\*(C'\fR,
  1035. \&\f(CW\*(C`bf522\*(C'\fR,
  1036. \&\f(CW\*(C`bf523\*(C'\fR,
  1037. \&\f(CW\*(C`bf524\*(C'\fR,
  1038. \&\f(CW\*(C`bf525\*(C'\fR,
  1039. \&\f(CW\*(C`bf526\*(C'\fR,
  1040. \&\f(CW\*(C`bf527\*(C'\fR,
  1041. \&\f(CW\*(C`bf531\*(C'\fR,
  1042. \&\f(CW\*(C`bf532\*(C'\fR,
  1043. \&\f(CW\*(C`bf533\*(C'\fR,
  1044. \&\f(CW\*(C`bf534\*(C'\fR,
  1045. \&\f(CW\*(C`bf535\*(C'\fR (not implemented yet),
  1046. \&\f(CW\*(C`bf536\*(C'\fR,
  1047. \&\f(CW\*(C`bf537\*(C'\fR,
  1048. \&\f(CW\*(C`bf538\*(C'\fR,
  1049. \&\f(CW\*(C`bf539\*(C'\fR,
  1050. \&\f(CW\*(C`bf542\*(C'\fR,
  1051. \&\f(CW\*(C`bf542m\*(C'\fR,
  1052. \&\f(CW\*(C`bf544\*(C'\fR,
  1053. \&\f(CW\*(C`bf544m\*(C'\fR,
  1054. \&\f(CW\*(C`bf547\*(C'\fR,
  1055. \&\f(CW\*(C`bf547m\*(C'\fR,
  1056. \&\f(CW\*(C`bf548\*(C'\fR,
  1057. \&\f(CW\*(C`bf548m\*(C'\fR,
  1058. \&\f(CW\*(C`bf549\*(C'\fR,
  1059. \&\f(CW\*(C`bf549m\*(C'\fR,
  1060. \&\f(CW\*(C`bf561\*(C'\fR,
  1061. and
  1062. \&\f(CW\*(C`bf592\*(C'\fR.
  1063. .IP "\fB\-mfdpic\fR" 4
  1064. .IX Item "-mfdpic"
  1065. Assemble for the \s-1FDPIC ABI.\s0
  1066. .IP "\fB\-mno\-fdpic\fR" 4
  1067. .IX Item "-mno-fdpic"
  1068. .PD 0
  1069. .IP "\fB\-mnopic\fR" 4
  1070. .IX Item "-mnopic"
  1071. .PD
  1072. Disable \-mfdpic.
  1073. .PP
  1074. The following options are available when as is configured for
  1075. the Linux kernel \s-1BPF\s0 processor family.
  1076. .PP
  1077. \&\f(CW@chapter\fR \s-1BPF\s0 Dependent Features
  1078. .SS "Options"
  1079. .IX Subsection "Options"
  1080. .IP "\fB\-EB\fR" 4
  1081. .IX Item "-EB"
  1082. This option specifies that the assembler should emit big-endian eBPF.
  1083. .IP "\fB\-EL\fR" 4
  1084. .IX Item "-EL"
  1085. This option specifies that the assembler should emit little-endian
  1086. eBPF.
  1087. .PP
  1088. Note that if no endianness option is specified in the command line,
  1089. the host endianness is used.
  1090. See the info pages for documentation of the CRIS-specific options.
  1091. .PP
  1092. The following options are available when as is configured for
  1093. the C\-SKY processor family.
  1094. .IP "\fB\-march=\fR\fIarchname\fR" 4
  1095. .IX Item "-march=archname"
  1096. Assemble for architecture \fIarchname\fR. The \fB\-\-help\fR option
  1097. lists valid values for \fIarchname\fR.
  1098. .IP "\fB\-mcpu=\fR\fIcpuname\fR" 4
  1099. .IX Item "-mcpu=cpuname"
  1100. Assemble for architecture \fIcpuname\fR. The \fB\-\-help\fR option
  1101. lists valid values for \fIcpuname\fR.
  1102. .IP "\fB\-EL\fR" 4
  1103. .IX Item "-EL"
  1104. .PD 0
  1105. .IP "\fB\-mlittle\-endian\fR" 4
  1106. .IX Item "-mlittle-endian"
  1107. .PD
  1108. Generate little-endian output.
  1109. .IP "\fB\-EB\fR" 4
  1110. .IX Item "-EB"
  1111. .PD 0
  1112. .IP "\fB\-mbig\-endian\fR" 4
  1113. .IX Item "-mbig-endian"
  1114. .PD
  1115. Generate big-endian output.
  1116. .IP "\fB\-fpic\fR" 4
  1117. .IX Item "-fpic"
  1118. .PD 0
  1119. .IP "\fB\-pic\fR" 4
  1120. .IX Item "-pic"
  1121. .PD
  1122. Generate position-independent code.
  1123. .IP "\fB\-mljump\fR" 4
  1124. .IX Item "-mljump"
  1125. .PD 0
  1126. .IP "\fB\-mno\-ljump\fR" 4
  1127. .IX Item "-mno-ljump"
  1128. .PD
  1129. Enable/disable transformation of the short branch instructions
  1130. \&\f(CW\*(C`jbf\*(C'\fR, \f(CW\*(C`jbt\*(C'\fR, and \f(CW\*(C`jbr\*(C'\fR to \f(CW\*(C`jmpi\*(C'\fR.
  1131. This option is for V2 processors only.
  1132. It is ignored on \s-1CK801\s0 and \s-1CK802\s0 targets, which do not support the \f(CW\*(C`jmpi\*(C'\fR
  1133. instruction, and is enabled by default for other processors.
  1134. .IP "\fB\-mbranch\-stub\fR" 4
  1135. .IX Item "-mbranch-stub"
  1136. .PD 0
  1137. .IP "\fB\-mno\-branch\-stub\fR" 4
  1138. .IX Item "-mno-branch-stub"
  1139. .PD
  1140. Pass through \f(CW\*(C`R_CKCORE_PCREL_IMM26BY2\*(C'\fR relocations for \f(CW\*(C`bsr\*(C'\fR
  1141. instructions to the linker.
  1142. .Sp
  1143. This option is only available for bare-metal C\-SKY V2 \s-1ELF\s0 targets,
  1144. where it is enabled by default. It cannot be used in code that will be
  1145. dynamically linked against shared libraries.
  1146. .IP "\fB\-force2bsr\fR" 4
  1147. .IX Item "-force2bsr"
  1148. .PD 0
  1149. .IP "\fB\-mforce2bsr\fR" 4
  1150. .IX Item "-mforce2bsr"
  1151. .IP "\fB\-no\-force2bsr\fR" 4
  1152. .IX Item "-no-force2bsr"
  1153. .IP "\fB\-mno\-force2bsr\fR" 4
  1154. .IX Item "-mno-force2bsr"
  1155. .PD
  1156. Enable/disable transformation of \f(CW\*(C`jbsr\*(C'\fR instructions to \f(CW\*(C`bsr\*(C'\fR.
  1157. This option is always enabled (and \fB\-mno\-force2bsr\fR is ignored)
  1158. for \s-1CK801/CK802\s0 targets. It is also always enabled when
  1159. \&\fB\-mbranch\-stub\fR is in effect.
  1160. .IP "\fB\-jsri2bsr\fR" 4
  1161. .IX Item "-jsri2bsr"
  1162. .PD 0
  1163. .IP "\fB\-mjsri2bsr\fR" 4
  1164. .IX Item "-mjsri2bsr"
  1165. .IP "\fB\-no\-jsri2bsr\fR" 4
  1166. .IX Item "-no-jsri2bsr"
  1167. .IP "\fB\-mno\-jsri2bsr\fR" 4
  1168. .IX Item "-mno-jsri2bsr"
  1169. .PD
  1170. Enable/disable transformation of \f(CW\*(C`jsri\*(C'\fR instructions to \f(CW\*(C`bsr\*(C'\fR.
  1171. This option is enabled by default.
  1172. .IP "\fB\-mnolrw\fR" 4
  1173. .IX Item "-mnolrw"
  1174. .PD 0
  1175. .IP "\fB\-mno\-lrw\fR" 4
  1176. .IX Item "-mno-lrw"
  1177. .PD
  1178. Enable/disable transformation of \f(CW\*(C`lrw\*(C'\fR instructions into a
  1179. \&\f(CW\*(C`movih\*(C'\fR/\f(CW\*(C`ori\*(C'\fR pair.
  1180. .IP "\fB\-melrw\fR" 4
  1181. .IX Item "-melrw"
  1182. .PD 0
  1183. .IP "\fB\-mno\-elrw\fR" 4
  1184. .IX Item "-mno-elrw"
  1185. .PD
  1186. Enable/disable extended \f(CW\*(C`lrw\*(C'\fR instructions.
  1187. This option is enabled by default for CK800\-series processors.
  1188. .IP "\fB\-mlaf\fR" 4
  1189. .IX Item "-mlaf"
  1190. .PD 0
  1191. .IP "\fB\-mliterals\-after\-func\fR" 4
  1192. .IX Item "-mliterals-after-func"
  1193. .IP "\fB\-mno\-laf\fR" 4
  1194. .IX Item "-mno-laf"
  1195. .IP "\fB\-mno\-literals\-after\-func\fR" 4
  1196. .IX Item "-mno-literals-after-func"
  1197. .PD
  1198. Enable/disable placement of literal pools after each function.
  1199. .IP "\fB\-mlabr\fR" 4
  1200. .IX Item "-mlabr"
  1201. .PD 0
  1202. .IP "\fB\-mliterals\-after\-br\fR" 4
  1203. .IX Item "-mliterals-after-br"
  1204. .IP "\fB\-mno\-labr\fR" 4
  1205. .IX Item "-mno-labr"
  1206. .IP "\fB\-mnoliterals\-after\-br\fR" 4
  1207. .IX Item "-mnoliterals-after-br"
  1208. .PD
  1209. Enable/disable placement of literal pools after unconditional branches.
  1210. This option is enabled by default.
  1211. .IP "\fB\-mistack\fR" 4
  1212. .IX Item "-mistack"
  1213. .PD 0
  1214. .IP "\fB\-mno\-istack\fR" 4
  1215. .IX Item "-mno-istack"
  1216. .PD
  1217. Enable/disable interrupt stack instructions. This option is enabled by
  1218. default on \s-1CK801, CK802,\s0 and \s-1CK802\s0 processors.
  1219. .PP
  1220. The following options explicitly enable certain optional instructions.
  1221. These features are also enabled implicitly by using \f(CW\*(C`\-mcpu=\*(C'\fR to specify
  1222. a processor that supports it.
  1223. .IP "\fB\-mhard\-float\fR" 4
  1224. .IX Item "-mhard-float"
  1225. Enable hard float instructions.
  1226. .IP "\fB\-mmp\fR" 4
  1227. .IX Item "-mmp"
  1228. Enable multiprocessor instructions.
  1229. .IP "\fB\-mcp\fR" 4
  1230. .IX Item "-mcp"
  1231. Enable coprocessor instructions.
  1232. .IP "\fB\-mcache\fR" 4
  1233. .IX Item "-mcache"
  1234. Enable cache prefetch instruction.
  1235. .IP "\fB\-msecurity\fR" 4
  1236. .IX Item "-msecurity"
  1237. Enable C\-SKY security instructions.
  1238. .IP "\fB\-mtrust\fR" 4
  1239. .IX Item "-mtrust"
  1240. Enable C\-SKY trust instructions.
  1241. .IP "\fB\-mdsp\fR" 4
  1242. .IX Item "-mdsp"
  1243. Enable \s-1DSP\s0 instructions.
  1244. .IP "\fB\-medsp\fR" 4
  1245. .IX Item "-medsp"
  1246. Enable enhanced \s-1DSP\s0 instructions.
  1247. .IP "\fB\-mvdsp\fR" 4
  1248. .IX Item "-mvdsp"
  1249. Enable vector \s-1DSP\s0 instructions.
  1250. .PP
  1251. The following options are available when as is configured for
  1252. an Epiphany processor.
  1253. .IP "\fB\-mepiphany\fR" 4
  1254. .IX Item "-mepiphany"
  1255. Specifies that the both 32 and 16 bit instructions are allowed. This is the
  1256. default behavior.
  1257. .IP "\fB\-mepiphany16\fR" 4
  1258. .IX Item "-mepiphany16"
  1259. Restricts the permitted instructions to just the 16 bit set.
  1260. .PP
  1261. The following options are available when as is configured for an H8/300
  1262. processor.
  1263. \&\f(CW@chapter\fR H8/300 Dependent Features
  1264. .SS "Options"
  1265. .IX Subsection "Options"
  1266. The Renesas H8/300 version of \f(CW\*(C`as\*(C'\fR has one
  1267. machine-dependent option:
  1268. .IP "\fB\-h\-tick\-hex\fR" 4
  1269. .IX Item "-h-tick-hex"
  1270. Support H'00 style hex constants in addition to 0x00 style.
  1271. .IP "\fB\-mach=\fR\fIname\fR" 4
  1272. .IX Item "-mach=name"
  1273. Sets the H8300 machine variant. The following machine names
  1274. are recognised:
  1275. \&\f(CW\*(C`h8300h\*(C'\fR,
  1276. \&\f(CW\*(C`h8300hn\*(C'\fR,
  1277. \&\f(CW\*(C`h8300s\*(C'\fR,
  1278. \&\f(CW\*(C`h8300sn\*(C'\fR,
  1279. \&\f(CW\*(C`h8300sx\*(C'\fR and
  1280. \&\f(CW\*(C`h8300sxn\*(C'\fR.
  1281. .PP
  1282. The following options are available when as is configured for
  1283. an i386 processor.
  1284. .IP "\fB\-\-32 | \-\-x32 | \-\-64\fR" 4
  1285. .IX Item "--32 | --x32 | --64"
  1286. Select the word size, either 32 bits or 64 bits. \fB\-\-32\fR
  1287. implies Intel i386 architecture, while \fB\-\-x32\fR and \fB\-\-64\fR
  1288. imply \s-1AMD\s0 x86\-64 architecture with 32\-bit or 64\-bit word-size
  1289. respectively.
  1290. .Sp
  1291. These options are only available with the \s-1ELF\s0 object file format, and
  1292. require that the necessary \s-1BFD\s0 support has been included (on a 32\-bit
  1293. platform you have to add \-\-enable\-64\-bit\-bfd to configure enable 64\-bit
  1294. usage and use x86\-64 as target platform).
  1295. .IP "\fB\-n\fR" 4
  1296. .IX Item "-n"
  1297. By default, x86 \s-1GAS\s0 replaces multiple nop instructions used for
  1298. alignment within code sections with multi-byte nop instructions such
  1299. as leal 0(%esi,1),%esi. This switch disables the optimization if a single
  1300. byte nop (0x90) is explicitly specified as the fill byte for alignment.
  1301. .IP "\fB\-\-divide\fR" 4
  1302. .IX Item "--divide"
  1303. On SVR4\-derived platforms, the character \fB/\fR is treated as a comment
  1304. character, which means that it cannot be used in expressions. The
  1305. \&\fB\-\-divide\fR option turns \fB/\fR into a normal character. This does
  1306. not disable \fB/\fR at the beginning of a line starting a comment, or
  1307. affect using \fB#\fR for starting a comment.
  1308. .IP "\fB\-march=\fR\fI\s-1CPU\s0\fR\fB[+\fR\fI\s-1EXTENSION\s0\fR\fB...]\fR" 4
  1309. .IX Item "-march=CPU[+EXTENSION...]"
  1310. This option specifies the target processor. The assembler will
  1311. issue an error message if an attempt is made to assemble an instruction
  1312. which will not execute on the target processor. The following
  1313. processor names are recognized:
  1314. \&\f(CW\*(C`i8086\*(C'\fR,
  1315. \&\f(CW\*(C`i186\*(C'\fR,
  1316. \&\f(CW\*(C`i286\*(C'\fR,
  1317. \&\f(CW\*(C`i386\*(C'\fR,
  1318. \&\f(CW\*(C`i486\*(C'\fR,
  1319. \&\f(CW\*(C`i586\*(C'\fR,
  1320. \&\f(CW\*(C`i686\*(C'\fR,
  1321. \&\f(CW\*(C`pentium\*(C'\fR,
  1322. \&\f(CW\*(C`pentiumpro\*(C'\fR,
  1323. \&\f(CW\*(C`pentiumii\*(C'\fR,
  1324. \&\f(CW\*(C`pentiumiii\*(C'\fR,
  1325. \&\f(CW\*(C`pentium4\*(C'\fR,
  1326. \&\f(CW\*(C`prescott\*(C'\fR,
  1327. \&\f(CW\*(C`nocona\*(C'\fR,
  1328. \&\f(CW\*(C`core\*(C'\fR,
  1329. \&\f(CW\*(C`core2\*(C'\fR,
  1330. \&\f(CW\*(C`corei7\*(C'\fR,
  1331. \&\f(CW\*(C`l1om\*(C'\fR,
  1332. \&\f(CW\*(C`k1om\*(C'\fR,
  1333. \&\f(CW\*(C`iamcu\*(C'\fR,
  1334. \&\f(CW\*(C`k6\*(C'\fR,
  1335. \&\f(CW\*(C`k6_2\*(C'\fR,
  1336. \&\f(CW\*(C`athlon\*(C'\fR,
  1337. \&\f(CW\*(C`opteron\*(C'\fR,
  1338. \&\f(CW\*(C`k8\*(C'\fR,
  1339. \&\f(CW\*(C`amdfam10\*(C'\fR,
  1340. \&\f(CW\*(C`bdver1\*(C'\fR,
  1341. \&\f(CW\*(C`bdver2\*(C'\fR,
  1342. \&\f(CW\*(C`bdver3\*(C'\fR,
  1343. \&\f(CW\*(C`bdver4\*(C'\fR,
  1344. \&\f(CW\*(C`znver1\*(C'\fR,
  1345. \&\f(CW\*(C`znver2\*(C'\fR,
  1346. \&\f(CW\*(C`znver3\*(C'\fR,
  1347. \&\f(CW\*(C`btver1\*(C'\fR,
  1348. \&\f(CW\*(C`btver2\*(C'\fR,
  1349. \&\f(CW\*(C`generic32\*(C'\fR and
  1350. \&\f(CW\*(C`generic64\*(C'\fR.
  1351. .Sp
  1352. In addition to the basic instruction set, the assembler can be told to
  1353. accept various extension mnemonics. For example,
  1354. \&\f(CW\*(C`\-march=i686+sse4+vmx\*(C'\fR extends \fIi686\fR with \fIsse4\fR and
  1355. \&\fIvmx\fR. The following extensions are currently supported:
  1356. \&\f(CW8087\fR,
  1357. \&\f(CW287\fR,
  1358. \&\f(CW387\fR,
  1359. \&\f(CW687\fR,
  1360. \&\f(CW\*(C`no87\*(C'\fR,
  1361. \&\f(CW\*(C`no287\*(C'\fR,
  1362. \&\f(CW\*(C`no387\*(C'\fR,
  1363. \&\f(CW\*(C`no687\*(C'\fR,
  1364. \&\f(CW\*(C`cmov\*(C'\fR,
  1365. \&\f(CW\*(C`nocmov\*(C'\fR,
  1366. \&\f(CW\*(C`fxsr\*(C'\fR,
  1367. \&\f(CW\*(C`nofxsr\*(C'\fR,
  1368. \&\f(CW\*(C`mmx\*(C'\fR,
  1369. \&\f(CW\*(C`nommx\*(C'\fR,
  1370. \&\f(CW\*(C`sse\*(C'\fR,
  1371. \&\f(CW\*(C`sse2\*(C'\fR,
  1372. \&\f(CW\*(C`sse3\*(C'\fR,
  1373. \&\f(CW\*(C`sse4a\*(C'\fR,
  1374. \&\f(CW\*(C`ssse3\*(C'\fR,
  1375. \&\f(CW\*(C`sse4.1\*(C'\fR,
  1376. \&\f(CW\*(C`sse4.2\*(C'\fR,
  1377. \&\f(CW\*(C`sse4\*(C'\fR,
  1378. \&\f(CW\*(C`nosse\*(C'\fR,
  1379. \&\f(CW\*(C`nosse2\*(C'\fR,
  1380. \&\f(CW\*(C`nosse3\*(C'\fR,
  1381. \&\f(CW\*(C`nosse4a\*(C'\fR,
  1382. \&\f(CW\*(C`nossse3\*(C'\fR,
  1383. \&\f(CW\*(C`nosse4.1\*(C'\fR,
  1384. \&\f(CW\*(C`nosse4.2\*(C'\fR,
  1385. \&\f(CW\*(C`nosse4\*(C'\fR,
  1386. \&\f(CW\*(C`avx\*(C'\fR,
  1387. \&\f(CW\*(C`avx2\*(C'\fR,
  1388. \&\f(CW\*(C`noavx\*(C'\fR,
  1389. \&\f(CW\*(C`noavx2\*(C'\fR,
  1390. \&\f(CW\*(C`adx\*(C'\fR,
  1391. \&\f(CW\*(C`rdseed\*(C'\fR,
  1392. \&\f(CW\*(C`prfchw\*(C'\fR,
  1393. \&\f(CW\*(C`smap\*(C'\fR,
  1394. \&\f(CW\*(C`mpx\*(C'\fR,
  1395. \&\f(CW\*(C`sha\*(C'\fR,
  1396. \&\f(CW\*(C`rdpid\*(C'\fR,
  1397. \&\f(CW\*(C`ptwrite\*(C'\fR,
  1398. \&\f(CW\*(C`cet\*(C'\fR,
  1399. \&\f(CW\*(C`gfni\*(C'\fR,
  1400. \&\f(CW\*(C`vaes\*(C'\fR,
  1401. \&\f(CW\*(C`vpclmulqdq\*(C'\fR,
  1402. \&\f(CW\*(C`prefetchwt1\*(C'\fR,
  1403. \&\f(CW\*(C`clflushopt\*(C'\fR,
  1404. \&\f(CW\*(C`se1\*(C'\fR,
  1405. \&\f(CW\*(C`clwb\*(C'\fR,
  1406. \&\f(CW\*(C`movdiri\*(C'\fR,
  1407. \&\f(CW\*(C`movdir64b\*(C'\fR,
  1408. \&\f(CW\*(C`enqcmd\*(C'\fR,
  1409. \&\f(CW\*(C`serialize\*(C'\fR,
  1410. \&\f(CW\*(C`tsxldtrk\*(C'\fR,
  1411. \&\f(CW\*(C`kl\*(C'\fR,
  1412. \&\f(CW\*(C`nokl\*(C'\fR,
  1413. \&\f(CW\*(C`widekl\*(C'\fR,
  1414. \&\f(CW\*(C`nowidekl\*(C'\fR,
  1415. \&\f(CW\*(C`hreset\*(C'\fR,
  1416. \&\f(CW\*(C`avx512f\*(C'\fR,
  1417. \&\f(CW\*(C`avx512cd\*(C'\fR,
  1418. \&\f(CW\*(C`avx512er\*(C'\fR,
  1419. \&\f(CW\*(C`avx512pf\*(C'\fR,
  1420. \&\f(CW\*(C`avx512vl\*(C'\fR,
  1421. \&\f(CW\*(C`avx512bw\*(C'\fR,
  1422. \&\f(CW\*(C`avx512dq\*(C'\fR,
  1423. \&\f(CW\*(C`avx512ifma\*(C'\fR,
  1424. \&\f(CW\*(C`avx512vbmi\*(C'\fR,
  1425. \&\f(CW\*(C`avx512_4fmaps\*(C'\fR,
  1426. \&\f(CW\*(C`avx512_4vnniw\*(C'\fR,
  1427. \&\f(CW\*(C`avx512_vpopcntdq\*(C'\fR,
  1428. \&\f(CW\*(C`avx512_vbmi2\*(C'\fR,
  1429. \&\f(CW\*(C`avx512_vnni\*(C'\fR,
  1430. \&\f(CW\*(C`avx512_bitalg\*(C'\fR,
  1431. \&\f(CW\*(C`avx512_vp2intersect\*(C'\fR,
  1432. \&\f(CW\*(C`tdx\*(C'\fR,
  1433. \&\f(CW\*(C`avx512_bf16\*(C'\fR,
  1434. \&\f(CW\*(C`avx_vnni\*(C'\fR,
  1435. \&\f(CW\*(C`noavx512f\*(C'\fR,
  1436. \&\f(CW\*(C`noavx512cd\*(C'\fR,
  1437. \&\f(CW\*(C`noavx512er\*(C'\fR,
  1438. \&\f(CW\*(C`noavx512pf\*(C'\fR,
  1439. \&\f(CW\*(C`noavx512vl\*(C'\fR,
  1440. \&\f(CW\*(C`noavx512bw\*(C'\fR,
  1441. \&\f(CW\*(C`noavx512dq\*(C'\fR,
  1442. \&\f(CW\*(C`noavx512ifma\*(C'\fR,
  1443. \&\f(CW\*(C`noavx512vbmi\*(C'\fR,
  1444. \&\f(CW\*(C`noavx512_4fmaps\*(C'\fR,
  1445. \&\f(CW\*(C`noavx512_4vnniw\*(C'\fR,
  1446. \&\f(CW\*(C`noavx512_vpopcntdq\*(C'\fR,
  1447. \&\f(CW\*(C`noavx512_vbmi2\*(C'\fR,
  1448. \&\f(CW\*(C`noavx512_vnni\*(C'\fR,
  1449. \&\f(CW\*(C`noavx512_bitalg\*(C'\fR,
  1450. \&\f(CW\*(C`noavx512_vp2intersect\*(C'\fR,
  1451. \&\f(CW\*(C`notdx\*(C'\fR,
  1452. \&\f(CW\*(C`noavx512_bf16\*(C'\fR,
  1453. \&\f(CW\*(C`noavx_vnni\*(C'\fR,
  1454. \&\f(CW\*(C`noenqcmd\*(C'\fR,
  1455. \&\f(CW\*(C`noserialize\*(C'\fR,
  1456. \&\f(CW\*(C`notsxldtrk\*(C'\fR,
  1457. \&\f(CW\*(C`amx_int8\*(C'\fR,
  1458. \&\f(CW\*(C`noamx_int8\*(C'\fR,
  1459. \&\f(CW\*(C`amx_bf16\*(C'\fR,
  1460. \&\f(CW\*(C`noamx_bf16\*(C'\fR,
  1461. \&\f(CW\*(C`amx_tile\*(C'\fR,
  1462. \&\f(CW\*(C`noamx_tile\*(C'\fR,
  1463. \&\f(CW\*(C`nouintr\*(C'\fR,
  1464. \&\f(CW\*(C`nohreset\*(C'\fR,
  1465. \&\f(CW\*(C`vmx\*(C'\fR,
  1466. \&\f(CW\*(C`vmfunc\*(C'\fR,
  1467. \&\f(CW\*(C`smx\*(C'\fR,
  1468. \&\f(CW\*(C`xsave\*(C'\fR,
  1469. \&\f(CW\*(C`xsaveopt\*(C'\fR,
  1470. \&\f(CW\*(C`xsavec\*(C'\fR,
  1471. \&\f(CW\*(C`xsaves\*(C'\fR,
  1472. \&\f(CW\*(C`aes\*(C'\fR,
  1473. \&\f(CW\*(C`pclmul\*(C'\fR,
  1474. \&\f(CW\*(C`fsgsbase\*(C'\fR,
  1475. \&\f(CW\*(C`rdrnd\*(C'\fR,
  1476. \&\f(CW\*(C`f16c\*(C'\fR,
  1477. \&\f(CW\*(C`bmi2\*(C'\fR,
  1478. \&\f(CW\*(C`fma\*(C'\fR,
  1479. \&\f(CW\*(C`movbe\*(C'\fR,
  1480. \&\f(CW\*(C`ept\*(C'\fR,
  1481. \&\f(CW\*(C`lzcnt\*(C'\fR,
  1482. \&\f(CW\*(C`popcnt\*(C'\fR,
  1483. \&\f(CW\*(C`hle\*(C'\fR,
  1484. \&\f(CW\*(C`rtm\*(C'\fR,
  1485. \&\f(CW\*(C`invpcid\*(C'\fR,
  1486. \&\f(CW\*(C`clflush\*(C'\fR,
  1487. \&\f(CW\*(C`mwaitx\*(C'\fR,
  1488. \&\f(CW\*(C`clzero\*(C'\fR,
  1489. \&\f(CW\*(C`wbnoinvd\*(C'\fR,
  1490. \&\f(CW\*(C`pconfig\*(C'\fR,
  1491. \&\f(CW\*(C`waitpkg\*(C'\fR,
  1492. \&\f(CW\*(C`uintr\*(C'\fR,
  1493. \&\f(CW\*(C`cldemote\*(C'\fR,
  1494. \&\f(CW\*(C`rdpru\*(C'\fR,
  1495. \&\f(CW\*(C`mcommit\*(C'\fR,
  1496. \&\f(CW\*(C`sev_es\*(C'\fR,
  1497. \&\f(CW\*(C`lwp\*(C'\fR,
  1498. \&\f(CW\*(C`fma4\*(C'\fR,
  1499. \&\f(CW\*(C`xop\*(C'\fR,
  1500. \&\f(CW\*(C`cx16\*(C'\fR,
  1501. \&\f(CW\*(C`syscall\*(C'\fR,
  1502. \&\f(CW\*(C`rdtscp\*(C'\fR,
  1503. \&\f(CW\*(C`3dnow\*(C'\fR,
  1504. \&\f(CW\*(C`3dnowa\*(C'\fR,
  1505. \&\f(CW\*(C`sse4a\*(C'\fR,
  1506. \&\f(CW\*(C`sse5\*(C'\fR,
  1507. \&\f(CW\*(C`snp\*(C'\fR,
  1508. \&\f(CW\*(C`invlpgb\*(C'\fR,
  1509. \&\f(CW\*(C`tlbsync\*(C'\fR,
  1510. \&\f(CW\*(C`svme\*(C'\fR and
  1511. \&\f(CW\*(C`padlock\*(C'\fR.
  1512. Note that rather than extending a basic instruction set, the extension
  1513. mnemonics starting with \f(CW\*(C`no\*(C'\fR revoke the respective functionality.
  1514. .Sp
  1515. When the \f(CW\*(C`.arch\*(C'\fR directive is used with \fB\-march\fR, the
  1516. \&\f(CW\*(C`.arch\*(C'\fR directive will take precedent.
  1517. .IP "\fB\-mtune=\fR\fI\s-1CPU\s0\fR" 4
  1518. .IX Item "-mtune=CPU"
  1519. This option specifies a processor to optimize for. When used in
  1520. conjunction with the \fB\-march\fR option, only instructions
  1521. of the processor specified by the \fB\-march\fR option will be
  1522. generated.
  1523. .Sp
  1524. Valid \fI\s-1CPU\s0\fR values are identical to the processor list of
  1525. \&\fB\-march=\fR\fI\s-1CPU\s0\fR.
  1526. .IP "\fB\-msse2avx\fR" 4
  1527. .IX Item "-msse2avx"
  1528. This option specifies that the assembler should encode \s-1SSE\s0 instructions
  1529. with \s-1VEX\s0 prefix.
  1530. .IP "\fB\-msse\-check=\fR\fInone\fR" 4
  1531. .IX Item "-msse-check=none"
  1532. .PD 0
  1533. .IP "\fB\-msse\-check=\fR\fIwarning\fR" 4
  1534. .IX Item "-msse-check=warning"
  1535. .IP "\fB\-msse\-check=\fR\fIerror\fR" 4
  1536. .IX Item "-msse-check=error"
  1537. .PD
  1538. These options control if the assembler should check \s-1SSE\s0 instructions.
  1539. \&\fB\-msse\-check=\fR\fInone\fR will make the assembler not to check \s-1SSE\s0
  1540. instructions, which is the default. \fB\-msse\-check=\fR\fIwarning\fR
  1541. will make the assembler issue a warning for any \s-1SSE\s0 instruction.
  1542. \&\fB\-msse\-check=\fR\fIerror\fR will make the assembler issue an error
  1543. for any \s-1SSE\s0 instruction.
  1544. .IP "\fB\-mavxscalar=\fR\fI128\fR" 4
  1545. .IX Item "-mavxscalar=128"
  1546. .PD 0
  1547. .IP "\fB\-mavxscalar=\fR\fI256\fR" 4
  1548. .IX Item "-mavxscalar=256"
  1549. .PD
  1550. These options control how the assembler should encode scalar \s-1AVX\s0
  1551. instructions. \fB\-mavxscalar=\fR\fI128\fR will encode scalar
  1552. \&\s-1AVX\s0 instructions with 128bit vector length, which is the default.
  1553. \&\fB\-mavxscalar=\fR\fI256\fR will encode scalar \s-1AVX\s0 instructions
  1554. with 256bit vector length.
  1555. .Sp
  1556. \&\s-1WARNING:\s0 Don't use this for production code \- due to \s-1CPU\s0 errata the
  1557. resulting code may not work on certain models.
  1558. .IP "\fB\-mvexwig=\fR\fI0\fR" 4
  1559. .IX Item "-mvexwig=0"
  1560. .PD 0
  1561. .IP "\fB\-mvexwig=\fR\fI1\fR" 4
  1562. .IX Item "-mvexwig=1"
  1563. .PD
  1564. These options control how the assembler should encode \s-1VEX\s0.W\-ignored (\s-1WIG\s0)
  1565. \&\s-1VEX\s0 instructions. \fB\-mvexwig=\fR\fI0\fR will encode \s-1WIG VEX\s0
  1566. instructions with vex.w = 0, which is the default.
  1567. \&\fB\-mvexwig=\fR\fI1\fR will encode \s-1WIG EVEX\s0 instructions with
  1568. vex.w = 1.
  1569. .Sp
  1570. \&\s-1WARNING:\s0 Don't use this for production code \- due to \s-1CPU\s0 errata the
  1571. resulting code may not work on certain models.
  1572. .IP "\fB\-mevexlig=\fR\fI128\fR" 4
  1573. .IX Item "-mevexlig=128"
  1574. .PD 0
  1575. .IP "\fB\-mevexlig=\fR\fI256\fR" 4
  1576. .IX Item "-mevexlig=256"
  1577. .IP "\fB\-mevexlig=\fR\fI512\fR" 4
  1578. .IX Item "-mevexlig=512"
  1579. .PD
  1580. These options control how the assembler should encode length-ignored
  1581. (\s-1LIG\s0) \s-1EVEX\s0 instructions. \fB\-mevexlig=\fR\fI128\fR will encode \s-1LIG
  1582. EVEX\s0 instructions with 128bit vector length, which is the default.
  1583. \&\fB\-mevexlig=\fR\fI256\fR and \fB\-mevexlig=\fR\fI512\fR will
  1584. encode \s-1LIG EVEX\s0 instructions with 256bit and 512bit vector length,
  1585. respectively.
  1586. .IP "\fB\-mevexwig=\fR\fI0\fR" 4
  1587. .IX Item "-mevexwig=0"
  1588. .PD 0
  1589. .IP "\fB\-mevexwig=\fR\fI1\fR" 4
  1590. .IX Item "-mevexwig=1"
  1591. .PD
  1592. These options control how the assembler should encode w\-ignored (\s-1WIG\s0)
  1593. \&\s-1EVEX\s0 instructions. \fB\-mevexwig=\fR\fI0\fR will encode \s-1WIG
  1594. EVEX\s0 instructions with evex.w = 0, which is the default.
  1595. \&\fB\-mevexwig=\fR\fI1\fR will encode \s-1WIG EVEX\s0 instructions with
  1596. evex.w = 1.
  1597. .IP "\fB\-mmnemonic=\fR\fIatt\fR" 4
  1598. .IX Item "-mmnemonic=att"
  1599. .PD 0
  1600. .IP "\fB\-mmnemonic=\fR\fIintel\fR" 4
  1601. .IX Item "-mmnemonic=intel"
  1602. .PD
  1603. This option specifies instruction mnemonic for matching instructions.
  1604. The \f(CW\*(C`.att_mnemonic\*(C'\fR and \f(CW\*(C`.intel_mnemonic\*(C'\fR directives will
  1605. take precedent.
  1606. .IP "\fB\-msyntax=\fR\fIatt\fR" 4
  1607. .IX Item "-msyntax=att"
  1608. .PD 0
  1609. .IP "\fB\-msyntax=\fR\fIintel\fR" 4
  1610. .IX Item "-msyntax=intel"
  1611. .PD
  1612. This option specifies instruction syntax when processing instructions.
  1613. The \f(CW\*(C`.att_syntax\*(C'\fR and \f(CW\*(C`.intel_syntax\*(C'\fR directives will
  1614. take precedent.
  1615. .IP "\fB\-mnaked\-reg\fR" 4
  1616. .IX Item "-mnaked-reg"
  1617. This option specifies that registers don't require a \fB%\fR prefix.
  1618. The \f(CW\*(C`.att_syntax\*(C'\fR and \f(CW\*(C`.intel_syntax\*(C'\fR directives will take precedent.
  1619. .IP "\fB\-madd\-bnd\-prefix\fR" 4
  1620. .IX Item "-madd-bnd-prefix"
  1621. This option forces the assembler to add \s-1BND\s0 prefix to all branches, even
  1622. if such prefix was not explicitly specified in the source code.
  1623. .IP "\fB\-mno\-shared\fR" 4
  1624. .IX Item "-mno-shared"
  1625. On \s-1ELF\s0 target, the assembler normally optimizes out non-PLT relocations
  1626. against defined non-weak global branch targets with default visibility.
  1627. The \fB\-mshared\fR option tells the assembler to generate code which
  1628. may go into a shared library where all non-weak global branch targets
  1629. with default visibility can be preempted. The resulting code is
  1630. slightly bigger. This option only affects the handling of branch
  1631. instructions.
  1632. .IP "\fB\-mbig\-obj\fR" 4
  1633. .IX Item "-mbig-obj"
  1634. On \s-1PE/COFF\s0 target this option forces the use of big object file
  1635. format, which allows more than 32768 sections.
  1636. .IP "\fB\-momit\-lock\-prefix=\fR\fIno\fR" 4
  1637. .IX Item "-momit-lock-prefix=no"
  1638. .PD 0
  1639. .IP "\fB\-momit\-lock\-prefix=\fR\fIyes\fR" 4
  1640. .IX Item "-momit-lock-prefix=yes"
  1641. .PD
  1642. These options control how the assembler should encode lock prefix.
  1643. This option is intended as a workaround for processors, that fail on
  1644. lock prefix. This option can only be safely used with single-core,
  1645. single-thread computers
  1646. \&\fB\-momit\-lock\-prefix=\fR\fIyes\fR will omit all lock prefixes.
  1647. \&\fB\-momit\-lock\-prefix=\fR\fIno\fR will encode lock prefix as usual,
  1648. which is the default.
  1649. .IP "\fB\-mfence\-as\-lock\-add=\fR\fIno\fR" 4
  1650. .IX Item "-mfence-as-lock-add=no"
  1651. .PD 0
  1652. .IP "\fB\-mfence\-as\-lock\-add=\fR\fIyes\fR" 4
  1653. .IX Item "-mfence-as-lock-add=yes"
  1654. .PD
  1655. These options control how the assembler should encode lfence, mfence and
  1656. sfence.
  1657. \&\fB\-mfence\-as\-lock\-add=\fR\fIyes\fR will encode lfence, mfence and
  1658. sfence as \fBlock addl \f(CB$0x0\fB, (%rsp)\fR in 64\-bit mode and
  1659. \&\fBlock addl \f(CB$0x0\fB, (%esp)\fR in 32\-bit mode.
  1660. \&\fB\-mfence\-as\-lock\-add=\fR\fIno\fR will encode lfence, mfence and
  1661. sfence as usual, which is the default.
  1662. .IP "\fB\-mrelax\-relocations=\fR\fIno\fR" 4
  1663. .IX Item "-mrelax-relocations=no"
  1664. .PD 0
  1665. .IP "\fB\-mrelax\-relocations=\fR\fIyes\fR" 4
  1666. .IX Item "-mrelax-relocations=yes"
  1667. .PD
  1668. These options control whether the assembler should generate relax
  1669. relocations, R_386_GOT32X, in 32\-bit mode, or R_X86_64_GOTPCRELX and
  1670. R_X86_64_REX_GOTPCRELX, in 64\-bit mode.
  1671. \&\fB\-mrelax\-relocations=\fR\fIyes\fR will generate relax relocations.
  1672. \&\fB\-mrelax\-relocations=\fR\fIno\fR will not generate relax
  1673. relocations. The default can be controlled by a configure option
  1674. \&\fB\-\-enable\-x86\-relax\-relocations\fR.
  1675. .IP "\fB\-malign\-branch\-boundary=\fR\fI\s-1NUM\s0\fR" 4
  1676. .IX Item "-malign-branch-boundary=NUM"
  1677. This option controls how the assembler should align branches with segment
  1678. prefixes or \s-1NOP.\s0 \fI\s-1NUM\s0\fR must be a power of 2. It should be 0 or
  1679. no less than 16. Branches will be aligned within \fI\s-1NUM\s0\fR byte
  1680. boundary. \fB\-malign\-branch\-boundary=0\fR, which is the default,
  1681. doesn't align branches.
  1682. .IP "\fB\-malign\-branch=\fR\fI\s-1TYPE\s0\fR\fB[+\fR\fI\s-1TYPE\s0\fR\fB...]\fR" 4
  1683. .IX Item "-malign-branch=TYPE[+TYPE...]"
  1684. This option specifies types of branches to align. \fI\s-1TYPE\s0\fR is
  1685. combination of \fBjcc\fR, which aligns conditional jumps,
  1686. \&\fBfused\fR, which aligns fused conditional jumps, \fBjmp\fR,
  1687. which aligns unconditional jumps, \fBcall\fR which aligns calls,
  1688. \&\fBret\fR, which aligns rets, \fBindirect\fR, which aligns indirect
  1689. jumps and calls. The default is \fB\-malign\-branch=jcc+fused+jmp\fR.
  1690. .IP "\fB\-malign\-branch\-prefix\-size=\fR\fI\s-1NUM\s0\fR" 4
  1691. .IX Item "-malign-branch-prefix-size=NUM"
  1692. This option specifies the maximum number of prefixes on an instruction
  1693. to align branches. \fI\s-1NUM\s0\fR should be between 0 and 5. The default
  1694. \&\fI\s-1NUM\s0\fR is 5.
  1695. .IP "\fB\-mbranches\-within\-32B\-boundaries\fR" 4
  1696. .IX Item "-mbranches-within-32B-boundaries"
  1697. This option aligns conditional jumps, fused conditional jumps and
  1698. unconditional jumps within 32 byte boundary with up to 5 segment prefixes
  1699. on an instruction. It is equivalent to
  1700. \&\fB\-malign\-branch\-boundary=32\fR
  1701. \&\fB\-malign\-branch=jcc+fused+jmp\fR
  1702. \&\fB\-malign\-branch\-prefix\-size=5\fR.
  1703. The default doesn't align branches.
  1704. .IP "\fB\-mlfence\-after\-load=\fR\fIno\fR" 4
  1705. .IX Item "-mlfence-after-load=no"
  1706. .PD 0
  1707. .IP "\fB\-mlfence\-after\-load=\fR\fIyes\fR" 4
  1708. .IX Item "-mlfence-after-load=yes"
  1709. .PD
  1710. These options control whether the assembler should generate lfence
  1711. after load instructions. \fB\-mlfence\-after\-load=\fR\fIyes\fR will
  1712. generate lfence. \fB\-mlfence\-after\-load=\fR\fIno\fR will not generate
  1713. lfence, which is the default.
  1714. .IP "\fB\-mlfence\-before\-indirect\-branch=\fR\fInone\fR" 4
  1715. .IX Item "-mlfence-before-indirect-branch=none"
  1716. .PD 0
  1717. .IP "\fB\-mlfence\-before\-indirect\-branch=\fR\fIall\fR" 4
  1718. .IX Item "-mlfence-before-indirect-branch=all"
  1719. .IP "\fB\-mlfence\-before\-indirect\-branch=\fR\fIregister\fR" 4
  1720. .IX Item "-mlfence-before-indirect-branch=register"
  1721. .IP "\fB\-mlfence\-before\-indirect\-branch=\fR\fImemory\fR" 4
  1722. .IX Item "-mlfence-before-indirect-branch=memory"
  1723. .PD
  1724. These options control whether the assembler should generate lfence
  1725. before indirect near branch instructions.
  1726. \&\fB\-mlfence\-before\-indirect\-branch=\fR\fIall\fR will generate lfence
  1727. before indirect near branch via register and issue a warning before
  1728. indirect near branch via memory.
  1729. It also implicitly sets \fB\-mlfence\-before\-ret=\fR\fIshl\fR when
  1730. there's no explicit \fB\-mlfence\-before\-ret=\fR.
  1731. \&\fB\-mlfence\-before\-indirect\-branch=\fR\fIregister\fR will generate
  1732. lfence before indirect near branch via register.
  1733. \&\fB\-mlfence\-before\-indirect\-branch=\fR\fImemory\fR will issue a
  1734. warning before indirect near branch via memory.
  1735. \&\fB\-mlfence\-before\-indirect\-branch=\fR\fInone\fR will not generate
  1736. lfence nor issue warning, which is the default. Note that lfence won't
  1737. be generated before indirect near branch via register with
  1738. \&\fB\-mlfence\-after\-load=\fR\fIyes\fR since lfence will be generated
  1739. after loading branch target register.
  1740. .IP "\fB\-mlfence\-before\-ret=\fR\fInone\fR" 4
  1741. .IX Item "-mlfence-before-ret=none"
  1742. .PD 0
  1743. .IP "\fB\-mlfence\-before\-ret=\fR\fIshl\fR" 4
  1744. .IX Item "-mlfence-before-ret=shl"
  1745. .IP "\fB\-mlfence\-before\-ret=\fR\fIor\fR" 4
  1746. .IX Item "-mlfence-before-ret=or"
  1747. .IP "\fB\-mlfence\-before\-ret=\fR\fIyes\fR" 4
  1748. .IX Item "-mlfence-before-ret=yes"
  1749. .IP "\fB\-mlfence\-before\-ret=\fR\fInot\fR" 4
  1750. .IX Item "-mlfence-before-ret=not"
  1751. .PD
  1752. These options control whether the assembler should generate lfence
  1753. before ret. \fB\-mlfence\-before\-ret=\fR\fIor\fR will generate
  1754. generate or instruction with lfence.
  1755. \&\fB\-mlfence\-before\-ret=\fR\fIshl/yes\fR will generate shl instruction
  1756. with lfence. \fB\-mlfence\-before\-ret=\fR\fInot\fR will generate not
  1757. instruction with lfence. \fB\-mlfence\-before\-ret=\fR\fInone\fR will not
  1758. generate lfence, which is the default.
  1759. .IP "\fB\-mx86\-used\-note=\fR\fIno\fR" 4
  1760. .IX Item "-mx86-used-note=no"
  1761. .PD 0
  1762. .IP "\fB\-mx86\-used\-note=\fR\fIyes\fR" 4
  1763. .IX Item "-mx86-used-note=yes"
  1764. .PD
  1765. These options control whether the assembler should generate
  1766. \&\s-1GNU_PROPERTY_X86_ISA_1_USED\s0 and \s-1GNU_PROPERTY_X86_FEATURE_2_USED
  1767. GNU\s0 property notes. The default can be controlled by the
  1768. \&\fB\-\-enable\-x86\-used\-note\fR configure option.
  1769. .IP "\fB\-mevexrcig=\fR\fIrne\fR" 4
  1770. .IX Item "-mevexrcig=rne"
  1771. .PD 0
  1772. .IP "\fB\-mevexrcig=\fR\fIrd\fR" 4
  1773. .IX Item "-mevexrcig=rd"
  1774. .IP "\fB\-mevexrcig=\fR\fIru\fR" 4
  1775. .IX Item "-mevexrcig=ru"
  1776. .IP "\fB\-mevexrcig=\fR\fIrz\fR" 4
  1777. .IX Item "-mevexrcig=rz"
  1778. .PD
  1779. These options control how the assembler should encode SAE-only
  1780. \&\s-1EVEX\s0 instructions. \fB\-mevexrcig=\fR\fIrne\fR will encode \s-1RC\s0 bits
  1781. of \s-1EVEX\s0 instruction with 00, which is the default.
  1782. \&\fB\-mevexrcig=\fR\fIrd\fR, \fB\-mevexrcig=\fR\fIru\fR
  1783. and \fB\-mevexrcig=\fR\fIrz\fR will encode SAE-only \s-1EVEX\s0 instructions
  1784. with 01, 10 and 11 \s-1RC\s0 bits, respectively.
  1785. .IP "\fB\-mamd64\fR" 4
  1786. .IX Item "-mamd64"
  1787. .PD 0
  1788. .IP "\fB\-mintel64\fR" 4
  1789. .IX Item "-mintel64"
  1790. .PD
  1791. This option specifies that the assembler should accept only \s-1AMD64\s0 or
  1792. Intel64 \s-1ISA\s0 in 64\-bit mode. The default is to accept common, Intel64
  1793. only and \s-1AMD64\s0 ISAs.
  1794. .IP "\fB\-O0 | \-O | \-O1 | \-O2 | \-Os\fR" 4
  1795. .IX Item "-O0 | -O | -O1 | -O2 | -Os"
  1796. Optimize instruction encoding with smaller instruction size. \fB\-O\fR
  1797. and \fB\-O1\fR encode 64\-bit register load instructions with 64\-bit
  1798. immediate as 32\-bit register load instructions with 31\-bit or 32\-bits
  1799. immediates, encode 64\-bit register clearing instructions with 32\-bit
  1800. register clearing instructions, encode 256\-bit/512\-bit \s-1VEX/EVEX\s0 vector
  1801. register clearing instructions with 128\-bit \s-1VEX\s0 vector register
  1802. clearing instructions, encode 128\-bit/256\-bit \s-1EVEX\s0 vector
  1803. register load/store instructions with \s-1VEX\s0 vector register load/store
  1804. instructions, and encode 128\-bit/256\-bit \s-1EVEX\s0 packed integer logical
  1805. instructions with 128\-bit/256\-bit \s-1VEX\s0 packed integer logical.
  1806. .Sp
  1807. \&\fB\-O2\fR includes \fB\-O1\fR optimization plus encodes
  1808. 256\-bit/512\-bit \s-1EVEX\s0 vector register clearing instructions with 128\-bit
  1809. \&\s-1EVEX\s0 vector register clearing instructions. In 64\-bit mode \s-1VEX\s0 encoded
  1810. instructions with commutative source operands will also have their
  1811. source operands swapped if this allows using the 2\-byte \s-1VEX\s0 prefix form
  1812. instead of the 3\-byte one. Certain forms of \s-1AND\s0 as well as \s-1OR\s0 with the
  1813. same (register) operand specified twice will also be changed to \s-1TEST.\s0
  1814. .Sp
  1815. \&\fB\-Os\fR includes \fB\-O2\fR optimization plus encodes 16\-bit, 32\-bit
  1816. and 64\-bit register tests with immediate as 8\-bit register test with
  1817. immediate. \fB\-O0\fR turns off this optimization.
  1818. .PP
  1819. The following options are available when as is configured for the
  1820. Ubicom \s-1IP2K\s0 series.
  1821. .IP "\fB\-mip2022ext\fR" 4
  1822. .IX Item "-mip2022ext"
  1823. Specifies that the extended \s-1IP2022\s0 instructions are allowed.
  1824. .IP "\fB\-mip2022\fR" 4
  1825. .IX Item "-mip2022"
  1826. Restores the default behaviour, which restricts the permitted instructions to
  1827. just the basic \s-1IP2022\s0 ones.
  1828. .PP
  1829. The following options are available when as is configured for the
  1830. Renesas M32C and M16C processors.
  1831. .IP "\fB\-m32c\fR" 4
  1832. .IX Item "-m32c"
  1833. Assemble M32C instructions.
  1834. .IP "\fB\-m16c\fR" 4
  1835. .IX Item "-m16c"
  1836. Assemble M16C instructions (the default).
  1837. .IP "\fB\-relax\fR" 4
  1838. .IX Item "-relax"
  1839. Enable support for link-time relaxations.
  1840. .IP "\fB\-h\-tick\-hex\fR" 4
  1841. .IX Item "-h-tick-hex"
  1842. Support H'00 style hex constants in addition to 0x00 style.
  1843. .PP
  1844. The following options are available when as is configured for the
  1845. Renesas M32R (formerly Mitsubishi M32R) series.
  1846. .IP "\fB\-\-m32rx\fR" 4
  1847. .IX Item "--m32rx"
  1848. Specify which processor in the M32R family is the target. The default
  1849. is normally the M32R, but this option changes it to the M32RX.
  1850. .IP "\fB\-\-warn\-explicit\-parallel\-conflicts or \-\-Wp\fR" 4
  1851. .IX Item "--warn-explicit-parallel-conflicts or --Wp"
  1852. Produce warning messages when questionable parallel constructs are
  1853. encountered.
  1854. .IP "\fB\-\-no\-warn\-explicit\-parallel\-conflicts or \-\-Wnp\fR" 4
  1855. .IX Item "--no-warn-explicit-parallel-conflicts or --Wnp"
  1856. Do not produce warning messages when questionable parallel constructs are
  1857. encountered.
  1858. .PP
  1859. The following options are available when as is configured for the
  1860. Motorola 68000 series.
  1861. .IP "\fB\-l\fR" 4
  1862. .IX Item "-l"
  1863. Shorten references to undefined symbols, to one word instead of two.
  1864. .IP "\fB\-m68000 | \-m68008 | \-m68010 | \-m68020 | \-m68030\fR" 4
  1865. .IX Item "-m68000 | -m68008 | -m68010 | -m68020 | -m68030"
  1866. .PD 0
  1867. .IP "\fB| \-m68040 | \-m68060 | \-m68302 | \-m68331 | \-m68332\fR" 4
  1868. .IX Item "| -m68040 | -m68060 | -m68302 | -m68331 | -m68332"
  1869. .IP "\fB| \-m68333 | \-m68340 | \-mcpu32 | \-m5200\fR" 4
  1870. .IX Item "| -m68333 | -m68340 | -mcpu32 | -m5200"
  1871. .PD
  1872. Specify what processor in the 68000 family is the target. The default
  1873. is normally the 68020, but this can be changed at configuration time.
  1874. .IP "\fB\-m68881 | \-m68882 | \-mno\-68881 | \-mno\-68882\fR" 4
  1875. .IX Item "-m68881 | -m68882 | -mno-68881 | -mno-68882"
  1876. The target machine does (or does not) have a floating-point coprocessor.
  1877. The default is to assume a coprocessor for 68020, 68030, and cpu32. Although
  1878. the basic 68000 is not compatible with the 68881, a combination of the
  1879. two can be specified, since it's possible to do emulation of the
  1880. coprocessor instructions with the main processor.
  1881. .IP "\fB\-m68851 | \-mno\-68851\fR" 4
  1882. .IX Item "-m68851 | -mno-68851"
  1883. The target machine does (or does not) have a memory-management
  1884. unit coprocessor. The default is to assume an \s-1MMU\s0 for 68020 and up.
  1885. .PP
  1886. The following options are available when as is configured for an
  1887. Altera Nios \s-1II\s0 processor.
  1888. .IP "\fB\-relax\-section\fR" 4
  1889. .IX Item "-relax-section"
  1890. Replace identified out-of-range branches with PC-relative \f(CW\*(C`jmp\*(C'\fR
  1891. sequences when possible. The generated code sequences are suitable
  1892. for use in position-independent code, but there is a practical limit
  1893. on the extended branch range because of the length of the sequences.
  1894. This option is the default.
  1895. .IP "\fB\-relax\-all\fR" 4
  1896. .IX Item "-relax-all"
  1897. Replace branch instructions not determinable to be in range
  1898. and all call instructions with \f(CW\*(C`jmp\*(C'\fR and \f(CW\*(C`callr\*(C'\fR sequences
  1899. (respectively). This option generates absolute relocations against the
  1900. target symbols and is not appropriate for position-independent code.
  1901. .IP "\fB\-no\-relax\fR" 4
  1902. .IX Item "-no-relax"
  1903. Do not replace any branches or calls.
  1904. .IP "\fB\-EB\fR" 4
  1905. .IX Item "-EB"
  1906. Generate big-endian output.
  1907. .IP "\fB\-EL\fR" 4
  1908. .IX Item "-EL"
  1909. Generate little-endian output. This is the default.
  1910. .IP "\fB\-march=\fR\fIarchitecture\fR" 4
  1911. .IX Item "-march=architecture"
  1912. This option specifies the target architecture. The assembler issues
  1913. an error message if an attempt is made to assemble an instruction which
  1914. will not execute on the target architecture. The following architecture
  1915. names are recognized:
  1916. \&\f(CW\*(C`r1\*(C'\fR,
  1917. \&\f(CW\*(C`r2\*(C'\fR.
  1918. The default is \f(CW\*(C`r1\*(C'\fR.
  1919. .PP
  1920. The following options are available when as is configured for a
  1921. \&\s-1PRU\s0 processor.
  1922. .IP "\fB\-mlink\-relax\fR" 4
  1923. .IX Item "-mlink-relax"
  1924. Assume that \s-1LD\s0 would optimize \s-1LDI32\s0 instructions by checking the upper
  1925. 16 bits of the \fIexpression\fR. If they are all zeros, then \s-1LD\s0 would
  1926. shorten the \s-1LDI32\s0 instruction to a single \s-1LDI.\s0 In such case \f(CW\*(C`as\*(C'\fR
  1927. will output \s-1DIFF\s0 relocations for diff expressions.
  1928. .IP "\fB\-mno\-link\-relax\fR" 4
  1929. .IX Item "-mno-link-relax"
  1930. Assume that \s-1LD\s0 would not optimize \s-1LDI32\s0 instructions. As a consequence,
  1931. \&\s-1DIFF\s0 relocations will not be emitted.
  1932. .IP "\fB\-mno\-warn\-regname\-label\fR" 4
  1933. .IX Item "-mno-warn-regname-label"
  1934. Do not warn if a label name matches a register name. Usually assembler
  1935. programmers will want this warning to be emitted. C compilers may want
  1936. to turn this off.
  1937. .PP
  1938. The following options are available when as is configured for
  1939. a \s-1MIPS\s0 processor.
  1940. .IP "\fB\-G\fR \fInum\fR" 4
  1941. .IX Item "-G num"
  1942. This option sets the largest size of an object that can be referenced
  1943. implicitly with the \f(CW\*(C`gp\*(C'\fR register. It is only accepted for targets that
  1944. use \s-1ECOFF\s0 format, such as a DECstation running Ultrix. The default value is 8.
  1945. .IP "\fB\-EB\fR" 4
  1946. .IX Item "-EB"
  1947. Generate \*(L"big endian\*(R" format output.
  1948. .IP "\fB\-EL\fR" 4
  1949. .IX Item "-EL"
  1950. Generate \*(L"little endian\*(R" format output.
  1951. .IP "\fB\-mips1\fR" 4
  1952. .IX Item "-mips1"
  1953. .PD 0
  1954. .IP "\fB\-mips2\fR" 4
  1955. .IX Item "-mips2"
  1956. .IP "\fB\-mips3\fR" 4
  1957. .IX Item "-mips3"
  1958. .IP "\fB\-mips4\fR" 4
  1959. .IX Item "-mips4"
  1960. .IP "\fB\-mips5\fR" 4
  1961. .IX Item "-mips5"
  1962. .IP "\fB\-mips32\fR" 4
  1963. .IX Item "-mips32"
  1964. .IP "\fB\-mips32r2\fR" 4
  1965. .IX Item "-mips32r2"
  1966. .IP "\fB\-mips32r3\fR" 4
  1967. .IX Item "-mips32r3"
  1968. .IP "\fB\-mips32r5\fR" 4
  1969. .IX Item "-mips32r5"
  1970. .IP "\fB\-mips32r6\fR" 4
  1971. .IX Item "-mips32r6"
  1972. .IP "\fB\-mips64\fR" 4
  1973. .IX Item "-mips64"
  1974. .IP "\fB\-mips64r2\fR" 4
  1975. .IX Item "-mips64r2"
  1976. .IP "\fB\-mips64r3\fR" 4
  1977. .IX Item "-mips64r3"
  1978. .IP "\fB\-mips64r5\fR" 4
  1979. .IX Item "-mips64r5"
  1980. .IP "\fB\-mips64r6\fR" 4
  1981. .IX Item "-mips64r6"
  1982. .PD
  1983. Generate code for a particular \s-1MIPS\s0 Instruction Set Architecture level.
  1984. \&\fB\-mips1\fR is an alias for \fB\-march=r3000\fR, \fB\-mips2\fR is an
  1985. alias for \fB\-march=r6000\fR, \fB\-mips3\fR is an alias for
  1986. \&\fB\-march=r4000\fR and \fB\-mips4\fR is an alias for \fB\-march=r8000\fR.
  1987. \&\fB\-mips5\fR, \fB\-mips32\fR, \fB\-mips32r2\fR, \fB\-mips32r3\fR,
  1988. \&\fB\-mips32r5\fR, \fB\-mips32r6\fR, \fB\-mips64\fR, \fB\-mips64r2\fR,
  1989. \&\fB\-mips64r3\fR, \fB\-mips64r5\fR, and \fB\-mips64r6\fR correspond to generic
  1990. \&\s-1MIPS V, MIPS32, MIPS32\s0 Release 2, \s-1MIPS32\s0 Release 3, \s-1MIPS32\s0 Release 5, \s-1MIPS32\s0
  1991. Release 6, \s-1MIPS64, MIPS64\s0 Release 2, \s-1MIPS64\s0 Release 3, \s-1MIPS64\s0 Release 5, and
  1992. \&\s-1MIPS64\s0 Release 6 \s-1ISA\s0 processors, respectively.
  1993. .IP "\fB\-march=\fR\fIcpu\fR" 4
  1994. .IX Item "-march=cpu"
  1995. Generate code for a particular \s-1MIPS CPU.\s0
  1996. .IP "\fB\-mtune=\fR\fIcpu\fR" 4
  1997. .IX Item "-mtune=cpu"
  1998. Schedule and tune for a particular \s-1MIPS CPU.\s0
  1999. .IP "\fB\-mfix7000\fR" 4
  2000. .IX Item "-mfix7000"
  2001. .PD 0
  2002. .IP "\fB\-mno\-fix7000\fR" 4
  2003. .IX Item "-mno-fix7000"
  2004. .PD
  2005. Cause nops to be inserted if the read of the destination register
  2006. of an mfhi or mflo instruction occurs in the following two instructions.
  2007. .IP "\fB\-mfix\-rm7000\fR" 4
  2008. .IX Item "-mfix-rm7000"
  2009. .PD 0
  2010. .IP "\fB\-mno\-fix\-rm7000\fR" 4
  2011. .IX Item "-mno-fix-rm7000"
  2012. .PD
  2013. Cause nops to be inserted if a dmult or dmultu instruction is
  2014. followed by a load instruction.
  2015. .IP "\fB\-mfix\-r5900\fR" 4
  2016. .IX Item "-mfix-r5900"
  2017. .PD 0
  2018. .IP "\fB\-mno\-fix\-r5900\fR" 4
  2019. .IX Item "-mno-fix-r5900"
  2020. .PD
  2021. Do not attempt to schedule the preceding instruction into the delay slot
  2022. of a branch instruction placed at the end of a short loop of six
  2023. instructions or fewer and always schedule a \f(CW\*(C`nop\*(C'\fR instruction there
  2024. instead. The short loop bug under certain conditions causes loops to
  2025. execute only once or twice, due to a hardware bug in the R5900 chip.
  2026. .IP "\fB\-mdebug\fR" 4
  2027. .IX Item "-mdebug"
  2028. .PD 0
  2029. .IP "\fB\-no\-mdebug\fR" 4
  2030. .IX Item "-no-mdebug"
  2031. .PD
  2032. Cause stabs-style debugging output to go into an ECOFF-style .mdebug
  2033. section instead of the standard \s-1ELF\s0 .stabs sections.
  2034. .IP "\fB\-mpdr\fR" 4
  2035. .IX Item "-mpdr"
  2036. .PD 0
  2037. .IP "\fB\-mno\-pdr\fR" 4
  2038. .IX Item "-mno-pdr"
  2039. .PD
  2040. Control generation of \f(CW\*(C`.pdr\*(C'\fR sections.
  2041. .IP "\fB\-mgp32\fR" 4
  2042. .IX Item "-mgp32"
  2043. .PD 0
  2044. .IP "\fB\-mfp32\fR" 4
  2045. .IX Item "-mfp32"
  2046. .PD
  2047. The register sizes are normally inferred from the \s-1ISA\s0 and \s-1ABI,\s0 but these
  2048. flags force a certain group of registers to be treated as 32 bits wide at
  2049. all times. \fB\-mgp32\fR controls the size of general-purpose registers
  2050. and \fB\-mfp32\fR controls the size of floating-point registers.
  2051. .IP "\fB\-mgp64\fR" 4
  2052. .IX Item "-mgp64"
  2053. .PD 0
  2054. .IP "\fB\-mfp64\fR" 4
  2055. .IX Item "-mfp64"
  2056. .PD
  2057. The register sizes are normally inferred from the \s-1ISA\s0 and \s-1ABI,\s0 but these
  2058. flags force a certain group of registers to be treated as 64 bits wide at
  2059. all times. \fB\-mgp64\fR controls the size of general-purpose registers
  2060. and \fB\-mfp64\fR controls the size of floating-point registers.
  2061. .IP "\fB\-mfpxx\fR" 4
  2062. .IX Item "-mfpxx"
  2063. The register sizes are normally inferred from the \s-1ISA\s0 and \s-1ABI,\s0 but using
  2064. this flag in combination with \fB\-mabi=32\fR enables an \s-1ABI\s0 variant
  2065. which will operate correctly with floating-point registers which are
  2066. 32 or 64 bits wide.
  2067. .IP "\fB\-modd\-spreg\fR" 4
  2068. .IX Item "-modd-spreg"
  2069. .PD 0
  2070. .IP "\fB\-mno\-odd\-spreg\fR" 4
  2071. .IX Item "-mno-odd-spreg"
  2072. .PD
  2073. Enable use of floating-point operations on odd-numbered single-precision
  2074. registers when supported by the \s-1ISA.\s0 \fB\-mfpxx\fR implies
  2075. \&\fB\-mno\-odd\-spreg\fR, otherwise the default is \fB\-modd\-spreg\fR.
  2076. .IP "\fB\-mips16\fR" 4
  2077. .IX Item "-mips16"
  2078. .PD 0
  2079. .IP "\fB\-no\-mips16\fR" 4
  2080. .IX Item "-no-mips16"
  2081. .PD
  2082. Generate code for the \s-1MIPS 16\s0 processor. This is equivalent to putting
  2083. \&\f(CW\*(C`.module mips16\*(C'\fR at the start of the assembly file. \fB\-no\-mips16\fR
  2084. turns off this option.
  2085. .IP "\fB\-mmips16e2\fR" 4
  2086. .IX Item "-mmips16e2"
  2087. .PD 0
  2088. .IP "\fB\-mno\-mips16e2\fR" 4
  2089. .IX Item "-mno-mips16e2"
  2090. .PD
  2091. Enable the use of MIPS16e2 instructions in \s-1MIPS16\s0 mode. This is equivalent
  2092. to putting \f(CW\*(C`.module mips16e2\*(C'\fR at the start of the assembly file.
  2093. \&\fB\-mno\-mips16e2\fR turns off this option.
  2094. .IP "\fB\-mmicromips\fR" 4
  2095. .IX Item "-mmicromips"
  2096. .PD 0
  2097. .IP "\fB\-mno\-micromips\fR" 4
  2098. .IX Item "-mno-micromips"
  2099. .PD
  2100. Generate code for the microMIPS processor. This is equivalent to putting
  2101. \&\f(CW\*(C`.module micromips\*(C'\fR at the start of the assembly file.
  2102. \&\fB\-mno\-micromips\fR turns off this option. This is equivalent to putting
  2103. \&\f(CW\*(C`.module nomicromips\*(C'\fR at the start of the assembly file.
  2104. .IP "\fB\-msmartmips\fR" 4
  2105. .IX Item "-msmartmips"
  2106. .PD 0
  2107. .IP "\fB\-mno\-smartmips\fR" 4
  2108. .IX Item "-mno-smartmips"
  2109. .PD
  2110. Enables the SmartMIPS extension to the \s-1MIPS32\s0 instruction set. This is
  2111. equivalent to putting \f(CW\*(C`.module smartmips\*(C'\fR at the start of the assembly
  2112. file. \fB\-mno\-smartmips\fR turns off this option.
  2113. .IP "\fB\-mips3d\fR" 4
  2114. .IX Item "-mips3d"
  2115. .PD 0
  2116. .IP "\fB\-no\-mips3d\fR" 4
  2117. .IX Item "-no-mips3d"
  2118. .PD
  2119. Generate code for the \s-1MIPS\-3D\s0 Application Specific Extension.
  2120. This tells the assembler to accept \s-1MIPS\-3D\s0 instructions.
  2121. \&\fB\-no\-mips3d\fR turns off this option.
  2122. .IP "\fB\-mdmx\fR" 4
  2123. .IX Item "-mdmx"
  2124. .PD 0
  2125. .IP "\fB\-no\-mdmx\fR" 4
  2126. .IX Item "-no-mdmx"
  2127. .PD
  2128. Generate code for the \s-1MDMX\s0 Application Specific Extension.
  2129. This tells the assembler to accept \s-1MDMX\s0 instructions.
  2130. \&\fB\-no\-mdmx\fR turns off this option.
  2131. .IP "\fB\-mdsp\fR" 4
  2132. .IX Item "-mdsp"
  2133. .PD 0
  2134. .IP "\fB\-mno\-dsp\fR" 4
  2135. .IX Item "-mno-dsp"
  2136. .PD
  2137. Generate code for the \s-1DSP\s0 Release 1 Application Specific Extension.
  2138. This tells the assembler to accept \s-1DSP\s0 Release 1 instructions.
  2139. \&\fB\-mno\-dsp\fR turns off this option.
  2140. .IP "\fB\-mdspr2\fR" 4
  2141. .IX Item "-mdspr2"
  2142. .PD 0
  2143. .IP "\fB\-mno\-dspr2\fR" 4
  2144. .IX Item "-mno-dspr2"
  2145. .PD
  2146. Generate code for the \s-1DSP\s0 Release 2 Application Specific Extension.
  2147. This option implies \fB\-mdsp\fR.
  2148. This tells the assembler to accept \s-1DSP\s0 Release 2 instructions.
  2149. \&\fB\-mno\-dspr2\fR turns off this option.
  2150. .IP "\fB\-mdspr3\fR" 4
  2151. .IX Item "-mdspr3"
  2152. .PD 0
  2153. .IP "\fB\-mno\-dspr3\fR" 4
  2154. .IX Item "-mno-dspr3"
  2155. .PD
  2156. Generate code for the \s-1DSP\s0 Release 3 Application Specific Extension.
  2157. This option implies \fB\-mdsp\fR and \fB\-mdspr2\fR.
  2158. This tells the assembler to accept \s-1DSP\s0 Release 3 instructions.
  2159. \&\fB\-mno\-dspr3\fR turns off this option.
  2160. .IP "\fB\-mmsa\fR" 4
  2161. .IX Item "-mmsa"
  2162. .PD 0
  2163. .IP "\fB\-mno\-msa\fR" 4
  2164. .IX Item "-mno-msa"
  2165. .PD
  2166. Generate code for the \s-1MIPS SIMD\s0 Architecture Extension.
  2167. This tells the assembler to accept \s-1MSA\s0 instructions.
  2168. \&\fB\-mno\-msa\fR turns off this option.
  2169. .IP "\fB\-mxpa\fR" 4
  2170. .IX Item "-mxpa"
  2171. .PD 0
  2172. .IP "\fB\-mno\-xpa\fR" 4
  2173. .IX Item "-mno-xpa"
  2174. .PD
  2175. Generate code for the \s-1MIPS\s0 eXtended Physical Address (\s-1XPA\s0) Extension.
  2176. This tells the assembler to accept \s-1XPA\s0 instructions.
  2177. \&\fB\-mno\-xpa\fR turns off this option.
  2178. .IP "\fB\-mmt\fR" 4
  2179. .IX Item "-mmt"
  2180. .PD 0
  2181. .IP "\fB\-mno\-mt\fR" 4
  2182. .IX Item "-mno-mt"
  2183. .PD
  2184. Generate code for the \s-1MT\s0 Application Specific Extension.
  2185. This tells the assembler to accept \s-1MT\s0 instructions.
  2186. \&\fB\-mno\-mt\fR turns off this option.
  2187. .IP "\fB\-mmcu\fR" 4
  2188. .IX Item "-mmcu"
  2189. .PD 0
  2190. .IP "\fB\-mno\-mcu\fR" 4
  2191. .IX Item "-mno-mcu"
  2192. .PD
  2193. Generate code for the \s-1MCU\s0 Application Specific Extension.
  2194. This tells the assembler to accept \s-1MCU\s0 instructions.
  2195. \&\fB\-mno\-mcu\fR turns off this option.
  2196. .IP "\fB\-mcrc\fR" 4
  2197. .IX Item "-mcrc"
  2198. .PD 0
  2199. .IP "\fB\-mno\-crc\fR" 4
  2200. .IX Item "-mno-crc"
  2201. .PD
  2202. Generate code for the \s-1MIPS\s0 cyclic redundancy check (\s-1CRC\s0) Application
  2203. Specific Extension. This tells the assembler to accept \s-1CRC\s0 instructions.
  2204. \&\fB\-mno\-crc\fR turns off this option.
  2205. .IP "\fB\-mginv\fR" 4
  2206. .IX Item "-mginv"
  2207. .PD 0
  2208. .IP "\fB\-mno\-ginv\fR" 4
  2209. .IX Item "-mno-ginv"
  2210. .PD
  2211. Generate code for the Global INValidate (\s-1GINV\s0) Application Specific
  2212. Extension. This tells the assembler to accept \s-1GINV\s0 instructions.
  2213. \&\fB\-mno\-ginv\fR turns off this option.
  2214. .IP "\fB\-mloongson\-mmi\fR" 4
  2215. .IX Item "-mloongson-mmi"
  2216. .PD 0
  2217. .IP "\fB\-mno\-loongson\-mmi\fR" 4
  2218. .IX Item "-mno-loongson-mmi"
  2219. .PD
  2220. Generate code for the Loongson MultiMedia extensions Instructions (\s-1MMI\s0)
  2221. Application Specific Extension. This tells the assembler to accept \s-1MMI\s0
  2222. instructions.
  2223. \&\fB\-mno\-loongson\-mmi\fR turns off this option.
  2224. .IP "\fB\-mloongson\-cam\fR" 4
  2225. .IX Item "-mloongson-cam"
  2226. .PD 0
  2227. .IP "\fB\-mno\-loongson\-cam\fR" 4
  2228. .IX Item "-mno-loongson-cam"
  2229. .PD
  2230. Generate code for the Loongson Content Address Memory (\s-1CAM\s0) instructions.
  2231. This tells the assembler to accept Loongson \s-1CAM\s0 instructions.
  2232. \&\fB\-mno\-loongson\-cam\fR turns off this option.
  2233. .IP "\fB\-mloongson\-ext\fR" 4
  2234. .IX Item "-mloongson-ext"
  2235. .PD 0
  2236. .IP "\fB\-mno\-loongson\-ext\fR" 4
  2237. .IX Item "-mno-loongson-ext"
  2238. .PD
  2239. Generate code for the Loongson EXTensions (\s-1EXT\s0) instructions.
  2240. This tells the assembler to accept Loongson \s-1EXT\s0 instructions.
  2241. \&\fB\-mno\-loongson\-ext\fR turns off this option.
  2242. .IP "\fB\-mloongson\-ext2\fR" 4
  2243. .IX Item "-mloongson-ext2"
  2244. .PD 0
  2245. .IP "\fB\-mno\-loongson\-ext2\fR" 4
  2246. .IX Item "-mno-loongson-ext2"
  2247. .PD
  2248. Generate code for the Loongson EXTensions R2 (\s-1EXT2\s0) instructions.
  2249. This option implies \fB\-mloongson\-ext\fR.
  2250. This tells the assembler to accept Loongson \s-1EXT2\s0 instructions.
  2251. \&\fB\-mno\-loongson\-ext2\fR turns off this option.
  2252. .IP "\fB\-minsn32\fR" 4
  2253. .IX Item "-minsn32"
  2254. .PD 0
  2255. .IP "\fB\-mno\-insn32\fR" 4
  2256. .IX Item "-mno-insn32"
  2257. .PD
  2258. Only use 32\-bit instruction encodings when generating code for the
  2259. microMIPS processor. This option inhibits the use of any 16\-bit
  2260. instructions. This is equivalent to putting \f(CW\*(C`.set insn32\*(C'\fR at
  2261. the start of the assembly file. \fB\-mno\-insn32\fR turns off this
  2262. option. This is equivalent to putting \f(CW\*(C`.set noinsn32\*(C'\fR at the
  2263. start of the assembly file. By default \fB\-mno\-insn32\fR is
  2264. selected, allowing all instructions to be used.
  2265. .IP "\fB\-\-construct\-floats\fR" 4
  2266. .IX Item "--construct-floats"
  2267. .PD 0
  2268. .IP "\fB\-\-no\-construct\-floats\fR" 4
  2269. .IX Item "--no-construct-floats"
  2270. .PD
  2271. The \fB\-\-no\-construct\-floats\fR option disables the construction of
  2272. double width floating point constants by loading the two halves of the
  2273. value into the two single width floating point registers that make up
  2274. the double width register. By default \fB\-\-construct\-floats\fR is
  2275. selected, allowing construction of these floating point constants.
  2276. .IP "\fB\-\-relax\-branch\fR" 4
  2277. .IX Item "--relax-branch"
  2278. .PD 0
  2279. .IP "\fB\-\-no\-relax\-branch\fR" 4
  2280. .IX Item "--no-relax-branch"
  2281. .PD
  2282. The \fB\-\-relax\-branch\fR option enables the relaxation of out-of-range
  2283. branches. By default \fB\-\-no\-relax\-branch\fR is selected, causing any
  2284. out-of-range branches to produce an error.
  2285. .IP "\fB\-mignore\-branch\-isa\fR" 4
  2286. .IX Item "-mignore-branch-isa"
  2287. .PD 0
  2288. .IP "\fB\-mno\-ignore\-branch\-isa\fR" 4
  2289. .IX Item "-mno-ignore-branch-isa"
  2290. .PD
  2291. Ignore branch checks for invalid transitions between \s-1ISA\s0 modes. The
  2292. semantics of branches does not provide for an \s-1ISA\s0 mode switch, so in
  2293. most cases the \s-1ISA\s0 mode a branch has been encoded for has to be the
  2294. same as the \s-1ISA\s0 mode of the branch's target label. Therefore \s-1GAS\s0 has
  2295. checks implemented that verify in branch assembly that the two \s-1ISA\s0
  2296. modes match. \fB\-mignore\-branch\-isa\fR disables these checks. By
  2297. default \fB\-mno\-ignore\-branch\-isa\fR is selected, causing any invalid
  2298. branch requiring a transition between \s-1ISA\s0 modes to produce an error.
  2299. .IP "\fB\-mnan=\fR\fIencoding\fR" 4
  2300. .IX Item "-mnan=encoding"
  2301. Select between the \s-1IEEE 754\-2008\s0 (\fB\-mnan=2008\fR) or the legacy
  2302. (\fB\-mnan=legacy\fR) NaN encoding format. The latter is the default.
  2303. .IP "\fB\-\-emulation=\fR\fIname\fR" 4
  2304. .IX Item "--emulation=name"
  2305. This option was formerly used to switch between \s-1ELF\s0 and \s-1ECOFF\s0 output
  2306. on targets like \s-1IRIX 5\s0 that supported both. \s-1MIPS ECOFF\s0 support was
  2307. removed in \s-1GAS 2.24,\s0 so the option now serves little purpose.
  2308. It is retained for backwards compatibility.
  2309. .Sp
  2310. The available configuration names are: \fBmipself\fR, \fBmipslelf\fR and
  2311. \&\fBmipsbelf\fR. Choosing \fBmipself\fR now has no effect, since the output
  2312. is always \s-1ELF.\s0 \fBmipslelf\fR and \fBmipsbelf\fR select little\- and
  2313. big-endian output respectively, but \fB\-EL\fR and \fB\-EB\fR are now the
  2314. preferred options instead.
  2315. .IP "\fB\-nocpp\fR" 4
  2316. .IX Item "-nocpp"
  2317. \&\fBas\fR ignores this option. It is accepted for compatibility with
  2318. the native tools.
  2319. .IP "\fB\-\-trap\fR" 4
  2320. .IX Item "--trap"
  2321. .PD 0
  2322. .IP "\fB\-\-no\-trap\fR" 4
  2323. .IX Item "--no-trap"
  2324. .IP "\fB\-\-break\fR" 4
  2325. .IX Item "--break"
  2326. .IP "\fB\-\-no\-break\fR" 4
  2327. .IX Item "--no-break"
  2328. .PD
  2329. Control how to deal with multiplication overflow and division by zero.
  2330. \&\fB\-\-trap\fR or \fB\-\-no\-break\fR (which are synonyms) take a trap exception
  2331. (and only work for Instruction Set Architecture level 2 and higher);
  2332. \&\fB\-\-break\fR or \fB\-\-no\-trap\fR (also synonyms, and the default) take a
  2333. break exception.
  2334. .IP "\fB\-n\fR" 4
  2335. .IX Item "-n"
  2336. When this option is used, \fBas\fR will issue a warning every
  2337. time it generates a nop instruction from a macro.
  2338. .PP
  2339. The following options are available when as is configured for a
  2340. Meta processor.
  2341. .ie n .IP """\-mcpu=metac11""" 4
  2342. .el .IP "\f(CW\-mcpu=metac11\fR" 4
  2343. .IX Item "-mcpu=metac11"
  2344. Generate code for Meta 1.1.
  2345. .ie n .IP """\-mcpu=metac12""" 4
  2346. .el .IP "\f(CW\-mcpu=metac12\fR" 4
  2347. .IX Item "-mcpu=metac12"
  2348. Generate code for Meta 1.2.
  2349. .ie n .IP """\-mcpu=metac21""" 4
  2350. .el .IP "\f(CW\-mcpu=metac21\fR" 4
  2351. .IX Item "-mcpu=metac21"
  2352. Generate code for Meta 2.1.
  2353. .ie n .IP """\-mfpu=metac21""" 4
  2354. .el .IP "\f(CW\-mfpu=metac21\fR" 4
  2355. .IX Item "-mfpu=metac21"
  2356. Allow code to use \s-1FPU\s0 hardware of Meta 2.1.
  2357. .PP
  2358. See the info pages for documentation of the MMIX-specific options.
  2359. .PP
  2360. The following options are available when as is configured for a
  2361. \&\s-1NDS32\s0 processor.
  2362. .ie n .IP """\-O1""" 4
  2363. .el .IP "\f(CW\-O1\fR" 4
  2364. .IX Item "-O1"
  2365. Optimize for performance.
  2366. .ie n .IP """\-Os""" 4
  2367. .el .IP "\f(CW\-Os\fR" 4
  2368. .IX Item "-Os"
  2369. Optimize for space.
  2370. .ie n .IP """\-EL""" 4
  2371. .el .IP "\f(CW\-EL\fR" 4
  2372. .IX Item "-EL"
  2373. Produce little endian data output.
  2374. .ie n .IP """\-EB""" 4
  2375. .el .IP "\f(CW\-EB\fR" 4
  2376. .IX Item "-EB"
  2377. Produce little endian data output.
  2378. .ie n .IP """\-mpic""" 4
  2379. .el .IP "\f(CW\-mpic\fR" 4
  2380. .IX Item "-mpic"
  2381. Generate \s-1PIC.\s0
  2382. .ie n .IP """\-mno\-fp\-as\-gp\-relax""" 4
  2383. .el .IP "\f(CW\-mno\-fp\-as\-gp\-relax\fR" 4
  2384. .IX Item "-mno-fp-as-gp-relax"
  2385. Suppress fp-as-gp relaxation for this file.
  2386. .ie n .IP """\-mb2bb\-relax""" 4
  2387. .el .IP "\f(CW\-mb2bb\-relax\fR" 4
  2388. .IX Item "-mb2bb-relax"
  2389. Back-to-back branch optimization.
  2390. .ie n .IP """\-mno\-all\-relax""" 4
  2391. .el .IP "\f(CW\-mno\-all\-relax\fR" 4
  2392. .IX Item "-mno-all-relax"
  2393. Suppress all relaxation for this file.
  2394. .ie n .IP """\-march=<arch name>""" 4
  2395. .el .IP "\f(CW\-march=<arch name>\fR" 4
  2396. .IX Item "-march=<arch name>"
  2397. Assemble for architecture <arch name> which could be v3, v3j, v3m, v3f,
  2398. v3s, v2, v2j, v2f, v2s.
  2399. .ie n .IP """\-mbaseline=<baseline>""" 4
  2400. .el .IP "\f(CW\-mbaseline=<baseline>\fR" 4
  2401. .IX Item "-mbaseline=<baseline>"
  2402. Assemble for baseline <baseline> which could be v2, v3, v3m.
  2403. .ie n .IP """\-mfpu\-freg=\fIFREG\fP""" 4
  2404. .el .IP "\f(CW\-mfpu\-freg=\f(CIFREG\f(CW\fR" 4
  2405. .IX Item "-mfpu-freg=FREG"
  2406. Specify a \s-1FPU\s0 configuration.
  2407. .RS 4
  2408. .ie n .IP """0 8 SP / 4 DP registers""" 4
  2409. .el .IP "\f(CW0 8 SP / 4 DP registers\fR" 4
  2410. .IX Item "0 8 SP / 4 DP registers"
  2411. .PD 0
  2412. .ie n .IP """1 16 SP / 8 DP registers""" 4
  2413. .el .IP "\f(CW1 16 SP / 8 DP registers\fR" 4
  2414. .IX Item "1 16 SP / 8 DP registers"
  2415. .ie n .IP """2 32 SP / 16 DP registers""" 4
  2416. .el .IP "\f(CW2 32 SP / 16 DP registers\fR" 4
  2417. .IX Item "2 32 SP / 16 DP registers"
  2418. .ie n .IP """3 32 SP / 32 DP registers""" 4
  2419. .el .IP "\f(CW3 32 SP / 32 DP registers\fR" 4
  2420. .IX Item "3 32 SP / 32 DP registers"
  2421. .RE
  2422. .RS 4
  2423. .RE
  2424. .ie n .IP """\-mabi=\fIabi\fP""" 4
  2425. .el .IP "\f(CW\-mabi=\f(CIabi\f(CW\fR" 4
  2426. .IX Item "-mabi=abi"
  2427. .PD
  2428. Specify a abi version <abi> could be v1, v2, v2fp, v2fpp.
  2429. .ie n .IP """\-m[no\-]mac""" 4
  2430. .el .IP "\f(CW\-m[no\-]mac\fR" 4
  2431. .IX Item "-m[no-]mac"
  2432. Enable/Disable Multiply instructions support.
  2433. .ie n .IP """\-m[no\-]div""" 4
  2434. .el .IP "\f(CW\-m[no\-]div\fR" 4
  2435. .IX Item "-m[no-]div"
  2436. Enable/Disable Divide instructions support.
  2437. .ie n .IP """\-m[no\-]16bit\-ext""" 4
  2438. .el .IP "\f(CW\-m[no\-]16bit\-ext\fR" 4
  2439. .IX Item "-m[no-]16bit-ext"
  2440. Enable/Disable 16\-bit extension
  2441. .ie n .IP """\-m[no\-]dx\-regs""" 4
  2442. .el .IP "\f(CW\-m[no\-]dx\-regs\fR" 4
  2443. .IX Item "-m[no-]dx-regs"
  2444. Enable/Disable d0/d1 registers
  2445. .ie n .IP """\-m[no\-]perf\-ext""" 4
  2446. .el .IP "\f(CW\-m[no\-]perf\-ext\fR" 4
  2447. .IX Item "-m[no-]perf-ext"
  2448. Enable/Disable Performance extension
  2449. .ie n .IP """\-m[no\-]perf2\-ext""" 4
  2450. .el .IP "\f(CW\-m[no\-]perf2\-ext\fR" 4
  2451. .IX Item "-m[no-]perf2-ext"
  2452. Enable/Disable Performance extension 2
  2453. .ie n .IP """\-m[no\-]string\-ext""" 4
  2454. .el .IP "\f(CW\-m[no\-]string\-ext\fR" 4
  2455. .IX Item "-m[no-]string-ext"
  2456. Enable/Disable String extension
  2457. .ie n .IP """\-m[no\-]reduced\-regs""" 4
  2458. .el .IP "\f(CW\-m[no\-]reduced\-regs\fR" 4
  2459. .IX Item "-m[no-]reduced-regs"
  2460. Enable/Disable Reduced Register configuration (\s-1GPR16\s0) option
  2461. .ie n .IP """\-m[no\-]audio\-isa\-ext""" 4
  2462. .el .IP "\f(CW\-m[no\-]audio\-isa\-ext\fR" 4
  2463. .IX Item "-m[no-]audio-isa-ext"
  2464. Enable/Disable \s-1AUDIO ISA\s0 extension
  2465. .ie n .IP """\-m[no\-]fpu\-sp\-ext""" 4
  2466. .el .IP "\f(CW\-m[no\-]fpu\-sp\-ext\fR" 4
  2467. .IX Item "-m[no-]fpu-sp-ext"
  2468. Enable/Disable \s-1FPU SP\s0 extension
  2469. .ie n .IP """\-m[no\-]fpu\-dp\-ext""" 4
  2470. .el .IP "\f(CW\-m[no\-]fpu\-dp\-ext\fR" 4
  2471. .IX Item "-m[no-]fpu-dp-ext"
  2472. Enable/Disable \s-1FPU DP\s0 extension
  2473. .ie n .IP """\-m[no\-]fpu\-fma""" 4
  2474. .el .IP "\f(CW\-m[no\-]fpu\-fma\fR" 4
  2475. .IX Item "-m[no-]fpu-fma"
  2476. Enable/Disable \s-1FPU\s0 fused-multiply-add instructions
  2477. .ie n .IP """\-mall\-ext""" 4
  2478. .el .IP "\f(CW\-mall\-ext\fR" 4
  2479. .IX Item "-mall-ext"
  2480. Turn on all extensions and instructions support
  2481. .PP
  2482. The following options are available when as is configured for a
  2483. PowerPC processor.
  2484. .IP "\fB\-a32\fR" 4
  2485. .IX Item "-a32"
  2486. Generate \s-1ELF32\s0 or \s-1XCOFF32.\s0
  2487. .IP "\fB\-a64\fR" 4
  2488. .IX Item "-a64"
  2489. Generate \s-1ELF64\s0 or \s-1XCOFF64.\s0
  2490. .IP "\fB\-K \s-1PIC\s0\fR" 4
  2491. .IX Item "-K PIC"
  2492. Set \s-1EF_PPC_RELOCATABLE_LIB\s0 in \s-1ELF\s0 flags.
  2493. .IP "\fB\-mpwrx | \-mpwr2\fR" 4
  2494. .IX Item "-mpwrx | -mpwr2"
  2495. Generate code for \s-1POWER/2\s0 (\s-1RIOS2\s0).
  2496. .IP "\fB\-mpwr\fR" 4
  2497. .IX Item "-mpwr"
  2498. Generate code for \s-1POWER\s0 (\s-1RIOS1\s0)
  2499. .IP "\fB\-m601\fR" 4
  2500. .IX Item "-m601"
  2501. Generate code for PowerPC 601.
  2502. .IP "\fB\-mppc, \-mppc32, \-m603, \-m604\fR" 4
  2503. .IX Item "-mppc, -mppc32, -m603, -m604"
  2504. Generate code for PowerPC 603/604.
  2505. .IP "\fB\-m403, \-m405\fR" 4
  2506. .IX Item "-m403, -m405"
  2507. Generate code for PowerPC 403/405.
  2508. .IP "\fB\-m440\fR" 4
  2509. .IX Item "-m440"
  2510. Generate code for PowerPC 440. BookE and some 405 instructions.
  2511. .IP "\fB\-m464\fR" 4
  2512. .IX Item "-m464"
  2513. Generate code for PowerPC 464.
  2514. .IP "\fB\-m476\fR" 4
  2515. .IX Item "-m476"
  2516. Generate code for PowerPC 476.
  2517. .IP "\fB\-m7400, \-m7410, \-m7450, \-m7455\fR" 4
  2518. .IX Item "-m7400, -m7410, -m7450, -m7455"
  2519. Generate code for PowerPC 7400/7410/7450/7455.
  2520. .IP "\fB\-m750cl, \-mgekko, \-mbroadway\fR" 4
  2521. .IX Item "-m750cl, -mgekko, -mbroadway"
  2522. Generate code for PowerPC 750CL/Gekko/Broadway.
  2523. .IP "\fB\-m821, \-m850, \-m860\fR" 4
  2524. .IX Item "-m821, -m850, -m860"
  2525. Generate code for PowerPC 821/850/860.
  2526. .IP "\fB\-mppc64, \-m620\fR" 4
  2527. .IX Item "-mppc64, -m620"
  2528. Generate code for PowerPC 620/625/630.
  2529. .IP "\fB\-me500, \-me500x2\fR" 4
  2530. .IX Item "-me500, -me500x2"
  2531. Generate code for Motorola e500 core complex.
  2532. .IP "\fB\-me500mc\fR" 4
  2533. .IX Item "-me500mc"
  2534. Generate code for Freescale e500mc core complex.
  2535. .IP "\fB\-me500mc64\fR" 4
  2536. .IX Item "-me500mc64"
  2537. Generate code for Freescale e500mc64 core complex.
  2538. .IP "\fB\-me5500\fR" 4
  2539. .IX Item "-me5500"
  2540. Generate code for Freescale e5500 core complex.
  2541. .IP "\fB\-me6500\fR" 4
  2542. .IX Item "-me6500"
  2543. Generate code for Freescale e6500 core complex.
  2544. .IP "\fB\-mspe\fR" 4
  2545. .IX Item "-mspe"
  2546. Generate code for Motorola \s-1SPE\s0 instructions.
  2547. .IP "\fB\-mspe2\fR" 4
  2548. .IX Item "-mspe2"
  2549. Generate code for Freescale \s-1SPE2\s0 instructions.
  2550. .IP "\fB\-mtitan\fR" 4
  2551. .IX Item "-mtitan"
  2552. Generate code for AppliedMicro Titan core complex.
  2553. .IP "\fB\-mppc64bridge\fR" 4
  2554. .IX Item "-mppc64bridge"
  2555. Generate code for PowerPC 64, including bridge insns.
  2556. .IP "\fB\-mbooke\fR" 4
  2557. .IX Item "-mbooke"
  2558. Generate code for 32\-bit BookE.
  2559. .IP "\fB\-ma2\fR" 4
  2560. .IX Item "-ma2"
  2561. Generate code for A2 architecture.
  2562. .IP "\fB\-me300\fR" 4
  2563. .IX Item "-me300"
  2564. Generate code for PowerPC e300 family.
  2565. .IP "\fB\-maltivec\fR" 4
  2566. .IX Item "-maltivec"
  2567. Generate code for processors with AltiVec instructions.
  2568. .IP "\fB\-mvle\fR" 4
  2569. .IX Item "-mvle"
  2570. Generate code for Freescale PowerPC \s-1VLE\s0 instructions.
  2571. .IP "\fB\-mvsx\fR" 4
  2572. .IX Item "-mvsx"
  2573. Generate code for processors with Vector-Scalar (\s-1VSX\s0) instructions.
  2574. .IP "\fB\-mhtm\fR" 4
  2575. .IX Item "-mhtm"
  2576. Generate code for processors with Hardware Transactional Memory instructions.
  2577. .IP "\fB\-mpower4, \-mpwr4\fR" 4
  2578. .IX Item "-mpower4, -mpwr4"
  2579. Generate code for Power4 architecture.
  2580. .IP "\fB\-mpower5, \-mpwr5, \-mpwr5x\fR" 4
  2581. .IX Item "-mpower5, -mpwr5, -mpwr5x"
  2582. Generate code for Power5 architecture.
  2583. .IP "\fB\-mpower6, \-mpwr6\fR" 4
  2584. .IX Item "-mpower6, -mpwr6"
  2585. Generate code for Power6 architecture.
  2586. .IP "\fB\-mpower7, \-mpwr7\fR" 4
  2587. .IX Item "-mpower7, -mpwr7"
  2588. Generate code for Power7 architecture.
  2589. .IP "\fB\-mpower8, \-mpwr8\fR" 4
  2590. .IX Item "-mpower8, -mpwr8"
  2591. Generate code for Power8 architecture.
  2592. .IP "\fB\-mpower9, \-mpwr9\fR" 4
  2593. .IX Item "-mpower9, -mpwr9"
  2594. Generate code for Power9 architecture.
  2595. .IP "\fB\-mpower10, \-mpwr10\fR" 4
  2596. .IX Item "-mpower10, -mpwr10"
  2597. Generate code for Power10 architecture.
  2598. .IP "\fB\-mcell\fR" 4
  2599. .IX Item "-mcell"
  2600. .PD 0
  2601. .IP "\fB\-mcell\fR" 4
  2602. .IX Item "-mcell"
  2603. .PD
  2604. Generate code for Cell Broadband Engine architecture.
  2605. .IP "\fB\-mcom\fR" 4
  2606. .IX Item "-mcom"
  2607. Generate code Power/PowerPC common instructions.
  2608. .IP "\fB\-many\fR" 4
  2609. .IX Item "-many"
  2610. Generate code for any architecture (\s-1PWR/PWRX/PPC\s0).
  2611. .IP "\fB\-mregnames\fR" 4
  2612. .IX Item "-mregnames"
  2613. Allow symbolic names for registers.
  2614. .IP "\fB\-mno\-regnames\fR" 4
  2615. .IX Item "-mno-regnames"
  2616. Do not allow symbolic names for registers.
  2617. .IP "\fB\-mrelocatable\fR" 4
  2618. .IX Item "-mrelocatable"
  2619. Support for \s-1GCC\s0's \-mrelocatable option.
  2620. .IP "\fB\-mrelocatable\-lib\fR" 4
  2621. .IX Item "-mrelocatable-lib"
  2622. Support for \s-1GCC\s0's \-mrelocatable\-lib option.
  2623. .IP "\fB\-memb\fR" 4
  2624. .IX Item "-memb"
  2625. Set \s-1PPC_EMB\s0 bit in \s-1ELF\s0 flags.
  2626. .IP "\fB\-mlittle, \-mlittle\-endian, \-le\fR" 4
  2627. .IX Item "-mlittle, -mlittle-endian, -le"
  2628. Generate code for a little endian machine.
  2629. .IP "\fB\-mbig, \-mbig\-endian, \-be\fR" 4
  2630. .IX Item "-mbig, -mbig-endian, -be"
  2631. Generate code for a big endian machine.
  2632. .IP "\fB\-msolaris\fR" 4
  2633. .IX Item "-msolaris"
  2634. Generate code for Solaris.
  2635. .IP "\fB\-mno\-solaris\fR" 4
  2636. .IX Item "-mno-solaris"
  2637. Do not generate code for Solaris.
  2638. .IP "\fB\-nops=\fR\fIcount\fR" 4
  2639. .IX Item "-nops=count"
  2640. If an alignment directive inserts more than \fIcount\fR nops, put a
  2641. branch at the beginning to skip execution of the nops.
  2642. .PP
  2643. The following options are available when as is configured for a
  2644. RISC-V processor.
  2645. .IP "\fB\-fpic\fR" 4
  2646. .IX Item "-fpic"
  2647. .PD 0
  2648. .IP "\fB\-fPIC\fR" 4
  2649. .IX Item "-fPIC"
  2650. .PD
  2651. Generate position-independent code
  2652. .IP "\fB\-fno\-pic\fR" 4
  2653. .IX Item "-fno-pic"
  2654. Don't generate position-independent code (default)
  2655. .IP "\fB\-march=ISA\fR" 4
  2656. .IX Item "-march=ISA"
  2657. Select the base isa, as specified by \s-1ISA.\s0 For example \-march=rv32ima.
  2658. If this option and the architecture attributes aren't set, then assembler
  2659. will check the default configure setting \-\-with\-arch=ISA.
  2660. .IP "\fB\-misa\-spec=ISAspec\fR" 4
  2661. .IX Item "-misa-spec=ISAspec"
  2662. Select the default isa spec version. If the version of \s-1ISA\s0 isn't set
  2663. by \-march, then assembler helps to set the version according to
  2664. the default chosen spec. If this option isn't set, then assembler will
  2665. check the default configure setting \-\-with\-isa\-spec=ISAspec.
  2666. .IP "\fB\-mpriv\-spec=PRIVspec\fR" 4
  2667. .IX Item "-mpriv-spec=PRIVspec"
  2668. Select the privileged spec version. We can decide whether the \s-1CSR\s0 is valid or
  2669. not according to the chosen spec. If this option and the privilege attributes
  2670. aren't set, then assembler will check the default configure setting
  2671. \&\-\-with\-priv\-spec=PRIVspec.
  2672. .IP "\fB\-mabi=ABI\fR" 4
  2673. .IX Item "-mabi=ABI"
  2674. Selects the \s-1ABI,\s0 which is either \*(L"ilp32\*(R" or \*(L"lp64\*(R", optionally followed
  2675. by \*(L"f\*(R", \*(L"d\*(R", or \*(L"q\*(R" to indicate single-precision, double-precision, or
  2676. quad-precision floating-point calling convention, or none to indicate
  2677. the soft-float calling convention. Also, \*(L"ilp32\*(R" can optionally be followed
  2678. by \*(L"e\*(R" to indicate the \s-1RVE ABI,\s0 which is always soft-float.
  2679. .IP "\fB\-mrelax\fR" 4
  2680. .IX Item "-mrelax"
  2681. Take advantage of linker relaxations to reduce the number of instructions
  2682. required to materialize symbol addresses. (default)
  2683. .IP "\fB\-mno\-relax\fR" 4
  2684. .IX Item "-mno-relax"
  2685. Don't do linker relaxations.
  2686. .IP "\fB\-march\-attr\fR" 4
  2687. .IX Item "-march-attr"
  2688. Generate the default contents for the riscv elf attribute section if the
  2689. \&.attribute directives are not set. This section is used to record the
  2690. information that a linker or runtime loader needs to check compatibility.
  2691. This information includes \s-1ISA\s0 string, stack alignment requirement, unaligned
  2692. memory accesses, and the major, minor and revision version of privileged
  2693. specification.
  2694. .IP "\fB\-mno\-arch\-attr\fR" 4
  2695. .IX Item "-mno-arch-attr"
  2696. Don't generate the default riscv elf attribute section if the .attribute
  2697. directives are not set.
  2698. .IP "\fB\-mcsr\-check\fR" 4
  2699. .IX Item "-mcsr-check"
  2700. Enable the \s-1CSR\s0 checking for the ISA-dependent \s-1CRS\s0 and the read-only \s-1CSR.\s0
  2701. The ISA-dependent \s-1CSR\s0 are only valid when the specific \s-1ISA\s0 is set. The
  2702. read-only \s-1CSR\s0 can not be written by the \s-1CSR\s0 instructions.
  2703. .IP "\fB\-mno\-csr\-check\fR" 4
  2704. .IX Item "-mno-csr-check"
  2705. Don't do \s-1CSR\s0 checking.
  2706. .IP "\fB\-mlittle\-endian\fR" 4
  2707. .IX Item "-mlittle-endian"
  2708. Generate code for a little endian machine.
  2709. .IP "\fB\-mbig\-endian\fR" 4
  2710. .IX Item "-mbig-endian"
  2711. Generate code for a big endian machine.
  2712. .PP
  2713. See the info pages for documentation of the RX-specific options.
  2714. .PP
  2715. The following options are available when as is configured for the s390
  2716. processor family.
  2717. .IP "\fB\-m31\fR" 4
  2718. .IX Item "-m31"
  2719. .PD 0
  2720. .IP "\fB\-m64\fR" 4
  2721. .IX Item "-m64"
  2722. .PD
  2723. Select the word size, either 31/32 bits or 64 bits.
  2724. .IP "\fB\-mesa\fR" 4
  2725. .IX Item "-mesa"
  2726. .PD 0
  2727. .IP "\fB\-mzarch\fR" 4
  2728. .IX Item "-mzarch"
  2729. .PD
  2730. Select the architecture mode, either the Enterprise System
  2731. Architecture (esa) or the z/Architecture mode (zarch).
  2732. .IP "\fB\-march=\fR\fIprocessor\fR" 4
  2733. .IX Item "-march=processor"
  2734. Specify which s390 processor variant is the target, \fBg5\fR (or
  2735. \&\fBarch3\fR), \fBg6\fR, \fBz900\fR (or \fBarch5\fR), \fBz990\fR (or
  2736. \&\fBarch6\fR), \fBz9\-109\fR, \fBz9\-ec\fR (or \fBarch7\fR), \fBz10\fR (or
  2737. \&\fBarch8\fR), \fBz196\fR (or \fBarch9\fR), \fBzEC12\fR (or \fBarch10\fR),
  2738. \&\fBz13\fR (or \fBarch11\fR), \fBz14\fR (or \fBarch12\fR), or \fBz15\fR
  2739. (or \fBarch13\fR).
  2740. .IP "\fB\-mregnames\fR" 4
  2741. .IX Item "-mregnames"
  2742. .PD 0
  2743. .IP "\fB\-mno\-regnames\fR" 4
  2744. .IX Item "-mno-regnames"
  2745. .PD
  2746. Allow or disallow symbolic names for registers.
  2747. .IP "\fB\-mwarn\-areg\-zero\fR" 4
  2748. .IX Item "-mwarn-areg-zero"
  2749. Warn whenever the operand for a base or index register has been specified
  2750. but evaluates to zero.
  2751. .PP
  2752. The following options are available when as is configured for a
  2753. \&\s-1TMS320C6000\s0 processor.
  2754. .IP "\fB\-march=\fR\fIarch\fR" 4
  2755. .IX Item "-march=arch"
  2756. Enable (only) instructions from architecture \fIarch\fR. By default,
  2757. all instructions are permitted.
  2758. .Sp
  2759. The following values of \fIarch\fR are accepted: \f(CW\*(C`c62x\*(C'\fR,
  2760. \&\f(CW\*(C`c64x\*(C'\fR, \f(CW\*(C`c64x+\*(C'\fR, \f(CW\*(C`c67x\*(C'\fR, \f(CW\*(C`c67x+\*(C'\fR, \f(CW\*(C`c674x\*(C'\fR.
  2761. .IP "\fB\-mdsbt\fR" 4
  2762. .IX Item "-mdsbt"
  2763. .PD 0
  2764. .IP "\fB\-mno\-dsbt\fR" 4
  2765. .IX Item "-mno-dsbt"
  2766. .PD
  2767. The \fB\-mdsbt\fR option causes the assembler to generate the
  2768. \&\f(CW\*(C`Tag_ABI_DSBT\*(C'\fR attribute with a value of 1, indicating that the
  2769. code is using \s-1DSBT\s0 addressing. The \fB\-mno\-dsbt\fR option, the
  2770. default, causes the tag to have a value of 0, indicating that the code
  2771. does not use \s-1DSBT\s0 addressing. The linker will emit a warning if
  2772. objects of different type (\s-1DSBT\s0 and non-DSBT) are linked together.
  2773. .IP "\fB\-mpid=no\fR" 4
  2774. .IX Item "-mpid=no"
  2775. .PD 0
  2776. .IP "\fB\-mpid=near\fR" 4
  2777. .IX Item "-mpid=near"
  2778. .IP "\fB\-mpid=far\fR" 4
  2779. .IX Item "-mpid=far"
  2780. .PD
  2781. The \fB\-mpid=\fR option causes the assembler to generate the
  2782. \&\f(CW\*(C`Tag_ABI_PID\*(C'\fR attribute with a value indicating the form of data
  2783. addressing used by the code. \fB\-mpid=no\fR, the default,
  2784. indicates position-dependent data addressing, \fB\-mpid=near\fR
  2785. indicates position-independent addressing with \s-1GOT\s0 accesses using near
  2786. \&\s-1DP\s0 addressing, and \fB\-mpid=far\fR indicates position-independent
  2787. addressing with \s-1GOT\s0 accesses using far \s-1DP\s0 addressing. The linker will
  2788. emit a warning if objects built with different settings of this option
  2789. are linked together.
  2790. .IP "\fB\-mpic\fR" 4
  2791. .IX Item "-mpic"
  2792. .PD 0
  2793. .IP "\fB\-mno\-pic\fR" 4
  2794. .IX Item "-mno-pic"
  2795. .PD
  2796. The \fB\-mpic\fR option causes the assembler to generate the
  2797. \&\f(CW\*(C`Tag_ABI_PIC\*(C'\fR attribute with a value of 1, indicating that the
  2798. code is using position-independent code addressing, The
  2799. \&\f(CW\*(C`\-mno\-pic\*(C'\fR option, the default, causes the tag to have a value of
  2800. 0, indicating position-dependent code addressing. The linker will
  2801. emit a warning if objects of different type (position-dependent and
  2802. position-independent) are linked together.
  2803. .IP "\fB\-mbig\-endian\fR" 4
  2804. .IX Item "-mbig-endian"
  2805. .PD 0
  2806. .IP "\fB\-mlittle\-endian\fR" 4
  2807. .IX Item "-mlittle-endian"
  2808. .PD
  2809. Generate code for the specified endianness. The default is
  2810. little-endian.
  2811. .PP
  2812. The following options are available when as is configured for a TILE-Gx
  2813. processor.
  2814. .IP "\fB\-m32 | \-m64\fR" 4
  2815. .IX Item "-m32 | -m64"
  2816. Select the word size, either 32 bits or 64 bits.
  2817. .IP "\fB\-EB | \-EL\fR" 4
  2818. .IX Item "-EB | -EL"
  2819. Select the endianness, either big-endian (\-EB) or little-endian (\-EL).
  2820. .PP
  2821. The following option is available when as is configured for a Visium
  2822. processor.
  2823. .IP "\fB\-mtune=\fR\fIarch\fR" 4
  2824. .IX Item "-mtune=arch"
  2825. This option specifies the target architecture. If an attempt is made to
  2826. assemble an instruction that will not execute on the target architecture,
  2827. the assembler will issue an error message.
  2828. .Sp
  2829. The following names are recognized:
  2830. \&\f(CW\*(C`mcm24\*(C'\fR
  2831. \&\f(CW\*(C`mcm\*(C'\fR
  2832. \&\f(CW\*(C`gr5\*(C'\fR
  2833. \&\f(CW\*(C`gr6\*(C'\fR
  2834. .PP
  2835. The following options are available when as is configured for an
  2836. Xtensa processor.
  2837. .IP "\fB\-\-text\-section\-literals | \-\-no\-text\-section\-literals\fR" 4
  2838. .IX Item "--text-section-literals | --no-text-section-literals"
  2839. Control the treatment of literal pools. The default is
  2840. \&\fB\-\-no\-text\-section\-literals\fR, which places literals in
  2841. separate sections in the output file. This allows the literal pool to be
  2842. placed in a data \s-1RAM/ROM.\s0 With \fB\-\-text\-section\-literals\fR, the
  2843. literals are interspersed in the text section in order to keep them as
  2844. close as possible to their references. This may be necessary for large
  2845. assembly files, where the literals would otherwise be out of range of the
  2846. \&\f(CW\*(C`L32R\*(C'\fR instructions in the text section. Literals are grouped into
  2847. pools following \f(CW\*(C`.literal_position\*(C'\fR directives or preceding
  2848. \&\f(CW\*(C`ENTRY\*(C'\fR instructions. These options only affect literals referenced
  2849. via PC-relative \f(CW\*(C`L32R\*(C'\fR instructions; literals for absolute mode
  2850. \&\f(CW\*(C`L32R\*(C'\fR instructions are handled separately.
  2851. .IP "\fB\-\-auto\-litpools | \-\-no\-auto\-litpools\fR" 4
  2852. .IX Item "--auto-litpools | --no-auto-litpools"
  2853. Control the treatment of literal pools. The default is
  2854. \&\fB\-\-no\-auto\-litpools\fR, which in the absence of
  2855. \&\fB\-\-text\-section\-literals\fR places literals in separate sections
  2856. in the output file. This allows the literal pool to be placed in a data
  2857. \&\s-1RAM/ROM.\s0 With \fB\-\-auto\-litpools\fR, the literals are interspersed
  2858. in the text section in order to keep them as close as possible to their
  2859. references, explicit \f(CW\*(C`.literal_position\*(C'\fR directives are not
  2860. required. This may be necessary for very large functions, where single
  2861. literal pool at the beginning of the function may not be reachable by
  2862. \&\f(CW\*(C`L32R\*(C'\fR instructions at the end. These options only affect
  2863. literals referenced via PC-relative \f(CW\*(C`L32R\*(C'\fR instructions; literals
  2864. for absolute mode \f(CW\*(C`L32R\*(C'\fR instructions are handled separately.
  2865. When used together with \fB\-\-text\-section\-literals\fR,
  2866. \&\fB\-\-auto\-litpools\fR takes precedence.
  2867. .IP "\fB\-\-absolute\-literals | \-\-no\-absolute\-literals\fR" 4
  2868. .IX Item "--absolute-literals | --no-absolute-literals"
  2869. Indicate to the assembler whether \f(CW\*(C`L32R\*(C'\fR instructions use absolute
  2870. or PC-relative addressing. If the processor includes the absolute
  2871. addressing option, the default is to use absolute \f(CW\*(C`L32R\*(C'\fR
  2872. relocations. Otherwise, only the PC-relative \f(CW\*(C`L32R\*(C'\fR relocations
  2873. can be used.
  2874. .IP "\fB\-\-target\-align | \-\-no\-target\-align\fR" 4
  2875. .IX Item "--target-align | --no-target-align"
  2876. Enable or disable automatic alignment to reduce branch penalties at some
  2877. expense in code size. This optimization is enabled by default. Note
  2878. that the assembler will always align instructions like \f(CW\*(C`LOOP\*(C'\fR that
  2879. have fixed alignment requirements.
  2880. .IP "\fB\-\-longcalls | \-\-no\-longcalls\fR" 4
  2881. .IX Item "--longcalls | --no-longcalls"
  2882. Enable or disable transformation of call instructions to allow calls
  2883. across a greater range of addresses. This option should be used when call
  2884. targets can potentially be out of range. It may degrade both code size
  2885. and performance, but the linker can generally optimize away the
  2886. unnecessary overhead when a call ends up within range. The default is
  2887. \&\fB\-\-no\-longcalls\fR.
  2888. .IP "\fB\-\-transform | \-\-no\-transform\fR" 4
  2889. .IX Item "--transform | --no-transform"
  2890. Enable or disable all assembler transformations of Xtensa instructions,
  2891. including both relaxation and optimization. The default is
  2892. \&\fB\-\-transform\fR; \fB\-\-no\-transform\fR should only be used in the
  2893. rare cases when the instructions must be exactly as specified in the
  2894. assembly source. Using \fB\-\-no\-transform\fR causes out of range
  2895. instruction operands to be errors.
  2896. .IP "\fB\-\-rename\-section\fR \fIoldname\fR\fB=\fR\fInewname\fR" 4
  2897. .IX Item "--rename-section oldname=newname"
  2898. Rename the \fIoldname\fR section to \fInewname\fR. This option can be used
  2899. multiple times to rename multiple sections.
  2900. .IP "\fB\-\-trampolines | \-\-no\-trampolines\fR" 4
  2901. .IX Item "--trampolines | --no-trampolines"
  2902. Enable or disable transformation of jump instructions to allow jumps
  2903. across a greater range of addresses. This option should be used when jump targets can
  2904. potentially be out of range. In the absence of such jumps this option
  2905. does not affect code size or performance. The default is
  2906. \&\fB\-\-trampolines\fR.
  2907. .IP "\fB\-\-abi\-windowed | \-\-abi\-call0\fR" 4
  2908. .IX Item "--abi-windowed | --abi-call0"
  2909. Choose \s-1ABI\s0 tag written to the \f(CW\*(C`.xtensa.info\*(C'\fR section. \s-1ABI\s0 tag
  2910. indicates \s-1ABI\s0 of the assembly code. A warning is issued by the linker
  2911. on an attempt to link object files with inconsistent \s-1ABI\s0 tags.
  2912. Default \s-1ABI\s0 is chosen by the Xtensa core configuration.
  2913. .PP
  2914. The following options are available when as is configured for an
  2915. Z80 processor.
  2916. .PP
  2917. \&\f(CW@chapter\fR Z80 Dependent Features
  2918. .SS "Command-line Options"
  2919. .IX Subsection "Command-line Options"
  2920. .IP "\fB\-march=\fR\fI\s-1CPU\s0\fR\fB[\-\fR\fI\s-1EXT\s0\fR\fB...][+\fR\fI\s-1EXT\s0\fR\fB...]\fR" 4
  2921. .IX Item "-march=CPU[-EXT...][+EXT...]"
  2922. This option specifies the target processor. The assembler will issue
  2923. an error message if an attempt is made to assemble an instruction which
  2924. will not execute on the target processor. The following processor names
  2925. are recognized:
  2926. \&\f(CW\*(C`z80\*(C'\fR,
  2927. \&\f(CW\*(C`z180\*(C'\fR,
  2928. \&\f(CW\*(C`ez80\*(C'\fR,
  2929. \&\f(CW\*(C`gbz80\*(C'\fR,
  2930. \&\f(CW\*(C`z80n\*(C'\fR,
  2931. \&\f(CW\*(C`r800\*(C'\fR.
  2932. In addition to the basic instruction set, the assembler can be told to
  2933. accept some extention mnemonics. For example,
  2934. \&\f(CW\*(C`\-march=z180+sli+infc\*(C'\fR extends \fIz180\fR with \fI\s-1SLI\s0\fR instructions and
  2935. \&\fI\s-1IN F,\s0(C)\fR. The following extentions are currently supported:
  2936. \&\f(CW\*(C`full\*(C'\fR (all known instructions),
  2937. \&\f(CW\*(C`adl\*(C'\fR (\s-1ADL CPU\s0 mode by default, eZ80 only),
  2938. \&\f(CW\*(C`sli\*(C'\fR (instruction known as \fI\s-1SLI\s0\fR, \fI\s-1SLL\s0\fR or \fI\s-1SL1\s0\fR),
  2939. \&\f(CW\*(C`xyhl\*(C'\fR (instructions with halves of index registers: \fI\s-1IXL\s0\fR, \fI\s-1IXH\s0\fR,
  2940. \&\fI\s-1IYL\s0\fR, \fI\s-1IYH\s0\fR),
  2941. \&\f(CW\*(C`xdcb\*(C'\fR (instructions like \fIRotOp (II+d),R\fR and \fIBitOp n,(II+d),R\fR),
  2942. \&\f(CW\*(C`infc\*(C'\fR (instruction \fI\s-1IN F,\s0(C)\fR or \fI\s-1IN\s0 (C)\fR),
  2943. \&\f(CW\*(C`outc0\*(C'\fR (instruction \fI\s-1OUT\s0 (C),0\fR).
  2944. Note that rather than extending a basic instruction set, the extention
  2945. mnemonics starting with \f(CW\*(C`\-\*(C'\fR revoke the respective functionality:
  2946. \&\f(CW\*(C`\-march=z80\-full+xyhl\*(C'\fR first removes all default extentions and adds
  2947. support for index registers halves only.
  2948. .Sp
  2949. If this option is not specified then \f(CW\*(C`\-march=z80+xyhl+infc\*(C'\fR is assumed.
  2950. .IP "\fB\-local\-prefix=\fR\fIprefix\fR" 4
  2951. .IX Item "-local-prefix=prefix"
  2952. Mark all labels with specified prefix as local. But such label can be
  2953. marked global explicitly in the code. This option do not change default
  2954. local label prefix \f(CW\*(C`.L\*(C'\fR, it is just adds new one.
  2955. .IP "\fB\-colonless\fR" 4
  2956. .IX Item "-colonless"
  2957. Accept colonless labels. All symbols at line begin are treated as labels.
  2958. .IP "\fB\-sdcc\fR" 4
  2959. .IX Item "-sdcc"
  2960. Accept assembler code produced by \s-1SDCC.\s0
  2961. .IP "\fB\-fp\-s=\fR\fI\s-1FORMAT\s0\fR" 4
  2962. .IX Item "-fp-s=FORMAT"
  2963. Single precision floating point numbers format. Default: ieee754 (32 bit).
  2964. .IP "\fB\-fp\-d=\fR\fI\s-1FORMAT\s0\fR" 4
  2965. .IX Item "-fp-d=FORMAT"
  2966. Double precision floating point numbers format. Default: ieee754 (64 bit).
  2967. .SH "SEE ALSO"
  2968. .IX Header "SEE ALSO"
  2969. \&\fIgcc\fR\|(1), \fIld\fR\|(1), and the Info entries for \fIbinutils\fR and \fIld\fR.
  2970. .SH "COPYRIGHT"
  2971. .IX Header "COPYRIGHT"
  2972. Copyright (c) 1991\-2021 Free Software Foundation, Inc.
  2973. .PP
  2974. Permission is granted to copy, distribute and/or modify this document
  2975. under the terms of the \s-1GNU\s0 Free Documentation License, Version 1.3
  2976. or any later version published by the Free Software Foundation;
  2977. with no Invariant Sections, with no Front-Cover Texts, and with no
  2978. Back-Cover Texts. A copy of the license is included in the
  2979. section entitled \*(L"\s-1GNU\s0 Free Documentation License\*(R".