as.texi 292 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617
  1. \input texinfo @c -*-Texinfo-*-
  2. @c Copyright (C) 1991-2022 Free Software Foundation, Inc.
  3. @c UPDATE!! On future updates--
  4. @c (1) check for new machine-dep cmdline options in
  5. @c md_parse_option definitions in config/tc-*.c
  6. @c (2) for platform-specific directives, examine md_pseudo_op
  7. @c in config/tc-*.c
  8. @c (3) for object-format specific directives, examine obj_pseudo_op
  9. @c in config/obj-*.c
  10. @c (4) portable directives in potable[] in read.c
  11. @c %**start of header
  12. @setfilename as.info
  13. @c ---config---
  14. @macro gcctabopt{body}
  15. @code{\body\}
  16. @end macro
  17. @c defaults, config file may override:
  18. @set have-stabs
  19. @c ---
  20. @c man begin NAME
  21. @c ---
  22. @include asconfig.texi
  23. @include bfdver.texi
  24. @c ---
  25. @c man end
  26. @c ---
  27. @c common OR combinations of conditions
  28. @ifset COFF
  29. @set COFF-ELF
  30. @end ifset
  31. @ifset ELF
  32. @set COFF-ELF
  33. @end ifset
  34. @ifset AOUT
  35. @set aout
  36. @end ifset
  37. @ifset ARM/Thumb
  38. @set ARM
  39. @end ifset
  40. @ifset Blackfin
  41. @set Blackfin
  42. @end ifset
  43. @ifset BPF
  44. @set BPF
  45. @end ifset
  46. @ifset H8/300
  47. @set H8
  48. @end ifset
  49. @ifset SH
  50. @set H8
  51. @end ifset
  52. @ifset HPPA
  53. @set abnormal-separator
  54. @end ifset
  55. @c ------------
  56. @ifset GENERIC
  57. @settitle Using @value{AS}
  58. @end ifset
  59. @ifclear GENERIC
  60. @settitle Using @value{AS} (@value{TARGET})
  61. @end ifclear
  62. @setchapternewpage odd
  63. @c %**end of header
  64. @c @smallbook
  65. @c @set SMALL
  66. @c WARE! Some of the machine-dependent sections contain tables of machine
  67. @c instructions. Except in multi-column format, these tables look silly.
  68. @c Unfortunately, Texinfo doesn't have a general-purpose multi-col format, so
  69. @c the multi-col format is faked within @example sections.
  70. @c
  71. @c Again unfortunately, the natural size that fits on a page, for these tables,
  72. @c is different depending on whether or not smallbook is turned on.
  73. @c This matters, because of order: text flow switches columns at each page
  74. @c break.
  75. @c
  76. @c The format faked in this source works reasonably well for smallbook,
  77. @c not well for the default large-page format. This manual expects that if you
  78. @c turn on @smallbook, you will also uncomment the "@set SMALL" to enable the
  79. @c tables in question. You can turn on one without the other at your
  80. @c discretion, of course.
  81. @ifinfo
  82. @set SMALL
  83. @c the insn tables look just as silly in info files regardless of smallbook,
  84. @c might as well show 'em anyways.
  85. @end ifinfo
  86. @ifnottex
  87. @dircategory Software development
  88. @direntry
  89. * As: (as). The GNU assembler.
  90. * Gas: (as). The GNU assembler.
  91. @end direntry
  92. @end ifnottex
  93. @finalout
  94. @syncodeindex ky cp
  95. @copying
  96. This file documents the GNU Assembler "@value{AS}".
  97. @c man begin COPYRIGHT
  98. Copyright @copyright{} 1991-2022 Free Software Foundation, Inc.
  99. Permission is granted to copy, distribute and/or modify this document
  100. under the terms of the GNU Free Documentation License, Version 1.3
  101. or any later version published by the Free Software Foundation;
  102. with no Invariant Sections, with no Front-Cover Texts, and with no
  103. Back-Cover Texts. A copy of the license is included in the
  104. section entitled ``GNU Free Documentation License''.
  105. @c man end
  106. @end copying
  107. @titlepage
  108. @title Using @value{AS}
  109. @subtitle The @sc{gnu} Assembler
  110. @ifclear GENERIC
  111. @subtitle for the @value{TARGET} family
  112. @end ifclear
  113. @ifset VERSION_PACKAGE
  114. @sp 1
  115. @subtitle @value{VERSION_PACKAGE}
  116. @end ifset
  117. @sp 1
  118. @subtitle Version @value{VERSION}
  119. @sp 1
  120. @sp 13
  121. The Free Software Foundation Inc.@: thanks The Nice Computer
  122. Company of Australia for loaning Dean Elsner to write the
  123. first (Vax) version of @command{as} for Project @sc{gnu}.
  124. The proprietors, management and staff of TNCCA thank FSF for
  125. distracting the boss while they got some work
  126. done.
  127. @sp 3
  128. @author Dean Elsner, Jay Fenlason & friends
  129. @page
  130. @tex
  131. {\parskip=0pt
  132. \hfill {\it Using {\tt @value{AS}}}\par
  133. \hfill Edited by Cygnus Support\par
  134. }
  135. %"boxit" macro for figures:
  136. %Modified from Knuth's ``boxit'' macro from TeXbook (answer to exercise 21.3)
  137. \gdef\boxit#1#2{\vbox{\hrule\hbox{\vrule\kern3pt
  138. \vbox{\parindent=0pt\parskip=0pt\hsize=#1\kern3pt\strut\hfil
  139. #2\hfil\strut\kern3pt}\kern3pt\vrule}\hrule}}%box with visible outline
  140. \gdef\ibox#1#2{\hbox to #1{#2\hfil}\kern8pt}% invisible box
  141. @end tex
  142. @vskip 0pt plus 1filll
  143. Copyright @copyright{} 1991-2022 Free Software Foundation, Inc.
  144. Permission is granted to copy, distribute and/or modify this document
  145. under the terms of the GNU Free Documentation License, Version 1.3
  146. or any later version published by the Free Software Foundation;
  147. with no Invariant Sections, with no Front-Cover Texts, and with no
  148. Back-Cover Texts. A copy of the license is included in the
  149. section entitled ``GNU Free Documentation License''.
  150. @end titlepage
  151. @contents
  152. @ifnottex
  153. @node Top
  154. @top Using @value{AS}
  155. This file is a user guide to the @sc{gnu} assembler @command{@value{AS}}
  156. @ifset VERSION_PACKAGE
  157. @value{VERSION_PACKAGE}
  158. @end ifset
  159. version @value{VERSION}.
  160. @ifclear GENERIC
  161. This version of the file describes @command{@value{AS}} configured to generate
  162. code for @value{TARGET} architectures.
  163. @end ifclear
  164. This document is distributed under the terms of the GNU Free
  165. Documentation License. A copy of the license is included in the
  166. section entitled ``GNU Free Documentation License''.
  167. @menu
  168. * Overview:: Overview
  169. * Invoking:: Command-Line Options
  170. * Syntax:: Syntax
  171. * Sections:: Sections and Relocation
  172. * Symbols:: Symbols
  173. * Expressions:: Expressions
  174. * Pseudo Ops:: Assembler Directives
  175. @ifset ELF
  176. * Object Attributes:: Object Attributes
  177. @end ifset
  178. * Machine Dependencies:: Machine Dependent Features
  179. * Reporting Bugs:: Reporting Bugs
  180. * Acknowledgements:: Who Did What
  181. * GNU Free Documentation License:: GNU Free Documentation License
  182. * AS Index:: AS Index
  183. @end menu
  184. @end ifnottex
  185. @node Overview
  186. @chapter Overview
  187. @iftex
  188. This manual is a user guide to the @sc{gnu} assembler @command{@value{AS}}.
  189. @ifclear GENERIC
  190. This version of the manual describes @command{@value{AS}} configured to generate
  191. code for @value{TARGET} architectures.
  192. @end ifclear
  193. @end iftex
  194. @cindex invocation summary
  195. @cindex option summary
  196. @cindex summary of options
  197. Here is a brief summary of how to invoke @command{@value{AS}}. For details,
  198. see @ref{Invoking,,Command-Line Options}.
  199. @c man title AS the portable GNU assembler.
  200. @ignore
  201. @c man begin SEEALSO
  202. gcc(1), ld(1), and the Info entries for @file{binutils} and @file{ld}.
  203. @c man end
  204. @end ignore
  205. @c We don't use deffn and friends for the following because they seem
  206. @c to be limited to one line for the header.
  207. @smallexample
  208. @c man begin SYNOPSIS
  209. @value{AS} [@b{-a}[@b{cdghlns}][=@var{file}]] [@b{--alternate}] [@b{-D}]
  210. [@b{--compress-debug-sections}] [@b{--nocompress-debug-sections}]
  211. [@b{--debug-prefix-map} @var{old}=@var{new}]
  212. [@b{--defsym} @var{sym}=@var{val}] [@b{-f}] [@b{-g}] [@b{--gstabs}]
  213. [@b{--gstabs+}] [@b{--gdwarf-<N>}] [@b{--gdwarf-sections}]
  214. [@b{--gdwarf-cie-version}=@var{VERSION}]
  215. [@b{--help}] [@b{-I} @var{dir}] [@b{-J}]
  216. [@b{-K}] [@b{-L}] [@b{--listing-lhs-width}=@var{NUM}]
  217. [@b{--listing-lhs-width2}=@var{NUM}] [@b{--listing-rhs-width}=@var{NUM}]
  218. [@b{--listing-cont-lines}=@var{NUM}] [@b{--keep-locals}]
  219. [@b{--no-pad-sections}]
  220. [@b{-o} @var{objfile}] [@b{-R}]
  221. [@b{--statistics}]
  222. [@b{-v}] [@b{-version}] [@b{--version}]
  223. [@b{-W}] [@b{--warn}] [@b{--fatal-warnings}] [@b{-w}] [@b{-x}]
  224. [@b{-Z}] [@b{@@@var{FILE}}]
  225. [@b{--sectname-subst}] [@b{--size-check=[error|warning]}]
  226. [@b{--elf-stt-common=[no|yes]}]
  227. [@b{--generate-missing-build-notes=[no|yes]}]
  228. [@b{--multibyte-handling=[allow|warn|warn-sym-only]}]
  229. [@b{--target-help}] [@var{target-options}]
  230. [@b{--}|@var{files} @dots{}]
  231. @c
  232. @c man end
  233. @c Target dependent options are listed below. Keep the list sorted.
  234. @c Add an empty line for separation.
  235. @c man begin TARGET
  236. @ifset AARCH64
  237. @emph{Target AArch64 options:}
  238. [@b{-EB}|@b{-EL}]
  239. [@b{-mabi}=@var{ABI}]
  240. @end ifset
  241. @ifset ALPHA
  242. @emph{Target Alpha options:}
  243. [@b{-m@var{cpu}}]
  244. [@b{-mdebug} | @b{-no-mdebug}]
  245. [@b{-replace} | @b{-noreplace}]
  246. [@b{-relax}] [@b{-g}] [@b{-G@var{size}}]
  247. [@b{-F}] [@b{-32addr}]
  248. @end ifset
  249. @ifset ARC
  250. @emph{Target ARC options:}
  251. [@b{-mcpu=@var{cpu}}]
  252. [@b{-mA6}|@b{-mARC600}|@b{-mARC601}|@b{-mA7}|@b{-mARC700}|@b{-mEM}|@b{-mHS}]
  253. [@b{-mcode-density}]
  254. [@b{-mrelax}]
  255. [@b{-EB}|@b{-EL}]
  256. @end ifset
  257. @ifset ARM
  258. @emph{Target ARM options:}
  259. @c Don't document the deprecated options
  260. [@b{-mcpu}=@var{processor}[+@var{extension}@dots{}]]
  261. [@b{-march}=@var{architecture}[+@var{extension}@dots{}]]
  262. [@b{-mfpu}=@var{floating-point-format}]
  263. [@b{-mfloat-abi}=@var{abi}]
  264. [@b{-meabi}=@var{ver}]
  265. [@b{-mthumb}]
  266. [@b{-EB}|@b{-EL}]
  267. [@b{-mapcs-32}|@b{-mapcs-26}|@b{-mapcs-float}|
  268. @b{-mapcs-reentrant}]
  269. [@b{-mthumb-interwork}] [@b{-k}]
  270. @end ifset
  271. @ifset Blackfin
  272. @emph{Target Blackfin options:}
  273. [@b{-mcpu}=@var{processor}[-@var{sirevision}]]
  274. [@b{-mfdpic}]
  275. [@b{-mno-fdpic}]
  276. [@b{-mnopic}]
  277. @end ifset
  278. @ifset BPF
  279. @emph{Target BPF options:}
  280. [@b{-EL}] [@b{-EB}]
  281. @end ifset
  282. @ifset CRIS
  283. @emph{Target CRIS options:}
  284. [@b{--underscore} | @b{--no-underscore}]
  285. [@b{--pic}] [@b{-N}]
  286. [@b{--emulation=criself} | @b{--emulation=crisaout}]
  287. [@b{--march=v0_v10} | @b{--march=v10} | @b{--march=v32} | @b{--march=common_v10_v32}]
  288. @c Deprecated -- deliberately not documented.
  289. @c [@b{-h}] [@b{-H}]
  290. @end ifset
  291. @ifset CSKY
  292. @emph{Target C-SKY options:}
  293. [@b{-march=@var{arch}}] [@b{-mcpu=@var{cpu}}]
  294. [@b{-EL}] [@b{-mlittle-endian}] [@b{-EB}] [@b{-mbig-endian}]
  295. [@b{-fpic}] [@b{-pic}]
  296. [@b{-mljump}] [@b{-mno-ljump}]
  297. [@b{-force2bsr}] [@b{-mforce2bsr}] [@b{-no-force2bsr}] [@b{-mno-force2bsr}]
  298. [@b{-jsri2bsr}] [@b{-mjsri2bsr}] [@b{-no-jsri2bsr }] [@b{-mno-jsri2bsr}]
  299. [@b{-mnolrw }] [@b{-mno-lrw}]
  300. [@b{-melrw}] [@b{-mno-elrw}]
  301. [@b{-mlaf }] [@b{-mliterals-after-func}]
  302. [@b{-mno-laf}] [@b{-mno-literals-after-func}]
  303. [@b{-mlabr}] [@b{-mliterals-after-br}]
  304. [@b{-mno-labr}] [@b{-mnoliterals-after-br}]
  305. [@b{-mistack}] [@b{-mno-istack}]
  306. [@b{-mhard-float}] [@b{-mmp}] [@b{-mcp}] [@b{-mcache}]
  307. [@b{-msecurity}] [@b{-mtrust}]
  308. [@b{-mdsp}] [@b{-medsp}] [@b{-mvdsp}]
  309. @end ifset
  310. @ifset D10V
  311. @emph{Target D10V options:}
  312. [@b{-O}]
  313. @end ifset
  314. @ifset D30V
  315. @emph{Target D30V options:}
  316. [@b{-O}|@b{-n}|@b{-N}]
  317. @end ifset
  318. @ifset EPIPHANY
  319. @emph{Target EPIPHANY options:}
  320. [@b{-mepiphany}|@b{-mepiphany16}]
  321. @end ifset
  322. @ifset H8
  323. @emph{Target H8/300 options:}
  324. [-h-tick-hex]
  325. @end ifset
  326. @ifset HPPA
  327. @c HPPA has no machine-dependent assembler options (yet).
  328. @end ifset
  329. @ifset I80386
  330. @emph{Target i386 options:}
  331. [@b{--32}|@b{--x32}|@b{--64}] [@b{-n}]
  332. [@b{-march}=@var{CPU}[+@var{EXTENSION}@dots{}]] [@b{-mtune}=@var{CPU}]
  333. @end ifset
  334. @ifset IA64
  335. @emph{Target IA-64 options:}
  336. [@b{-mconstant-gp}|@b{-mauto-pic}]
  337. [@b{-milp32}|@b{-milp64}|@b{-mlp64}|@b{-mp64}]
  338. [@b{-mle}|@b{mbe}]
  339. [@b{-mtune=itanium1}|@b{-mtune=itanium2}]
  340. [@b{-munwind-check=warning}|@b{-munwind-check=error}]
  341. [@b{-mhint.b=ok}|@b{-mhint.b=warning}|@b{-mhint.b=error}]
  342. [@b{-x}|@b{-xexplicit}] [@b{-xauto}] [@b{-xdebug}]
  343. @end ifset
  344. @ifset IP2K
  345. @emph{Target IP2K options:}
  346. [@b{-mip2022}|@b{-mip2022ext}]
  347. @end ifset
  348. @ifset LOONGARCH
  349. @emph{Target LOONGARCH options:}
  350. [@b{-fpic}|@b{-fPIC}|@b{-fno-pic}]
  351. @end ifset
  352. @ifset M32C
  353. @emph{Target M32C options:}
  354. [@b{-m32c}|@b{-m16c}] [-relax] [-h-tick-hex]
  355. @end ifset
  356. @ifset M32R
  357. @emph{Target M32R options:}
  358. [@b{--m32rx}|@b{--[no-]warn-explicit-parallel-conflicts}|
  359. @b{--W[n]p}]
  360. @end ifset
  361. @ifset M680X0
  362. @emph{Target M680X0 options:}
  363. [@b{-l}] [@b{-m68000}|@b{-m68010}|@b{-m68020}|@dots{}]
  364. @end ifset
  365. @ifset M68HC11
  366. @emph{Target M68HC11 options:}
  367. [@b{-m68hc11}|@b{-m68hc12}|@b{-m68hcs12}|@b{-mm9s12x}|@b{-mm9s12xg}]
  368. [@b{-mshort}|@b{-mlong}]
  369. [@b{-mshort-double}|@b{-mlong-double}]
  370. [@b{--force-long-branches}] [@b{--short-branches}]
  371. [@b{--strict-direct-mode}] [@b{--print-insn-syntax}]
  372. [@b{--print-opcodes}] [@b{--generate-example}]
  373. @end ifset
  374. @ifset MCORE
  375. @emph{Target MCORE options:}
  376. [@b{-jsri2bsr}] [@b{-sifilter}] [@b{-relax}]
  377. [@b{-mcpu=[210|340]}]
  378. @end ifset
  379. @ifset METAG
  380. @emph{Target Meta options:}
  381. [@b{-mcpu=@var{cpu}}] [@b{-mfpu=@var{cpu}}] [@b{-mdsp=@var{cpu}}]
  382. @end ifset
  383. @ifset MICROBLAZE
  384. @emph{Target MICROBLAZE options:}
  385. @c MicroBlaze has no machine-dependent assembler options.
  386. @end ifset
  387. @ifset MIPS
  388. @emph{Target MIPS options:}
  389. [@b{-nocpp}] [@b{-EL}] [@b{-EB}] [@b{-O}[@var{optimization level}]]
  390. [@b{-g}[@var{debug level}]] [@b{-G} @var{num}] [@b{-KPIC}] [@b{-call_shared}]
  391. [@b{-non_shared}] [@b{-xgot} [@b{-mvxworks-pic}]
  392. [@b{-mabi}=@var{ABI}] [@b{-32}] [@b{-n32}] [@b{-64}] [@b{-mfp32}] [@b{-mgp32}]
  393. [@b{-mfp64}] [@b{-mgp64}] [@b{-mfpxx}]
  394. [@b{-modd-spreg}] [@b{-mno-odd-spreg}]
  395. [@b{-march}=@var{CPU}] [@b{-mtune}=@var{CPU}] [@b{-mips1}] [@b{-mips2}]
  396. [@b{-mips3}] [@b{-mips4}] [@b{-mips5}] [@b{-mips32}] [@b{-mips32r2}]
  397. [@b{-mips32r3}] [@b{-mips32r5}] [@b{-mips32r6}] [@b{-mips64}] [@b{-mips64r2}]
  398. [@b{-mips64r3}] [@b{-mips64r5}] [@b{-mips64r6}]
  399. [@b{-construct-floats}] [@b{-no-construct-floats}]
  400. [@b{-mignore-branch-isa}] [@b{-mno-ignore-branch-isa}]
  401. [@b{-mnan=@var{encoding}}]
  402. [@b{-trap}] [@b{-no-break}] [@b{-break}] [@b{-no-trap}]
  403. [@b{-mips16}] [@b{-no-mips16}]
  404. [@b{-mmips16e2}] [@b{-mno-mips16e2}]
  405. [@b{-mmicromips}] [@b{-mno-micromips}]
  406. [@b{-msmartmips}] [@b{-mno-smartmips}]
  407. [@b{-mips3d}] [@b{-no-mips3d}]
  408. [@b{-mdmx}] [@b{-no-mdmx}]
  409. [@b{-mdsp}] [@b{-mno-dsp}]
  410. [@b{-mdspr2}] [@b{-mno-dspr2}]
  411. [@b{-mdspr3}] [@b{-mno-dspr3}]
  412. [@b{-mmsa}] [@b{-mno-msa}]
  413. [@b{-mxpa}] [@b{-mno-xpa}]
  414. [@b{-mmt}] [@b{-mno-mt}]
  415. [@b{-mmcu}] [@b{-mno-mcu}]
  416. [@b{-mcrc}] [@b{-mno-crc}]
  417. [@b{-mginv}] [@b{-mno-ginv}]
  418. [@b{-mloongson-mmi}] [@b{-mno-loongson-mmi}]
  419. [@b{-mloongson-cam}] [@b{-mno-loongson-cam}]
  420. [@b{-mloongson-ext}] [@b{-mno-loongson-ext}]
  421. [@b{-mloongson-ext2}] [@b{-mno-loongson-ext2}]
  422. [@b{-minsn32}] [@b{-mno-insn32}]
  423. [@b{-mfix7000}] [@b{-mno-fix7000}]
  424. [@b{-mfix-rm7000}] [@b{-mno-fix-rm7000}]
  425. [@b{-mfix-vr4120}] [@b{-mno-fix-vr4120}]
  426. [@b{-mfix-vr4130}] [@b{-mno-fix-vr4130}]
  427. [@b{-mfix-r5900}] [@b{-mno-fix-r5900}]
  428. [@b{-mdebug}] [@b{-no-mdebug}]
  429. [@b{-mpdr}] [@b{-mno-pdr}]
  430. @end ifset
  431. @ifset MMIX
  432. @emph{Target MMIX options:}
  433. [@b{--fixed-special-register-names}] [@b{--globalize-symbols}]
  434. [@b{--gnu-syntax}] [@b{--relax}] [@b{--no-predefined-symbols}]
  435. [@b{--no-expand}] [@b{--no-merge-gregs}] [@b{-x}]
  436. [@b{--linker-allocated-gregs}]
  437. @end ifset
  438. @ifset NIOSII
  439. @emph{Target Nios II options:}
  440. [@b{-relax-all}] [@b{-relax-section}] [@b{-no-relax}]
  441. [@b{-EB}] [@b{-EL}]
  442. @end ifset
  443. @ifset NDS32
  444. @emph{Target NDS32 options:}
  445. [@b{-EL}] [@b{-EB}] [@b{-O}] [@b{-Os}] [@b{-mcpu=@var{cpu}}]
  446. [@b{-misa=@var{isa}}] [@b{-mabi=@var{abi}}] [@b{-mall-ext}]
  447. [@b{-m[no-]16-bit}] [@b{-m[no-]perf-ext}] [@b{-m[no-]perf2-ext}]
  448. [@b{-m[no-]string-ext}] [@b{-m[no-]dsp-ext}] [@b{-m[no-]mac}] [@b{-m[no-]div}]
  449. [@b{-m[no-]audio-isa-ext}] [@b{-m[no-]fpu-sp-ext}] [@b{-m[no-]fpu-dp-ext}]
  450. [@b{-m[no-]fpu-fma}] [@b{-mfpu-freg=@var{FREG}}] [@b{-mreduced-regs}]
  451. [@b{-mfull-regs}] [@b{-m[no-]dx-regs}] [@b{-mpic}] [@b{-mno-relax}]
  452. [@b{-mb2bb}]
  453. @end ifset
  454. @ifset OPENRISC
  455. @c OpenRISC has no machine-dependent assembler options.
  456. @end ifset
  457. @ifset PDP11
  458. @emph{Target PDP11 options:}
  459. [@b{-mpic}|@b{-mno-pic}] [@b{-mall}] [@b{-mno-extensions}]
  460. [@b{-m}@var{extension}|@b{-mno-}@var{extension}]
  461. [@b{-m}@var{cpu}] [@b{-m}@var{machine}]
  462. @end ifset
  463. @ifset PJ
  464. @emph{Target picoJava options:}
  465. [@b{-mb}|@b{-me}]
  466. @end ifset
  467. @ifset PPC
  468. @emph{Target PowerPC options:}
  469. [@b{-a32}|@b{-a64}]
  470. [@b{-mpwrx}|@b{-mpwr2}|@b{-mpwr}|@b{-m601}|@b{-mppc}|@b{-mppc32}|@b{-m603}|@b{-m604}|@b{-m403}|@b{-m405}|
  471. @b{-m440}|@b{-m464}|@b{-m476}|@b{-m7400}|@b{-m7410}|@b{-m7450}|@b{-m7455}|@b{-m750cl}|@b{-mgekko}|
  472. @b{-mbroadway}|@b{-mppc64}|@b{-m620}|@b{-me500}|@b{-e500x2}|@b{-me500mc}|@b{-me500mc64}|@b{-me5500}|
  473. @b{-me6500}|@b{-mppc64bridge}|@b{-mbooke}|@b{-mpower4}|@b{-mpwr4}|@b{-mpower5}|@b{-mpwr5}|@b{-mpwr5x}|
  474. @b{-mpower6}|@b{-mpwr6}|@b{-mpower7}|@b{-mpwr7}|@b{-mpower8}|@b{-mpwr8}|@b{-mpower9}|@b{-mpwr9}@b{-ma2}|
  475. @b{-mcell}|@b{-mspe}|@b{-mspe2}|@b{-mtitan}|@b{-me300}|@b{-mcom}]
  476. [@b{-many}] [@b{-maltivec}|@b{-mvsx}|@b{-mhtm}|@b{-mvle}]
  477. [@b{-mregnames}|@b{-mno-regnames}]
  478. [@b{-mrelocatable}|@b{-mrelocatable-lib}|@b{-K PIC}] [@b{-memb}]
  479. [@b{-mlittle}|@b{-mlittle-endian}|@b{-le}|@b{-mbig}|@b{-mbig-endian}|@b{-be}]
  480. [@b{-msolaris}|@b{-mno-solaris}]
  481. [@b{-nops=@var{count}}]
  482. @end ifset
  483. @ifset PRU
  484. @emph{Target PRU options:}
  485. [@b{-link-relax}]
  486. [@b{-mnolink-relax}]
  487. [@b{-mno-warn-regname-label}]
  488. @end ifset
  489. @ifset RISCV
  490. @emph{Target RISC-V options:}
  491. [@b{-fpic}|@b{-fPIC}|@b{-fno-pic}]
  492. [@b{-march}=@var{ISA}]
  493. [@b{-mabi}=@var{ABI}]
  494. [@b{-mlittle-endian}|@b{-mbig-endian}]
  495. @end ifset
  496. @ifset RL78
  497. @emph{Target RL78 options:}
  498. [@b{-mg10}]
  499. [@b{-m32bit-doubles}|@b{-m64bit-doubles}]
  500. @end ifset
  501. @ifset RX
  502. @emph{Target RX options:}
  503. [@b{-mlittle-endian}|@b{-mbig-endian}]
  504. [@b{-m32bit-doubles}|@b{-m64bit-doubles}]
  505. [@b{-muse-conventional-section-names}]
  506. [@b{-msmall-data-limit}]
  507. [@b{-mpid}]
  508. [@b{-mrelax}]
  509. [@b{-mint-register=@var{number}}]
  510. [@b{-mgcc-abi}|@b{-mrx-abi}]
  511. @end ifset
  512. @ifset S390
  513. @emph{Target s390 options:}
  514. [@b{-m31}|@b{-m64}] [@b{-mesa}|@b{-mzarch}] [@b{-march}=@var{CPU}]
  515. [@b{-mregnames}|@b{-mno-regnames}]
  516. [@b{-mwarn-areg-zero}]
  517. @end ifset
  518. @ifset SCORE
  519. @emph{Target SCORE options:}
  520. [@b{-EB}][@b{-EL}][@b{-FIXDD}][@b{-NWARN}]
  521. [@b{-SCORE5}][@b{-SCORE5U}][@b{-SCORE7}][@b{-SCORE3}]
  522. [@b{-march=score7}][@b{-march=score3}]
  523. [@b{-USE_R1}][@b{-KPIC}][@b{-O0}][@b{-G} @var{num}][@b{-V}]
  524. @end ifset
  525. @ifset SPARC
  526. @emph{Target SPARC options:}
  527. @c The order here is important. See c-sparc.texi.
  528. [@b{-Av6}|@b{-Av7}|@b{-Av8}|@b{-Aleon}|@b{-Asparclet}|@b{-Asparclite}
  529. @b{-Av8plus}|@b{-Av8plusa}|@b{-Av8plusb}|@b{-Av8plusc}|@b{-Av8plusd}
  530. @b{-Av8plusv}|@b{-Av8plusm}|@b{-Av9}|@b{-Av9a}|@b{-Av9b}|@b{-Av9c}
  531. @b{-Av9d}|@b{-Av9e}|@b{-Av9v}|@b{-Av9m}|@b{-Asparc}|@b{-Asparcvis}
  532. @b{-Asparcvis2}|@b{-Asparcfmaf}|@b{-Asparcima}|@b{-Asparcvis3}
  533. @b{-Asparcvisr}|@b{-Asparc5}]
  534. [@b{-xarch=v8plus}|@b{-xarch=v8plusa}]|@b{-xarch=v8plusb}|@b{-xarch=v8plusc}
  535. @b{-xarch=v8plusd}|@b{-xarch=v8plusv}|@b{-xarch=v8plusm}|@b{-xarch=v9}
  536. @b{-xarch=v9a}|@b{-xarch=v9b}|@b{-xarch=v9c}|@b{-xarch=v9d}|@b{-xarch=v9e}
  537. @b{-xarch=v9v}|@b{-xarch=v9m}|@b{-xarch=sparc}|@b{-xarch=sparcvis}
  538. @b{-xarch=sparcvis2}|@b{-xarch=sparcfmaf}|@b{-xarch=sparcima}
  539. @b{-xarch=sparcvis3}|@b{-xarch=sparcvisr}|@b{-xarch=sparc5}
  540. @b{-bump}]
  541. [@b{-32}|@b{-64}]
  542. [@b{--enforce-aligned-data}][@b{--dcti-couples-detect}]
  543. @end ifset
  544. @ifset TIC54X
  545. @emph{Target TIC54X options:}
  546. [@b{-mcpu=54[123589]}|@b{-mcpu=54[56]lp}] [@b{-mfar-mode}|@b{-mf}]
  547. [@b{-merrors-to-file} @var{<filename>}|@b{-me} @var{<filename>}]
  548. @end ifset
  549. @ifset TIC6X
  550. @emph{Target TIC6X options:}
  551. [@b{-march=@var{arch}}] [@b{-mbig-endian}|@b{-mlittle-endian}]
  552. [@b{-mdsbt}|@b{-mno-dsbt}] [@b{-mpid=no}|@b{-mpid=near}|@b{-mpid=far}]
  553. [@b{-mpic}|@b{-mno-pic}]
  554. @end ifset
  555. @ifset TILEGX
  556. @emph{Target TILE-Gx options:}
  557. [@b{-m32}|@b{-m64}][@b{-EB}][@b{-EL}]
  558. @end ifset
  559. @ifset TILEPRO
  560. @c TILEPro has no machine-dependent assembler options
  561. @end ifset
  562. @ifset VISIUM
  563. @emph{Target Visium options:}
  564. [@b{-mtune=@var{arch}}]
  565. @end ifset
  566. @ifset XTENSA
  567. @emph{Target Xtensa options:}
  568. [@b{--[no-]text-section-literals}] [@b{--[no-]auto-litpools}]
  569. [@b{--[no-]absolute-literals}]
  570. [@b{--[no-]target-align}] [@b{--[no-]longcalls}]
  571. [@b{--[no-]transform}]
  572. [@b{--rename-section} @var{oldname}=@var{newname}]
  573. [@b{--[no-]trampolines}]
  574. [@b{--abi-windowed}|@b{--abi-call0}]
  575. @end ifset
  576. @ifset Z80
  577. @emph{Target Z80 options:}
  578. [@b{-march=@var{CPU}@var{[-EXT]}@var{[+EXT]}}]
  579. [@b{-local-prefix=}@var{PREFIX}]
  580. [@b{-colonless}]
  581. [@b{-sdcc}]
  582. [@b{-fp-s=}@var{FORMAT}]
  583. [@b{-fp-d=}@var{FORMAT}]
  584. @end ifset
  585. @ifset Z8000
  586. @c Z8000 has no machine-dependent assembler options
  587. @end ifset
  588. @c man end
  589. @end smallexample
  590. @c man begin OPTIONS
  591. @table @gcctabopt
  592. @include at-file.texi
  593. @item -a[cdghlmns]
  594. Turn on listings, in any of a variety of ways:
  595. @table @gcctabopt
  596. @item -ac
  597. omit false conditionals
  598. @item -ad
  599. omit debugging directives
  600. @item -ag
  601. include general information, like @value{AS} version and options passed
  602. @item -ah
  603. include high-level source
  604. @item -al
  605. include assembly
  606. @item -am
  607. include macro expansions
  608. @item -an
  609. omit forms processing
  610. @item -as
  611. include symbols
  612. @item =file
  613. set the name of the listing file
  614. @end table
  615. You may combine these options; for example, use @samp{-aln} for assembly
  616. listing without forms processing. The @samp{=file} option, if used, must be
  617. the last one. By itself, @samp{-a} defaults to @samp{-ahls}.
  618. @item --alternate
  619. Begin in alternate macro mode.
  620. @ifclear man
  621. @xref{Altmacro,,@code{.altmacro}}.
  622. @end ifclear
  623. @item --compress-debug-sections
  624. Compress DWARF debug sections using zlib with SHF_COMPRESSED from the
  625. ELF ABI. The resulting object file may not be compatible with older
  626. linkers and object file utilities. Note if compression would make a
  627. given section @emph{larger} then it is not compressed.
  628. @ifset ELF
  629. @cindex @samp{--compress-debug-sections=} option
  630. @item --compress-debug-sections=none
  631. @itemx --compress-debug-sections=zlib
  632. @itemx --compress-debug-sections=zlib-gnu
  633. @itemx --compress-debug-sections=zlib-gabi
  634. These options control how DWARF debug sections are compressed.
  635. @option{--compress-debug-sections=none} is equivalent to
  636. @option{--nocompress-debug-sections}.
  637. @option{--compress-debug-sections=zlib} and
  638. @option{--compress-debug-sections=zlib-gabi} are equivalent to
  639. @option{--compress-debug-sections}.
  640. @option{--compress-debug-sections=zlib-gnu} compresses DWARF debug
  641. sections using zlib. The debug sections are renamed to begin with
  642. @samp{.zdebug}. Note if compression would make a given section
  643. @emph{larger} then it is not compressed nor renamed.
  644. @end ifset
  645. @item --nocompress-debug-sections
  646. Do not compress DWARF debug sections. This is usually the default for all
  647. targets except the x86/x86_64, but a configure time option can be used to
  648. override this.
  649. @item -D
  650. Ignored. This option is accepted for script compatibility with calls to
  651. other assemblers.
  652. @item --debug-prefix-map @var{old}=@var{new}
  653. When assembling files in directory @file{@var{old}}, record debugging
  654. information describing them as in @file{@var{new}} instead.
  655. @item --defsym @var{sym}=@var{value}
  656. Define the symbol @var{sym} to be @var{value} before assembling the input file.
  657. @var{value} must be an integer constant. As in C, a leading @samp{0x}
  658. indicates a hexadecimal value, and a leading @samp{0} indicates an octal
  659. value. The value of the symbol can be overridden inside a source file via the
  660. use of a @code{.set} pseudo-op.
  661. @item -f
  662. ``fast''---skip whitespace and comment preprocessing (assume source is
  663. compiler output).
  664. @item -g
  665. @itemx --gen-debug
  666. Generate debugging information for each assembler source line using whichever
  667. debug format is preferred by the target. This currently means either STABS,
  668. ECOFF or DWARF2. When the debug format is DWARF then a @code{.debug_info} and
  669. @code{.debug_line} section is only emitted when the assembly file doesn't
  670. generate one itself.
  671. @item --gstabs
  672. Generate stabs debugging information for each assembler line. This
  673. may help debugging assembler code, if the debugger can handle it.
  674. @item --gstabs+
  675. Generate stabs debugging information for each assembler line, with GNU
  676. extensions that probably only gdb can handle, and that could make other
  677. debuggers crash or refuse to read your program. This
  678. may help debugging assembler code. Currently the only GNU extension is
  679. the location of the current working directory at assembling time.
  680. @item --gdwarf-2
  681. Generate DWARF2 debugging information for each assembler line. This
  682. may help debugging assembler code, if the debugger can handle it. Note---this
  683. option is only supported by some targets, not all of them.
  684. @item --gdwarf-3
  685. This option is the same as the @option{--gdwarf-2} option, except that it
  686. allows for the possibility of the generation of extra debug information as per
  687. version 3 of the DWARF specification. Note - enabling this option does not
  688. guarantee the generation of any extra information, the choice to do so is on a
  689. per target basis.
  690. @item --gdwarf-4
  691. This option is the same as the @option{--gdwarf-2} option, except that it
  692. allows for the possibility of the generation of extra debug information as per
  693. version 4 of the DWARF specification. Note - enabling this option does not
  694. guarantee the generation of any extra information, the choice to do so is on a
  695. per target basis.
  696. @item --gdwarf-5
  697. This option is the same as the @option{--gdwarf-2} option, except that it
  698. allows for the possibility of the generation of extra debug information as per
  699. version 5 of the DWARF specification. Note - enabling this option does not
  700. guarantee the generation of any extra information, the choice to do so is on a
  701. per target basis.
  702. @item --gdwarf-sections
  703. Instead of creating a .debug_line section, create a series of
  704. .debug_line.@var{foo} sections where @var{foo} is the name of the
  705. corresponding code section. For example a code section called @var{.text.func}
  706. will have its dwarf line number information placed into a section called
  707. @var{.debug_line.text.func}. If the code section is just called @var{.text}
  708. then debug line section will still be called just @var{.debug_line} without any
  709. suffix.
  710. @item --gdwarf-cie-version=@var{version}
  711. Control which version of DWARF Common Information Entries (CIEs) are produced.
  712. When this flag is not specificed the default is version 1, though some targets
  713. can modify this default. Other possible values for @var{version} are 3 or 4.
  714. @ifset ELF
  715. @item --size-check=error
  716. @itemx --size-check=warning
  717. Issue an error or warning for invalid ELF .size directive.
  718. @item --elf-stt-common=no
  719. @itemx --elf-stt-common=yes
  720. These options control whether the ELF assembler should generate common
  721. symbols with the @code{STT_COMMON} type. The default can be controlled
  722. by a configure option @option{--enable-elf-stt-common}.
  723. @item --generate-missing-build-notes=yes
  724. @itemx --generate-missing-build-notes=no
  725. These options control whether the ELF assembler should generate GNU Build
  726. attribute notes if none are present in the input sources.
  727. The default can be controlled by the @option{--enable-generate-build-notes}
  728. configure option.
  729. @end ifset
  730. @item --help
  731. Print a summary of the command-line options and exit.
  732. @item --target-help
  733. Print a summary of all target specific options and exit.
  734. @item -I @var{dir}
  735. Add directory @var{dir} to the search list for @code{.include} directives.
  736. @item -J
  737. Don't warn about signed overflow.
  738. @item -K
  739. @ifclear DIFF-TBL-KLUGE
  740. This option is accepted but has no effect on the @value{TARGET} family.
  741. @end ifclear
  742. @ifset DIFF-TBL-KLUGE
  743. Issue warnings when difference tables altered for long displacements.
  744. @end ifset
  745. @item -L
  746. @itemx --keep-locals
  747. Keep (in the symbol table) local symbols. These symbols start with
  748. system-specific local label prefixes, typically @samp{.L} for ELF systems
  749. or @samp{L} for traditional a.out systems.
  750. @ifclear man
  751. @xref{Symbol Names}.
  752. @end ifclear
  753. @item --listing-lhs-width=@var{number}
  754. Set the maximum width, in words, of the output data column for an assembler
  755. listing to @var{number}.
  756. @item --listing-lhs-width2=@var{number}
  757. Set the maximum width, in words, of the output data column for continuation
  758. lines in an assembler listing to @var{number}.
  759. @item --listing-rhs-width=@var{number}
  760. Set the maximum width of an input source line, as displayed in a listing, to
  761. @var{number} bytes.
  762. @item --listing-cont-lines=@var{number}
  763. Set the maximum number of lines printed in a listing for a single line of input
  764. to @var{number} + 1.
  765. @item --multibyte-handling=allow
  766. @itemx --multibyte-handling=warn
  767. @itemx --multibyte-handling=warn-sym-only
  768. Controls how the assembler handles multibyte characters in the input. The
  769. default (which can be restored by using the @option{allow} argument) is to
  770. allow such characters without complaint. Using the @option{warn} argument will
  771. make the assembler generate a warning message whenever any multibyte character
  772. is encountered. Using the @option{warn-sym-only} argument will only cause a
  773. warning to be generated when a symbol is defined with a name that contains
  774. multibyte characters. (References to undefined symbols will not generate a
  775. warning).
  776. @item --no-pad-sections
  777. Stop the assembler for padding the ends of output sections to the alignment
  778. of that section. The default is to pad the sections, but this can waste space
  779. which might be needed on targets which have tight memory constraints.
  780. @item -o @var{objfile}
  781. Name the object-file output from @command{@value{AS}} @var{objfile}.
  782. @item -R
  783. Fold the data section into the text section.
  784. @ifset ELF
  785. @item --sectname-subst
  786. Honor substitution sequences in section names.
  787. @ifclear man
  788. @xref{Section Name Substitutions,,@code{.section @var{name}}}.
  789. @end ifclear
  790. @end ifset
  791. @item --statistics
  792. Print the maximum space (in bytes) and total time (in seconds) used by
  793. assembly.
  794. @item --strip-local-absolute
  795. Remove local absolute symbols from the outgoing symbol table.
  796. @item -v
  797. @itemx -version
  798. Print the @command{as} version.
  799. @item --version
  800. Print the @command{as} version and exit.
  801. @item -W
  802. @itemx --no-warn
  803. Suppress warning messages.
  804. @item --fatal-warnings
  805. Treat warnings as errors.
  806. @item --warn
  807. Don't suppress warning messages or treat them as errors.
  808. @item -w
  809. Ignored.
  810. @item -x
  811. Ignored.
  812. @item -Z
  813. Generate an object file even after errors.
  814. @item -- | @var{files} @dots{}
  815. Standard input, or source files to assemble.
  816. @end table
  817. @c man end
  818. @ifset AARCH64
  819. @ifclear man
  820. @xref{AArch64 Options}, for the options available when @value{AS} is configured
  821. for the 64-bit mode of the ARM Architecture (AArch64).
  822. @end ifclear
  823. @ifset man
  824. @c man begin OPTIONS
  825. The following options are available when @value{AS} is configured for the
  826. 64-bit mode of the ARM Architecture (AArch64).
  827. @c man end
  828. @c man begin INCLUDE
  829. @include c-aarch64.texi
  830. @c ended inside the included file
  831. @end ifset
  832. @end ifset
  833. @ifset ALPHA
  834. @ifclear man
  835. @xref{Alpha Options}, for the options available when @value{AS} is configured
  836. for an Alpha processor.
  837. @end ifclear
  838. @ifset man
  839. @c man begin OPTIONS
  840. The following options are available when @value{AS} is configured for an Alpha
  841. processor.
  842. @c man end
  843. @c man begin INCLUDE
  844. @include c-alpha.texi
  845. @c ended inside the included file
  846. @end ifset
  847. @end ifset
  848. @c man begin OPTIONS
  849. @ifset ARC
  850. The following options are available when @value{AS} is configured for an ARC
  851. processor.
  852. @table @gcctabopt
  853. @item -mcpu=@var{cpu}
  854. This option selects the core processor variant.
  855. @item -EB | -EL
  856. Select either big-endian (-EB) or little-endian (-EL) output.
  857. @item -mcode-density
  858. Enable Code Density extension instructions.
  859. @end table
  860. @end ifset
  861. @ifset ARM
  862. The following options are available when @value{AS} is configured for the ARM
  863. processor family.
  864. @table @gcctabopt
  865. @item -mcpu=@var{processor}[+@var{extension}@dots{}]
  866. Specify which ARM processor variant is the target.
  867. @item -march=@var{architecture}[+@var{extension}@dots{}]
  868. Specify which ARM architecture variant is used by the target.
  869. @item -mfpu=@var{floating-point-format}
  870. Select which Floating Point architecture is the target.
  871. @item -mfloat-abi=@var{abi}
  872. Select which floating point ABI is in use.
  873. @item -mthumb
  874. Enable Thumb only instruction decoding.
  875. @item -mapcs-32 | -mapcs-26 | -mapcs-float | -mapcs-reentrant
  876. Select which procedure calling convention is in use.
  877. @item -EB | -EL
  878. Select either big-endian (-EB) or little-endian (-EL) output.
  879. @item -mthumb-interwork
  880. Specify that the code has been generated with interworking between Thumb and
  881. ARM code in mind.
  882. @item -mccs
  883. Turns on CodeComposer Studio assembly syntax compatibility mode.
  884. @item -k
  885. Specify that PIC code has been generated.
  886. @end table
  887. @end ifset
  888. @c man end
  889. @ifset Blackfin
  890. @ifclear man
  891. @xref{Blackfin Options}, for the options available when @value{AS} is
  892. configured for the Blackfin processor family.
  893. @end ifclear
  894. @ifset man
  895. @c man begin OPTIONS
  896. The following options are available when @value{AS} is configured for
  897. the Blackfin processor family.
  898. @c man end
  899. @c man begin INCLUDE
  900. @include c-bfin.texi
  901. @c ended inside the included file
  902. @end ifset
  903. @end ifset
  904. @ifset BPF
  905. @ifclear man
  906. @xref{BPF Options}, for the options available when @value{AS} is
  907. configured for the Linux kernel BPF processor family.
  908. @end ifclear
  909. @ifset man
  910. @c man begin OPTIONS
  911. The following options are available when @value{AS} is configured for
  912. the Linux kernel BPF processor family.
  913. @c man end
  914. @c man begin INCLUDE
  915. @include c-bpf.texi
  916. @c ended inside the included file
  917. @end ifset
  918. @end ifset
  919. @c man begin OPTIONS
  920. @ifset CRIS
  921. See the info pages for documentation of the CRIS-specific options.
  922. @end ifset
  923. @ifset CSKY
  924. @ifclear man
  925. @xref{C-SKY Options}, for the options available when @value{AS} is
  926. configured for the C-SKY processor family.
  927. @end ifclear
  928. @ifset man
  929. @c man begin OPTIONS
  930. The following options are available when @value{AS} is configured for
  931. the C-SKY processor family.
  932. @c man end
  933. @c man begin INCLUDE
  934. @include c-csky.texi
  935. @c ended inside the included file
  936. @end ifset
  937. @end ifset
  938. @ifset D10V
  939. The following options are available when @value{AS} is configured for
  940. a D10V processor.
  941. @table @gcctabopt
  942. @cindex D10V optimization
  943. @cindex optimization, D10V
  944. @item -O
  945. Optimize output by parallelizing instructions.
  946. @end table
  947. @end ifset
  948. @ifset D30V
  949. The following options are available when @value{AS} is configured for a D30V
  950. processor.
  951. @table @gcctabopt
  952. @cindex D30V optimization
  953. @cindex optimization, D30V
  954. @item -O
  955. Optimize output by parallelizing instructions.
  956. @cindex D30V nops
  957. @item -n
  958. Warn when nops are generated.
  959. @cindex D30V nops after 32-bit multiply
  960. @item -N
  961. Warn when a nop after a 32-bit multiply instruction is generated.
  962. @end table
  963. @end ifset
  964. @c man end
  965. @ifset EPIPHANY
  966. The following options are available when @value{AS} is configured for the
  967. Adapteva EPIPHANY series.
  968. @ifclear man
  969. @xref{Epiphany Options}, for the options available when @value{AS} is
  970. configured for an Epiphany processor.
  971. @end ifclear
  972. @ifset man
  973. @c man begin OPTIONS
  974. The following options are available when @value{AS} is configured for
  975. an Epiphany processor.
  976. @c man end
  977. @c man begin INCLUDE
  978. @include c-epiphany.texi
  979. @c ended inside the included file
  980. @end ifset
  981. @end ifset
  982. @ifset H8300
  983. @ifclear man
  984. @xref{H8/300 Options}, for the options available when @value{AS} is configured
  985. for an H8/300 processor.
  986. @end ifclear
  987. @ifset man
  988. @c man begin OPTIONS
  989. The following options are available when @value{AS} is configured for an H8/300
  990. processor.
  991. @c man end
  992. @c man begin INCLUDE
  993. @include c-h8300.texi
  994. @c ended inside the included file
  995. @end ifset
  996. @end ifset
  997. @ifset I80386
  998. @ifclear man
  999. @xref{i386-Options}, for the options available when @value{AS} is
  1000. configured for an i386 processor.
  1001. @end ifclear
  1002. @ifset man
  1003. @c man begin OPTIONS
  1004. The following options are available when @value{AS} is configured for
  1005. an i386 processor.
  1006. @c man end
  1007. @c man begin INCLUDE
  1008. @include c-i386.texi
  1009. @c ended inside the included file
  1010. @end ifset
  1011. @end ifset
  1012. @c man begin OPTIONS
  1013. @ifset IP2K
  1014. The following options are available when @value{AS} is configured for the
  1015. Ubicom IP2K series.
  1016. @table @gcctabopt
  1017. @item -mip2022ext
  1018. Specifies that the extended IP2022 instructions are allowed.
  1019. @item -mip2022
  1020. Restores the default behaviour, which restricts the permitted instructions to
  1021. just the basic IP2022 ones.
  1022. @end table
  1023. @end ifset
  1024. @ifset M32C
  1025. The following options are available when @value{AS} is configured for the
  1026. Renesas M32C and M16C processors.
  1027. @table @gcctabopt
  1028. @item -m32c
  1029. Assemble M32C instructions.
  1030. @item -m16c
  1031. Assemble M16C instructions (the default).
  1032. @item -relax
  1033. Enable support for link-time relaxations.
  1034. @item -h-tick-hex
  1035. Support H'00 style hex constants in addition to 0x00 style.
  1036. @end table
  1037. @end ifset
  1038. @ifset M32R
  1039. The following options are available when @value{AS} is configured for the
  1040. Renesas M32R (formerly Mitsubishi M32R) series.
  1041. @table @gcctabopt
  1042. @item --m32rx
  1043. Specify which processor in the M32R family is the target. The default
  1044. is normally the M32R, but this option changes it to the M32RX.
  1045. @item --warn-explicit-parallel-conflicts or --Wp
  1046. Produce warning messages when questionable parallel constructs are
  1047. encountered.
  1048. @item --no-warn-explicit-parallel-conflicts or --Wnp
  1049. Do not produce warning messages when questionable parallel constructs are
  1050. encountered.
  1051. @end table
  1052. @end ifset
  1053. @ifset M680X0
  1054. The following options are available when @value{AS} is configured for the
  1055. Motorola 68000 series.
  1056. @table @gcctabopt
  1057. @item -l
  1058. Shorten references to undefined symbols, to one word instead of two.
  1059. @item -m68000 | -m68008 | -m68010 | -m68020 | -m68030
  1060. @itemx | -m68040 | -m68060 | -m68302 | -m68331 | -m68332
  1061. @itemx | -m68333 | -m68340 | -mcpu32 | -m5200
  1062. Specify what processor in the 68000 family is the target. The default
  1063. is normally the 68020, but this can be changed at configuration time.
  1064. @item -m68881 | -m68882 | -mno-68881 | -mno-68882
  1065. The target machine does (or does not) have a floating-point coprocessor.
  1066. The default is to assume a coprocessor for 68020, 68030, and cpu32. Although
  1067. the basic 68000 is not compatible with the 68881, a combination of the
  1068. two can be specified, since it's possible to do emulation of the
  1069. coprocessor instructions with the main processor.
  1070. @item -m68851 | -mno-68851
  1071. The target machine does (or does not) have a memory-management
  1072. unit coprocessor. The default is to assume an MMU for 68020 and up.
  1073. @end table
  1074. @end ifset
  1075. @ifset NIOSII
  1076. @ifclear man
  1077. @xref{Nios II Options}, for the options available when @value{AS} is configured
  1078. for an Altera Nios II processor.
  1079. @end ifclear
  1080. @ifset man
  1081. @c man begin OPTIONS
  1082. The following options are available when @value{AS} is configured for an
  1083. Altera Nios II processor.
  1084. @c man end
  1085. @c man begin INCLUDE
  1086. @include c-nios2.texi
  1087. @c ended inside the included file
  1088. @end ifset
  1089. @end ifset
  1090. @ifset PDP11
  1091. For details about the PDP-11 machine dependent features options,
  1092. see @ref{PDP-11-Options}.
  1093. @table @gcctabopt
  1094. @item -mpic | -mno-pic
  1095. Generate position-independent (or position-dependent) code. The
  1096. default is @option{-mpic}.
  1097. @item -mall
  1098. @itemx -mall-extensions
  1099. Enable all instruction set extensions. This is the default.
  1100. @item -mno-extensions
  1101. Disable all instruction set extensions.
  1102. @item -m@var{extension} | -mno-@var{extension}
  1103. Enable (or disable) a particular instruction set extension.
  1104. @item -m@var{cpu}
  1105. Enable the instruction set extensions supported by a particular CPU, and
  1106. disable all other extensions.
  1107. @item -m@var{machine}
  1108. Enable the instruction set extensions supported by a particular machine
  1109. model, and disable all other extensions.
  1110. @end table
  1111. @end ifset
  1112. @ifset PJ
  1113. The following options are available when @value{AS} is configured for
  1114. a picoJava processor.
  1115. @table @gcctabopt
  1116. @cindex PJ endianness
  1117. @cindex endianness, PJ
  1118. @cindex big endian output, PJ
  1119. @item -mb
  1120. Generate ``big endian'' format output.
  1121. @cindex little endian output, PJ
  1122. @item -ml
  1123. Generate ``little endian'' format output.
  1124. @end table
  1125. @end ifset
  1126. @ifset PRU
  1127. @ifclear man
  1128. @xref{PRU Options}, for the options available when @value{AS} is configured
  1129. for a PRU processor.
  1130. @end ifclear
  1131. @ifset man
  1132. @c man begin OPTIONS
  1133. The following options are available when @value{AS} is configured for a
  1134. PRU processor.
  1135. @c man end
  1136. @c man begin INCLUDE
  1137. @include c-pru.texi
  1138. @c ended inside the included file
  1139. @end ifset
  1140. @end ifset
  1141. @ifset M68HC11
  1142. The following options are available when @value{AS} is configured for the
  1143. Motorola 68HC11 or 68HC12 series.
  1144. @table @gcctabopt
  1145. @item -m68hc11 | -m68hc12 | -m68hcs12 | -mm9s12x | -mm9s12xg
  1146. Specify what processor is the target. The default is
  1147. defined by the configuration option when building the assembler.
  1148. @item --xgate-ramoffset
  1149. Instruct the linker to offset RAM addresses from S12X address space into
  1150. XGATE address space.
  1151. @item -mshort
  1152. Specify to use the 16-bit integer ABI.
  1153. @item -mlong
  1154. Specify to use the 32-bit integer ABI.
  1155. @item -mshort-double
  1156. Specify to use the 32-bit double ABI.
  1157. @item -mlong-double
  1158. Specify to use the 64-bit double ABI.
  1159. @item --force-long-branches
  1160. Relative branches are turned into absolute ones. This concerns
  1161. conditional branches, unconditional branches and branches to a
  1162. sub routine.
  1163. @item -S | --short-branches
  1164. Do not turn relative branches into absolute ones
  1165. when the offset is out of range.
  1166. @item --strict-direct-mode
  1167. Do not turn the direct addressing mode into extended addressing mode
  1168. when the instruction does not support direct addressing mode.
  1169. @item --print-insn-syntax
  1170. Print the syntax of instruction in case of error.
  1171. @item --print-opcodes
  1172. Print the list of instructions with syntax and then exit.
  1173. @item --generate-example
  1174. Print an example of instruction for each possible instruction and then exit.
  1175. This option is only useful for testing @command{@value{AS}}.
  1176. @end table
  1177. @end ifset
  1178. @ifset SPARC
  1179. The following options are available when @command{@value{AS}} is configured
  1180. for the SPARC architecture:
  1181. @table @gcctabopt
  1182. @item -Av6 | -Av7 | -Av8 | -Asparclet | -Asparclite
  1183. @itemx -Av8plus | -Av8plusa | -Av9 | -Av9a
  1184. Explicitly select a variant of the SPARC architecture.
  1185. @samp{-Av8plus} and @samp{-Av8plusa} select a 32 bit environment.
  1186. @samp{-Av9} and @samp{-Av9a} select a 64 bit environment.
  1187. @samp{-Av8plusa} and @samp{-Av9a} enable the SPARC V9 instruction set with
  1188. UltraSPARC extensions.
  1189. @item -xarch=v8plus | -xarch=v8plusa
  1190. For compatibility with the Solaris v9 assembler. These options are
  1191. equivalent to -Av8plus and -Av8plusa, respectively.
  1192. @item -bump
  1193. Warn when the assembler switches to another architecture.
  1194. @end table
  1195. @end ifset
  1196. @ifset TIC54X
  1197. The following options are available when @value{AS} is configured for the 'c54x
  1198. architecture.
  1199. @table @gcctabopt
  1200. @item -mfar-mode
  1201. Enable extended addressing mode. All addresses and relocations will assume
  1202. extended addressing (usually 23 bits).
  1203. @item -mcpu=@var{CPU_VERSION}
  1204. Sets the CPU version being compiled for.
  1205. @item -merrors-to-file @var{FILENAME}
  1206. Redirect error output to a file, for broken systems which don't support such
  1207. behaviour in the shell.
  1208. @end table
  1209. @end ifset
  1210. @ifset MIPS
  1211. @c man begin OPTIONS
  1212. The following options are available when @value{AS} is configured for
  1213. a MIPS processor.
  1214. @table @gcctabopt
  1215. @item -G @var{num}
  1216. This option sets the largest size of an object that can be referenced
  1217. implicitly with the @code{gp} register. It is only accepted for targets that
  1218. use ECOFF format, such as a DECstation running Ultrix. The default value is 8.
  1219. @cindex MIPS endianness
  1220. @cindex endianness, MIPS
  1221. @cindex big endian output, MIPS
  1222. @item -EB
  1223. Generate ``big endian'' format output.
  1224. @cindex little endian output, MIPS
  1225. @item -EL
  1226. Generate ``little endian'' format output.
  1227. @cindex MIPS ISA
  1228. @item -mips1
  1229. @itemx -mips2
  1230. @itemx -mips3
  1231. @itemx -mips4
  1232. @itemx -mips5
  1233. @itemx -mips32
  1234. @itemx -mips32r2
  1235. @itemx -mips32r3
  1236. @itemx -mips32r5
  1237. @itemx -mips32r6
  1238. @itemx -mips64
  1239. @itemx -mips64r2
  1240. @itemx -mips64r3
  1241. @itemx -mips64r5
  1242. @itemx -mips64r6
  1243. Generate code for a particular MIPS Instruction Set Architecture level.
  1244. @samp{-mips1} is an alias for @samp{-march=r3000}, @samp{-mips2} is an
  1245. alias for @samp{-march=r6000}, @samp{-mips3} is an alias for
  1246. @samp{-march=r4000} and @samp{-mips4} is an alias for @samp{-march=r8000}.
  1247. @samp{-mips5}, @samp{-mips32}, @samp{-mips32r2}, @samp{-mips32r3},
  1248. @samp{-mips32r5}, @samp{-mips32r6}, @samp{-mips64}, @samp{-mips64r2},
  1249. @samp{-mips64r3}, @samp{-mips64r5}, and @samp{-mips64r6} correspond to generic
  1250. MIPS V, MIPS32, MIPS32 Release 2, MIPS32 Release 3, MIPS32 Release 5, MIPS32
  1251. Release 6, MIPS64, MIPS64 Release 2, MIPS64 Release 3, MIPS64 Release 5, and
  1252. MIPS64 Release 6 ISA processors, respectively.
  1253. @item -march=@var{cpu}
  1254. Generate code for a particular MIPS CPU.
  1255. @item -mtune=@var{cpu}
  1256. Schedule and tune for a particular MIPS CPU.
  1257. @item -mfix7000
  1258. @itemx -mno-fix7000
  1259. Cause nops to be inserted if the read of the destination register
  1260. of an mfhi or mflo instruction occurs in the following two instructions.
  1261. @item -mfix-rm7000
  1262. @itemx -mno-fix-rm7000
  1263. Cause nops to be inserted if a dmult or dmultu instruction is
  1264. followed by a load instruction.
  1265. @item -mfix-r5900
  1266. @itemx -mno-fix-r5900
  1267. Do not attempt to schedule the preceding instruction into the delay slot
  1268. of a branch instruction placed at the end of a short loop of six
  1269. instructions or fewer and always schedule a @code{nop} instruction there
  1270. instead. The short loop bug under certain conditions causes loops to
  1271. execute only once or twice, due to a hardware bug in the R5900 chip.
  1272. @item -mdebug
  1273. @itemx -no-mdebug
  1274. Cause stabs-style debugging output to go into an ECOFF-style .mdebug
  1275. section instead of the standard ELF .stabs sections.
  1276. @item -mpdr
  1277. @itemx -mno-pdr
  1278. Control generation of @code{.pdr} sections.
  1279. @item -mgp32
  1280. @itemx -mfp32
  1281. The register sizes are normally inferred from the ISA and ABI, but these
  1282. flags force a certain group of registers to be treated as 32 bits wide at
  1283. all times. @samp{-mgp32} controls the size of general-purpose registers
  1284. and @samp{-mfp32} controls the size of floating-point registers.
  1285. @item -mgp64
  1286. @itemx -mfp64
  1287. The register sizes are normally inferred from the ISA and ABI, but these
  1288. flags force a certain group of registers to be treated as 64 bits wide at
  1289. all times. @samp{-mgp64} controls the size of general-purpose registers
  1290. and @samp{-mfp64} controls the size of floating-point registers.
  1291. @item -mfpxx
  1292. The register sizes are normally inferred from the ISA and ABI, but using
  1293. this flag in combination with @samp{-mabi=32} enables an ABI variant
  1294. which will operate correctly with floating-point registers which are
  1295. 32 or 64 bits wide.
  1296. @item -modd-spreg
  1297. @itemx -mno-odd-spreg
  1298. Enable use of floating-point operations on odd-numbered single-precision
  1299. registers when supported by the ISA. @samp{-mfpxx} implies
  1300. @samp{-mno-odd-spreg}, otherwise the default is @samp{-modd-spreg}.
  1301. @item -mips16
  1302. @itemx -no-mips16
  1303. Generate code for the MIPS 16 processor. This is equivalent to putting
  1304. @code{.module mips16} at the start of the assembly file. @samp{-no-mips16}
  1305. turns off this option.
  1306. @item -mmips16e2
  1307. @itemx -mno-mips16e2
  1308. Enable the use of MIPS16e2 instructions in MIPS16 mode. This is equivalent
  1309. to putting @code{.module mips16e2} at the start of the assembly file.
  1310. @samp{-mno-mips16e2} turns off this option.
  1311. @item -mmicromips
  1312. @itemx -mno-micromips
  1313. Generate code for the microMIPS processor. This is equivalent to putting
  1314. @code{.module micromips} at the start of the assembly file.
  1315. @samp{-mno-micromips} turns off this option. This is equivalent to putting
  1316. @code{.module nomicromips} at the start of the assembly file.
  1317. @item -msmartmips
  1318. @itemx -mno-smartmips
  1319. Enables the SmartMIPS extension to the MIPS32 instruction set. This is
  1320. equivalent to putting @code{.module smartmips} at the start of the assembly
  1321. file. @samp{-mno-smartmips} turns off this option.
  1322. @item -mips3d
  1323. @itemx -no-mips3d
  1324. Generate code for the MIPS-3D Application Specific Extension.
  1325. This tells the assembler to accept MIPS-3D instructions.
  1326. @samp{-no-mips3d} turns off this option.
  1327. @item -mdmx
  1328. @itemx -no-mdmx
  1329. Generate code for the MDMX Application Specific Extension.
  1330. This tells the assembler to accept MDMX instructions.
  1331. @samp{-no-mdmx} turns off this option.
  1332. @item -mdsp
  1333. @itemx -mno-dsp
  1334. Generate code for the DSP Release 1 Application Specific Extension.
  1335. This tells the assembler to accept DSP Release 1 instructions.
  1336. @samp{-mno-dsp} turns off this option.
  1337. @item -mdspr2
  1338. @itemx -mno-dspr2
  1339. Generate code for the DSP Release 2 Application Specific Extension.
  1340. This option implies @samp{-mdsp}.
  1341. This tells the assembler to accept DSP Release 2 instructions.
  1342. @samp{-mno-dspr2} turns off this option.
  1343. @item -mdspr3
  1344. @itemx -mno-dspr3
  1345. Generate code for the DSP Release 3 Application Specific Extension.
  1346. This option implies @samp{-mdsp} and @samp{-mdspr2}.
  1347. This tells the assembler to accept DSP Release 3 instructions.
  1348. @samp{-mno-dspr3} turns off this option.
  1349. @item -mmsa
  1350. @itemx -mno-msa
  1351. Generate code for the MIPS SIMD Architecture Extension.
  1352. This tells the assembler to accept MSA instructions.
  1353. @samp{-mno-msa} turns off this option.
  1354. @item -mxpa
  1355. @itemx -mno-xpa
  1356. Generate code for the MIPS eXtended Physical Address (XPA) Extension.
  1357. This tells the assembler to accept XPA instructions.
  1358. @samp{-mno-xpa} turns off this option.
  1359. @item -mmt
  1360. @itemx -mno-mt
  1361. Generate code for the MT Application Specific Extension.
  1362. This tells the assembler to accept MT instructions.
  1363. @samp{-mno-mt} turns off this option.
  1364. @item -mmcu
  1365. @itemx -mno-mcu
  1366. Generate code for the MCU Application Specific Extension.
  1367. This tells the assembler to accept MCU instructions.
  1368. @samp{-mno-mcu} turns off this option.
  1369. @item -mcrc
  1370. @itemx -mno-crc
  1371. Generate code for the MIPS cyclic redundancy check (CRC) Application
  1372. Specific Extension. This tells the assembler to accept CRC instructions.
  1373. @samp{-mno-crc} turns off this option.
  1374. @item -mginv
  1375. @itemx -mno-ginv
  1376. Generate code for the Global INValidate (GINV) Application Specific
  1377. Extension. This tells the assembler to accept GINV instructions.
  1378. @samp{-mno-ginv} turns off this option.
  1379. @item -mloongson-mmi
  1380. @itemx -mno-loongson-mmi
  1381. Generate code for the Loongson MultiMedia extensions Instructions (MMI)
  1382. Application Specific Extension. This tells the assembler to accept MMI
  1383. instructions.
  1384. @samp{-mno-loongson-mmi} turns off this option.
  1385. @item -mloongson-cam
  1386. @itemx -mno-loongson-cam
  1387. Generate code for the Loongson Content Address Memory (CAM) instructions.
  1388. This tells the assembler to accept Loongson CAM instructions.
  1389. @samp{-mno-loongson-cam} turns off this option.
  1390. @item -mloongson-ext
  1391. @itemx -mno-loongson-ext
  1392. Generate code for the Loongson EXTensions (EXT) instructions.
  1393. This tells the assembler to accept Loongson EXT instructions.
  1394. @samp{-mno-loongson-ext} turns off this option.
  1395. @item -mloongson-ext2
  1396. @itemx -mno-loongson-ext2
  1397. Generate code for the Loongson EXTensions R2 (EXT2) instructions.
  1398. This option implies @samp{-mloongson-ext}.
  1399. This tells the assembler to accept Loongson EXT2 instructions.
  1400. @samp{-mno-loongson-ext2} turns off this option.
  1401. @item -minsn32
  1402. @itemx -mno-insn32
  1403. Only use 32-bit instruction encodings when generating code for the
  1404. microMIPS processor. This option inhibits the use of any 16-bit
  1405. instructions. This is equivalent to putting @code{.set insn32} at
  1406. the start of the assembly file. @samp{-mno-insn32} turns off this
  1407. option. This is equivalent to putting @code{.set noinsn32} at the
  1408. start of the assembly file. By default @samp{-mno-insn32} is
  1409. selected, allowing all instructions to be used.
  1410. @item --construct-floats
  1411. @itemx --no-construct-floats
  1412. The @samp{--no-construct-floats} option disables the construction of
  1413. double width floating point constants by loading the two halves of the
  1414. value into the two single width floating point registers that make up
  1415. the double width register. By default @samp{--construct-floats} is
  1416. selected, allowing construction of these floating point constants.
  1417. @item --relax-branch
  1418. @itemx --no-relax-branch
  1419. The @samp{--relax-branch} option enables the relaxation of out-of-range
  1420. branches. By default @samp{--no-relax-branch} is selected, causing any
  1421. out-of-range branches to produce an error.
  1422. @item -mignore-branch-isa
  1423. @itemx -mno-ignore-branch-isa
  1424. Ignore branch checks for invalid transitions between ISA modes. The
  1425. semantics of branches does not provide for an ISA mode switch, so in
  1426. most cases the ISA mode a branch has been encoded for has to be the
  1427. same as the ISA mode of the branch's target label. Therefore GAS has
  1428. checks implemented that verify in branch assembly that the two ISA
  1429. modes match. @samp{-mignore-branch-isa} disables these checks. By
  1430. default @samp{-mno-ignore-branch-isa} is selected, causing any invalid
  1431. branch requiring a transition between ISA modes to produce an error.
  1432. @item -mnan=@var{encoding}
  1433. Select between the IEEE 754-2008 (@option{-mnan=2008}) or the legacy
  1434. (@option{-mnan=legacy}) NaN encoding format. The latter is the default.
  1435. @cindex emulation
  1436. @item --emulation=@var{name}
  1437. This option was formerly used to switch between ELF and ECOFF output
  1438. on targets like IRIX 5 that supported both. MIPS ECOFF support was
  1439. removed in GAS 2.24, so the option now serves little purpose.
  1440. It is retained for backwards compatibility.
  1441. The available configuration names are: @samp{mipself}, @samp{mipslelf} and
  1442. @samp{mipsbelf}. Choosing @samp{mipself} now has no effect, since the output
  1443. is always ELF. @samp{mipslelf} and @samp{mipsbelf} select little- and
  1444. big-endian output respectively, but @samp{-EL} and @samp{-EB} are now the
  1445. preferred options instead.
  1446. @item -nocpp
  1447. @command{@value{AS}} ignores this option. It is accepted for compatibility with
  1448. the native tools.
  1449. @item --trap
  1450. @itemx --no-trap
  1451. @itemx --break
  1452. @itemx --no-break
  1453. Control how to deal with multiplication overflow and division by zero.
  1454. @samp{--trap} or @samp{--no-break} (which are synonyms) take a trap exception
  1455. (and only work for Instruction Set Architecture level 2 and higher);
  1456. @samp{--break} or @samp{--no-trap} (also synonyms, and the default) take a
  1457. break exception.
  1458. @item -n
  1459. When this option is used, @command{@value{AS}} will issue a warning every
  1460. time it generates a nop instruction from a macro.
  1461. @end table
  1462. @c man end
  1463. @end ifset
  1464. @ifset MCORE
  1465. The following options are available when @value{AS} is configured for
  1466. an MCore processor.
  1467. @table @gcctabopt
  1468. @item -jsri2bsr
  1469. @itemx -nojsri2bsr
  1470. Enable or disable the JSRI to BSR transformation. By default this is enabled.
  1471. The command-line option @samp{-nojsri2bsr} can be used to disable it.
  1472. @item -sifilter
  1473. @itemx -nosifilter
  1474. Enable or disable the silicon filter behaviour. By default this is disabled.
  1475. The default can be overridden by the @samp{-sifilter} command-line option.
  1476. @item -relax
  1477. Alter jump instructions for long displacements.
  1478. @item -mcpu=[210|340]
  1479. Select the cpu type on the target hardware. This controls which instructions
  1480. can be assembled.
  1481. @item -EB
  1482. Assemble for a big endian target.
  1483. @item -EL
  1484. Assemble for a little endian target.
  1485. @end table
  1486. @end ifset
  1487. @c man end
  1488. @ifset LOONGARCH
  1489. @ifclear man
  1490. @xref{LoongArch-Options}, for the options available when @value{AS} is configured
  1491. for a LoongArch processor.
  1492. @end ifclear
  1493. @ifset man
  1494. @c man begin OPTIONS
  1495. The following options are available when @value{AS} is configured for a
  1496. LoongArch processor.
  1497. @c man end
  1498. @c man begin INCLUDE
  1499. @include c-loongarch.texi
  1500. @c ended inside the included file
  1501. @end ifset
  1502. @end ifset
  1503. @ifset METAG
  1504. @ifclear man
  1505. @xref{Meta Options}, for the options available when @value{AS} is configured
  1506. for a Meta processor.
  1507. @end ifclear
  1508. @ifset man
  1509. @c man begin OPTIONS
  1510. The following options are available when @value{AS} is configured for a
  1511. Meta processor.
  1512. @c man end
  1513. @c man begin INCLUDE
  1514. @include c-metag.texi
  1515. @c ended inside the included file
  1516. @end ifset
  1517. @end ifset
  1518. @c man begin OPTIONS
  1519. @ifset MMIX
  1520. See the info pages for documentation of the MMIX-specific options.
  1521. @end ifset
  1522. @ifset NDS32
  1523. @ifclear man
  1524. @xref{NDS32 Options}, for the options available when @value{AS} is configured
  1525. for a NDS32 processor.
  1526. @end ifclear
  1527. @c ended inside the included file
  1528. @end ifset
  1529. @ifset man
  1530. @c man begin OPTIONS
  1531. The following options are available when @value{AS} is configured for a
  1532. NDS32 processor.
  1533. @c man end
  1534. @c man begin INCLUDE
  1535. @include c-nds32.texi
  1536. @c ended inside the included file
  1537. @end ifset
  1538. @c man end
  1539. @ifset PPC
  1540. @ifclear man
  1541. @xref{PowerPC-Opts}, for the options available when @value{AS} is configured
  1542. for a PowerPC processor.
  1543. @end ifclear
  1544. @ifset man
  1545. @c man begin OPTIONS
  1546. The following options are available when @value{AS} is configured for a
  1547. PowerPC processor.
  1548. @c man end
  1549. @c man begin INCLUDE
  1550. @include c-ppc.texi
  1551. @c ended inside the included file
  1552. @end ifset
  1553. @end ifset
  1554. @ifset RISCV
  1555. @ifclear man
  1556. @xref{RISC-V-Options}, for the options available when @value{AS} is configured
  1557. for a RISC-V processor.
  1558. @end ifclear
  1559. @ifset man
  1560. @c man begin OPTIONS
  1561. The following options are available when @value{AS} is configured for a
  1562. RISC-V processor.
  1563. @c man end
  1564. @c man begin INCLUDE
  1565. @include c-riscv.texi
  1566. @c ended inside the included file
  1567. @end ifset
  1568. @end ifset
  1569. @c man begin OPTIONS
  1570. @ifset RX
  1571. See the info pages for documentation of the RX-specific options.
  1572. @end ifset
  1573. @ifset S390
  1574. The following options are available when @value{AS} is configured for the s390
  1575. processor family.
  1576. @table @gcctabopt
  1577. @item -m31
  1578. @itemx -m64
  1579. Select the word size, either 31/32 bits or 64 bits.
  1580. @item -mesa
  1581. @item -mzarch
  1582. Select the architecture mode, either the Enterprise System
  1583. Architecture (esa) or the z/Architecture mode (zarch).
  1584. @item -march=@var{processor}
  1585. Specify which s390 processor variant is the target, @samp{g5} (or
  1586. @samp{arch3}), @samp{g6}, @samp{z900} (or @samp{arch5}), @samp{z990} (or
  1587. @samp{arch6}), @samp{z9-109}, @samp{z9-ec} (or @samp{arch7}), @samp{z10} (or
  1588. @samp{arch8}), @samp{z196} (or @samp{arch9}), @samp{zEC12} (or @samp{arch10}),
  1589. @samp{z13} (or @samp{arch11}), @samp{z14} (or @samp{arch12}), @samp{z15}
  1590. (or @samp{arch13}), or @samp{z16} (or @samp{arch14}).
  1591. @item -mregnames
  1592. @itemx -mno-regnames
  1593. Allow or disallow symbolic names for registers.
  1594. @item -mwarn-areg-zero
  1595. Warn whenever the operand for a base or index register has been specified
  1596. but evaluates to zero.
  1597. @end table
  1598. @end ifset
  1599. @c man end
  1600. @ifset TIC6X
  1601. @ifclear man
  1602. @xref{TIC6X Options}, for the options available when @value{AS} is configured
  1603. for a TMS320C6000 processor.
  1604. @end ifclear
  1605. @ifset man
  1606. @c man begin OPTIONS
  1607. The following options are available when @value{AS} is configured for a
  1608. TMS320C6000 processor.
  1609. @c man end
  1610. @c man begin INCLUDE
  1611. @include c-tic6x.texi
  1612. @c ended inside the included file
  1613. @end ifset
  1614. @end ifset
  1615. @ifset TILEGX
  1616. @ifclear man
  1617. @xref{TILE-Gx Options}, for the options available when @value{AS} is configured
  1618. for a TILE-Gx processor.
  1619. @end ifclear
  1620. @ifset man
  1621. @c man begin OPTIONS
  1622. The following options are available when @value{AS} is configured for a TILE-Gx
  1623. processor.
  1624. @c man end
  1625. @c man begin INCLUDE
  1626. @include c-tilegx.texi
  1627. @c ended inside the included file
  1628. @end ifset
  1629. @end ifset
  1630. @ifset VISIUM
  1631. @ifclear man
  1632. @xref{Visium Options}, for the options available when @value{AS} is configured
  1633. for a Visium processor.
  1634. @end ifclear
  1635. @ifset man
  1636. @c man begin OPTIONS
  1637. The following option is available when @value{AS} is configured for a Visium
  1638. processor.
  1639. @c man end
  1640. @c man begin INCLUDE
  1641. @include c-visium.texi
  1642. @c ended inside the included file
  1643. @end ifset
  1644. @end ifset
  1645. @ifset XTENSA
  1646. @ifclear man
  1647. @xref{Xtensa Options}, for the options available when @value{AS} is configured
  1648. for an Xtensa processor.
  1649. @end ifclear
  1650. @ifset man
  1651. @c man begin OPTIONS
  1652. The following options are available when @value{AS} is configured for an
  1653. Xtensa processor.
  1654. @c man end
  1655. @c man begin INCLUDE
  1656. @include c-xtensa.texi
  1657. @c ended inside the included file
  1658. @end ifset
  1659. @end ifset
  1660. @ifset Z80
  1661. @ifclear man
  1662. @xref{Z80 Options}, for the options available when @value{AS} is configured
  1663. for an Z80 processor.
  1664. @end ifclear
  1665. @ifset man
  1666. @c man begin OPTIONS
  1667. The following options are available when @value{AS} is configured for an
  1668. Z80 processor.
  1669. @c man end
  1670. @c man begin INCLUDE
  1671. @include c-z80.texi
  1672. @c ended inside the included file
  1673. @end ifset
  1674. @end ifset
  1675. @menu
  1676. * Manual:: Structure of this Manual
  1677. * GNU Assembler:: The GNU Assembler
  1678. * Object Formats:: Object File Formats
  1679. * Command Line:: Command Line
  1680. * Input Files:: Input Files
  1681. * Object:: Output (Object) File
  1682. * Errors:: Error and Warning Messages
  1683. @end menu
  1684. @node Manual
  1685. @section Structure of this Manual
  1686. @cindex manual, structure and purpose
  1687. This manual is intended to describe what you need to know to use
  1688. @sc{gnu} @command{@value{AS}}. We cover the syntax expected in source files, including
  1689. notation for symbols, constants, and expressions; the directives that
  1690. @command{@value{AS}} understands; and of course how to invoke @command{@value{AS}}.
  1691. @ifclear GENERIC
  1692. We also cover special features in the @value{TARGET}
  1693. configuration of @command{@value{AS}}, including assembler directives.
  1694. @end ifclear
  1695. @ifset GENERIC
  1696. This manual also describes some of the machine-dependent features of
  1697. various flavors of the assembler.
  1698. @end ifset
  1699. @cindex machine instructions (not covered)
  1700. On the other hand, this manual is @emph{not} intended as an introduction
  1701. to programming in assembly language---let alone programming in general!
  1702. In a similar vein, we make no attempt to introduce the machine
  1703. architecture; we do @emph{not} describe the instruction set, standard
  1704. mnemonics, registers or addressing modes that are standard to a
  1705. particular architecture.
  1706. @ifset GENERIC
  1707. You may want to consult the manufacturer's
  1708. machine architecture manual for this information.
  1709. @end ifset
  1710. @ifclear GENERIC
  1711. @ifset H8/300
  1712. For information on the H8/300 machine instruction set, see @cite{H8/300
  1713. Series Programming Manual}. For the H8/300H, see @cite{H8/300H Series
  1714. Programming Manual} (Renesas).
  1715. @end ifset
  1716. @ifset SH
  1717. For information on the Renesas (formerly Hitachi) / SuperH SH machine instruction set,
  1718. see @cite{SH-Microcomputer User's Manual} (Renesas) or
  1719. @cite{SH-4 32-bit CPU Core Architecture} (SuperH) and
  1720. @cite{SuperH (SH) 64-Bit RISC Series} (SuperH).
  1721. @end ifset
  1722. @ifset Z8000
  1723. For information on the Z8000 machine instruction set, see @cite{Z8000 CPU Technical Manual}
  1724. @end ifset
  1725. @end ifclear
  1726. @c I think this is premature---doc@cygnus.com, 17jan1991
  1727. @ignore
  1728. Throughout this manual, we assume that you are running @dfn{GNU},
  1729. the portable operating system from the @dfn{Free Software
  1730. Foundation, Inc.}. This restricts our attention to certain kinds of
  1731. computer (in particular, the kinds of computers that @sc{gnu} can run on);
  1732. once this assumption is granted examples and definitions need less
  1733. qualification.
  1734. @command{@value{AS}} is part of a team of programs that turn a high-level
  1735. human-readable series of instructions into a low-level
  1736. computer-readable series of instructions. Different versions of
  1737. @command{@value{AS}} are used for different kinds of computer.
  1738. @end ignore
  1739. @c There used to be a section "Terminology" here, which defined
  1740. @c "contents", "byte", "word", and "long". Defining "word" to any
  1741. @c particular size is confusing when the .word directive may generate 16
  1742. @c bits on one machine and 32 bits on another; in general, for the user
  1743. @c version of this manual, none of these terms seem essential to define.
  1744. @c They were used very little even in the former draft of the manual;
  1745. @c this draft makes an effort to avoid them (except in names of
  1746. @c directives).
  1747. @node GNU Assembler
  1748. @section The GNU Assembler
  1749. @c man begin DESCRIPTION
  1750. @sc{gnu} @command{as} is really a family of assemblers.
  1751. @ifclear GENERIC
  1752. This manual describes @command{@value{AS}}, a member of that family which is
  1753. configured for the @value{TARGET} architectures.
  1754. @end ifclear
  1755. If you use (or have used) the @sc{gnu} assembler on one architecture, you
  1756. should find a fairly similar environment when you use it on another
  1757. architecture. Each version has much in common with the others,
  1758. including object file formats, most assembler directives (often called
  1759. @dfn{pseudo-ops}) and assembler syntax.@refill
  1760. @cindex purpose of @sc{gnu} assembler
  1761. @command{@value{AS}} is primarily intended to assemble the output of the
  1762. @sc{gnu} C compiler @code{@value{GCC}} for use by the linker
  1763. @code{@value{LD}}. Nevertheless, we've tried to make @command{@value{AS}}
  1764. assemble correctly everything that other assemblers for the same
  1765. machine would assemble.
  1766. @ifset VAX
  1767. Any exceptions are documented explicitly (@pxref{Machine Dependencies}).
  1768. @end ifset
  1769. @ifset M680X0
  1770. @c This remark should appear in generic version of manual; assumption
  1771. @c here is that generic version sets M680x0.
  1772. This doesn't mean @command{@value{AS}} always uses the same syntax as another
  1773. assembler for the same architecture; for example, we know of several
  1774. incompatible versions of 680x0 assembly language syntax.
  1775. @end ifset
  1776. @c man end
  1777. Unlike older assemblers, @command{@value{AS}} is designed to assemble a source
  1778. program in one pass of the source file. This has a subtle impact on the
  1779. @kbd{.org} directive (@pxref{Org,,@code{.org}}).
  1780. @node Object Formats
  1781. @section Object File Formats
  1782. @cindex object file format
  1783. The @sc{gnu} assembler can be configured to produce several alternative
  1784. object file formats. For the most part, this does not affect how you
  1785. write assembly language programs; but directives for debugging symbols
  1786. are typically different in different file formats. @xref{Symbol
  1787. Attributes,,Symbol Attributes}.
  1788. @ifclear GENERIC
  1789. @ifclear MULTI-OBJ
  1790. For the @value{TARGET} target, @command{@value{AS}} is configured to produce
  1791. @value{OBJ-NAME} format object files.
  1792. @end ifclear
  1793. @c The following should exhaust all configs that set MULTI-OBJ, ideally
  1794. @ifset HPPA
  1795. On the @value{TARGET}, @command{@value{AS}} can be configured to produce either
  1796. SOM or ELF format object files.
  1797. @end ifset
  1798. @end ifclear
  1799. @node Command Line
  1800. @section Command Line
  1801. @cindex command line conventions
  1802. After the program name @command{@value{AS}}, the command line may contain
  1803. options and file names. Options may appear in any order, and may be
  1804. before, after, or between file names. The order of file names is
  1805. significant.
  1806. @cindex standard input, as input file
  1807. @kindex --
  1808. @file{--} (two hyphens) by itself names the standard input file
  1809. explicitly, as one of the files for @command{@value{AS}} to assemble.
  1810. @cindex options, command line
  1811. Except for @samp{--} any command-line argument that begins with a
  1812. hyphen (@samp{-}) is an option. Each option changes the behavior of
  1813. @command{@value{AS}}. No option changes the way another option works. An
  1814. option is a @samp{-} followed by one or more letters; the case of
  1815. the letter is important. All options are optional.
  1816. Some options expect exactly one file name to follow them. The file
  1817. name may either immediately follow the option's letter (compatible
  1818. with older assemblers) or it may be the next command argument (@sc{gnu}
  1819. standard). These two command lines are equivalent:
  1820. @smallexample
  1821. @value{AS} -o my-object-file.o mumble.s
  1822. @value{AS} -omy-object-file.o mumble.s
  1823. @end smallexample
  1824. @node Input Files
  1825. @section Input Files
  1826. @cindex input
  1827. @cindex source program
  1828. @cindex files, input
  1829. We use the phrase @dfn{source program}, abbreviated @dfn{source}, to
  1830. describe the program input to one run of @command{@value{AS}}. The program may
  1831. be in one or more files; how the source is partitioned into files
  1832. doesn't change the meaning of the source.
  1833. @c I added "con" prefix to "catenation" just to prove I can overcome my
  1834. @c APL training... doc@cygnus.com
  1835. The source program is a concatenation of the text in all the files, in the
  1836. order specified.
  1837. @c man begin DESCRIPTION
  1838. Each time you run @command{@value{AS}} it assembles exactly one source
  1839. program. The source program is made up of one or more files.
  1840. (The standard input is also a file.)
  1841. You give @command{@value{AS}} a command line that has zero or more input file
  1842. names. The input files are read (from left file name to right). A
  1843. command-line argument (in any position) that has no special meaning
  1844. is taken to be an input file name.
  1845. If you give @command{@value{AS}} no file names it attempts to read one input file
  1846. from the @command{@value{AS}} standard input, which is normally your terminal. You
  1847. may have to type @key{ctl-D} to tell @command{@value{AS}} there is no more program
  1848. to assemble.
  1849. Use @samp{--} if you need to explicitly name the standard input file
  1850. in your command line.
  1851. If the source is empty, @command{@value{AS}} produces a small, empty object
  1852. file.
  1853. @c man end
  1854. @subheading Filenames and Line-numbers
  1855. @cindex input file linenumbers
  1856. @cindex line numbers, in input files
  1857. There are two ways of locating a line in the input file (or files) and
  1858. either may be used in reporting error messages. One way refers to a line
  1859. number in a physical file; the other refers to a line number in a
  1860. ``logical'' file. @xref{Errors, ,Error and Warning Messages}.
  1861. @dfn{Physical files} are those files named in the command line given
  1862. to @command{@value{AS}}.
  1863. @dfn{Logical files} are simply names declared explicitly by assembler
  1864. directives; they bear no relation to physical files. Logical file names help
  1865. error messages reflect the original source file, when @command{@value{AS}} source
  1866. is itself synthesized from other files. @command{@value{AS}} understands the
  1867. @samp{#} directives emitted by the @code{@value{GCC}} preprocessor. See also
  1868. @ref{File,,@code{.file}}.
  1869. @node Object
  1870. @section Output (Object) File
  1871. @cindex object file
  1872. @cindex output file
  1873. @kindex a.out
  1874. @kindex .o
  1875. Every time you run @command{@value{AS}} it produces an output file, which is
  1876. your assembly language program translated into numbers. This file
  1877. is the object file. Its default name is @code{a.out}.
  1878. You can give it another name by using the @option{-o} option. Conventionally,
  1879. object file names end with @file{.o}. The default name is used for historical
  1880. reasons: older assemblers were capable of assembling self-contained programs
  1881. directly into a runnable program. (For some formats, this isn't currently
  1882. possible, but it can be done for the @code{a.out} format.)
  1883. @cindex linker
  1884. @kindex ld
  1885. The object file is meant for input to the linker @code{@value{LD}}. It contains
  1886. assembled program code, information to help @code{@value{LD}} integrate
  1887. the assembled program into a runnable file, and (optionally) symbolic
  1888. information for the debugger.
  1889. @c link above to some info file(s) like the description of a.out.
  1890. @c don't forget to describe @sc{gnu} info as well as Unix lossage.
  1891. @node Errors
  1892. @section Error and Warning Messages
  1893. @c man begin DESCRIPTION
  1894. @cindex error messages
  1895. @cindex warning messages
  1896. @cindex messages from assembler
  1897. @command{@value{AS}} may write warnings and error messages to the standard error
  1898. file (usually your terminal). This should not happen when a compiler
  1899. runs @command{@value{AS}} automatically. Warnings report an assumption made so
  1900. that @command{@value{AS}} could keep assembling a flawed program; errors report a
  1901. grave problem that stops the assembly.
  1902. @c man end
  1903. @cindex format of warning messages
  1904. Warning messages have the format
  1905. @smallexample
  1906. file_name:@b{NNN}:Warning Message Text
  1907. @end smallexample
  1908. @noindent
  1909. @cindex file names and line numbers, in warnings/errors
  1910. (where @b{NNN} is a line number). If both a logical file name
  1911. (@pxref{File,,@code{.file}}) and a logical line number
  1912. @ifset GENERIC
  1913. (@pxref{Line,,@code{.line}})
  1914. @end ifset
  1915. have been given then they will be used, otherwise the file name and line number
  1916. in the current assembler source file will be used. The message text is
  1917. intended to be self explanatory (in the grand Unix tradition).
  1918. Note the file name must be set via the logical version of the @code{.file}
  1919. directive, not the DWARF2 version of the @code{.file} directive. For example:
  1920. @smallexample
  1921. .file 2 "bar.c"
  1922. error_assembler_source
  1923. .file "foo.c"
  1924. .line 30
  1925. error_c_source
  1926. @end smallexample
  1927. produces this output:
  1928. @smallexample
  1929. Assembler messages:
  1930. asm.s:2: Error: no such instruction: `error_assembler_source'
  1931. foo.c:31: Error: no such instruction: `error_c_source'
  1932. @end smallexample
  1933. @cindex format of error messages
  1934. Error messages have the format
  1935. @smallexample
  1936. file_name:@b{NNN}:FATAL:Error Message Text
  1937. @end smallexample
  1938. The file name and line number are derived as for warning
  1939. messages. The actual message text may be rather less explanatory
  1940. because many of them aren't supposed to happen.
  1941. @node Invoking
  1942. @chapter Command-Line Options
  1943. @cindex options, all versions of assembler
  1944. This chapter describes command-line options available in @emph{all}
  1945. versions of the @sc{gnu} assembler; see @ref{Machine Dependencies},
  1946. for options specific
  1947. @ifclear GENERIC
  1948. to the @value{TARGET} target.
  1949. @end ifclear
  1950. @ifset GENERIC
  1951. to particular machine architectures.
  1952. @end ifset
  1953. @c man begin DESCRIPTION
  1954. If you are invoking @command{@value{AS}} via the @sc{gnu} C compiler,
  1955. you can use the @samp{-Wa} option to pass arguments through to the assembler.
  1956. The assembler arguments must be separated from each other (and the @samp{-Wa})
  1957. by commas. For example:
  1958. @smallexample
  1959. gcc -c -g -O -Wa,-alh,-L file.c
  1960. @end smallexample
  1961. @noindent
  1962. This passes two options to the assembler: @samp{-alh} (emit a listing to
  1963. standard output with high-level and assembly source) and @samp{-L} (retain
  1964. local symbols in the symbol table).
  1965. Usually you do not need to use this @samp{-Wa} mechanism, since many compiler
  1966. command-line options are automatically passed to the assembler by the compiler.
  1967. (You can call the @sc{gnu} compiler driver with the @samp{-v} option to see
  1968. precisely what options it passes to each compilation pass, including the
  1969. assembler.)
  1970. @c man end
  1971. @menu
  1972. * a:: -a[cdghlns] enable listings
  1973. * alternate:: --alternate enable alternate macro syntax
  1974. * D:: -D for compatibility
  1975. * f:: -f to work faster
  1976. * I:: -I for .include search path
  1977. @ifclear DIFF-TBL-KLUGE
  1978. * K:: -K for compatibility
  1979. @end ifclear
  1980. @ifset DIFF-TBL-KLUGE
  1981. * K:: -K for difference tables
  1982. @end ifset
  1983. * L:: -L to retain local symbols
  1984. * listing:: --listing-XXX to configure listing output
  1985. * M:: -M or --mri to assemble in MRI compatibility mode
  1986. * MD:: --MD for dependency tracking
  1987. * no-pad-sections:: --no-pad-sections to stop section padding
  1988. * o:: -o to name the object file
  1989. * R:: -R to join data and text sections
  1990. * statistics:: --statistics to see statistics about assembly
  1991. * traditional-format:: --traditional-format for compatible output
  1992. * v:: -v to announce version
  1993. * W:: -W, --no-warn, --warn, --fatal-warnings to control warnings
  1994. * Z:: -Z to make object file even after errors
  1995. @end menu
  1996. @node a
  1997. @section Enable Listings: @option{-a[cdghlns]}
  1998. @kindex -a
  1999. @kindex -ac
  2000. @kindex -ad
  2001. @kindex -ag
  2002. @kindex -ah
  2003. @kindex -al
  2004. @kindex -an
  2005. @kindex -as
  2006. @cindex listings, enabling
  2007. @cindex assembly listings, enabling
  2008. These options enable listing output from the assembler. By itself,
  2009. @samp{-a} requests high-level, assembly, and symbols listing.
  2010. You can use other letters to select specific options for the list:
  2011. @samp{-ah} requests a high-level language listing,
  2012. @samp{-al} requests an output-program assembly listing, and
  2013. @samp{-as} requests a symbol table listing.
  2014. High-level listings require that a compiler debugging option like
  2015. @samp{-g} be used, and that assembly listings (@samp{-al}) be requested
  2016. also.
  2017. Use the @samp{-ag} option to print a first section with general assembly
  2018. information, like @value{AS} version, switches passed, or time stamp.
  2019. Use the @samp{-ac} option to omit false conditionals from a listing. Any lines
  2020. which are not assembled because of a false @code{.if} (or @code{.ifdef}, or any
  2021. other conditional), or a true @code{.if} followed by an @code{.else}, will be
  2022. omitted from the listing.
  2023. Use the @samp{-ad} option to omit debugging directives from the
  2024. listing.
  2025. Once you have specified one of these options, you can further control
  2026. listing output and its appearance using the directives @code{.list},
  2027. @code{.nolist}, @code{.psize}, @code{.eject}, @code{.title}, and
  2028. @code{.sbttl}.
  2029. The @samp{-an} option turns off all forms processing.
  2030. If you do not request listing output with one of the @samp{-a} options, the
  2031. listing-control directives have no effect.
  2032. The letters after @samp{-a} may be combined into one option,
  2033. @emph{e.g.}, @samp{-aln}.
  2034. Note if the assembler source is coming from the standard input (e.g.,
  2035. because it
  2036. is being created by @code{@value{GCC}} and the @samp{-pipe} command-line switch
  2037. is being used) then the listing will not contain any comments or preprocessor
  2038. directives. This is because the listing code buffers input source lines from
  2039. stdin only after they have been preprocessed by the assembler. This reduces
  2040. memory usage and makes the code more efficient.
  2041. @node alternate
  2042. @section @option{--alternate}
  2043. @kindex --alternate
  2044. Begin in alternate macro mode, see @ref{Altmacro,,@code{.altmacro}}.
  2045. @node D
  2046. @section @option{-D}
  2047. @kindex -D
  2048. This option has no effect whatsoever, but it is accepted to make it more
  2049. likely that scripts written for other assemblers also work with
  2050. @command{@value{AS}}.
  2051. @node f
  2052. @section Work Faster: @option{-f}
  2053. @kindex -f
  2054. @cindex trusted compiler
  2055. @cindex faster processing (@option{-f})
  2056. @samp{-f} should only be used when assembling programs written by a
  2057. (trusted) compiler. @samp{-f} stops the assembler from doing whitespace
  2058. and comment preprocessing on
  2059. the input file(s) before assembling them. @xref{Preprocessing,
  2060. ,Preprocessing}.
  2061. @quotation
  2062. @emph{Warning:} if you use @samp{-f} when the files actually need to be
  2063. preprocessed (if they contain comments, for example), @command{@value{AS}} does
  2064. not work correctly.
  2065. @end quotation
  2066. @node I
  2067. @section @code{.include} Search Path: @option{-I} @var{path}
  2068. @kindex -I @var{path}
  2069. @cindex paths for @code{.include}
  2070. @cindex search path for @code{.include}
  2071. @cindex @code{include} directive search path
  2072. Use this option to add a @var{path} to the list of directories
  2073. @command{@value{AS}} searches for files specified in @code{.include}
  2074. directives (@pxref{Include,,@code{.include}}). You may use @option{-I} as
  2075. many times as necessary to include a variety of paths. The current
  2076. working directory is always searched first; after that, @command{@value{AS}}
  2077. searches any @samp{-I} directories in the same order as they were
  2078. specified (left to right) on the command line.
  2079. @node K
  2080. @section Difference Tables: @option{-K}
  2081. @kindex -K
  2082. @ifclear DIFF-TBL-KLUGE
  2083. On the @value{TARGET} family, this option is allowed, but has no effect. It is
  2084. permitted for compatibility with the @sc{gnu} assembler on other platforms,
  2085. where it can be used to warn when the assembler alters the machine code
  2086. generated for @samp{.word} directives in difference tables. The @value{TARGET}
  2087. family does not have the addressing limitations that sometimes lead to this
  2088. alteration on other platforms.
  2089. @end ifclear
  2090. @ifset DIFF-TBL-KLUGE
  2091. @cindex difference tables, warning
  2092. @cindex warning for altered difference tables
  2093. @command{@value{AS}} sometimes alters the code emitted for directives of the
  2094. form @samp{.word @var{sym1}-@var{sym2}}. @xref{Word,,@code{.word}}.
  2095. You can use the @samp{-K} option if you want a warning issued when this
  2096. is done.
  2097. @end ifset
  2098. @node L
  2099. @section Include Local Symbols: @option{-L}
  2100. @kindex -L
  2101. @cindex local symbols, retaining in output
  2102. Symbols beginning with system-specific local label prefixes, typically
  2103. @samp{.L} for ELF systems or @samp{L} for traditional a.out systems, are
  2104. called @dfn{local symbols}. @xref{Symbol Names}. Normally you do not see
  2105. such symbols when debugging, because they are intended for the use of
  2106. programs (like compilers) that compose assembler programs, not for your
  2107. notice. Normally both @command{@value{AS}} and @code{@value{LD}} discard
  2108. such symbols, so you do not normally debug with them.
  2109. This option tells @command{@value{AS}} to retain those local symbols
  2110. in the object file. Usually if you do this you also tell the linker
  2111. @code{@value{LD}} to preserve those symbols.
  2112. @node listing
  2113. @section Configuring listing output: @option{--listing}
  2114. The listing feature of the assembler can be enabled via the command-line switch
  2115. @samp{-a} (@pxref{a}). This feature combines the input source file(s) with a
  2116. hex dump of the corresponding locations in the output object file, and displays
  2117. them as a listing file. The format of this listing can be controlled by
  2118. directives inside the assembler source (i.e., @code{.list} (@pxref{List}),
  2119. @code{.title} (@pxref{Title}), @code{.sbttl} (@pxref{Sbttl}),
  2120. @code{.psize} (@pxref{Psize}), and
  2121. @code{.eject} (@pxref{Eject}) and also by the following switches:
  2122. @table @gcctabopt
  2123. @item --listing-lhs-width=@samp{number}
  2124. @kindex --listing-lhs-width
  2125. @cindex Width of first line disassembly output
  2126. Sets the maximum width, in words, of the first line of the hex byte dump. This
  2127. dump appears on the left hand side of the listing output.
  2128. @item --listing-lhs-width2=@samp{number}
  2129. @kindex --listing-lhs-width2
  2130. @cindex Width of continuation lines of disassembly output
  2131. Sets the maximum width, in words, of any further lines of the hex byte dump for
  2132. a given input source line. If this value is not specified, it defaults to being
  2133. the same as the value specified for @samp{--listing-lhs-width}. If neither
  2134. switch is used the default is to one.
  2135. @item --listing-rhs-width=@samp{number}
  2136. @kindex --listing-rhs-width
  2137. @cindex Width of source line output
  2138. Sets the maximum width, in characters, of the source line that is displayed
  2139. alongside the hex dump. The default value for this parameter is 100. The
  2140. source line is displayed on the right hand side of the listing output.
  2141. @item --listing-cont-lines=@samp{number}
  2142. @kindex --listing-cont-lines
  2143. @cindex Maximum number of continuation lines
  2144. Sets the maximum number of continuation lines of hex dump that will be
  2145. displayed for a given single line of source input. The default value is 4.
  2146. @end table
  2147. @node M
  2148. @section Assemble in MRI Compatibility Mode: @option{-M}
  2149. @kindex -M
  2150. @cindex MRI compatibility mode
  2151. The @option{-M} or @option{--mri} option selects MRI compatibility mode. This
  2152. changes the syntax and pseudo-op handling of @command{@value{AS}} to make it
  2153. compatible with the @code{ASM68K} assembler from Microtec Research.
  2154. The exact nature of the
  2155. MRI syntax will not be documented here; see the MRI manuals for more
  2156. information. Note in particular that the handling of macros and macro
  2157. arguments is somewhat different. The purpose of this option is to permit
  2158. assembling existing MRI assembler code using @command{@value{AS}}.
  2159. The MRI compatibility is not complete. Certain operations of the MRI assembler
  2160. depend upon its object file format, and can not be supported using other object
  2161. file formats. Supporting these would require enhancing each object file format
  2162. individually. These are:
  2163. @itemize @bullet
  2164. @item global symbols in common section
  2165. The m68k MRI assembler supports common sections which are merged by the linker.
  2166. Other object file formats do not support this. @command{@value{AS}} handles
  2167. common sections by treating them as a single common symbol. It permits local
  2168. symbols to be defined within a common section, but it can not support global
  2169. symbols, since it has no way to describe them.
  2170. @item complex relocations
  2171. The MRI assemblers support relocations against a negated section address, and
  2172. relocations which combine the start addresses of two or more sections. These
  2173. are not support by other object file formats.
  2174. @item @code{END} pseudo-op specifying start address
  2175. The MRI @code{END} pseudo-op permits the specification of a start address.
  2176. This is not supported by other object file formats. The start address may
  2177. instead be specified using the @option{-e} option to the linker, or in a linker
  2178. script.
  2179. @item @code{IDNT}, @code{.ident} and @code{NAME} pseudo-ops
  2180. The MRI @code{IDNT}, @code{.ident} and @code{NAME} pseudo-ops assign a module
  2181. name to the output file. This is not supported by other object file formats.
  2182. @item @code{ORG} pseudo-op
  2183. The m68k MRI @code{ORG} pseudo-op begins an absolute section at a given
  2184. address. This differs from the usual @command{@value{AS}} @code{.org} pseudo-op,
  2185. which changes the location within the current section. Absolute sections are
  2186. not supported by other object file formats. The address of a section may be
  2187. assigned within a linker script.
  2188. @end itemize
  2189. There are some other features of the MRI assembler which are not supported by
  2190. @command{@value{AS}}, typically either because they are difficult or because they
  2191. seem of little consequence. Some of these may be supported in future releases.
  2192. @itemize @bullet
  2193. @item EBCDIC strings
  2194. EBCDIC strings are not supported.
  2195. @item packed binary coded decimal
  2196. Packed binary coded decimal is not supported. This means that the @code{DC.P}
  2197. and @code{DCB.P} pseudo-ops are not supported.
  2198. @item @code{FEQU} pseudo-op
  2199. The m68k @code{FEQU} pseudo-op is not supported.
  2200. @item @code{NOOBJ} pseudo-op
  2201. The m68k @code{NOOBJ} pseudo-op is not supported.
  2202. @item @code{OPT} branch control options
  2203. The m68k @code{OPT} branch control options---@code{B}, @code{BRS}, @code{BRB},
  2204. @code{BRL}, and @code{BRW}---are ignored. @command{@value{AS}} automatically
  2205. relaxes all branches, whether forward or backward, to an appropriate size, so
  2206. these options serve no purpose.
  2207. @item @code{OPT} list control options
  2208. The following m68k @code{OPT} list control options are ignored: @code{C},
  2209. @code{CEX}, @code{CL}, @code{CRE}, @code{E}, @code{G}, @code{I}, @code{M},
  2210. @code{MEX}, @code{MC}, @code{MD}, @code{X}.
  2211. @item other @code{OPT} options
  2212. The following m68k @code{OPT} options are ignored: @code{NEST}, @code{O},
  2213. @code{OLD}, @code{OP}, @code{P}, @code{PCO}, @code{PCR}, @code{PCS}, @code{R}.
  2214. @item @code{OPT} @code{D} option is default
  2215. The m68k @code{OPT} @code{D} option is the default, unlike the MRI assembler.
  2216. @code{OPT NOD} may be used to turn it off.
  2217. @item @code{XREF} pseudo-op.
  2218. The m68k @code{XREF} pseudo-op is ignored.
  2219. @end itemize
  2220. @node MD
  2221. @section Dependency Tracking: @option{--MD}
  2222. @kindex --MD
  2223. @cindex dependency tracking
  2224. @cindex make rules
  2225. @command{@value{AS}} can generate a dependency file for the file it creates. This
  2226. file consists of a single rule suitable for @code{make} describing the
  2227. dependencies of the main source file.
  2228. The rule is written to the file named in its argument.
  2229. This feature is used in the automatic updating of makefiles.
  2230. @node no-pad-sections
  2231. @section Output Section Padding
  2232. @kindex --no-pad-sections
  2233. @cindex output section padding
  2234. Normally the assembler will pad the end of each output section up to its
  2235. alignment boundary. But this can waste space, which can be significant on
  2236. memory constrained targets. So the @option{--no-pad-sections} option will
  2237. disable this behaviour.
  2238. @node o
  2239. @section Name the Object File: @option{-o}
  2240. @kindex -o
  2241. @cindex naming object file
  2242. @cindex object file name
  2243. There is always one object file output when you run @command{@value{AS}}. By
  2244. default it has the name @file{a.out}.
  2245. You use this option (which takes exactly one filename) to give the
  2246. object file a different name.
  2247. Whatever the object file is called, @command{@value{AS}} overwrites any
  2248. existing file of the same name.
  2249. @node R
  2250. @section Join Data and Text Sections: @option{-R}
  2251. @kindex -R
  2252. @cindex data and text sections, joining
  2253. @cindex text and data sections, joining
  2254. @cindex joining text and data sections
  2255. @cindex merging text and data sections
  2256. @option{-R} tells @command{@value{AS}} to write the object file as if all
  2257. data-section data lives in the text section. This is only done at
  2258. the very last moment: your binary data are the same, but data
  2259. section parts are relocated differently. The data section part of
  2260. your object file is zero bytes long because all its bytes are
  2261. appended to the text section. (@xref{Sections,,Sections and Relocation}.)
  2262. When you specify @option{-R} it would be possible to generate shorter
  2263. address displacements (because we do not have to cross between text and
  2264. data section). We refrain from doing this simply for compatibility with
  2265. older versions of @command{@value{AS}}. In future, @option{-R} may work this way.
  2266. @ifset COFF-ELF
  2267. When @command{@value{AS}} is configured for COFF or ELF output,
  2268. this option is only useful if you use sections named @samp{.text} and
  2269. @samp{.data}.
  2270. @end ifset
  2271. @ifset HPPA
  2272. @option{-R} is not supported for any of the HPPA targets. Using
  2273. @option{-R} generates a warning from @command{@value{AS}}.
  2274. @end ifset
  2275. @node statistics
  2276. @section Display Assembly Statistics: @option{--statistics}
  2277. @kindex --statistics
  2278. @cindex statistics, about assembly
  2279. @cindex time, total for assembly
  2280. @cindex space used, maximum for assembly
  2281. Use @samp{--statistics} to display two statistics about the resources used by
  2282. @command{@value{AS}}: the maximum amount of space allocated during the assembly
  2283. (in bytes), and the total execution time taken for the assembly (in @sc{cpu}
  2284. seconds).
  2285. @node traditional-format
  2286. @section Compatible Output: @option{--traditional-format}
  2287. @kindex --traditional-format
  2288. For some targets, the output of @command{@value{AS}} is different in some ways
  2289. from the output of some existing assembler. This switch requests
  2290. @command{@value{AS}} to use the traditional format instead.
  2291. For example, it disables the exception frame optimizations which
  2292. @command{@value{AS}} normally does by default on @code{@value{GCC}} output.
  2293. @node v
  2294. @section Announce Version: @option{-v}
  2295. @kindex -v
  2296. @kindex -version
  2297. @cindex assembler version
  2298. @cindex version of assembler
  2299. You can find out what version of as is running by including the
  2300. option @samp{-v} (which you can also spell as @samp{-version}) on the
  2301. command line.
  2302. @node W
  2303. @section Control Warnings: @option{-W}, @option{--warn}, @option{--no-warn}, @option{--fatal-warnings}
  2304. @command{@value{AS}} should never give a warning or error message when
  2305. assembling compiler output. But programs written by people often
  2306. cause @command{@value{AS}} to give a warning that a particular assumption was
  2307. made. All such warnings are directed to the standard error file.
  2308. @kindex -W
  2309. @kindex --no-warn
  2310. @cindex suppressing warnings
  2311. @cindex warnings, suppressing
  2312. If you use the @option{-W} and @option{--no-warn} options, no warnings are issued.
  2313. This only affects the warning messages: it does not change any particular of
  2314. how @command{@value{AS}} assembles your file. Errors, which stop the assembly,
  2315. are still reported.
  2316. @kindex --fatal-warnings
  2317. @cindex errors, caused by warnings
  2318. @cindex warnings, causing error
  2319. If you use the @option{--fatal-warnings} option, @command{@value{AS}} considers
  2320. files that generate warnings to be in error.
  2321. @kindex --warn
  2322. @cindex warnings, switching on
  2323. You can switch these options off again by specifying @option{--warn}, which
  2324. causes warnings to be output as usual.
  2325. @node Z
  2326. @section Generate Object File in Spite of Errors: @option{-Z}
  2327. @cindex object file, after errors
  2328. @cindex errors, continuing after
  2329. After an error message, @command{@value{AS}} normally produces no output. If for
  2330. some reason you are interested in object file output even after
  2331. @command{@value{AS}} gives an error message on your program, use the @samp{-Z}
  2332. option. If there are any errors, @command{@value{AS}} continues anyways, and
  2333. writes an object file after a final warning message of the form @samp{@var{n}
  2334. errors, @var{m} warnings, generating bad object file.}
  2335. @node Syntax
  2336. @chapter Syntax
  2337. @cindex machine-independent syntax
  2338. @cindex syntax, machine-independent
  2339. This chapter describes the machine-independent syntax allowed in a
  2340. source file. @command{@value{AS}} syntax is similar to what many other
  2341. assemblers use; it is inspired by the BSD 4.2
  2342. @ifclear VAX
  2343. assembler.
  2344. @end ifclear
  2345. @ifset VAX
  2346. assembler, except that @command{@value{AS}} does not assemble Vax bit-fields.
  2347. @end ifset
  2348. @menu
  2349. * Preprocessing:: Preprocessing
  2350. * Whitespace:: Whitespace
  2351. * Comments:: Comments
  2352. * Symbol Intro:: Symbols
  2353. * Statements:: Statements
  2354. * Constants:: Constants
  2355. @end menu
  2356. @node Preprocessing
  2357. @section Preprocessing
  2358. @cindex preprocessing
  2359. The @command{@value{AS}} internal preprocessor:
  2360. @itemize @bullet
  2361. @cindex whitespace, removed by preprocessor
  2362. @item
  2363. adjusts and removes extra whitespace. It leaves one space or tab before
  2364. the keywords on a line, and turns any other whitespace on the line into
  2365. a single space.
  2366. @cindex comments, removed by preprocessor
  2367. @item
  2368. removes all comments, replacing them with a single space, or an
  2369. appropriate number of newlines.
  2370. @cindex constants, converted by preprocessor
  2371. @item
  2372. converts character constants into the appropriate numeric values.
  2373. @end itemize
  2374. It does not do macro processing, include file handling, or
  2375. anything else you may get from your C compiler's preprocessor. You can
  2376. do include file processing with the @code{.include} directive
  2377. (@pxref{Include,,@code{.include}}). You can use the @sc{gnu} C compiler driver
  2378. to get other ``CPP'' style preprocessing by giving the input file a
  2379. @samp{.S} suffix. @url{https://gcc.gnu.org/onlinedocs/gcc/Overall-Options.html#Overall-Options,
  2380. See the 'Options Controlling the Kind of Output' section of the GCC manual for
  2381. more details}
  2382. Excess whitespace, comments, and character constants
  2383. cannot be used in the portions of the input text that are not
  2384. preprocessed.
  2385. @cindex turning preprocessing on and off
  2386. @cindex preprocessing, turning on and off
  2387. @kindex #NO_APP
  2388. @kindex #APP
  2389. If the first line of an input file is @code{#NO_APP} or if you use the
  2390. @samp{-f} option, whitespace and comments are not removed from the input file.
  2391. Within an input file, you can ask for whitespace and comment removal in
  2392. specific portions of the by putting a line that says @code{#APP} before the
  2393. text that may contain whitespace or comments, and putting a line that says
  2394. @code{#NO_APP} after this text. This feature is mainly intend to support
  2395. @code{asm} statements in compilers whose output is otherwise free of comments
  2396. and whitespace.
  2397. @node Whitespace
  2398. @section Whitespace
  2399. @cindex whitespace
  2400. @dfn{Whitespace} is one or more blanks or tabs, in any order.
  2401. Whitespace is used to separate symbols, and to make programs neater for
  2402. people to read. Unless within character constants
  2403. (@pxref{Characters,,Character Constants}), any whitespace means the same
  2404. as exactly one space.
  2405. @node Comments
  2406. @section Comments
  2407. @cindex comments
  2408. There are two ways of rendering comments to @command{@value{AS}}. In both
  2409. cases the comment is equivalent to one space.
  2410. Anything from @samp{/*} through the next @samp{*/} is a comment.
  2411. This means you may not nest these comments.
  2412. @smallexample
  2413. /*
  2414. The only way to include a newline ('\n') in a comment
  2415. is to use this sort of comment.
  2416. */
  2417. /* This sort of comment does not nest. */
  2418. @end smallexample
  2419. @cindex line comment character
  2420. Anything from a @dfn{line comment} character up to the next newline is
  2421. considered a comment and is ignored. The line comment character is target
  2422. specific, and some targets multiple comment characters. Some targets also have
  2423. line comment characters that only work if they are the first character on a
  2424. line. Some targets use a sequence of two characters to introduce a line
  2425. comment. Some targets can also change their line comment characters depending
  2426. upon command-line options that have been used. For more details see the
  2427. @emph{Syntax} section in the documentation for individual targets.
  2428. If the line comment character is the hash sign (@samp{#}) then it still has the
  2429. special ability to enable and disable preprocessing (@pxref{Preprocessing}) and
  2430. to specify logical line numbers:
  2431. @kindex #
  2432. @cindex lines starting with @code{#}
  2433. @cindex logical line numbers
  2434. To be compatible with past assemblers, lines that begin with @samp{#} have a
  2435. special interpretation. Following the @samp{#} should be an absolute
  2436. expression (@pxref{Expressions}): the logical line number of the @emph{next}
  2437. line. Then a string (@pxref{Strings, ,Strings}) is allowed: if present it is a
  2438. new logical file name. The rest of the line, if any, should be whitespace.
  2439. If the first non-whitespace characters on the line are not numeric,
  2440. the line is ignored. (Just like a comment.)
  2441. @smallexample
  2442. # This is an ordinary comment.
  2443. # 42-6 "new_file_name" # New logical file name
  2444. # This is logical line # 36.
  2445. @end smallexample
  2446. This feature is deprecated, and may disappear from future versions
  2447. of @command{@value{AS}}.
  2448. @node Symbol Intro
  2449. @section Symbols
  2450. @cindex characters used in symbols
  2451. @ifclear SPECIAL-SYMS
  2452. A @dfn{symbol} is one or more characters chosen from the set of all
  2453. letters (both upper and lower case), digits and the three characters
  2454. @samp{_.$}.
  2455. @end ifclear
  2456. @ifset SPECIAL-SYMS
  2457. @ifclear GENERIC
  2458. @ifset H8
  2459. A @dfn{symbol} is one or more characters chosen from the set of all
  2460. letters (both upper and lower case), digits and the three characters
  2461. @samp{._$}. (Save that, on the H8/300 only, you may not use @samp{$} in
  2462. symbol names.)
  2463. @end ifset
  2464. @end ifclear
  2465. @end ifset
  2466. @ifset GENERIC
  2467. On most machines, you can also use @code{$} in symbol names; exceptions
  2468. are noted in @ref{Machine Dependencies}.
  2469. @end ifset
  2470. No symbol may begin with a digit. Case is significant.
  2471. There is no length limit; all characters are significant. Multibyte characters
  2472. are supported, but note that the setting of the
  2473. @option{--multibyte-handling} option might prevent their use. Symbols
  2474. are delimited by characters not in that set, or by the beginning of a file
  2475. (since the source program must end with a newline, the end of a file is not a
  2476. possible symbol delimiter). @xref{Symbols}.
  2477. Symbol names may also be enclosed in double quote @code{"} characters. In such
  2478. cases any characters are allowed, except for the NUL character. If a double
  2479. quote character is to be included in the symbol name it must be preceded by a
  2480. backslash @code{\} character.
  2481. @cindex length of symbols
  2482. @node Statements
  2483. @section Statements
  2484. @cindex statements, structure of
  2485. @cindex line separator character
  2486. @cindex statement separator character
  2487. A @dfn{statement} ends at a newline character (@samp{\n}) or a
  2488. @dfn{line separator character}. The line separator character is target
  2489. specific and described in the @emph{Syntax} section of each
  2490. target's documentation. Not all targets support a line separator character.
  2491. The newline or line separator character is considered to be part of the
  2492. preceding statement. Newlines and separators within character constants are an
  2493. exception: they do not end statements.
  2494. @cindex newline, required at file end
  2495. @cindex EOF, newline must precede
  2496. It is an error to end any statement with end-of-file: the last
  2497. character of any input file should be a newline.@refill
  2498. An empty statement is allowed, and may include whitespace. It is ignored.
  2499. @cindex instructions and directives
  2500. @cindex directives and instructions
  2501. @c "key symbol" is not used elsewhere in the document; seems pedantic to
  2502. @c @defn{} it in that case, as was done previously... doc@cygnus.com,
  2503. @c 13feb91.
  2504. A statement begins with zero or more labels, optionally followed by a
  2505. key symbol which determines what kind of statement it is. The key
  2506. symbol determines the syntax of the rest of the statement. If the
  2507. symbol begins with a dot @samp{.} then the statement is an assembler
  2508. directive: typically valid for any computer. If the symbol begins with
  2509. a letter the statement is an assembly language @dfn{instruction}: it
  2510. assembles into a machine language instruction.
  2511. @ifset GENERIC
  2512. Different versions of @command{@value{AS}} for different computers
  2513. recognize different instructions. In fact, the same symbol may
  2514. represent a different instruction in a different computer's assembly
  2515. language.@refill
  2516. @end ifset
  2517. @cindex @code{:} (label)
  2518. @cindex label (@code{:})
  2519. A label is a symbol immediately followed by a colon (@code{:}).
  2520. Whitespace before a label or after a colon is permitted, but you may not
  2521. have whitespace between a label's symbol and its colon. @xref{Labels}.
  2522. @ifset HPPA
  2523. For HPPA targets, labels need not be immediately followed by a colon, but
  2524. the definition of a label must begin in column zero. This also implies that
  2525. only one label may be defined on each line.
  2526. @end ifset
  2527. @smallexample
  2528. label: .directive followed by something
  2529. another_label: # This is an empty statement.
  2530. instruction operand_1, operand_2, @dots{}
  2531. @end smallexample
  2532. @node Constants
  2533. @section Constants
  2534. @cindex constants
  2535. A constant is a number, written so that its value is known by
  2536. inspection, without knowing any context. Like this:
  2537. @smallexample
  2538. @group
  2539. .byte 74, 0112, 092, 0x4A, 0X4a, 'J, '\J # All the same value.
  2540. .ascii "Ring the bell\7" # A string constant.
  2541. .octa 0x123456789abcdef0123456789ABCDEF0 # A bignum.
  2542. .float 0f-314159265358979323846264338327\
  2543. 95028841971.693993751E-40 # - pi, a flonum.
  2544. @end group
  2545. @end smallexample
  2546. @menu
  2547. * Characters:: Character Constants
  2548. * Numbers:: Number Constants
  2549. @end menu
  2550. @node Characters
  2551. @subsection Character Constants
  2552. @cindex character constants
  2553. @cindex constants, character
  2554. There are two kinds of character constants. A @dfn{character} stands
  2555. for one character in one byte and its value may be used in
  2556. numeric expressions. String constants (properly called string
  2557. @emph{literals}) are potentially many bytes and their values may not be
  2558. used in arithmetic expressions.
  2559. @menu
  2560. * Strings:: Strings
  2561. * Chars:: Characters
  2562. @end menu
  2563. @node Strings
  2564. @subsubsection Strings
  2565. @cindex string constants
  2566. @cindex constants, string
  2567. A @dfn{string} is written between double-quotes. It may contain
  2568. double-quotes or null characters. The way to get special characters
  2569. into a string is to @dfn{escape} these characters: precede them with
  2570. a backslash @samp{\} character. For example @samp{\\} represents
  2571. one backslash: the first @code{\} is an escape which tells
  2572. @command{@value{AS}} to interpret the second character literally as a backslash
  2573. (which prevents @command{@value{AS}} from recognizing the second @code{\} as an
  2574. escape character). The complete list of escapes follows.
  2575. @cindex escape codes, character
  2576. @cindex character escape codes
  2577. @c NOTE: Cindex entries must not start with a backlash character.
  2578. @c NOTE: This confuses the pdf2texi script when it is creating the
  2579. @c NOTE: index based upon the first character and so it generates:
  2580. @c NOTE: \initial {\\}
  2581. @c NOTE: which then results in the error message:
  2582. @c NOTE: Argument of \\ has an extra }.
  2583. @c NOTE: So in the index entries below a space character has been
  2584. @c NOTE: prepended to avoid this problem.
  2585. @table @kbd
  2586. @c @item \a
  2587. @c Mnemonic for ACKnowledge; for ASCII this is octal code 007.
  2588. @c
  2589. @cindex @code{ \b} (backspace character)
  2590. @cindex backspace (@code{\b})
  2591. @item \b
  2592. Mnemonic for backspace; for ASCII this is octal code 010.
  2593. @c @item \e
  2594. @c Mnemonic for EOText; for ASCII this is octal code 004.
  2595. @c
  2596. @cindex @code{ \f} (formfeed character)
  2597. @cindex formfeed (@code{\f})
  2598. @item backslash-f
  2599. Mnemonic for FormFeed; for ASCII this is octal code 014.
  2600. @cindex @code{ \n} (newline character)
  2601. @cindex newline (@code{\n})
  2602. @item \n
  2603. Mnemonic for newline; for ASCII this is octal code 012.
  2604. @c @item \p
  2605. @c Mnemonic for prefix; for ASCII this is octal code 033, usually known as @code{escape}.
  2606. @c
  2607. @cindex @code{ \r} (carriage return character)
  2608. @cindex carriage return (@code{backslash-r})
  2609. @item \r
  2610. Mnemonic for carriage-Return; for ASCII this is octal code 015.
  2611. @c @item \s
  2612. @c Mnemonic for space; for ASCII this is octal code 040. Included for compliance with
  2613. @c other assemblers.
  2614. @c
  2615. @cindex @code{ \t} (tab)
  2616. @cindex tab (@code{\t})
  2617. @item \t
  2618. Mnemonic for horizontal Tab; for ASCII this is octal code 011.
  2619. @c @item \v
  2620. @c Mnemonic for Vertical tab; for ASCII this is octal code 013.
  2621. @c @item \x @var{digit} @var{digit} @var{digit}
  2622. @c A hexadecimal character code. The numeric code is 3 hexadecimal digits.
  2623. @c
  2624. @cindex @code{ \@var{ddd}} (octal character code)
  2625. @cindex octal character code (@code{\@var{ddd}})
  2626. @item \ @var{digit} @var{digit} @var{digit}
  2627. An octal character code. The numeric code is 3 octal digits.
  2628. For compatibility with other Unix systems, 8 and 9 are accepted as digits:
  2629. for example, @code{\008} has the value 010, and @code{\009} the value 011.
  2630. @cindex @code{ \@var{xd...}} (hex character code)
  2631. @cindex hex character code (@code{\@var{xd...}})
  2632. @item \@code{x} @var{hex-digits...}
  2633. A hex character code. All trailing hex digits are combined. Either upper or
  2634. lower case @code{x} works.
  2635. @cindex @code{ \\} (@samp{\} character)
  2636. @cindex backslash (@code{\\})
  2637. @item \\
  2638. Represents one @samp{\} character.
  2639. @c @item \'
  2640. @c Represents one @samp{'} (accent acute) character.
  2641. @c This is needed in single character literals
  2642. @c (@xref{Characters,,Character Constants}.) to represent
  2643. @c a @samp{'}.
  2644. @c
  2645. @cindex @code{ \"} (doublequote character)
  2646. @cindex doublequote (@code{\"})
  2647. @item \"
  2648. Represents one @samp{"} character. Needed in strings to represent
  2649. this character, because an unescaped @samp{"} would end the string.
  2650. @item \ @var{anything-else}
  2651. Any other character when escaped by @kbd{\} gives a warning, but
  2652. assembles as if the @samp{\} was not present. The idea is that if
  2653. you used an escape sequence you clearly didn't want the literal
  2654. interpretation of the following character. However @command{@value{AS}} has no
  2655. other interpretation, so @command{@value{AS}} knows it is giving you the wrong
  2656. code and warns you of the fact.
  2657. @end table
  2658. Which characters are escapable, and what those escapes represent,
  2659. varies widely among assemblers. The current set is what we think
  2660. the BSD 4.2 assembler recognizes, and is a subset of what most C
  2661. compilers recognize. If you are in doubt, do not use an escape
  2662. sequence.
  2663. @node Chars
  2664. @subsubsection Characters
  2665. @cindex single character constant
  2666. @cindex character, single
  2667. @cindex constant, single character
  2668. A single character may be written as a single quote immediately followed by
  2669. that character. Some backslash escapes apply to characters, @code{\b},
  2670. @code{\f}, @code{\n}, @code{\r}, @code{\t}, and @code{\"} with the same meaning
  2671. as for strings, plus @code{\'} for a single quote. So if you want to write the
  2672. character backslash, you must write @kbd{'\\} where the first @code{\} escapes
  2673. the second @code{\}. As you can see, the quote is an acute accent, not a grave
  2674. accent. A newline
  2675. @ifclear GENERIC
  2676. @ifclear abnormal-separator
  2677. (or semicolon @samp{;})
  2678. @end ifclear
  2679. @ifset abnormal-separator
  2680. @ifset H8
  2681. (or dollar sign @samp{$}, for the H8/300; or semicolon @samp{;} for the
  2682. Renesas SH)
  2683. @end ifset
  2684. @end ifset
  2685. @end ifclear
  2686. immediately following an acute accent is taken as a literal character
  2687. and does not count as the end of a statement. The value of a character
  2688. constant in a numeric expression is the machine's byte-wide code for
  2689. that character. @command{@value{AS}} assumes your character code is ASCII:
  2690. @kbd{'A} means 65, @kbd{'B} means 66, and so on. @refill
  2691. @node Numbers
  2692. @subsection Number Constants
  2693. @cindex constants, number
  2694. @cindex number constants
  2695. @command{@value{AS}} distinguishes three kinds of numbers according to how they
  2696. are stored in the target machine. @emph{Integers} are numbers that
  2697. would fit into an @code{int} in the C language. @emph{Bignums} are
  2698. integers, but they are stored in more than 32 bits. @emph{Flonums}
  2699. are floating point numbers, described below.
  2700. @menu
  2701. * Integers:: Integers
  2702. * Bignums:: Bignums
  2703. * Flonums:: Flonums
  2704. @ifclear GENERIC
  2705. @end ifclear
  2706. @end menu
  2707. @node Integers
  2708. @subsubsection Integers
  2709. @cindex integers
  2710. @cindex constants, integer
  2711. @cindex binary integers
  2712. @cindex integers, binary
  2713. A binary integer is @samp{0b} or @samp{0B} followed by zero or more of
  2714. the binary digits @samp{01}.
  2715. @cindex octal integers
  2716. @cindex integers, octal
  2717. An octal integer is @samp{0} followed by zero or more of the octal
  2718. digits (@samp{01234567}).
  2719. @cindex decimal integers
  2720. @cindex integers, decimal
  2721. A decimal integer starts with a non-zero digit followed by zero or
  2722. more digits (@samp{0123456789}).
  2723. @cindex hexadecimal integers
  2724. @cindex integers, hexadecimal
  2725. A hexadecimal integer is @samp{0x} or @samp{0X} followed by one or
  2726. more hexadecimal digits chosen from @samp{0123456789abcdefABCDEF}.
  2727. Integers have the usual values. To denote a negative integer, use
  2728. the prefix operator @samp{-} discussed under expressions
  2729. (@pxref{Prefix Ops,,Prefix Operators}).
  2730. @node Bignums
  2731. @subsubsection Bignums
  2732. @cindex bignums
  2733. @cindex constants, bignum
  2734. A @dfn{bignum} has the same syntax and semantics as an integer
  2735. except that the number (or its negative) takes more than 32 bits to
  2736. represent in binary. The distinction is made because in some places
  2737. integers are permitted while bignums are not.
  2738. @node Flonums
  2739. @subsubsection Flonums
  2740. @cindex flonums
  2741. @cindex floating point numbers
  2742. @cindex constants, floating point
  2743. @cindex precision, floating point
  2744. A @dfn{flonum} represents a floating point number. The translation is
  2745. indirect: a decimal floating point number from the text is converted by
  2746. @command{@value{AS}} to a generic binary floating point number of more than
  2747. sufficient precision. This generic floating point number is converted
  2748. to a particular computer's floating point format (or formats) by a
  2749. portion of @command{@value{AS}} specialized to that computer.
  2750. A flonum is written by writing (in order)
  2751. @itemize @bullet
  2752. @item
  2753. The digit @samp{0}.
  2754. @ifset HPPA
  2755. (@samp{0} is optional on the HPPA.)
  2756. @end ifset
  2757. @item
  2758. A letter, to tell @command{@value{AS}} the rest of the number is a flonum.
  2759. @ifset GENERIC
  2760. @kbd{e} is recommended. Case is not important.
  2761. @ignore
  2762. @c FIXME: verify if flonum syntax really this vague for most cases
  2763. (Any otherwise illegal letter works here, but that might be changed. Vax BSD
  2764. 4.2 assembler seems to allow any of @samp{defghDEFGH}.)
  2765. @end ignore
  2766. On the H8/300 and Renesas / SuperH SH architectures, the letter must be
  2767. one of the letters @samp{DFPRSX} (in upper or lower case).
  2768. On the ARC, the letter must be one of the letters @samp{DFRS}
  2769. (in upper or lower case).
  2770. On the HPPA architecture, the letter must be @samp{E} (upper case only).
  2771. @end ifset
  2772. @ifclear GENERIC
  2773. @ifset ARC
  2774. One of the letters @samp{DFRS} (in upper or lower case).
  2775. @end ifset
  2776. @ifset H8
  2777. One of the letters @samp{DFPRSX} (in upper or lower case).
  2778. @end ifset
  2779. @ifset HPPA
  2780. The letter @samp{E} (upper case only).
  2781. @end ifset
  2782. @end ifclear
  2783. @item
  2784. An optional sign: either @samp{+} or @samp{-}.
  2785. @item
  2786. An optional @dfn{integer part}: zero or more decimal digits.
  2787. @item
  2788. An optional @dfn{fractional part}: @samp{.} followed by zero
  2789. or more decimal digits.
  2790. @item
  2791. An optional exponent, consisting of:
  2792. @itemize @bullet
  2793. @item
  2794. An @samp{E} or @samp{e}.
  2795. @c I can't find a config where "EXP_CHARS" is other than 'eE', but in
  2796. @c principle this can perfectly well be different on different targets.
  2797. @item
  2798. Optional sign: either @samp{+} or @samp{-}.
  2799. @item
  2800. One or more decimal digits.
  2801. @end itemize
  2802. @end itemize
  2803. At least one of the integer part or the fractional part must be
  2804. present. The floating point number has the usual base-10 value.
  2805. @command{@value{AS}} does all processing using integers. Flonums are computed
  2806. independently of any floating point hardware in the computer running
  2807. @command{@value{AS}}.
  2808. @node Sections
  2809. @chapter Sections and Relocation
  2810. @cindex sections
  2811. @cindex relocation
  2812. @menu
  2813. * Secs Background:: Background
  2814. * Ld Sections:: Linker Sections
  2815. * As Sections:: Assembler Internal Sections
  2816. * Sub-Sections:: Sub-Sections
  2817. * bss:: bss Section
  2818. @end menu
  2819. @node Secs Background
  2820. @section Background
  2821. Roughly, a section is a range of addresses, with no gaps; all data
  2822. ``in'' those addresses is treated the same for some particular purpose.
  2823. For example there may be a ``read only'' section.
  2824. @cindex linker, and assembler
  2825. @cindex assembler, and linker
  2826. The linker @code{@value{LD}} reads many object files (partial programs) and
  2827. combines their contents to form a runnable program. When @command{@value{AS}}
  2828. emits an object file, the partial program is assumed to start at address 0.
  2829. @code{@value{LD}} assigns the final addresses for the partial program, so that
  2830. different partial programs do not overlap. This is actually an
  2831. oversimplification, but it suffices to explain how @command{@value{AS}} uses
  2832. sections.
  2833. @code{@value{LD}} moves blocks of bytes of your program to their run-time
  2834. addresses. These blocks slide to their run-time addresses as rigid
  2835. units; their length does not change and neither does the order of bytes
  2836. within them. Such a rigid unit is called a @emph{section}. Assigning
  2837. run-time addresses to sections is called @dfn{relocation}. It includes
  2838. the task of adjusting mentions of object-file addresses so they refer to
  2839. the proper run-time addresses.
  2840. @ifset H8
  2841. For the H8/300, and for the Renesas / SuperH SH,
  2842. @command{@value{AS}} pads sections if needed to
  2843. ensure they end on a word (sixteen bit) boundary.
  2844. @end ifset
  2845. @cindex standard assembler sections
  2846. An object file written by @command{@value{AS}} has at least three sections, any
  2847. of which may be empty. These are named @dfn{text}, @dfn{data} and
  2848. @dfn{bss} sections.
  2849. @ifset COFF-ELF
  2850. @ifset GENERIC
  2851. When it generates COFF or ELF output,
  2852. @end ifset
  2853. @command{@value{AS}} can also generate whatever other named sections you specify
  2854. using the @samp{.section} directive (@pxref{Section,,@code{.section}}).
  2855. If you do not use any directives that place output in the @samp{.text}
  2856. or @samp{.data} sections, these sections still exist, but are empty.
  2857. @end ifset
  2858. @ifset HPPA
  2859. @ifset GENERIC
  2860. When @command{@value{AS}} generates SOM or ELF output for the HPPA,
  2861. @end ifset
  2862. @command{@value{AS}} can also generate whatever other named sections you
  2863. specify using the @samp{.space} and @samp{.subspace} directives. See
  2864. @cite{HP9000 Series 800 Assembly Language Reference Manual}
  2865. (HP 92432-90001) for details on the @samp{.space} and @samp{.subspace}
  2866. assembler directives.
  2867. @ifset SOM
  2868. Additionally, @command{@value{AS}} uses different names for the standard
  2869. text, data, and bss sections when generating SOM output. Program text
  2870. is placed into the @samp{$CODE$} section, data into @samp{$DATA$}, and
  2871. BSS into @samp{$BSS$}.
  2872. @end ifset
  2873. @end ifset
  2874. Within the object file, the text section starts at address @code{0}, the
  2875. data section follows, and the bss section follows the data section.
  2876. @ifset HPPA
  2877. When generating either SOM or ELF output files on the HPPA, the text
  2878. section starts at address @code{0}, the data section at address
  2879. @code{0x4000000}, and the bss section follows the data section.
  2880. @end ifset
  2881. To let @code{@value{LD}} know which data changes when the sections are
  2882. relocated, and how to change that data, @command{@value{AS}} also writes to the
  2883. object file details of the relocation needed. To perform relocation
  2884. @code{@value{LD}} must know, each time an address in the object
  2885. file is mentioned:
  2886. @itemize @bullet
  2887. @item
  2888. Where in the object file is the beginning of this reference to
  2889. an address?
  2890. @item
  2891. How long (in bytes) is this reference?
  2892. @item
  2893. Which section does the address refer to? What is the numeric value of
  2894. @display
  2895. (@var{address}) @minus{} (@var{start-address of section})?
  2896. @end display
  2897. @item
  2898. Is the reference to an address ``Program-Counter relative''?
  2899. @end itemize
  2900. @cindex addresses, format of
  2901. @cindex section-relative addressing
  2902. In fact, every address @command{@value{AS}} ever uses is expressed as
  2903. @display
  2904. (@var{section}) + (@var{offset into section})
  2905. @end display
  2906. @noindent
  2907. Further, most expressions @command{@value{AS}} computes have this section-relative
  2908. nature.
  2909. @ifset SOM
  2910. (For some object formats, such as SOM for the HPPA, some expressions are
  2911. symbol-relative instead.)
  2912. @end ifset
  2913. In this manual we use the notation @{@var{secname} @var{N}@} to mean ``offset
  2914. @var{N} into section @var{secname}.''
  2915. Apart from text, data and bss sections you need to know about the
  2916. @dfn{absolute} section. When @code{@value{LD}} mixes partial programs,
  2917. addresses in the absolute section remain unchanged. For example, address
  2918. @code{@{absolute 0@}} is ``relocated'' to run-time address 0 by
  2919. @code{@value{LD}}. Although the linker never arranges two partial programs'
  2920. data sections with overlapping addresses after linking, @emph{by definition}
  2921. their absolute sections must overlap. Address @code{@{absolute@ 239@}} in one
  2922. part of a program is always the same address when the program is running as
  2923. address @code{@{absolute@ 239@}} in any other part of the program.
  2924. The idea of sections is extended to the @dfn{undefined} section. Any
  2925. address whose section is unknown at assembly time is by definition
  2926. rendered @{undefined @var{U}@}---where @var{U} is filled in later.
  2927. Since numbers are always defined, the only way to generate an undefined
  2928. address is to mention an undefined symbol. A reference to a named
  2929. common block would be such a symbol: its value is unknown at assembly
  2930. time so it has section @emph{undefined}.
  2931. By analogy the word @emph{section} is used to describe groups of sections in
  2932. the linked program. @code{@value{LD}} puts all partial programs' text
  2933. sections in contiguous addresses in the linked program. It is
  2934. customary to refer to the @emph{text section} of a program, meaning all
  2935. the addresses of all partial programs' text sections. Likewise for
  2936. data and bss sections.
  2937. Some sections are manipulated by @code{@value{LD}}; others are invented for
  2938. use of @command{@value{AS}} and have no meaning except during assembly.
  2939. @node Ld Sections
  2940. @section Linker Sections
  2941. @code{@value{LD}} deals with just four kinds of sections, summarized below.
  2942. @table @strong
  2943. @ifset COFF-ELF
  2944. @cindex named sections
  2945. @cindex sections, named
  2946. @item named sections
  2947. @end ifset
  2948. @ifset aout
  2949. @cindex text section
  2950. @cindex data section
  2951. @itemx text section
  2952. @itemx data section
  2953. @end ifset
  2954. These sections hold your program. @command{@value{AS}} and @code{@value{LD}} treat them as
  2955. separate but equal sections. Anything you can say of one section is
  2956. true of another.
  2957. @c @ifset aout
  2958. When the program is running, however, it is
  2959. customary for the text section to be unalterable. The
  2960. text section is often shared among processes: it contains
  2961. instructions, constants and the like. The data section of a running
  2962. program is usually alterable: for example, C variables would be stored
  2963. in the data section.
  2964. @c @end ifset
  2965. @cindex bss section
  2966. @item bss section
  2967. This section contains zeroed bytes when your program begins running. It
  2968. is used to hold uninitialized variables or common storage. The length of
  2969. each partial program's bss section is important, but because it starts
  2970. out containing zeroed bytes there is no need to store explicit zero
  2971. bytes in the object file. The bss section was invented to eliminate
  2972. those explicit zeros from object files.
  2973. @cindex absolute section
  2974. @item absolute section
  2975. Address 0 of this section is always ``relocated'' to runtime address 0.
  2976. This is useful if you want to refer to an address that @code{@value{LD}} must
  2977. not change when relocating. In this sense we speak of absolute
  2978. addresses being ``unrelocatable'': they do not change during relocation.
  2979. @cindex undefined section
  2980. @item undefined section
  2981. This ``section'' is a catch-all for address references to objects not in
  2982. the preceding sections.
  2983. @c FIXME: ref to some other doc on obj-file formats could go here.
  2984. @end table
  2985. @cindex relocation example
  2986. An idealized example of three relocatable sections follows.
  2987. @ifset COFF-ELF
  2988. The example uses the traditional section names @samp{.text} and @samp{.data}.
  2989. @end ifset
  2990. Memory addresses are on the horizontal axis.
  2991. @c TEXI2ROFF-KILL
  2992. @ifnottex
  2993. @c END TEXI2ROFF-KILL
  2994. @smallexample
  2995. +-----+----+--+
  2996. partial program # 1: |ttttt|dddd|00|
  2997. +-----+----+--+
  2998. text data bss
  2999. seg. seg. seg.
  3000. +---+---+---+
  3001. partial program # 2: |TTT|DDD|000|
  3002. +---+---+---+
  3003. +--+---+-----+--+----+---+-----+~~
  3004. linked program: | |TTT|ttttt| |dddd|DDD|00000|
  3005. +--+---+-----+--+----+---+-----+~~
  3006. addresses: 0 @dots{}
  3007. @end smallexample
  3008. @c TEXI2ROFF-KILL
  3009. @end ifnottex
  3010. @need 5000
  3011. @tex
  3012. \bigskip
  3013. \line{\it Partial program \#1: \hfil}
  3014. \line{\ibox{2.5cm}{\tt text}\ibox{2cm}{\tt data}\ibox{1cm}{\tt bss}\hfil}
  3015. \line{\boxit{2.5cm}{\tt ttttt}\boxit{2cm}{\tt dddd}\boxit{1cm}{\tt 00}\hfil}
  3016. \line{\it Partial program \#2: \hfil}
  3017. \line{\ibox{1cm}{\tt text}\ibox{1.5cm}{\tt data}\ibox{1cm}{\tt bss}\hfil}
  3018. \line{\boxit{1cm}{\tt TTT}\boxit{1.5cm}{\tt DDDD}\boxit{1cm}{\tt 000}\hfil}
  3019. \line{\it linked program: \hfil}
  3020. \line{\ibox{.5cm}{}\ibox{1cm}{\tt text}\ibox{2.5cm}{}\ibox{.75cm}{}\ibox{2cm}{\tt data}\ibox{1.5cm}{}\ibox{2cm}{\tt bss}\hfil}
  3021. \line{\boxit{.5cm}{}\boxit{1cm}{\tt TTT}\boxit{2.5cm}{\tt
  3022. ttttt}\boxit{.75cm}{}\boxit{2cm}{\tt dddd}\boxit{1.5cm}{\tt
  3023. DDDD}\boxit{2cm}{\tt 00000}\ \dots\hfil}
  3024. \line{\it addresses: \hfil}
  3025. \line{0\dots\hfil}
  3026. @end tex
  3027. @c END TEXI2ROFF-KILL
  3028. @node As Sections
  3029. @section Assembler Internal Sections
  3030. @cindex internal assembler sections
  3031. @cindex sections in messages, internal
  3032. These sections are meant only for the internal use of @command{@value{AS}}. They
  3033. have no meaning at run-time. You do not really need to know about these
  3034. sections for most purposes; but they can be mentioned in @command{@value{AS}}
  3035. warning messages, so it might be helpful to have an idea of their
  3036. meanings to @command{@value{AS}}. These sections are used to permit the
  3037. value of every expression in your assembly language program to be a
  3038. section-relative address.
  3039. @table @b
  3040. @cindex assembler internal logic error
  3041. @item ASSEMBLER-INTERNAL-LOGIC-ERROR!
  3042. An internal assembler logic error has been found. This means there is a
  3043. bug in the assembler.
  3044. @cindex expr (internal section)
  3045. @item expr section
  3046. The assembler stores complex expression internally as combinations of
  3047. symbols. When it needs to represent an expression as a symbol, it puts
  3048. it in the expr section.
  3049. @c FIXME item debug
  3050. @c FIXME item transfer[t] vector preload
  3051. @c FIXME item transfer[t] vector postload
  3052. @c FIXME item register
  3053. @end table
  3054. @node Sub-Sections
  3055. @section Sub-Sections
  3056. @cindex numbered subsections
  3057. @cindex grouping data
  3058. @ifset aout
  3059. Assembled bytes
  3060. @ifset COFF-ELF
  3061. conventionally
  3062. @end ifset
  3063. fall into two sections: text and data.
  3064. @end ifset
  3065. You may have separate groups of
  3066. @ifset GENERIC
  3067. data in named sections
  3068. @end ifset
  3069. @ifclear GENERIC
  3070. @ifclear aout
  3071. data in named sections
  3072. @end ifclear
  3073. @ifset aout
  3074. text or data
  3075. @end ifset
  3076. @end ifclear
  3077. that you want to end up near to each other in the object file, even though they
  3078. are not contiguous in the assembler source. @command{@value{AS}} allows you to
  3079. use @dfn{subsections} for this purpose. Within each section, there can be
  3080. numbered subsections with values from 0 to 8192. Objects assembled into the
  3081. same subsection go into the object file together with other objects in the same
  3082. subsection. For example, a compiler might want to store constants in the text
  3083. section, but might not want to have them interspersed with the program being
  3084. assembled. In this case, the compiler could issue a @samp{.text 0} before each
  3085. section of code being output, and a @samp{.text 1} before each group of
  3086. constants being output.
  3087. Subsections are optional. If you do not use subsections, everything
  3088. goes in subsection number zero.
  3089. @ifset GENERIC
  3090. Each subsection is zero-padded up to a multiple of four bytes.
  3091. (Subsections may be padded a different amount on different flavors
  3092. of @command{@value{AS}}.)
  3093. @end ifset
  3094. @ifclear GENERIC
  3095. @ifset H8
  3096. On the H8/300 platform, each subsection is zero-padded to a word
  3097. boundary (two bytes).
  3098. The same is true on the Renesas SH.
  3099. @end ifset
  3100. @end ifclear
  3101. Subsections appear in your object file in numeric order, lowest numbered
  3102. to highest. (All this to be compatible with other people's assemblers.)
  3103. The object file contains no representation of subsections; @code{@value{LD}} and
  3104. other programs that manipulate object files see no trace of them.
  3105. They just see all your text subsections as a text section, and all your
  3106. data subsections as a data section.
  3107. To specify which subsection you want subsequent statements assembled
  3108. into, use a numeric argument to specify it, in a @samp{.text
  3109. @var{expression}} or a @samp{.data @var{expression}} statement.
  3110. @ifset COFF
  3111. @ifset GENERIC
  3112. When generating COFF output, you
  3113. @end ifset
  3114. @ifclear GENERIC
  3115. You
  3116. @end ifclear
  3117. can also use an extra subsection
  3118. argument with arbitrary named sections: @samp{.section @var{name},
  3119. @var{expression}}.
  3120. @end ifset
  3121. @ifset ELF
  3122. @ifset GENERIC
  3123. When generating ELF output, you
  3124. @end ifset
  3125. @ifclear GENERIC
  3126. You
  3127. @end ifclear
  3128. can also use the @code{.subsection} directive (@pxref{SubSection})
  3129. to specify a subsection: @samp{.subsection @var{expression}}.
  3130. @end ifset
  3131. @var{Expression} should be an absolute expression
  3132. (@pxref{Expressions}). If you just say @samp{.text} then @samp{.text 0}
  3133. is assumed. Likewise @samp{.data} means @samp{.data 0}. Assembly
  3134. begins in @code{text 0}. For instance:
  3135. @smallexample
  3136. .text 0 # The default subsection is text 0 anyway.
  3137. .ascii "This lives in the first text subsection. *"
  3138. .text 1
  3139. .ascii "But this lives in the second text subsection."
  3140. .data 0
  3141. .ascii "This lives in the data section,"
  3142. .ascii "in the first data subsection."
  3143. .text 0
  3144. .ascii "This lives in the first text section,"
  3145. .ascii "immediately following the asterisk (*)."
  3146. @end smallexample
  3147. Each section has a @dfn{location counter} incremented by one for every byte
  3148. assembled into that section. Because subsections are merely a convenience
  3149. restricted to @command{@value{AS}} there is no concept of a subsection location
  3150. counter. There is no way to directly manipulate a location counter---but the
  3151. @code{.align} directive changes it, and any label definition captures its
  3152. current value. The location counter of the section where statements are being
  3153. assembled is said to be the @dfn{active} location counter.
  3154. @node bss
  3155. @section bss Section
  3156. @cindex bss section
  3157. @cindex common variable storage
  3158. The bss section is used for local common variable storage.
  3159. You may allocate address space in the bss section, but you may
  3160. not dictate data to load into it before your program executes. When
  3161. your program starts running, all the contents of the bss
  3162. section are zeroed bytes.
  3163. The @code{.lcomm} pseudo-op defines a symbol in the bss section; see
  3164. @ref{Lcomm,,@code{.lcomm}}.
  3165. The @code{.comm} pseudo-op may be used to declare a common symbol, which is
  3166. another form of uninitialized symbol; see @ref{Comm,,@code{.comm}}.
  3167. @ifset GENERIC
  3168. When assembling for a target which supports multiple sections, such as ELF or
  3169. COFF, you may switch into the @code{.bss} section and define symbols as usual;
  3170. see @ref{Section,,@code{.section}}. You may only assemble zero values into the
  3171. section. Typically the section will only contain symbol definitions and
  3172. @code{.skip} directives (@pxref{Skip,,@code{.skip}}).
  3173. @end ifset
  3174. @node Symbols
  3175. @chapter Symbols
  3176. @cindex symbols
  3177. Symbols are a central concept: the programmer uses symbols to name
  3178. things, the linker uses symbols to link, and the debugger uses symbols
  3179. to debug.
  3180. @quotation
  3181. @cindex debuggers, and symbol order
  3182. @emph{Warning:} @command{@value{AS}} does not place symbols in the object file in
  3183. the same order they were declared. This may break some debuggers.
  3184. @end quotation
  3185. @menu
  3186. * Labels:: Labels
  3187. * Setting Symbols:: Giving Symbols Other Values
  3188. * Symbol Names:: Symbol Names
  3189. * Dot:: The Special Dot Symbol
  3190. * Symbol Attributes:: Symbol Attributes
  3191. @end menu
  3192. @node Labels
  3193. @section Labels
  3194. @cindex labels
  3195. A @dfn{label} is written as a symbol immediately followed by a colon
  3196. @samp{:}. The symbol then represents the current value of the
  3197. active location counter, and is, for example, a suitable instruction
  3198. operand. You are warned if you use the same symbol to represent two
  3199. different locations: the first definition overrides any other
  3200. definitions.
  3201. @ifset HPPA
  3202. On the HPPA, the usual form for a label need not be immediately followed by a
  3203. colon, but instead must start in column zero. Only one label may be defined on
  3204. a single line. To work around this, the HPPA version of @command{@value{AS}} also
  3205. provides a special directive @code{.label} for defining labels more flexibly.
  3206. @end ifset
  3207. @node Setting Symbols
  3208. @section Giving Symbols Other Values
  3209. @cindex assigning values to symbols
  3210. @cindex symbol values, assigning
  3211. A symbol can be given an arbitrary value by writing a symbol, followed
  3212. by an equals sign @samp{=}, followed by an expression
  3213. (@pxref{Expressions}). This is equivalent to using the @code{.set}
  3214. directive. @xref{Set,,@code{.set}}. In the same way, using a double
  3215. equals sign @samp{=}@samp{=} here represents an equivalent of the
  3216. @code{.eqv} directive. @xref{Eqv,,@code{.eqv}}.
  3217. @ifset Blackfin
  3218. Blackfin does not support symbol assignment with @samp{=}.
  3219. @end ifset
  3220. @node Symbol Names
  3221. @section Symbol Names
  3222. @cindex symbol names
  3223. @cindex names, symbol
  3224. @ifclear SPECIAL-SYMS
  3225. Symbol names begin with a letter or with one of @samp{._}. On most
  3226. machines, you can also use @code{$} in symbol names; exceptions are
  3227. noted in @ref{Machine Dependencies}. That character may be followed by any
  3228. string of digits, letters, dollar signs (unless otherwise noted for a
  3229. particular target machine), and underscores. These restrictions do not
  3230. apply when quoting symbol names by @samp{"}, which is permitted for most
  3231. targets. Escaping characters in quoted symbol names with @samp{\} generally
  3232. extends only to @samp{\} itself and @samp{"}, at the time of writing.
  3233. @end ifclear
  3234. @ifset SPECIAL-SYMS
  3235. @ifset H8
  3236. Symbol names begin with a letter or with one of @samp{._}. On the
  3237. Renesas SH you can also use @code{$} in symbol names. That
  3238. character may be followed by any string of digits, letters, dollar signs (save
  3239. on the H8/300), and underscores.
  3240. @end ifset
  3241. @end ifset
  3242. Case of letters is significant: @code{foo} is a different symbol name
  3243. than @code{Foo}.
  3244. Symbol names do not start with a digit. An exception to this rule is made for
  3245. Local Labels. See below.
  3246. Multibyte characters are supported, but note that the setting of the
  3247. @option{multibyte-handling} option might prevent their use.
  3248. To generate a symbol name containing
  3249. multibyte characters enclose it within double quotes and use escape codes. cf
  3250. @xref{Strings}. Generating a multibyte symbol name from a label is not
  3251. currently supported.
  3252. Since multibyte symbol names are unusual, and could possibly be used
  3253. maliciously, @command{@value{AS}} provides a command line option
  3254. (@option{--multibyte-handling=warn-sym-only}) which can be used to generate a
  3255. warning message whenever a symbol name containing multibyte characters is defined.
  3256. Each symbol has exactly one name. Each name in an assembly language program
  3257. refers to exactly one symbol. You may use that symbol name any number of times
  3258. in a program.
  3259. @subheading Local Symbol Names
  3260. @cindex local symbol names
  3261. @cindex symbol names, local
  3262. A local symbol is any symbol beginning with certain local label prefixes.
  3263. By default, the local label prefix is @samp{.L} for ELF systems or
  3264. @samp{L} for traditional a.out systems, but each target may have its own
  3265. set of local label prefixes.
  3266. @ifset HPPA
  3267. On the HPPA local symbols begin with @samp{L$}.
  3268. @end ifset
  3269. Local symbols are defined and used within the assembler, but they are
  3270. normally not saved in object files. Thus, they are not visible when debugging.
  3271. You may use the @samp{-L} option (@pxref{L, ,Include Local Symbols})
  3272. to retain the local symbols in the object files.
  3273. @subheading Local Labels
  3274. @cindex local labels
  3275. @cindex temporary symbol names
  3276. @cindex symbol names, temporary
  3277. Local labels are different from local symbols. Local labels help compilers and
  3278. programmers use names temporarily. They create symbols which are guaranteed to
  3279. be unique over the entire scope of the input source code and which can be
  3280. referred to by a simple notation. To define a local label, write a label of
  3281. the form @samp{@b{N}:} (where @b{N} represents any non-negative integer).
  3282. To refer to the most recent previous definition of that label write
  3283. @samp{@b{N}b}, using the same number as when you defined the label. To refer
  3284. to the next definition of a local label, write @samp{@b{N}f}. The @samp{b}
  3285. stands for ``backwards'' and the @samp{f} stands for ``forwards''.
  3286. There is no restriction on how you can use these labels, and you can reuse them
  3287. too. So that it is possible to repeatedly define the same local label (using
  3288. the same number @samp{@b{N}}), although you can only refer to the most recently
  3289. defined local label of that number (for a backwards reference) or the next
  3290. definition of a specific local label for a forward reference. It is also worth
  3291. noting that the first 10 local labels (@samp{@b{0:}}@dots{}@samp{@b{9:}}) are
  3292. implemented in a slightly more efficient manner than the others.
  3293. Here is an example:
  3294. @smallexample
  3295. 1: branch 1f
  3296. 2: branch 1b
  3297. 1: branch 2f
  3298. 2: branch 1b
  3299. @end smallexample
  3300. Which is the equivalent of:
  3301. @smallexample
  3302. label_1: branch label_3
  3303. label_2: branch label_1
  3304. label_3: branch label_4
  3305. label_4: branch label_3
  3306. @end smallexample
  3307. Local label names are only a notational device. They are immediately
  3308. transformed into more conventional symbol names before the assembler uses them.
  3309. The symbol names are stored in the symbol table, appear in error messages, and
  3310. are optionally emitted to the object file. The names are constructed using
  3311. these parts:
  3312. @table @code
  3313. @item @emph{local label prefix}
  3314. All local symbols begin with the system-specific local label prefix.
  3315. Normally both @command{@value{AS}} and @code{@value{LD}} forget symbols
  3316. that start with the local label prefix. These labels are
  3317. used for symbols you are never intended to see. If you use the
  3318. @samp{-L} option then @command{@value{AS}} retains these symbols in the
  3319. object file. If you also instruct @code{@value{LD}} to retain these symbols,
  3320. you may use them in debugging.
  3321. @item @var{number}
  3322. This is the number that was used in the local label definition. So if the
  3323. label is written @samp{55:} then the number is @samp{55}.
  3324. @item @kbd{C-B}
  3325. This unusual character is included so you do not accidentally invent a symbol
  3326. of the same name. The character has ASCII value of @samp{\002} (control-B).
  3327. @item @emph{ordinal number}
  3328. This is a serial number to keep the labels distinct. The first definition of
  3329. @samp{0:} gets the number @samp{1}. The 15th definition of @samp{0:} gets the
  3330. number @samp{15}, and so on. Likewise the first definition of @samp{1:} gets
  3331. the number @samp{1} and its 15th definition gets @samp{15} as well.
  3332. @end table
  3333. So for example, the first @code{1:} may be named @code{.L1@kbd{C-B}1}, and
  3334. the 44th @code{3:} may be named @code{.L3@kbd{C-B}44}.
  3335. @subheading Dollar Local Labels
  3336. @cindex dollar local symbols
  3337. On some targets @code{@value{AS}} also supports an even more local form of
  3338. local labels called dollar labels. These labels go out of scope (i.e., they
  3339. become undefined) as soon as a non-local label is defined. Thus they remain
  3340. valid for only a small region of the input source code. Normal local labels,
  3341. by contrast, remain in scope for the entire file, or until they are redefined
  3342. by another occurrence of the same local label.
  3343. Dollar labels are defined in exactly the same way as ordinary local labels,
  3344. except that they have a dollar sign suffix to their numeric value, e.g.,
  3345. @samp{@b{55$:}}.
  3346. They can also be distinguished from ordinary local labels by their transformed
  3347. names which use ASCII character @samp{\001} (control-A) as the magic character
  3348. to distinguish them from ordinary labels. For example, the fifth definition of
  3349. @samp{6$} may be named @samp{.L6@kbd{C-A}5}.
  3350. @node Dot
  3351. @section The Special Dot Symbol
  3352. @cindex dot (symbol)
  3353. @cindex @code{.} (symbol)
  3354. @cindex current address
  3355. @cindex location counter
  3356. The special symbol @samp{.} refers to the current address that
  3357. @command{@value{AS}} is assembling into. Thus, the expression @samp{melvin:
  3358. .long .} defines @code{melvin} to contain its own address.
  3359. Assigning a value to @code{.} is treated the same as a @code{.org}
  3360. directive.
  3361. @ifclear no-space-dir
  3362. Thus, the expression @samp{.=.+4} is the same as saying
  3363. @samp{.space 4}.
  3364. @end ifclear
  3365. @node Symbol Attributes
  3366. @section Symbol Attributes
  3367. @cindex symbol attributes
  3368. @cindex attributes, symbol
  3369. Every symbol has, as well as its name, the attributes ``Value'' and
  3370. ``Type''. Depending on output format, symbols can also have auxiliary
  3371. attributes.
  3372. @ifset INTERNALS
  3373. The detailed definitions are in @file{a.out.h}.
  3374. @end ifset
  3375. If you use a symbol without defining it, @command{@value{AS}} assumes zero for
  3376. all these attributes, and probably won't warn you. This makes the
  3377. symbol an externally defined symbol, which is generally what you
  3378. would want.
  3379. @menu
  3380. * Symbol Value:: Value
  3381. * Symbol Type:: Type
  3382. @ifset aout
  3383. * a.out Symbols:: Symbol Attributes: @code{a.out}
  3384. @end ifset
  3385. @ifset COFF
  3386. * COFF Symbols:: Symbol Attributes for COFF
  3387. @end ifset
  3388. @ifset SOM
  3389. * SOM Symbols:: Symbol Attributes for SOM
  3390. @end ifset
  3391. @end menu
  3392. @node Symbol Value
  3393. @subsection Value
  3394. @cindex value of a symbol
  3395. @cindex symbol value
  3396. The value of a symbol is (usually) 32 bits. For a symbol which labels a
  3397. location in the text, data, bss or absolute sections the value is the
  3398. number of addresses from the start of that section to the label.
  3399. Naturally for text, data and bss sections the value of a symbol changes
  3400. as @code{@value{LD}} changes section base addresses during linking. Absolute
  3401. symbols' values do not change during linking: that is why they are
  3402. called absolute.
  3403. The value of an undefined symbol is treated in a special way. If it is
  3404. 0 then the symbol is not defined in this assembler source file, and
  3405. @code{@value{LD}} tries to determine its value from other files linked into the
  3406. same program. You make this kind of symbol simply by mentioning a symbol
  3407. name without defining it. A non-zero value represents a @code{.comm}
  3408. common declaration. The value is how much common storage to reserve, in
  3409. bytes (addresses). The symbol refers to the first address of the
  3410. allocated storage.
  3411. @node Symbol Type
  3412. @subsection Type
  3413. @cindex type of a symbol
  3414. @cindex symbol type
  3415. The type attribute of a symbol contains relocation (section)
  3416. information, any flag settings indicating that a symbol is external, and
  3417. (optionally), other information for linkers and debuggers. The exact
  3418. format depends on the object-code output format in use.
  3419. @ifset aout
  3420. @node a.out Symbols
  3421. @subsection Symbol Attributes: @code{a.out}
  3422. @cindex @code{a.out} symbol attributes
  3423. @cindex symbol attributes, @code{a.out}
  3424. @menu
  3425. * Symbol Desc:: Descriptor
  3426. * Symbol Other:: Other
  3427. @end menu
  3428. @node Symbol Desc
  3429. @subsubsection Descriptor
  3430. @cindex descriptor, of @code{a.out} symbol
  3431. This is an arbitrary 16-bit value. You may establish a symbol's
  3432. descriptor value by using a @code{.desc} statement
  3433. (@pxref{Desc,,@code{.desc}}). A descriptor value means nothing to
  3434. @command{@value{AS}}.
  3435. @node Symbol Other
  3436. @subsubsection Other
  3437. @cindex other attribute, of @code{a.out} symbol
  3438. This is an arbitrary 8-bit value. It means nothing to @command{@value{AS}}.
  3439. @end ifset
  3440. @ifset COFF
  3441. @node COFF Symbols
  3442. @subsection Symbol Attributes for COFF
  3443. @cindex COFF symbol attributes
  3444. @cindex symbol attributes, COFF
  3445. The COFF format supports a multitude of auxiliary symbol attributes;
  3446. like the primary symbol attributes, they are set between @code{.def} and
  3447. @code{.endef} directives.
  3448. @subsubsection Primary Attributes
  3449. @cindex primary attributes, COFF symbols
  3450. The symbol name is set with @code{.def}; the value and type,
  3451. respectively, with @code{.val} and @code{.type}.
  3452. @subsubsection Auxiliary Attributes
  3453. @cindex auxiliary attributes, COFF symbols
  3454. The @command{@value{AS}} directives @code{.dim}, @code{.line}, @code{.scl},
  3455. @code{.size}, @code{.tag}, and @code{.weak} can generate auxiliary symbol
  3456. table information for COFF.
  3457. @end ifset
  3458. @ifset SOM
  3459. @node SOM Symbols
  3460. @subsection Symbol Attributes for SOM
  3461. @cindex SOM symbol attributes
  3462. @cindex symbol attributes, SOM
  3463. The SOM format for the HPPA supports a multitude of symbol attributes set with
  3464. the @code{.EXPORT} and @code{.IMPORT} directives.
  3465. The attributes are described in @cite{HP9000 Series 800 Assembly
  3466. Language Reference Manual} (HP 92432-90001) under the @code{IMPORT} and
  3467. @code{EXPORT} assembler directive documentation.
  3468. @end ifset
  3469. @node Expressions
  3470. @chapter Expressions
  3471. @cindex expressions
  3472. @cindex addresses
  3473. @cindex numeric values
  3474. An @dfn{expression} specifies an address or numeric value.
  3475. Whitespace may precede and/or follow an expression.
  3476. The result of an expression must be an absolute number, or else an offset into
  3477. a particular section. If an expression is not absolute, and there is not
  3478. enough information when @command{@value{AS}} sees the expression to know its
  3479. section, a second pass over the source program might be necessary to interpret
  3480. the expression---but the second pass is currently not implemented.
  3481. @command{@value{AS}} aborts with an error message in this situation.
  3482. @menu
  3483. * Empty Exprs:: Empty Expressions
  3484. * Integer Exprs:: Integer Expressions
  3485. @end menu
  3486. @node Empty Exprs
  3487. @section Empty Expressions
  3488. @cindex empty expressions
  3489. @cindex expressions, empty
  3490. An empty expression has no value: it is just whitespace or null.
  3491. Wherever an absolute expression is required, you may omit the
  3492. expression, and @command{@value{AS}} assumes a value of (absolute) 0. This
  3493. is compatible with other assemblers.
  3494. @node Integer Exprs
  3495. @section Integer Expressions
  3496. @cindex integer expressions
  3497. @cindex expressions, integer
  3498. An @dfn{integer expression} is one or more @emph{arguments} delimited
  3499. by @emph{operators}.
  3500. @menu
  3501. * Arguments:: Arguments
  3502. * Operators:: Operators
  3503. * Prefix Ops:: Prefix Operators
  3504. * Infix Ops:: Infix Operators
  3505. @end menu
  3506. @node Arguments
  3507. @subsection Arguments
  3508. @cindex expression arguments
  3509. @cindex arguments in expressions
  3510. @cindex operands in expressions
  3511. @cindex arithmetic operands
  3512. @dfn{Arguments} are symbols, numbers or subexpressions. In other
  3513. contexts arguments are sometimes called ``arithmetic operands''. In
  3514. this manual, to avoid confusing them with the ``instruction operands'' of
  3515. the machine language, we use the term ``argument'' to refer to parts of
  3516. expressions only, reserving the word ``operand'' to refer only to machine
  3517. instruction operands.
  3518. Symbols are evaluated to yield @{@var{section} @var{NNN}@} where
  3519. @var{section} is one of text, data, bss, absolute,
  3520. or undefined. @var{NNN} is a signed, 2's complement 32 bit
  3521. integer.
  3522. Numbers are usually integers.
  3523. A number can be a flonum or bignum. In this case, you are warned
  3524. that only the low order 32 bits are used, and @command{@value{AS}} pretends
  3525. these 32 bits are an integer. You may write integer-manipulating
  3526. instructions that act on exotic constants, compatible with other
  3527. assemblers.
  3528. @cindex subexpressions
  3529. Subexpressions are a left parenthesis @samp{(} followed by an integer
  3530. expression, followed by a right parenthesis @samp{)}; or a prefix
  3531. operator followed by an argument.
  3532. @node Operators
  3533. @subsection Operators
  3534. @cindex operators, in expressions
  3535. @cindex arithmetic functions
  3536. @cindex functions, in expressions
  3537. @dfn{Operators} are arithmetic functions, like @code{+} or @code{%}. Prefix
  3538. operators are followed by an argument. Infix operators appear
  3539. between their arguments. Operators may be preceded and/or followed by
  3540. whitespace.
  3541. @node Prefix Ops
  3542. @subsection Prefix Operator
  3543. @cindex prefix operators
  3544. @command{@value{AS}} has the following @dfn{prefix operators}. They each take
  3545. one argument, which must be absolute.
  3546. @c the tex/end tex stuff surrounding this small table is meant to make
  3547. @c it align, on the printed page, with the similar table in the next
  3548. @c section (which is inside an enumerate).
  3549. @tex
  3550. \global\advance\leftskip by \itemindent
  3551. @end tex
  3552. @table @code
  3553. @item -
  3554. @dfn{Negation}. Two's complement negation.
  3555. @item ~
  3556. @dfn{Complementation}. Bitwise not.
  3557. @end table
  3558. @tex
  3559. \global\advance\leftskip by -\itemindent
  3560. @end tex
  3561. @node Infix Ops
  3562. @subsection Infix Operators
  3563. @cindex infix operators
  3564. @cindex operators, permitted arguments
  3565. @dfn{Infix operators} take two arguments, one on either side. Operators
  3566. have precedence, but operations with equal precedence are performed left
  3567. to right. Apart from @code{+} or @option{-}, both arguments must be
  3568. absolute, and the result is absolute.
  3569. @enumerate
  3570. @cindex operator precedence
  3571. @cindex precedence of operators
  3572. @item
  3573. Highest Precedence
  3574. @table @code
  3575. @item *
  3576. @dfn{Multiplication}.
  3577. @item /
  3578. @dfn{Division}. Truncation is the same as the C operator @samp{/}
  3579. @item %
  3580. @dfn{Remainder}.
  3581. @item <<
  3582. @dfn{Shift Left}. Same as the C operator @samp{<<}.
  3583. @item >>
  3584. @dfn{Shift Right}. Same as the C operator @samp{>>}.
  3585. @end table
  3586. @item
  3587. Intermediate precedence
  3588. @table @code
  3589. @item |
  3590. @dfn{Bitwise Inclusive Or}.
  3591. @item &
  3592. @dfn{Bitwise And}.
  3593. @item ^
  3594. @dfn{Bitwise Exclusive Or}.
  3595. @item !
  3596. @dfn{Bitwise Or Not}.
  3597. @end table
  3598. @item
  3599. Low Precedence
  3600. @table @code
  3601. @cindex addition, permitted arguments
  3602. @cindex plus, permitted arguments
  3603. @cindex arguments for addition
  3604. @item +
  3605. @dfn{Addition}. If either argument is absolute, the result has the section of
  3606. the other argument. You may not add together arguments from different
  3607. sections.
  3608. @cindex subtraction, permitted arguments
  3609. @cindex minus, permitted arguments
  3610. @cindex arguments for subtraction
  3611. @item -
  3612. @dfn{Subtraction}. If the right argument is absolute, the
  3613. result has the section of the left argument.
  3614. If both arguments are in the same section, the result is absolute.
  3615. You may not subtract arguments from different sections.
  3616. @c FIXME is there still something useful to say about undefined - undefined ?
  3617. @cindex comparison expressions
  3618. @cindex expressions, comparison
  3619. @item ==
  3620. @dfn{Is Equal To}
  3621. @item <>
  3622. @itemx !=
  3623. @dfn{Is Not Equal To}
  3624. @item <
  3625. @dfn{Is Less Than}
  3626. @item >
  3627. @dfn{Is Greater Than}
  3628. @item >=
  3629. @dfn{Is Greater Than Or Equal To}
  3630. @item <=
  3631. @dfn{Is Less Than Or Equal To}
  3632. The comparison operators can be used as infix operators. A true result has a
  3633. value of -1 whereas a false result has a value of 0. Note, these operators
  3634. perform signed comparisons.
  3635. @end table
  3636. @item Lowest Precedence
  3637. @table @code
  3638. @item &&
  3639. @dfn{Logical And}.
  3640. @item ||
  3641. @dfn{Logical Or}.
  3642. These two logical operations can be used to combine the results of sub
  3643. expressions. Note, unlike the comparison operators a true result returns a
  3644. value of 1 but a false results does still return 0. Also note that the logical
  3645. or operator has a slightly lower precedence than logical and.
  3646. @end table
  3647. @end enumerate
  3648. In short, it's only meaningful to add or subtract the @emph{offsets} in an
  3649. address; you can only have a defined section in one of the two arguments.
  3650. @node Pseudo Ops
  3651. @chapter Assembler Directives
  3652. @cindex directives, machine independent
  3653. @cindex pseudo-ops, machine independent
  3654. @cindex machine independent directives
  3655. All assembler directives have names that begin with a period (@samp{.}).
  3656. The names are case insensitive for most targets, and usually written
  3657. in lower case.
  3658. This chapter discusses directives that are available regardless of the
  3659. target machine configuration for the @sc{gnu} assembler.
  3660. @ifset GENERIC
  3661. Some machine configurations provide additional directives.
  3662. @xref{Machine Dependencies}.
  3663. @end ifset
  3664. @ifclear GENERIC
  3665. @ifset machine-directives
  3666. @xref{Machine Dependencies}, for additional directives.
  3667. @end ifset
  3668. @end ifclear
  3669. @menu
  3670. * Abort:: @code{.abort}
  3671. @ifset COFF
  3672. * ABORT (COFF):: @code{.ABORT}
  3673. @end ifset
  3674. * Align:: @code{.align [@var{abs-expr}[, @var{abs-expr}[, @var{abs-expr}]]]}
  3675. * Altmacro:: @code{.altmacro}
  3676. * Ascii:: @code{.ascii "@var{string}"}@dots{}
  3677. * Asciz:: @code{.asciz "@var{string}"}@dots{}
  3678. * Attach_to_group:: @code{.attach_to_group @var{name}}
  3679. * Balign:: @code{.balign [@var{abs-expr}[, @var{abs-expr}]]}
  3680. * Bss:: @code{.bss @var{subsection}}
  3681. * Bundle directives:: @code{.bundle_align_mode @var{abs-expr}}, etc
  3682. * Byte:: @code{.byte @var{expressions}}
  3683. * CFI directives:: @code{.cfi_startproc [simple]}, @code{.cfi_endproc}, etc.
  3684. * Comm:: @code{.comm @var{symbol} , @var{length} }
  3685. * Data:: @code{.data @var{subsection}}
  3686. * Dc:: @code{.dc[@var{size}] @var{expressions}}
  3687. * Dcb:: @code{.dcb[@var{size}] @var{number} [,@var{fill}]}
  3688. * Ds:: @code{.ds[@var{size}] @var{number} [,@var{fill}]}
  3689. @ifset COFF
  3690. * Def:: @code{.def @var{name}}
  3691. @end ifset
  3692. @ifset aout
  3693. * Desc:: @code{.desc @var{symbol}, @var{abs-expression}}
  3694. @end ifset
  3695. @ifset COFF
  3696. * Dim:: @code{.dim}
  3697. @end ifset
  3698. * Double:: @code{.double @var{flonums}}
  3699. * Eject:: @code{.eject}
  3700. * Else:: @code{.else}
  3701. * Elseif:: @code{.elseif}
  3702. * End:: @code{.end}
  3703. @ifset COFF
  3704. * Endef:: @code{.endef}
  3705. @end ifset
  3706. * Endfunc:: @code{.endfunc}
  3707. * Endif:: @code{.endif}
  3708. * Equ:: @code{.equ @var{symbol}, @var{expression}}
  3709. * Equiv:: @code{.equiv @var{symbol}, @var{expression}}
  3710. * Eqv:: @code{.eqv @var{symbol}, @var{expression}}
  3711. * Err:: @code{.err}
  3712. * Error:: @code{.error @var{string}}
  3713. * Exitm:: @code{.exitm}
  3714. * Extern:: @code{.extern}
  3715. * Fail:: @code{.fail}
  3716. * File:: @code{.file}
  3717. * Fill:: @code{.fill @var{repeat} , @var{size} , @var{value}}
  3718. * Float:: @code{.float @var{flonums}}
  3719. * Func:: @code{.func}
  3720. * Global:: @code{.global @var{symbol}}, @code{.globl @var{symbol}}
  3721. @ifset ELF
  3722. * Gnu_attribute:: @code{.gnu_attribute @var{tag},@var{value}}
  3723. * Hidden:: @code{.hidden @var{names}}
  3724. @end ifset
  3725. * hword:: @code{.hword @var{expressions}}
  3726. * Ident:: @code{.ident}
  3727. * If:: @code{.if @var{absolute expression}}
  3728. * Incbin:: @code{.incbin "@var{file}"[,@var{skip}[,@var{count}]]}
  3729. * Include:: @code{.include "@var{file}"}
  3730. * Int:: @code{.int @var{expressions}}
  3731. @ifset ELF
  3732. * Internal:: @code{.internal @var{names}}
  3733. @end ifset
  3734. * Irp:: @code{.irp @var{symbol},@var{values}}@dots{}
  3735. * Irpc:: @code{.irpc @var{symbol},@var{values}}@dots{}
  3736. * Lcomm:: @code{.lcomm @var{symbol} , @var{length}}
  3737. * Lflags:: @code{.lflags}
  3738. @ifclear no-line-dir
  3739. * Line:: @code{.line @var{line-number}}
  3740. @end ifclear
  3741. * Linkonce:: @code{.linkonce [@var{type}]}
  3742. * List:: @code{.list}
  3743. * Ln:: @code{.ln @var{line-number}}
  3744. * Loc:: @code{.loc @var{fileno} @var{lineno}}
  3745. * Loc_mark_labels:: @code{.loc_mark_labels @var{enable}}
  3746. @ifset ELF
  3747. * Local:: @code{.local @var{names}}
  3748. @end ifset
  3749. * Long:: @code{.long @var{expressions}}
  3750. @ignore
  3751. * Lsym:: @code{.lsym @var{symbol}, @var{expression}}
  3752. @end ignore
  3753. * Macro:: @code{.macro @var{name} @var{args}}@dots{}
  3754. * MRI:: @code{.mri @var{val}}
  3755. * Noaltmacro:: @code{.noaltmacro}
  3756. * Nolist:: @code{.nolist}
  3757. * Nop:: @code{.nop}
  3758. * Nops:: @code{.nops @var{size}[, @var{control}]}
  3759. * Octa:: @code{.octa @var{bignums}}
  3760. * Offset:: @code{.offset @var{loc}}
  3761. * Org:: @code{.org @var{new-lc}, @var{fill}}
  3762. * P2align:: @code{.p2align [@var{abs-expr}[, @var{abs-expr}[, @var{abs-expr}]]]}
  3763. @ifset ELF
  3764. * PopSection:: @code{.popsection}
  3765. * Previous:: @code{.previous}
  3766. @end ifset
  3767. * Print:: @code{.print @var{string}}
  3768. @ifset ELF
  3769. * Protected:: @code{.protected @var{names}}
  3770. @end ifset
  3771. * Psize:: @code{.psize @var{lines}, @var{columns}}
  3772. * Purgem:: @code{.purgem @var{name}}
  3773. @ifset ELF
  3774. * PushSection:: @code{.pushsection @var{name}}
  3775. @end ifset
  3776. * Quad:: @code{.quad @var{bignums}}
  3777. * Reloc:: @code{.reloc @var{offset}, @var{reloc_name}[, @var{expression}]}
  3778. * Rept:: @code{.rept @var{count}}
  3779. * Sbttl:: @code{.sbttl "@var{subheading}"}
  3780. @ifset COFF
  3781. * Scl:: @code{.scl @var{class}}
  3782. @end ifset
  3783. @ifset COFF-ELF
  3784. * Section:: @code{.section @var{name}[, @var{flags}]}
  3785. @end ifset
  3786. * Set:: @code{.set @var{symbol}, @var{expression}}
  3787. * Short:: @code{.short @var{expressions}}
  3788. * Single:: @code{.single @var{flonums}}
  3789. @ifset COFF-ELF
  3790. * Size:: @code{.size [@var{name} , @var{expression}]}
  3791. @end ifset
  3792. @ifclear no-space-dir
  3793. * Skip:: @code{.skip @var{size} [,@var{fill}]}
  3794. @end ifclear
  3795. * Sleb128:: @code{.sleb128 @var{expressions}}
  3796. @ifclear no-space-dir
  3797. * Space:: @code{.space @var{size} [,@var{fill}]}
  3798. @end ifclear
  3799. @ifset have-stabs
  3800. * Stab:: @code{.stabd, .stabn, .stabs}
  3801. @end ifset
  3802. * String:: @code{.string "@var{str}"}, @code{.string8 "@var{str}"}, @code{.string16 "@var{str}"}, @code{.string32 "@var{str}"}, @code{.string64 "@var{str}"}
  3803. * Struct:: @code{.struct @var{expression}}
  3804. @ifset ELF
  3805. * SubSection:: @code{.subsection}
  3806. * Symver:: @code{.symver @var{name},@var{name2@@nodename}[,@var{visibility}]}
  3807. @end ifset
  3808. @ifset COFF
  3809. * Tag:: @code{.tag @var{structname}}
  3810. @end ifset
  3811. * Text:: @code{.text @var{subsection}}
  3812. * Title:: @code{.title "@var{heading}"}
  3813. @ifset ELF
  3814. * Tls_common:: @code{.tls_common @var{symbol}, @var{length}[, @var{alignment}]}
  3815. @end ifset
  3816. @ifset COFF-ELF
  3817. * Type:: @code{.type <@var{int} | @var{name} , @var{type description}>}
  3818. @end ifset
  3819. * Uleb128:: @code{.uleb128 @var{expressions}}
  3820. @ifset COFF
  3821. * Val:: @code{.val @var{addr}}
  3822. @end ifset
  3823. @ifset ELF
  3824. * Version:: @code{.version "@var{string}"}
  3825. * VTableEntry:: @code{.vtable_entry @var{table}, @var{offset}}
  3826. * VTableInherit:: @code{.vtable_inherit @var{child}, @var{parent}}
  3827. @end ifset
  3828. * Warning:: @code{.warning @var{string}}
  3829. * Weak:: @code{.weak @var{names}}
  3830. * Weakref:: @code{.weakref @var{alias}, @var{symbol}}
  3831. * Word:: @code{.word @var{expressions}}
  3832. @ifclear no-space-dir
  3833. * Zero:: @code{.zero @var{size}}
  3834. @end ifclear
  3835. * 2byte:: @code{.2byte @var{expressions}}
  3836. * 4byte:: @code{.4byte @var{expressions}}
  3837. * 8byte:: @code{.8byte @var{bignums}}
  3838. * Deprecated:: Deprecated Directives
  3839. @end menu
  3840. @node Abort
  3841. @section @code{.abort}
  3842. @cindex @code{abort} directive
  3843. @cindex stopping the assembly
  3844. This directive stops the assembly immediately. It is for
  3845. compatibility with other assemblers. The original idea was that the
  3846. assembly language source would be piped into the assembler. If the sender
  3847. of the source quit, it could use this directive tells @command{@value{AS}} to
  3848. quit also. One day @code{.abort} will not be supported.
  3849. @ifset COFF
  3850. @node ABORT (COFF)
  3851. @section @code{.ABORT} (COFF)
  3852. @cindex @code{ABORT} directive
  3853. When producing COFF output, @command{@value{AS}} accepts this directive as a
  3854. synonym for @samp{.abort}.
  3855. @end ifset
  3856. @node Align
  3857. @section @code{.align [@var{abs-expr}[, @var{abs-expr}[, @var{abs-expr}]]]}
  3858. @cindex padding the location counter
  3859. @cindex @code{align} directive
  3860. Pad the location counter (in the current subsection) to a particular storage
  3861. boundary. The first expression (which must be absolute) is the alignment
  3862. required, as described below. If this expression is omitted then a default
  3863. value of 0 is used, effectively disabling alignment requirements.
  3864. The second expression (also absolute) gives the fill value to be stored in the
  3865. padding bytes. It (and the comma) may be omitted. If it is omitted, the
  3866. padding bytes are normally zero. However, on most systems, if the section is
  3867. marked as containing code and the fill value is omitted, the space is filled
  3868. with no-op instructions.
  3869. The third expression is also absolute, and is also optional. If it is present,
  3870. it is the maximum number of bytes that should be skipped by this alignment
  3871. directive. If doing the alignment would require skipping more bytes than the
  3872. specified maximum, then the alignment is not done at all. You can omit the
  3873. fill value (the second argument) entirely by simply using two commas after the
  3874. required alignment; this can be useful if you want the alignment to be filled
  3875. with no-op instructions when appropriate.
  3876. The way the required alignment is specified varies from system to system.
  3877. For the arc, hppa, i386 using ELF, iq2000, m68k, or1k,
  3878. s390, sparc, tic4x and xtensa, the first expression is the
  3879. alignment request in bytes. For example @samp{.align 8} advances
  3880. the location counter until it is a multiple of 8. If the location counter
  3881. is already a multiple of 8, no change is needed. For the tic54x, the
  3882. first expression is the alignment request in words.
  3883. For other systems, including ppc, i386 using a.out format, arm and
  3884. strongarm, it is the
  3885. number of low-order zero bits the location counter must have after
  3886. advancement. For example @samp{.align 3} advances the location
  3887. counter until it is a multiple of 8. If the location counter is already a
  3888. multiple of 8, no change is needed.
  3889. This inconsistency is due to the different behaviors of the various
  3890. native assemblers for these systems which GAS must emulate.
  3891. GAS also provides @code{.balign} and @code{.p2align} directives,
  3892. described later, which have a consistent behavior across all
  3893. architectures (but are specific to GAS).
  3894. @node Altmacro
  3895. @section @code{.altmacro}
  3896. Enable alternate macro mode, enabling:
  3897. @ftable @code
  3898. @item LOCAL @var{name} [ , @dots{} ]
  3899. One additional directive, @code{LOCAL}, is available. It is used to
  3900. generate a string replacement for each of the @var{name} arguments, and
  3901. replace any instances of @var{name} in each macro expansion. The
  3902. replacement string is unique in the assembly, and different for each
  3903. separate macro expansion. @code{LOCAL} allows you to write macros that
  3904. define symbols, without fear of conflict between separate macro expansions.
  3905. @item String delimiters
  3906. You can write strings delimited in these other ways besides
  3907. @code{"@var{string}"}:
  3908. @table @code
  3909. @item '@var{string}'
  3910. You can delimit strings with single-quote characters.
  3911. @item <@var{string}>
  3912. You can delimit strings with matching angle brackets.
  3913. @end table
  3914. @item single-character string escape
  3915. To include any single character literally in a string (even if the
  3916. character would otherwise have some special meaning), you can prefix the
  3917. character with @samp{!} (an exclamation mark). For example, you can
  3918. write @samp{<4.3 !> 5.4!!>} to get the literal text @samp{4.3 > 5.4!}.
  3919. @item Expression results as strings
  3920. You can write @samp{%@var{expr}} to evaluate the expression @var{expr}
  3921. and use the result as a string.
  3922. @end ftable
  3923. @node Ascii
  3924. @section @code{.ascii "@var{string}"}@dots{}
  3925. @cindex @code{ascii} directive
  3926. @cindex string literals
  3927. @code{.ascii} expects zero or more string literals (@pxref{Strings})
  3928. separated by commas. It assembles each string (with no automatic
  3929. trailing zero byte) into consecutive addresses.
  3930. @node Asciz
  3931. @section @code{.asciz "@var{string}"}@dots{}
  3932. @cindex @code{asciz} directive
  3933. @cindex zero-terminated strings
  3934. @cindex null-terminated strings
  3935. @code{.asciz} is just like @code{.ascii}, but each string is followed by
  3936. a zero byte. The ``z'' in @samp{.asciz} stands for ``zero''. Note that
  3937. multiple string arguments not separated by commas will be concatenated
  3938. together and only one final zero byte will be stored.
  3939. @node Attach_to_group
  3940. @section @code{.attach_to_group @var{name}}
  3941. Attaches the current section to the named group. This is like declaring
  3942. the section with the @code{G} attribute, but can be done after the section
  3943. has been created. Note if the group section does not exist at the point that
  3944. this directive is used then it will be created.
  3945. @node Balign
  3946. @section @code{.balign[wl] [@var{abs-expr}[, @var{abs-expr}[, @var{abs-expr}]]]}
  3947. @cindex padding the location counter given number of bytes
  3948. @cindex @code{balign} directive
  3949. Pad the location counter (in the current subsection) to a particular
  3950. storage boundary. The first expression (which must be absolute) is the
  3951. alignment request in bytes. For example @samp{.balign 8} advances
  3952. the location counter until it is a multiple of 8. If the location counter
  3953. is already a multiple of 8, no change is needed. If the expression is omitted
  3954. then a default value of 0 is used, effectively disabling alignment requirements.
  3955. The second expression (also absolute) gives the fill value to be stored in the
  3956. padding bytes. It (and the comma) may be omitted. If it is omitted, the
  3957. padding bytes are normally zero. However, on most systems, if the section is
  3958. marked as containing code and the fill value is omitted, the space is filled
  3959. with no-op instructions.
  3960. The third expression is also absolute, and is also optional. If it is present,
  3961. it is the maximum number of bytes that should be skipped by this alignment
  3962. directive. If doing the alignment would require skipping more bytes than the
  3963. specified maximum, then the alignment is not done at all. You can omit the
  3964. fill value (the second argument) entirely by simply using two commas after the
  3965. required alignment; this can be useful if you want the alignment to be filled
  3966. with no-op instructions when appropriate.
  3967. @cindex @code{balignw} directive
  3968. @cindex @code{balignl} directive
  3969. The @code{.balignw} and @code{.balignl} directives are variants of the
  3970. @code{.balign} directive. The @code{.balignw} directive treats the fill
  3971. pattern as a two byte word value. The @code{.balignl} directives treats the
  3972. fill pattern as a four byte longword value. For example, @code{.balignw
  3973. 4,0x368d} will align to a multiple of 4. If it skips two bytes, they will be
  3974. filled in with the value 0x368d (the exact placement of the bytes depends upon
  3975. the endianness of the processor). If it skips 1 or 3 bytes, the fill value is
  3976. undefined.
  3977. @node Bss
  3978. @section @code{.bss @var{subsection}}
  3979. @cindex @code{bss} directive
  3980. @code{.bss} tells @command{@value{AS}} to assemble the following statements
  3981. onto the end of the bss section.
  3982. @ifset ELF
  3983. For ELF based targets an optional @var{subsection} expression (which must
  3984. evaluate to a positive integer) can be provided. In this case the statements
  3985. are appended to the end of the indicated bss subsection.
  3986. @end ifset
  3987. @node Bundle directives
  3988. @section Bundle directives
  3989. @subsection @code{.bundle_align_mode @var{abs-expr}}
  3990. @cindex @code{bundle_align_mode} directive
  3991. @cindex bundle
  3992. @cindex instruction bundle
  3993. @cindex aligned instruction bundle
  3994. @code{.bundle_align_mode} enables or disables @dfn{aligned instruction
  3995. bundle} mode. In this mode, sequences of adjacent instructions are grouped
  3996. into fixed-sized @dfn{bundles}. If the argument is zero, this mode is
  3997. disabled (which is the default state). If the argument it not zero, it
  3998. gives the size of an instruction bundle as a power of two (as for the
  3999. @code{.p2align} directive, @pxref{P2align}).
  4000. For some targets, it's an ABI requirement that no instruction may span a
  4001. certain aligned boundary. A @dfn{bundle} is simply a sequence of
  4002. instructions that starts on an aligned boundary. For example, if
  4003. @var{abs-expr} is @code{5} then the bundle size is 32, so each aligned
  4004. chunk of 32 bytes is a bundle. When aligned instruction bundle mode is in
  4005. effect, no single instruction may span a boundary between bundles. If an
  4006. instruction would start too close to the end of a bundle for the length of
  4007. that particular instruction to fit within the bundle, then the space at the
  4008. end of that bundle is filled with no-op instructions so the instruction
  4009. starts in the next bundle. As a corollary, it's an error if any single
  4010. instruction's encoding is longer than the bundle size.
  4011. @subsection @code{.bundle_lock} and @code{.bundle_unlock}
  4012. @cindex @code{bundle_lock} directive
  4013. @cindex @code{bundle_unlock} directive
  4014. The @code{.bundle_lock} and directive @code{.bundle_unlock} directives
  4015. allow explicit control over instruction bundle padding. These directives
  4016. are only valid when @code{.bundle_align_mode} has been used to enable
  4017. aligned instruction bundle mode. It's an error if they appear when
  4018. @code{.bundle_align_mode} has not been used at all, or when the last
  4019. directive was @w{@code{.bundle_align_mode 0}}.
  4020. @cindex bundle-locked
  4021. For some targets, it's an ABI requirement that certain instructions may
  4022. appear only as part of specified permissible sequences of multiple
  4023. instructions, all within the same bundle. A pair of @code{.bundle_lock}
  4024. and @code{.bundle_unlock} directives define a @dfn{bundle-locked}
  4025. instruction sequence. For purposes of aligned instruction bundle mode, a
  4026. sequence starting with @code{.bundle_lock} and ending with
  4027. @code{.bundle_unlock} is treated as a single instruction. That is, the
  4028. entire sequence must fit into a single bundle and may not span a bundle
  4029. boundary. If necessary, no-op instructions will be inserted before the
  4030. first instruction of the sequence so that the whole sequence starts on an
  4031. aligned bundle boundary. It's an error if the sequence is longer than the
  4032. bundle size.
  4033. For convenience when using @code{.bundle_lock} and @code{.bundle_unlock}
  4034. inside assembler macros (@pxref{Macro}), bundle-locked sequences may be
  4035. nested. That is, a second @code{.bundle_lock} directive before the next
  4036. @code{.bundle_unlock} directive has no effect except that it must be
  4037. matched by another closing @code{.bundle_unlock} so that there is the
  4038. same number of @code{.bundle_lock} and @code{.bundle_unlock} directives.
  4039. @node Byte
  4040. @section @code{.byte @var{expressions}}
  4041. @cindex @code{byte} directive
  4042. @cindex integers, one byte
  4043. @code{.byte} expects zero or more expressions, separated by commas.
  4044. Each expression is assembled into the next byte.
  4045. @node CFI directives
  4046. @section CFI directives
  4047. @subsection @code{.cfi_sections @var{section_list}}
  4048. @cindex @code{cfi_sections} directive
  4049. @code{.cfi_sections} may be used to specify whether CFI directives
  4050. should emit @code{.eh_frame} section and/or @code{.debug_frame} section.
  4051. If @var{section_list} is @code{.eh_frame}, @code{.eh_frame} is emitted,
  4052. if @var{section_list} is @code{.debug_frame}, @code{.debug_frame} is emitted.
  4053. To emit both use @code{.eh_frame, .debug_frame}. The default if this
  4054. directive is not used is @code{.cfi_sections .eh_frame}.
  4055. On targets that support compact unwinding tables these can be generated
  4056. by specifying @code{.eh_frame_entry} instead of @code{.eh_frame}.
  4057. Some targets may support an additional name, such as @code{.c6xabi.exidx}
  4058. which is used by the @value{TIC6X} target.
  4059. The @code{.cfi_sections} directive can be repeated, with the same or different
  4060. arguments, provided that CFI generation has not yet started. Once CFI
  4061. generation has started however the section list is fixed and any attempts to
  4062. redefine it will result in an error.
  4063. @subsection @code{.cfi_startproc [simple]}
  4064. @cindex @code{cfi_startproc} directive
  4065. @code{.cfi_startproc} is used at the beginning of each function that
  4066. should have an entry in @code{.eh_frame}. It initializes some internal
  4067. data structures. Don't forget to close the function by
  4068. @code{.cfi_endproc}.
  4069. Unless @code{.cfi_startproc} is used along with parameter @code{simple}
  4070. it also emits some architecture dependent initial CFI instructions.
  4071. @subsection @code{.cfi_endproc}
  4072. @cindex @code{cfi_endproc} directive
  4073. @code{.cfi_endproc} is used at the end of a function where it closes its
  4074. unwind entry previously opened by
  4075. @code{.cfi_startproc}, and emits it to @code{.eh_frame}.
  4076. @subsection @code{.cfi_personality @var{encoding} [, @var{exp}]}
  4077. @cindex @code{cfi_personality} directive
  4078. @code{.cfi_personality} defines personality routine and its encoding.
  4079. @var{encoding} must be a constant determining how the personality
  4080. should be encoded. If it is 255 (@code{DW_EH_PE_omit}), second
  4081. argument is not present, otherwise second argument should be
  4082. a constant or a symbol name. When using indirect encodings,
  4083. the symbol provided should be the location where personality
  4084. can be loaded from, not the personality routine itself.
  4085. The default after @code{.cfi_startproc} is @code{.cfi_personality 0xff},
  4086. no personality routine.
  4087. @subsection @code{.cfi_personality_id @var{id}}
  4088. @cindex @code{cfi_personality_id} directive
  4089. @code{cfi_personality_id} defines a personality routine by its index as
  4090. defined in a compact unwinding format.
  4091. Only valid when generating compact EH frames (i.e.
  4092. with @code{.cfi_sections eh_frame_entry}.
  4093. @subsection @code{.cfi_fde_data [@var{opcode1} [, @dots{}]]}
  4094. @cindex @code{cfi_fde_data} directive
  4095. @code{cfi_fde_data} is used to describe the compact unwind opcodes to be
  4096. used for the current function. These are emitted inline in the
  4097. @code{.eh_frame_entry} section if small enough and there is no LSDA, or
  4098. in the @code{.gnu.extab} section otherwise.
  4099. Only valid when generating compact EH frames (i.e.
  4100. with @code{.cfi_sections eh_frame_entry}.
  4101. @subsection @code{.cfi_lsda @var{encoding} [, @var{exp}]}
  4102. @code{.cfi_lsda} defines LSDA and its encoding.
  4103. @var{encoding} must be a constant determining how the LSDA
  4104. should be encoded. If it is 255 (@code{DW_EH_PE_omit}), the second
  4105. argument is not present, otherwise the second argument should be a constant
  4106. or a symbol name. The default after @code{.cfi_startproc} is @code{.cfi_lsda 0xff},
  4107. meaning that no LSDA is present.
  4108. @subsection @code{.cfi_inline_lsda} [@var{align}]
  4109. @code{.cfi_inline_lsda} marks the start of a LSDA data section and
  4110. switches to the corresponding @code{.gnu.extab} section.
  4111. Must be preceded by a CFI block containing a @code{.cfi_lsda} directive.
  4112. Only valid when generating compact EH frames (i.e.
  4113. with @code{.cfi_sections eh_frame_entry}.
  4114. The table header and unwinding opcodes will be generated at this point,
  4115. so that they are immediately followed by the LSDA data. The symbol
  4116. referenced by the @code{.cfi_lsda} directive should still be defined
  4117. in case a fallback FDE based encoding is used. The LSDA data is terminated
  4118. by a section directive.
  4119. The optional @var{align} argument specifies the alignment required.
  4120. The alignment is specified as a power of two, as with the
  4121. @code{.p2align} directive.
  4122. @subsection @code{.cfi_def_cfa @var{register}, @var{offset}}
  4123. @code{.cfi_def_cfa} defines a rule for computing CFA as: @i{take
  4124. address from @var{register} and add @var{offset} to it}.
  4125. @subsection @code{.cfi_def_cfa_register @var{register}}
  4126. @code{.cfi_def_cfa_register} modifies a rule for computing CFA. From
  4127. now on @var{register} will be used instead of the old one. Offset
  4128. remains the same.
  4129. @subsection @code{.cfi_def_cfa_offset @var{offset}}
  4130. @code{.cfi_def_cfa_offset} modifies a rule for computing CFA. Register
  4131. remains the same, but @var{offset} is new. Note that it is the
  4132. absolute offset that will be added to a defined register to compute
  4133. CFA address.
  4134. @subsection @code{.cfi_adjust_cfa_offset @var{offset}}
  4135. Same as @code{.cfi_def_cfa_offset} but @var{offset} is a relative
  4136. value that is added/subtracted from the previous offset.
  4137. @subsection @code{.cfi_offset @var{register}, @var{offset}}
  4138. Previous value of @var{register} is saved at offset @var{offset} from
  4139. CFA.
  4140. @subsection @code{.cfi_val_offset @var{register}, @var{offset}}
  4141. Previous value of @var{register} is CFA + @var{offset}.
  4142. @subsection @code{.cfi_rel_offset @var{register}, @var{offset}}
  4143. Previous value of @var{register} is saved at offset @var{offset} from
  4144. the current CFA register. This is transformed to @code{.cfi_offset}
  4145. using the known displacement of the CFA register from the CFA.
  4146. This is often easier to use, because the number will match the
  4147. code it's annotating.
  4148. @subsection @code{.cfi_register @var{register1}, @var{register2}}
  4149. Previous value of @var{register1} is saved in register @var{register2}.
  4150. @subsection @code{.cfi_restore @var{register}}
  4151. @code{.cfi_restore} says that the rule for @var{register} is now the
  4152. same as it was at the beginning of the function, after all initial
  4153. instruction added by @code{.cfi_startproc} were executed.
  4154. @subsection @code{.cfi_undefined @var{register}}
  4155. From now on the previous value of @var{register} can't be restored anymore.
  4156. @subsection @code{.cfi_same_value @var{register}}
  4157. Current value of @var{register} is the same like in the previous frame,
  4158. i.e. no restoration needed.
  4159. @subsection @code{.cfi_remember_state} and @code{.cfi_restore_state}
  4160. @code{.cfi_remember_state} pushes the set of rules for every register onto an
  4161. implicit stack, while @code{.cfi_restore_state} pops them off the stack and
  4162. places them in the current row. This is useful for situations where you have
  4163. multiple @code{.cfi_*} directives that need to be undone due to the control
  4164. flow of the program. For example, we could have something like this (assuming
  4165. the CFA is the value of @code{rbp}):
  4166. @smallexample
  4167. je label
  4168. popq %rbx
  4169. .cfi_restore %rbx
  4170. popq %r12
  4171. .cfi_restore %r12
  4172. popq %rbp
  4173. .cfi_restore %rbp
  4174. .cfi_def_cfa %rsp, 8
  4175. ret
  4176. label:
  4177. /* Do something else */
  4178. @end smallexample
  4179. Here, we want the @code{.cfi} directives to affect only the rows corresponding
  4180. to the instructions before @code{label}. This means we'd have to add multiple
  4181. @code{.cfi} directives after @code{label} to recreate the original save
  4182. locations of the registers, as well as setting the CFA back to the value of
  4183. @code{rbp}. This would be clumsy, and result in a larger binary size. Instead,
  4184. we can write:
  4185. @smallexample
  4186. je label
  4187. popq %rbx
  4188. .cfi_remember_state
  4189. .cfi_restore %rbx
  4190. popq %r12
  4191. .cfi_restore %r12
  4192. popq %rbp
  4193. .cfi_restore %rbp
  4194. .cfi_def_cfa %rsp, 8
  4195. ret
  4196. label:
  4197. .cfi_restore_state
  4198. /* Do something else */
  4199. @end smallexample
  4200. That way, the rules for the instructions after @code{label} will be the same
  4201. as before the first @code{.cfi_restore} without having to use multiple
  4202. @code{.cfi} directives.
  4203. @subsection @code{.cfi_return_column @var{register}}
  4204. Change return column @var{register}, i.e. the return address is either
  4205. directly in @var{register} or can be accessed by rules for @var{register}.
  4206. @subsection @code{.cfi_signal_frame}
  4207. Mark current function as signal trampoline.
  4208. @subsection @code{.cfi_window_save}
  4209. SPARC register window has been saved.
  4210. @subsection @code{.cfi_escape} @var{expression}[, @dots{}]
  4211. Allows the user to add arbitrary bytes to the unwind info. One
  4212. might use this to add OS-specific CFI opcodes, or generic CFI
  4213. opcodes that GAS does not yet support.
  4214. @subsection @code{.cfi_val_encoded_addr @var{register}, @var{encoding}, @var{label}}
  4215. The current value of @var{register} is @var{label}. The value of @var{label}
  4216. will be encoded in the output file according to @var{encoding}; see the
  4217. description of @code{.cfi_personality} for details on this encoding.
  4218. The usefulness of equating a register to a fixed label is probably
  4219. limited to the return address register. Here, it can be useful to
  4220. mark a code segment that has only one return address which is reached
  4221. by a direct branch and no copy of the return address exists in memory
  4222. or another register.
  4223. @node Comm
  4224. @section @code{.comm @var{symbol} , @var{length} }
  4225. @cindex @code{comm} directive
  4226. @cindex symbol, common
  4227. @code{.comm} declares a common symbol named @var{symbol}. When linking, a
  4228. common symbol in one object file may be merged with a defined or common symbol
  4229. of the same name in another object file. If @code{@value{LD}} does not see a
  4230. definition for the symbol--just one or more common symbols--then it will
  4231. allocate @var{length} bytes of uninitialized memory. @var{length} must be an
  4232. absolute expression. If @code{@value{LD}} sees multiple common symbols with
  4233. the same name, and they do not all have the same size, it will allocate space
  4234. using the largest size.
  4235. @ifset COFF-ELF
  4236. When using ELF or (as a GNU extension) PE, the @code{.comm} directive takes
  4237. an optional third argument. This is the desired alignment of the symbol,
  4238. specified for ELF as a byte boundary (for example, an alignment of 16 means
  4239. that the least significant 4 bits of the address should be zero), and for PE
  4240. as a power of two (for example, an alignment of 5 means aligned to a 32-byte
  4241. boundary). The alignment must be an absolute expression, and it must be a
  4242. power of two. If @code{@value{LD}} allocates uninitialized memory for the
  4243. common symbol, it will use the alignment when placing the symbol. If no
  4244. alignment is specified, @command{@value{AS}} will set the alignment to the
  4245. largest power of two less than or equal to the size of the symbol, up to a
  4246. maximum of 16 on ELF, or the default section alignment of 4 on PE@footnote{This
  4247. is not the same as the executable image file alignment controlled by @code{@value{LD}}'s
  4248. @samp{--section-alignment} option; image file sections in PE are aligned to
  4249. multiples of 4096, which is far too large an alignment for ordinary variables.
  4250. It is rather the default alignment for (non-debug) sections within object
  4251. (@samp{*.o}) files, which are less strictly aligned.}.
  4252. @end ifset
  4253. @ifset HPPA
  4254. The syntax for @code{.comm} differs slightly on the HPPA. The syntax is
  4255. @samp{@var{symbol} .comm, @var{length}}; @var{symbol} is optional.
  4256. @end ifset
  4257. @node Data
  4258. @section @code{.data @var{subsection}}
  4259. @cindex @code{data} directive
  4260. @code{.data} tells @command{@value{AS}} to assemble the following statements onto the
  4261. end of the data subsection numbered @var{subsection} (which is an
  4262. absolute expression). If @var{subsection} is omitted, it defaults
  4263. to zero.
  4264. @node Dc
  4265. @section @code{.dc[@var{size}] @var{expressions}}
  4266. @cindex @code{dc} directive
  4267. The @code{.dc} directive expects zero or more @var{expressions} separated by
  4268. commas. These expressions are evaluated and their values inserted into the
  4269. current section. The size of the emitted value depends upon the suffix to the
  4270. @code{.dc} directive:
  4271. @table @code
  4272. @item @samp{.a}
  4273. Emits N-bit values, where N is the size of an address on the target system.
  4274. @item @samp{.b}
  4275. Emits 8-bit values.
  4276. @item @samp{.d}
  4277. Emits double precision floating-point values.
  4278. @item @samp{.l}
  4279. Emits 32-bit values.
  4280. @item @samp{.s}
  4281. Emits single precision floating-point values.
  4282. @item @samp{.w}
  4283. Emits 16-bit values.
  4284. Note - this is true even on targets where the @code{.word} directive would emit
  4285. 32-bit values.
  4286. @item @samp{.x}
  4287. Emits long double precision floating-point values.
  4288. @end table
  4289. If no suffix is used then @samp{.w} is assumed.
  4290. The byte ordering is target dependent, as is the size and format of floating
  4291. point values.
  4292. @node Dcb
  4293. @section @code{.dcb[@var{size}] @var{number} [,@var{fill}]}
  4294. @cindex @code{dcb} directive
  4295. This directive emits @var{number} copies of @var{fill}, each of @var{size}
  4296. bytes. Both @var{number} and @var{fill} are absolute expressions. If the
  4297. comma and @var{fill} are omitted, @var{fill} is assumed to be zero. The
  4298. @var{size} suffix, if present, must be one of:
  4299. @table @code
  4300. @item @samp{.b}
  4301. Emits single byte values.
  4302. @item @samp{.d}
  4303. Emits double-precision floating point values.
  4304. @item @samp{.l}
  4305. Emits 4-byte values.
  4306. @item @samp{.s}
  4307. Emits single-precision floating point values.
  4308. @item @samp{.w}
  4309. Emits 2-byte values.
  4310. @item @samp{.x}
  4311. Emits long double-precision floating point values.
  4312. @end table
  4313. If the @var{size} suffix is omitted then @samp{.w} is assumed.
  4314. The byte ordering is target dependent, as is the size and format of floating
  4315. point values.
  4316. @node Ds
  4317. @section @code{.ds[@var{size}] @var{number} [,@var{fill}]}
  4318. @cindex @code{ds} directive
  4319. This directive emits @var{number} copies of @var{fill}, each of @var{size}
  4320. bytes. Both @var{number} and @var{fill} are absolute expressions. If the
  4321. comma and @var{fill} are omitted, @var{fill} is assumed to be zero. The
  4322. @var{size} suffix, if present, must be one of:
  4323. @table @code
  4324. @item @samp{.b}
  4325. Emits single byte values.
  4326. @item @samp{.d}
  4327. Emits 8-byte values.
  4328. @item @samp{.l}
  4329. Emits 4-byte values.
  4330. @item @samp{.p}
  4331. Emits values with size matching packed-decimal floating-point ones.
  4332. @item @samp{.s}
  4333. Emits 4-byte values.
  4334. @item @samp{.w}
  4335. Emits 2-byte values.
  4336. @item @samp{.x}
  4337. Emits values with size matching long double precision floating-point ones.
  4338. @end table
  4339. Note - unlike the @code{.dcb} directive the @samp{.d}, @samp{.s} and @samp{.x}
  4340. suffixes do not indicate that floating-point values are to be inserted.
  4341. If the @var{size} suffix is omitted then @samp{.w} is assumed.
  4342. The byte ordering is target dependent.
  4343. @ifset COFF
  4344. @node Def
  4345. @section @code{.def @var{name}}
  4346. @cindex @code{def} directive
  4347. @cindex COFF symbols, debugging
  4348. @cindex debugging COFF symbols
  4349. Begin defining debugging information for a symbol @var{name}; the
  4350. definition extends until the @code{.endef} directive is encountered.
  4351. @end ifset
  4352. @ifset aout
  4353. @node Desc
  4354. @section @code{.desc @var{symbol}, @var{abs-expression}}
  4355. @cindex @code{desc} directive
  4356. @cindex COFF symbol descriptor
  4357. @cindex symbol descriptor, COFF
  4358. This directive sets the descriptor of the symbol (@pxref{Symbol Attributes})
  4359. to the low 16 bits of an absolute expression.
  4360. @ifset COFF
  4361. The @samp{.desc} directive is not available when @command{@value{AS}} is
  4362. configured for COFF output; it is only for @code{a.out} or @code{b.out}
  4363. object format. For the sake of compatibility, @command{@value{AS}} accepts
  4364. it, but produces no output, when configured for COFF.
  4365. @end ifset
  4366. @end ifset
  4367. @ifset COFF
  4368. @node Dim
  4369. @section @code{.dim}
  4370. @cindex @code{dim} directive
  4371. @cindex COFF auxiliary symbol information
  4372. @cindex auxiliary symbol information, COFF
  4373. This directive is generated by compilers to include auxiliary debugging
  4374. information in the symbol table. It is only permitted inside
  4375. @code{.def}/@code{.endef} pairs.
  4376. @end ifset
  4377. @node Double
  4378. @section @code{.double @var{flonums}}
  4379. @cindex @code{double} directive
  4380. @cindex floating point numbers (double)
  4381. @code{.double} expects zero or more flonums, separated by commas. It
  4382. assembles floating point numbers.
  4383. @ifset GENERIC
  4384. The exact kind of floating point numbers emitted depends on how
  4385. @command{@value{AS}} is configured. @xref{Machine Dependencies}.
  4386. @end ifset
  4387. @ifclear GENERIC
  4388. @ifset IEEEFLOAT
  4389. On the @value{TARGET} family @samp{.double} emits 64-bit floating-point numbers
  4390. in @sc{ieee} format.
  4391. @end ifset
  4392. @end ifclear
  4393. @node Eject
  4394. @section @code{.eject}
  4395. @cindex @code{eject} directive
  4396. @cindex new page, in listings
  4397. @cindex page, in listings
  4398. @cindex listing control: new page
  4399. Force a page break at this point, when generating assembly listings.
  4400. @node Else
  4401. @section @code{.else}
  4402. @cindex @code{else} directive
  4403. @code{.else} is part of the @command{@value{AS}} support for conditional
  4404. assembly; see @ref{If,,@code{.if}}. It marks the beginning of a section
  4405. of code to be assembled if the condition for the preceding @code{.if}
  4406. was false.
  4407. @node Elseif
  4408. @section @code{.elseif}
  4409. @cindex @code{elseif} directive
  4410. @code{.elseif} is part of the @command{@value{AS}} support for conditional
  4411. assembly; see @ref{If,,@code{.if}}. It is shorthand for beginning a new
  4412. @code{.if} block that would otherwise fill the entire @code{.else} section.
  4413. @node End
  4414. @section @code{.end}
  4415. @cindex @code{end} directive
  4416. @code{.end} marks the end of the assembly file. @command{@value{AS}} does not
  4417. process anything in the file past the @code{.end} directive.
  4418. @ifset COFF
  4419. @node Endef
  4420. @section @code{.endef}
  4421. @cindex @code{endef} directive
  4422. This directive flags the end of a symbol definition begun with
  4423. @code{.def}.
  4424. @end ifset
  4425. @node Endfunc
  4426. @section @code{.endfunc}
  4427. @cindex @code{endfunc} directive
  4428. @code{.endfunc} marks the end of a function specified with @code{.func}.
  4429. @node Endif
  4430. @section @code{.endif}
  4431. @cindex @code{endif} directive
  4432. @code{.endif} is part of the @command{@value{AS}} support for conditional assembly;
  4433. it marks the end of a block of code that is only assembled
  4434. conditionally. @xref{If,,@code{.if}}.
  4435. @node Equ
  4436. @section @code{.equ @var{symbol}, @var{expression}}
  4437. @cindex @code{equ} directive
  4438. @cindex assigning values to symbols
  4439. @cindex symbols, assigning values to
  4440. This directive sets the value of @var{symbol} to @var{expression}.
  4441. It is synonymous with @samp{.set}; see @ref{Set,,@code{.set}}.
  4442. @ifset HPPA
  4443. The syntax for @code{equ} on the HPPA is
  4444. @samp{@var{symbol} .equ @var{expression}}.
  4445. @end ifset
  4446. @ifset Z80
  4447. The syntax for @code{equ} on the Z80 is
  4448. @samp{@var{symbol} equ @var{expression}}.
  4449. On the Z80 it is an error if @var{symbol} is already defined,
  4450. but the symbol is not protected from later redefinition.
  4451. Compare @ref{Equiv}.
  4452. @end ifset
  4453. @node Equiv
  4454. @section @code{.equiv @var{symbol}, @var{expression}}
  4455. @cindex @code{equiv} directive
  4456. The @code{.equiv} directive is like @code{.equ} and @code{.set}, except that
  4457. the assembler will signal an error if @var{symbol} is already defined. Note a
  4458. symbol which has been referenced but not actually defined is considered to be
  4459. undefined.
  4460. Except for the contents of the error message, this is roughly equivalent to
  4461. @smallexample
  4462. .ifdef SYM
  4463. .err
  4464. .endif
  4465. .equ SYM,VAL
  4466. @end smallexample
  4467. plus it protects the symbol from later redefinition.
  4468. @node Eqv
  4469. @section @code{.eqv @var{symbol}, @var{expression}}
  4470. @cindex @code{eqv} directive
  4471. The @code{.eqv} directive is like @code{.equiv}, but no attempt is made to
  4472. evaluate the expression or any part of it immediately. Instead each time
  4473. the resulting symbol is used in an expression, a snapshot of its current
  4474. value is taken.
  4475. @node Err
  4476. @section @code{.err}
  4477. @cindex @code{err} directive
  4478. If @command{@value{AS}} assembles a @code{.err} directive, it will print an error
  4479. message and, unless the @option{-Z} option was used, it will not generate an
  4480. object file. This can be used to signal an error in conditionally compiled code.
  4481. @node Error
  4482. @section @code{.error "@var{string}"}
  4483. @cindex error directive
  4484. Similarly to @code{.err}, this directive emits an error, but you can specify a
  4485. string that will be emitted as the error message. If you don't specify the
  4486. message, it defaults to @code{".error directive invoked in source file"}.
  4487. @xref{Errors, ,Error and Warning Messages}.
  4488. @smallexample
  4489. .error "This code has not been assembled and tested."
  4490. @end smallexample
  4491. @node Exitm
  4492. @section @code{.exitm}
  4493. Exit early from the current macro definition. @xref{Macro}.
  4494. @node Extern
  4495. @section @code{.extern}
  4496. @cindex @code{extern} directive
  4497. @code{.extern} is accepted in the source program---for compatibility
  4498. with other assemblers---but it is ignored. @command{@value{AS}} treats
  4499. all undefined symbols as external.
  4500. @node Fail
  4501. @section @code{.fail @var{expression}}
  4502. @cindex @code{fail} directive
  4503. Generates an error or a warning. If the value of the @var{expression} is 500
  4504. or more, @command{@value{AS}} will print a warning message. If the value is less
  4505. than 500, @command{@value{AS}} will print an error message. The message will
  4506. include the value of @var{expression}. This can occasionally be useful inside
  4507. complex nested macros or conditional assembly.
  4508. @node File
  4509. @section @code{.file}
  4510. @cindex @code{file} directive
  4511. @ifclear no-file-dir
  4512. There are two different versions of the @code{.file} directive. Targets
  4513. that support DWARF2 line number information use the DWARF2 version of
  4514. @code{.file}. Other targets use the default version.
  4515. @subheading Default Version
  4516. @cindex logical file name
  4517. @cindex file name, logical
  4518. This version of the @code{.file} directive tells @command{@value{AS}} that we
  4519. are about to start a new logical file. The syntax is:
  4520. @smallexample
  4521. .file @var{string}
  4522. @end smallexample
  4523. @var{string} is the new file name. In general, the filename is
  4524. recognized whether or not it is surrounded by quotes @samp{"}; but if you wish
  4525. to specify an empty file name, you must give the quotes--@code{""}. This
  4526. statement may go away in future: it is only recognized to be compatible with
  4527. old @command{@value{AS}} programs.
  4528. @subheading DWARF2 Version
  4529. @end ifclear
  4530. When emitting DWARF2 line number information, @code{.file} assigns filenames
  4531. to the @code{.debug_line} file name table. The syntax is:
  4532. @smallexample
  4533. .file @var{fileno} @var{filename}
  4534. @end smallexample
  4535. The @var{fileno} operand should be a unique positive integer to use as the
  4536. index of the entry in the table. The @var{filename} operand is a C string
  4537. literal enclosed in double quotes. The @var{filename} can include directory
  4538. elements. If it does, then the directory will be added to the directory table
  4539. and the basename will be added to the file table.
  4540. The detail of filename indices is exposed to the user because the filename
  4541. table is shared with the @code{.debug_info} section of the DWARF2 debugging
  4542. information, and thus the user must know the exact indices that table
  4543. entries will have.
  4544. If DWARF5 support has been enabled via the @option{-gdwarf-5} option then
  4545. an extended version of @code{.file} is also allowed:
  4546. @smallexample
  4547. .file @var{fileno} [@var{dirname}] @var{filename} [md5 @var{value}]
  4548. @end smallexample
  4549. With this version a separate directory name is allowed, although if this is
  4550. used then @var{filename} should not contain any directory component, except
  4551. for @var{fileno} equal to 0: in this case, @var{dirname} is expected to be
  4552. the current directory and @var{filename} the currently processed file, and
  4553. the latter need not be located in the former. In addtion an MD5 hash value
  4554. of the contents of @var{filename} can be provided. This will be stored in
  4555. the the file table as well, and can be used by tools reading the debug
  4556. information to verify that the contents of the source file match the
  4557. contents of the compiled file.
  4558. @node Fill
  4559. @section @code{.fill @var{repeat} , @var{size} , @var{value}}
  4560. @cindex @code{fill} directive
  4561. @cindex writing patterns in memory
  4562. @cindex patterns, writing in memory
  4563. @var{repeat}, @var{size} and @var{value} are absolute expressions.
  4564. This emits @var{repeat} copies of @var{size} bytes. @var{Repeat}
  4565. may be zero or more. @var{Size} may be zero or more, but if it is
  4566. more than 8, then it is deemed to have the value 8, compatible with
  4567. other people's assemblers. The contents of each @var{repeat} bytes
  4568. is taken from an 8-byte number. The highest order 4 bytes are
  4569. zero. The lowest order 4 bytes are @var{value} rendered in the
  4570. byte-order of an integer on the computer @command{@value{AS}} is assembling for.
  4571. Each @var{size} bytes in a repetition is taken from the lowest order
  4572. @var{size} bytes of this number. Again, this bizarre behavior is
  4573. compatible with other people's assemblers.
  4574. @var{size} and @var{value} are optional.
  4575. If the second comma and @var{value} are absent, @var{value} is
  4576. assumed zero. If the first comma and following tokens are absent,
  4577. @var{size} is assumed to be 1.
  4578. @node Float
  4579. @section @code{.float @var{flonums}}
  4580. @cindex floating point numbers (single)
  4581. @cindex @code{float} directive
  4582. This directive assembles zero or more flonums, separated by commas. It
  4583. has the same effect as @code{.single}.
  4584. @ifset GENERIC
  4585. The exact kind of floating point numbers emitted depends on how
  4586. @command{@value{AS}} is configured.
  4587. @xref{Machine Dependencies}.
  4588. @end ifset
  4589. @ifclear GENERIC
  4590. @ifset IEEEFLOAT
  4591. On the @value{TARGET} family, @code{.float} emits 32-bit floating point numbers
  4592. in @sc{ieee} format.
  4593. @end ifset
  4594. @end ifclear
  4595. @node Func
  4596. @section @code{.func @var{name}[,@var{label}]}
  4597. @cindex @code{func} directive
  4598. @code{.func} emits debugging information to denote function @var{name}, and
  4599. is ignored unless the file is assembled with debugging enabled.
  4600. Only @samp{--gstabs[+]} is currently supported.
  4601. @var{label} is the entry point of the function and if omitted @var{name}
  4602. prepended with the @samp{leading char} is used.
  4603. @samp{leading char} is usually @code{_} or nothing, depending on the target.
  4604. All functions are currently defined to have @code{void} return type.
  4605. The function must be terminated with @code{.endfunc}.
  4606. @node Global
  4607. @section @code{.global @var{symbol}}, @code{.globl @var{symbol}}
  4608. @cindex @code{global} directive
  4609. @cindex symbol, making visible to linker
  4610. @code{.global} makes the symbol visible to @code{@value{LD}}. If you define
  4611. @var{symbol} in your partial program, its value is made available to
  4612. other partial programs that are linked with it. Otherwise,
  4613. @var{symbol} takes its attributes from a symbol of the same name
  4614. from another file linked into the same program.
  4615. Both spellings (@samp{.globl} and @samp{.global}) are accepted, for
  4616. compatibility with other assemblers.
  4617. @ifset HPPA
  4618. On the HPPA, @code{.global} is not always enough to make it accessible to other
  4619. partial programs. You may need the HPPA-only @code{.EXPORT} directive as well.
  4620. @xref{HPPA Directives, ,HPPA Assembler Directives}.
  4621. @end ifset
  4622. @ifset ELF
  4623. @node Gnu_attribute
  4624. @section @code{.gnu_attribute @var{tag},@var{value}}
  4625. Record a @sc{gnu} object attribute for this file. @xref{Object Attributes}.
  4626. @node Hidden
  4627. @section @code{.hidden @var{names}}
  4628. @cindex @code{hidden} directive
  4629. @cindex visibility
  4630. This is one of the ELF visibility directives. The other two are
  4631. @code{.internal} (@pxref{Internal,,@code{.internal}}) and
  4632. @code{.protected} (@pxref{Protected,,@code{.protected}}).
  4633. This directive overrides the named symbols default visibility (which is set by
  4634. their binding: local, global or weak). The directive sets the visibility to
  4635. @code{hidden} which means that the symbols are not visible to other components.
  4636. Such symbols are always considered to be @code{protected} as well.
  4637. @end ifset
  4638. @node hword
  4639. @section @code{.hword @var{expressions}}
  4640. @cindex @code{hword} directive
  4641. @cindex integers, 16-bit
  4642. @cindex numbers, 16-bit
  4643. @cindex sixteen bit integers
  4644. This expects zero or more @var{expressions}, and emits
  4645. a 16 bit number for each.
  4646. @ifset GENERIC
  4647. This directive is a synonym for @samp{.short}; depending on the target
  4648. architecture, it may also be a synonym for @samp{.word}.
  4649. @end ifset
  4650. @ifclear GENERIC
  4651. @ifset W32
  4652. This directive is a synonym for @samp{.short}.
  4653. @end ifset
  4654. @ifset W16
  4655. This directive is a synonym for both @samp{.short} and @samp{.word}.
  4656. @end ifset
  4657. @end ifclear
  4658. @node Ident
  4659. @section @code{.ident}
  4660. @cindex @code{ident} directive
  4661. This directive is used by some assemblers to place tags in object files. The
  4662. behavior of this directive varies depending on the target. When using the
  4663. a.out object file format, @command{@value{AS}} simply accepts the directive for
  4664. source-file compatibility with existing assemblers, but does not emit anything
  4665. for it. When using COFF, comments are emitted to the @code{.comment} or
  4666. @code{.rdata} section, depending on the target. When using ELF, comments are
  4667. emitted to the @code{.comment} section.
  4668. @node If
  4669. @section @code{.if @var{absolute expression}}
  4670. @cindex conditional assembly
  4671. @cindex @code{if} directive
  4672. @code{.if} marks the beginning of a section of code which is only
  4673. considered part of the source program being assembled if the argument
  4674. (which must be an @var{absolute expression}) is non-zero. The end of
  4675. the conditional section of code must be marked by @code{.endif}
  4676. (@pxref{Endif,,@code{.endif}}); optionally, you may include code for the
  4677. alternative condition, flagged by @code{.else} (@pxref{Else,,@code{.else}}).
  4678. If you have several conditions to check, @code{.elseif} may be used to avoid
  4679. nesting blocks if/else within each subsequent @code{.else} block.
  4680. The following variants of @code{.if} are also supported:
  4681. @table @code
  4682. @cindex @code{ifdef} directive
  4683. @item .ifdef @var{symbol}
  4684. Assembles the following section of code if the specified @var{symbol}
  4685. has been defined. Note a symbol which has been referenced but not yet defined
  4686. is considered to be undefined.
  4687. @cindex @code{ifb} directive
  4688. @item .ifb @var{text}
  4689. Assembles the following section of code if the operand is blank (empty).
  4690. @cindex @code{ifc} directive
  4691. @item .ifc @var{string1},@var{string2}
  4692. Assembles the following section of code if the two strings are the same. The
  4693. strings may be optionally quoted with single quotes. If they are not quoted,
  4694. the first string stops at the first comma, and the second string stops at the
  4695. end of the line. Strings which contain whitespace should be quoted. The
  4696. string comparison is case sensitive.
  4697. @cindex @code{ifeq} directive
  4698. @item .ifeq @var{absolute expression}
  4699. Assembles the following section of code if the argument is zero.
  4700. @cindex @code{ifeqs} directive
  4701. @item .ifeqs @var{string1},@var{string2}
  4702. Another form of @code{.ifc}. The strings must be quoted using double quotes.
  4703. @cindex @code{ifge} directive
  4704. @item .ifge @var{absolute expression}
  4705. Assembles the following section of code if the argument is greater than or
  4706. equal to zero.
  4707. @cindex @code{ifgt} directive
  4708. @item .ifgt @var{absolute expression}
  4709. Assembles the following section of code if the argument is greater than zero.
  4710. @cindex @code{ifle} directive
  4711. @item .ifle @var{absolute expression}
  4712. Assembles the following section of code if the argument is less than or equal
  4713. to zero.
  4714. @cindex @code{iflt} directive
  4715. @item .iflt @var{absolute expression}
  4716. Assembles the following section of code if the argument is less than zero.
  4717. @cindex @code{ifnb} directive
  4718. @item .ifnb @var{text}
  4719. Like @code{.ifb}, but the sense of the test is reversed: this assembles the
  4720. following section of code if the operand is non-blank (non-empty).
  4721. @cindex @code{ifnc} directive
  4722. @item .ifnc @var{string1},@var{string2}.
  4723. Like @code{.ifc}, but the sense of the test is reversed: this assembles the
  4724. following section of code if the two strings are not the same.
  4725. @cindex @code{ifndef} directive
  4726. @cindex @code{ifnotdef} directive
  4727. @item .ifndef @var{symbol}
  4728. @itemx .ifnotdef @var{symbol}
  4729. Assembles the following section of code if the specified @var{symbol}
  4730. has not been defined. Both spelling variants are equivalent. Note a symbol
  4731. which has been referenced but not yet defined is considered to be undefined.
  4732. @cindex @code{ifne} directive
  4733. @item .ifne @var{absolute expression}
  4734. Assembles the following section of code if the argument is not equal to zero
  4735. (in other words, this is equivalent to @code{.if}).
  4736. @cindex @code{ifnes} directive
  4737. @item .ifnes @var{string1},@var{string2}
  4738. Like @code{.ifeqs}, but the sense of the test is reversed: this assembles the
  4739. following section of code if the two strings are not the same.
  4740. @end table
  4741. @node Incbin
  4742. @section @code{.incbin "@var{file}"[,@var{skip}[,@var{count}]]}
  4743. @cindex @code{incbin} directive
  4744. @cindex binary files, including
  4745. The @code{incbin} directive includes @var{file} verbatim at the current
  4746. location. You can control the search paths used with the @samp{-I} command-line
  4747. option (@pxref{Invoking,,Command-Line Options}). Quotation marks are required
  4748. around @var{file}.
  4749. The @var{skip} argument skips a number of bytes from the start of the
  4750. @var{file}. The @var{count} argument indicates the maximum number of bytes to
  4751. read. Note that the data is not aligned in any way, so it is the user's
  4752. responsibility to make sure that proper alignment is provided both before and
  4753. after the @code{incbin} directive.
  4754. @node Include
  4755. @section @code{.include "@var{file}"}
  4756. @cindex @code{include} directive
  4757. @cindex supporting files, including
  4758. @cindex files, including
  4759. This directive provides a way to include supporting files at specified
  4760. points in your source program. The code from @var{file} is assembled as
  4761. if it followed the point of the @code{.include}; when the end of the
  4762. included file is reached, assembly of the original file continues. You
  4763. can control the search paths used with the @samp{-I} command-line option
  4764. (@pxref{Invoking,,Command-Line Options}). Quotation marks are required
  4765. around @var{file}.
  4766. @node Int
  4767. @section @code{.int @var{expressions}}
  4768. @cindex @code{int} directive
  4769. @cindex integers, 32-bit
  4770. Expect zero or more @var{expressions}, of any section, separated by commas.
  4771. For each expression, emit a number that, at run time, is the value of that
  4772. expression. The byte order and bit size of the number depends on what kind
  4773. of target the assembly is for.
  4774. @ifclear GENERIC
  4775. @ifset H8
  4776. On most forms of the H8/300, @code{.int} emits 16-bit
  4777. integers. On the H8/300H and the Renesas SH, however, @code{.int} emits
  4778. 32-bit integers.
  4779. @end ifset
  4780. @end ifclear
  4781. @ifset ELF
  4782. @node Internal
  4783. @section @code{.internal @var{names}}
  4784. @cindex @code{internal} directive
  4785. @cindex visibility
  4786. This is one of the ELF visibility directives. The other two are
  4787. @code{.hidden} (@pxref{Hidden,,@code{.hidden}}) and
  4788. @code{.protected} (@pxref{Protected,,@code{.protected}}).
  4789. This directive overrides the named symbols default visibility (which is set by
  4790. their binding: local, global or weak). The directive sets the visibility to
  4791. @code{internal} which means that the symbols are considered to be @code{hidden}
  4792. (i.e., not visible to other components), and that some extra, processor specific
  4793. processing must also be performed upon the symbols as well.
  4794. @end ifset
  4795. @node Irp
  4796. @section @code{.irp @var{symbol},@var{values}}@dots{}
  4797. @cindex @code{irp} directive
  4798. Evaluate a sequence of statements assigning different values to @var{symbol}.
  4799. The sequence of statements starts at the @code{.irp} directive, and is
  4800. terminated by an @code{.endr} directive. For each @var{value}, @var{symbol} is
  4801. set to @var{value}, and the sequence of statements is assembled. If no
  4802. @var{value} is listed, the sequence of statements is assembled once, with
  4803. @var{symbol} set to the null string. To refer to @var{symbol} within the
  4804. sequence of statements, use @var{\symbol}.
  4805. For example, assembling
  4806. @example
  4807. .irp param,1,2,3
  4808. move d\param,sp@@-
  4809. .endr
  4810. @end example
  4811. is equivalent to assembling
  4812. @example
  4813. move d1,sp@@-
  4814. move d2,sp@@-
  4815. move d3,sp@@-
  4816. @end example
  4817. For some caveats with the spelling of @var{symbol}, see also @ref{Macro}.
  4818. @node Irpc
  4819. @section @code{.irpc @var{symbol},@var{values}}@dots{}
  4820. @cindex @code{irpc} directive
  4821. Evaluate a sequence of statements assigning different values to @var{symbol}.
  4822. The sequence of statements starts at the @code{.irpc} directive, and is
  4823. terminated by an @code{.endr} directive. For each character in @var{value},
  4824. @var{symbol} is set to the character, and the sequence of statements is
  4825. assembled. If no @var{value} is listed, the sequence of statements is
  4826. assembled once, with @var{symbol} set to the null string. To refer to
  4827. @var{symbol} within the sequence of statements, use @var{\symbol}.
  4828. For example, assembling
  4829. @example
  4830. .irpc param,123
  4831. move d\param,sp@@-
  4832. .endr
  4833. @end example
  4834. is equivalent to assembling
  4835. @example
  4836. move d1,sp@@-
  4837. move d2,sp@@-
  4838. move d3,sp@@-
  4839. @end example
  4840. For some caveats with the spelling of @var{symbol}, see also the discussion
  4841. at @xref{Macro}.
  4842. @node Lcomm
  4843. @section @code{.lcomm @var{symbol} , @var{length}}
  4844. @cindex @code{lcomm} directive
  4845. @cindex local common symbols
  4846. @cindex symbols, local common
  4847. Reserve @var{length} (an absolute expression) bytes for a local common
  4848. denoted by @var{symbol}. The section and value of @var{symbol} are
  4849. those of the new local common. The addresses are allocated in the bss
  4850. section, so that at run-time the bytes start off zeroed. @var{Symbol}
  4851. is not declared global (@pxref{Global,,@code{.global}}), so is normally
  4852. not visible to @code{@value{LD}}.
  4853. @ifset GENERIC
  4854. Some targets permit a third argument to be used with @code{.lcomm}. This
  4855. argument specifies the desired alignment of the symbol in the bss section.
  4856. @end ifset
  4857. @ifset HPPA
  4858. The syntax for @code{.lcomm} differs slightly on the HPPA. The syntax is
  4859. @samp{@var{symbol} .lcomm, @var{length}}; @var{symbol} is optional.
  4860. @end ifset
  4861. @node Lflags
  4862. @section @code{.lflags}
  4863. @cindex @code{lflags} directive (ignored)
  4864. @command{@value{AS}} accepts this directive, for compatibility with other
  4865. assemblers, but ignores it.
  4866. @ifclear no-line-dir
  4867. @node Line
  4868. @section @code{.line @var{line-number}}
  4869. @cindex @code{line} directive
  4870. @cindex logical line number
  4871. @ifset aout
  4872. Change the logical line number. @var{line-number} must be an absolute
  4873. expression. The next line has that logical line number. Therefore any other
  4874. statements on the current line (after a statement separator character) are
  4875. reported as on logical line number @var{line-number} @minus{} 1. One day
  4876. @command{@value{AS}} will no longer support this directive: it is recognized only
  4877. for compatibility with existing assembler programs.
  4878. @end ifset
  4879. Even though this is a directive associated with the @code{a.out} or
  4880. @code{b.out} object-code formats, @command{@value{AS}} still recognizes it
  4881. when producing COFF output, and treats @samp{.line} as though it
  4882. were the COFF @samp{.ln} @emph{if} it is found outside a
  4883. @code{.def}/@code{.endef} pair.
  4884. Inside a @code{.def}, @samp{.line} is, instead, one of the directives
  4885. used by compilers to generate auxiliary symbol information for
  4886. debugging.
  4887. @end ifclear
  4888. @node Linkonce
  4889. @section @code{.linkonce [@var{type}]}
  4890. @cindex COMDAT
  4891. @cindex @code{linkonce} directive
  4892. @cindex common sections
  4893. Mark the current section so that the linker only includes a single copy of it.
  4894. This may be used to include the same section in several different object files,
  4895. but ensure that the linker will only include it once in the final output file.
  4896. The @code{.linkonce} pseudo-op must be used for each instance of the section.
  4897. Duplicate sections are detected based on the section name, so it should be
  4898. unique.
  4899. This directive is only supported by a few object file formats; as of this
  4900. writing, the only object file format which supports it is the Portable
  4901. Executable format used on Windows NT.
  4902. The @var{type} argument is optional. If specified, it must be one of the
  4903. following strings. For example:
  4904. @smallexample
  4905. .linkonce same_size
  4906. @end smallexample
  4907. Not all types may be supported on all object file formats.
  4908. @table @code
  4909. @item discard
  4910. Silently discard duplicate sections. This is the default.
  4911. @item one_only
  4912. Warn if there are duplicate sections, but still keep only one copy.
  4913. @item same_size
  4914. Warn if any of the duplicates have different sizes.
  4915. @item same_contents
  4916. Warn if any of the duplicates do not have exactly the same contents.
  4917. @end table
  4918. @node List
  4919. @section @code{.list}
  4920. @cindex @code{list} directive
  4921. @cindex listing control, turning on
  4922. Control (in conjunction with the @code{.nolist} directive) whether or
  4923. not assembly listings are generated. These two directives maintain an
  4924. internal counter (which is zero initially). @code{.list} increments the
  4925. counter, and @code{.nolist} decrements it. Assembly listings are
  4926. generated whenever the counter is greater than zero.
  4927. By default, listings are disabled. When you enable them (with the
  4928. @samp{-a} command-line option; @pxref{Invoking,,Command-Line Options}),
  4929. the initial value of the listing counter is one.
  4930. @node Ln
  4931. @section @code{.ln @var{line-number}}
  4932. @cindex @code{ln} directive
  4933. @ifclear no-line-dir
  4934. @samp{.ln} is a synonym for @samp{.line}.
  4935. @end ifclear
  4936. @ifset no-line-dir
  4937. Tell @command{@value{AS}} to change the logical line number. @var{line-number}
  4938. must be an absolute expression. The next line has that logical
  4939. line number, so any other statements on the current line (after a
  4940. statement separator character @code{;}) are reported as on logical
  4941. line number @var{line-number} @minus{} 1.
  4942. @end ifset
  4943. @node Loc
  4944. @section @code{.loc @var{fileno} @var{lineno} [@var{column}] [@var{options}]}
  4945. @cindex @code{loc} directive
  4946. When emitting DWARF2 line number information,
  4947. the @code{.loc} directive will add a row to the @code{.debug_line} line
  4948. number matrix corresponding to the immediately following assembly
  4949. instruction. The @var{fileno}, @var{lineno}, and optional @var{column}
  4950. arguments will be applied to the @code{.debug_line} state machine before
  4951. the row is added. It is an error for the input assembly file to generate
  4952. a non-empty @code{.debug_line} and also use @code{loc} directives.
  4953. The @var{options} are a sequence of the following tokens in any order:
  4954. @table @code
  4955. @item basic_block
  4956. This option will set the @code{basic_block} register in the
  4957. @code{.debug_line} state machine to @code{true}.
  4958. @item prologue_end
  4959. This option will set the @code{prologue_end} register in the
  4960. @code{.debug_line} state machine to @code{true}.
  4961. @item epilogue_begin
  4962. This option will set the @code{epilogue_begin} register in the
  4963. @code{.debug_line} state machine to @code{true}.
  4964. @item is_stmt @var{value}
  4965. This option will set the @code{is_stmt} register in the
  4966. @code{.debug_line} state machine to @code{value}, which must be
  4967. either 0 or 1.
  4968. @item isa @var{value}
  4969. This directive will set the @code{isa} register in the @code{.debug_line}
  4970. state machine to @var{value}, which must be an unsigned integer.
  4971. @item discriminator @var{value}
  4972. This directive will set the @code{discriminator} register in the @code{.debug_line}
  4973. state machine to @var{value}, which must be an unsigned integer.
  4974. @item view @var{value}
  4975. This option causes a row to be added to @code{.debug_line} in reference to the
  4976. current address (which might not be the same as that of the following assembly
  4977. instruction), and to associate @var{value} with the @code{view} register in the
  4978. @code{.debug_line} state machine. If @var{value} is a label, both the
  4979. @code{view} register and the label are set to the number of prior @code{.loc}
  4980. directives at the same program location. If @var{value} is the literal
  4981. @code{0}, the @code{view} register is set to zero, and the assembler asserts
  4982. that there aren't any prior @code{.loc} directives at the same program
  4983. location. If @var{value} is the literal @code{-0}, the assembler arrange for
  4984. the @code{view} register to be reset in this row, even if there are prior
  4985. @code{.loc} directives at the same program location.
  4986. @end table
  4987. @node Loc_mark_labels
  4988. @section @code{.loc_mark_labels @var{enable}}
  4989. @cindex @code{loc_mark_labels} directive
  4990. When emitting DWARF2 line number information,
  4991. the @code{.loc_mark_labels} directive makes the assembler emit an entry
  4992. to the @code{.debug_line} line number matrix with the @code{basic_block}
  4993. register in the state machine set whenever a code label is seen.
  4994. The @var{enable} argument should be either 1 or 0, to enable or disable
  4995. this function respectively.
  4996. @ifset ELF
  4997. @node Local
  4998. @section @code{.local @var{names}}
  4999. @cindex @code{local} directive
  5000. This directive, which is available for ELF targets, marks each symbol in
  5001. the comma-separated list of @code{names} as a local symbol so that it
  5002. will not be externally visible. If the symbols do not already exist,
  5003. they will be created.
  5004. For targets where the @code{.lcomm} directive (@pxref{Lcomm}) does not
  5005. accept an alignment argument, which is the case for most ELF targets,
  5006. the @code{.local} directive can be used in combination with @code{.comm}
  5007. (@pxref{Comm}) to define aligned local common data.
  5008. @end ifset
  5009. @node Long
  5010. @section @code{.long @var{expressions}}
  5011. @cindex @code{long} directive
  5012. @code{.long} is the same as @samp{.int}. @xref{Int,,@code{.int}}.
  5013. @ignore
  5014. @c no one seems to know what this is for or whether this description is
  5015. @c what it really ought to do
  5016. @node Lsym
  5017. @section @code{.lsym @var{symbol}, @var{expression}}
  5018. @cindex @code{lsym} directive
  5019. @cindex symbol, not referenced in assembly
  5020. @code{.lsym} creates a new symbol named @var{symbol}, but does not put it in
  5021. the hash table, ensuring it cannot be referenced by name during the
  5022. rest of the assembly. This sets the attributes of the symbol to be
  5023. the same as the expression value:
  5024. @smallexample
  5025. @var{other} = @var{descriptor} = 0
  5026. @var{type} = @r{(section of @var{expression})}
  5027. @var{value} = @var{expression}
  5028. @end smallexample
  5029. @noindent
  5030. The new symbol is not flagged as external.
  5031. @end ignore
  5032. @node Macro
  5033. @section @code{.macro}
  5034. @cindex macros
  5035. The commands @code{.macro} and @code{.endm} allow you to define macros that
  5036. generate assembly output. For example, this definition specifies a macro
  5037. @code{sum} that puts a sequence of numbers into memory:
  5038. @example
  5039. .macro sum from=0, to=5
  5040. .long \from
  5041. .if \to-\from
  5042. sum "(\from+1)",\to
  5043. .endif
  5044. .endm
  5045. @end example
  5046. @noindent
  5047. With that definition, @samp{SUM 0,5} is equivalent to this assembly input:
  5048. @example
  5049. .long 0
  5050. .long 1
  5051. .long 2
  5052. .long 3
  5053. .long 4
  5054. .long 5
  5055. @end example
  5056. @ftable @code
  5057. @item .macro @var{macname}
  5058. @itemx .macro @var{macname} @var{macargs} @dots{}
  5059. @cindex @code{macro} directive
  5060. Begin the definition of a macro called @var{macname}. If your macro
  5061. definition requires arguments, specify their names after the macro name,
  5062. separated by commas or spaces. You can qualify the macro argument to
  5063. indicate whether all invocations must specify a non-blank value (through
  5064. @samp{:@code{req}}), or whether it takes all of the remaining arguments
  5065. (through @samp{:@code{vararg}}). You can supply a default value for any
  5066. macro argument by following the name with @samp{=@var{deflt}}. You
  5067. cannot define two macros with the same @var{macname} unless it has been
  5068. subject to the @code{.purgem} directive (@pxref{Purgem}) between the two
  5069. definitions. For example, these are all valid @code{.macro} statements:
  5070. @table @code
  5071. @item .macro comm
  5072. Begin the definition of a macro called @code{comm}, which takes no
  5073. arguments.
  5074. @item .macro plus1 p, p1
  5075. @itemx .macro plus1 p p1
  5076. Either statement begins the definition of a macro called @code{plus1},
  5077. which takes two arguments; within the macro definition, write
  5078. @samp{\p} or @samp{\p1} to evaluate the arguments.
  5079. @item .macro reserve_str p1=0 p2
  5080. Begin the definition of a macro called @code{reserve_str}, with two
  5081. arguments. The first argument has a default value, but not the second.
  5082. After the definition is complete, you can call the macro either as
  5083. @samp{reserve_str @var{a},@var{b}} (with @samp{\p1} evaluating to
  5084. @var{a} and @samp{\p2} evaluating to @var{b}), or as @samp{reserve_str
  5085. ,@var{b}} (with @samp{\p1} evaluating as the default, in this case
  5086. @samp{0}, and @samp{\p2} evaluating to @var{b}).
  5087. @item .macro m p1:req, p2=0, p3:vararg
  5088. Begin the definition of a macro called @code{m}, with at least three
  5089. arguments. The first argument must always have a value specified, but
  5090. not the second, which instead has a default value. The third formal
  5091. will get assigned all remaining arguments specified at invocation time.
  5092. When you call a macro, you can specify the argument values either by
  5093. position, or by keyword. For example, @samp{sum 9,17} is equivalent to
  5094. @samp{sum to=17, from=9}.
  5095. @end table
  5096. Note that since each of the @var{macargs} can be an identifier exactly
  5097. as any other one permitted by the target architecture, there may be
  5098. occasional problems if the target hand-crafts special meanings to certain
  5099. characters when they occur in a special position. For example, if the colon
  5100. (@code{:}) is generally permitted to be part of a symbol name, but the
  5101. architecture specific code special-cases it when occurring as the final
  5102. character of a symbol (to denote a label), then the macro parameter
  5103. replacement code will have no way of knowing that and consider the whole
  5104. construct (including the colon) an identifier, and check only this
  5105. identifier for being the subject to parameter substitution. So for example
  5106. this macro definition:
  5107. @example
  5108. .macro label l
  5109. \l:
  5110. .endm
  5111. @end example
  5112. might not work as expected. Invoking @samp{label foo} might not create a label
  5113. called @samp{foo} but instead just insert the text @samp{\l:} into the
  5114. assembler source, probably generating an error about an unrecognised
  5115. identifier.
  5116. Similarly problems might occur with the period character (@samp{.})
  5117. which is often allowed inside opcode names (and hence identifier names). So
  5118. for example constructing a macro to build an opcode from a base name and a
  5119. length specifier like this:
  5120. @example
  5121. .macro opcode base length
  5122. \base.\length
  5123. .endm
  5124. @end example
  5125. and invoking it as @samp{opcode store l} will not create a @samp{store.l}
  5126. instruction but instead generate some kind of error as the assembler tries to
  5127. interpret the text @samp{\base.\length}.
  5128. There are several possible ways around this problem:
  5129. @table @code
  5130. @item Insert white space
  5131. If it is possible to use white space characters then this is the simplest
  5132. solution. eg:
  5133. @example
  5134. .macro label l
  5135. \l :
  5136. .endm
  5137. @end example
  5138. @item Use @samp{\()}
  5139. The string @samp{\()} can be used to separate the end of a macro argument from
  5140. the following text. eg:
  5141. @example
  5142. .macro opcode base length
  5143. \base\().\length
  5144. .endm
  5145. @end example
  5146. @item Use the alternate macro syntax mode
  5147. In the alternative macro syntax mode the ampersand character (@samp{&}) can be
  5148. used as a separator. eg:
  5149. @example
  5150. .altmacro
  5151. .macro label l
  5152. l&:
  5153. .endm
  5154. @end example
  5155. @end table
  5156. Note: this problem of correctly identifying string parameters to pseudo ops
  5157. also applies to the identifiers used in @code{.irp} (@pxref{Irp})
  5158. and @code{.irpc} (@pxref{Irpc}) as well.
  5159. Another issue can occur with the actual arguments passed during macro
  5160. invocation: Multiple arguments can be separated by blanks or commas. To have
  5161. arguments actually contain blanks or commas (or potentially other non-alpha-
  5162. numeric characters), individual arguments will need to be enclosed in either
  5163. parentheses @code{()}, square brackets @code{[]}, or double quote @code{"}
  5164. characters. The latter may be the only viable option in certain situations,
  5165. as only double quotes are actually stripped while establishing arguments. It
  5166. may be important to be aware of two escaping models used when processing such
  5167. quoted argument strings: For one two adjacent double quotes represent a single
  5168. double quote in the resulting argument, going along the lines of the stripping
  5169. of the enclosing quotes. But then double quotes can also be escaped by a
  5170. backslash @code{\}, but this backslash will not be retained in the resulting
  5171. actual argument as then seen / used while expanding the macro.
  5172. As a consequence to the first of these escaping mechanisms two string literals
  5173. intended to be representing separate macro arguments need to be separated by
  5174. white space (or, better yet, by a comma). To state it differently, such
  5175. adjacent string literals - even if separated only by a blank - will not be
  5176. concatenated when determining macro arguments, even if they're only separated
  5177. by white space. This is unlike certain other pseudo ops, e.g. @code{.ascii}.
  5178. @item .endm
  5179. @cindex @code{endm} directive
  5180. Mark the end of a macro definition.
  5181. @item .exitm
  5182. @cindex @code{exitm} directive
  5183. Exit early from the current macro definition.
  5184. @cindex number of macros executed
  5185. @cindex macros, count executed
  5186. @item \@@
  5187. @command{@value{AS}} maintains a counter of how many macros it has
  5188. executed in this pseudo-variable; you can copy that number to your
  5189. output with @samp{\@@}, but @emph{only within a macro definition}.
  5190. @item LOCAL @var{name} [ , @dots{} ]
  5191. @emph{Warning: @code{LOCAL} is only available if you select ``alternate
  5192. macro syntax'' with @samp{--alternate} or @code{.altmacro}.}
  5193. @xref{Altmacro,,@code{.altmacro}}.
  5194. @end ftable
  5195. @node MRI
  5196. @section @code{.mri @var{val}}
  5197. @cindex @code{mri} directive
  5198. @cindex MRI mode, temporarily
  5199. If @var{val} is non-zero, this tells @command{@value{AS}} to enter MRI mode. If
  5200. @var{val} is zero, this tells @command{@value{AS}} to exit MRI mode. This change
  5201. affects code assembled until the next @code{.mri} directive, or until the end
  5202. of the file. @xref{M, MRI mode, MRI mode}.
  5203. @node Noaltmacro
  5204. @section @code{.noaltmacro}
  5205. Disable alternate macro mode. @xref{Altmacro}.
  5206. @node Nolist
  5207. @section @code{.nolist}
  5208. @cindex @code{nolist} directive
  5209. @cindex listing control, turning off
  5210. Control (in conjunction with the @code{.list} directive) whether or
  5211. not assembly listings are generated. These two directives maintain an
  5212. internal counter (which is zero initially). @code{.list} increments the
  5213. counter, and @code{.nolist} decrements it. Assembly listings are
  5214. generated whenever the counter is greater than zero.
  5215. @node Nop
  5216. @section @code{.nop [@var{size}]}
  5217. @cindex @code{nop} directive
  5218. @cindex filling memory with no-op instructions
  5219. This directive emits no-op instructions. It is provided on all architectures,
  5220. allowing the creation of architecture neutral tests involving actual code. The
  5221. size of the generated instruction is target specific, but if the optional
  5222. @var{size} argument is given and resolves to an absolute positive value at that
  5223. point in assembly (no forward expressions allowed) then the fewest no-op
  5224. instructions are emitted that equal or exceed a total @var{size} in bytes.
  5225. @code{.nop} does affect the generation of DWARF debug line information.
  5226. Some targets do not support using @code{.nop} with @var{size}.
  5227. @node Nops
  5228. @section @code{.nops @var{size}[, @var{control}]}
  5229. @cindex @code{nops} directive
  5230. @cindex filling memory with no-op instructions
  5231. This directive emits no-op instructions. It is specific to the Intel 80386 and
  5232. AMD x86-64 targets. It takes a @var{size} argument and generates @var{size}
  5233. bytes of no-op instructions. @var{size} must be absolute and positive. These
  5234. bytes do not affect the generation of DWARF debug line information.
  5235. The optional @var{control} argument specifies a size limit for a single no-op
  5236. instruction. If not provided then a value of 0 is assumed. The valid values
  5237. of @var{control} are between 0 and 4 in 16-bit mode, between 0 and 7 when
  5238. tuning for older processors in 32-bit mode, between 0 and 11 in 64-bit mode or
  5239. when tuning for newer processors in 32-bit mode. When 0 is used, the no-op
  5240. instruction size limit is set to the maximum supported size.
  5241. @node Octa
  5242. @section @code{.octa @var{bignums}}
  5243. @c FIXME: double size emitted for "octa" on some? Or warn?
  5244. @cindex @code{octa} directive
  5245. @cindex integer, 16-byte
  5246. @cindex sixteen byte integer
  5247. This directive expects zero or more bignums, separated by commas. For each
  5248. bignum, it emits a 16-byte integer.
  5249. The term ``octa'' comes from contexts in which a ``word'' is two bytes;
  5250. hence @emph{octa}-word for 16 bytes.
  5251. @node Offset
  5252. @section @code{.offset @var{loc}}
  5253. @cindex @code{offset} directive
  5254. Set the location counter to @var{loc} in the absolute section. @var{loc} must
  5255. be an absolute expression. This directive may be useful for defining
  5256. symbols with absolute values. Do not confuse it with the @code{.org}
  5257. directive.
  5258. @node Org
  5259. @section @code{.org @var{new-lc} , @var{fill}}
  5260. @cindex @code{org} directive
  5261. @cindex location counter, advancing
  5262. @cindex advancing location counter
  5263. @cindex current address, advancing
  5264. Advance the location counter of the current section to
  5265. @var{new-lc}. @var{new-lc} is either an absolute expression or an
  5266. expression with the same section as the current subsection. That is,
  5267. you can't use @code{.org} to cross sections: if @var{new-lc} has the
  5268. wrong section, the @code{.org} directive is ignored. To be compatible
  5269. with former assemblers, if the section of @var{new-lc} is absolute,
  5270. @command{@value{AS}} issues a warning, then pretends the section of @var{new-lc}
  5271. is the same as the current subsection.
  5272. @code{.org} may only increase the location counter, or leave it
  5273. unchanged; you cannot use @code{.org} to move the location counter
  5274. backwards.
  5275. @c double negative used below "not undefined" because this is a specific
  5276. @c reference to "undefined" (as SEG_UNKNOWN is called in this manual)
  5277. @c section. doc@cygnus.com 18feb91
  5278. Because @command{@value{AS}} tries to assemble programs in one pass, @var{new-lc}
  5279. may not be undefined. If you really detest this restriction we eagerly await
  5280. a chance to share your improved assembler.
  5281. Beware that the origin is relative to the start of the section, not
  5282. to the start of the subsection. This is compatible with other
  5283. people's assemblers.
  5284. When the location counter (of the current subsection) is advanced, the
  5285. intervening bytes are filled with @var{fill} which should be an
  5286. absolute expression. If the comma and @var{fill} are omitted,
  5287. @var{fill} defaults to zero.
  5288. @node P2align
  5289. @section @code{.p2align[wl] [@var{abs-expr}[, @var{abs-expr}[, @var{abs-expr}]]]}
  5290. @cindex padding the location counter given a power of two
  5291. @cindex @code{p2align} directive
  5292. Pad the location counter (in the current subsection) to a particular
  5293. storage boundary. The first expression (which must be absolute) is the
  5294. number of low-order zero bits the location counter must have after
  5295. advancement. For example @samp{.p2align 3} advances the location
  5296. counter until it is a multiple of 8. If the location counter is already a
  5297. multiple of 8, no change is needed. If the expression is omitted then a
  5298. default value of 0 is used, effectively disabling alignment requirements.
  5299. The second expression (also absolute) gives the fill value to be stored in the
  5300. padding bytes. It (and the comma) may be omitted. If it is omitted, the
  5301. padding bytes are normally zero. However, on most systems, if the section is
  5302. marked as containing code and the fill value is omitted, the space is filled
  5303. with no-op instructions.
  5304. The third expression is also absolute, and is also optional. If it is present,
  5305. it is the maximum number of bytes that should be skipped by this alignment
  5306. directive. If doing the alignment would require skipping more bytes than the
  5307. specified maximum, then the alignment is not done at all. You can omit the
  5308. fill value (the second argument) entirely by simply using two commas after the
  5309. required alignment; this can be useful if you want the alignment to be filled
  5310. with no-op instructions when appropriate.
  5311. @cindex @code{p2alignw} directive
  5312. @cindex @code{p2alignl} directive
  5313. The @code{.p2alignw} and @code{.p2alignl} directives are variants of the
  5314. @code{.p2align} directive. The @code{.p2alignw} directive treats the fill
  5315. pattern as a two byte word value. The @code{.p2alignl} directives treats the
  5316. fill pattern as a four byte longword value. For example, @code{.p2alignw
  5317. 2,0x368d} will align to a multiple of 4. If it skips two bytes, they will be
  5318. filled in with the value 0x368d (the exact placement of the bytes depends upon
  5319. the endianness of the processor). If it skips 1 or 3 bytes, the fill value is
  5320. undefined.
  5321. @ifset ELF
  5322. @node PopSection
  5323. @section @code{.popsection}
  5324. @cindex @code{popsection} directive
  5325. @cindex Section Stack
  5326. This is one of the ELF section stack manipulation directives. The others are
  5327. @code{.section} (@pxref{Section}), @code{.subsection} (@pxref{SubSection}),
  5328. @code{.pushsection} (@pxref{PushSection}), and @code{.previous}
  5329. (@pxref{Previous}).
  5330. This directive replaces the current section (and subsection) with the top
  5331. section (and subsection) on the section stack. This section is popped off the
  5332. stack.
  5333. @end ifset
  5334. @ifset ELF
  5335. @node Previous
  5336. @section @code{.previous}
  5337. @cindex @code{previous} directive
  5338. @cindex Section Stack
  5339. This is one of the ELF section stack manipulation directives. The others are
  5340. @code{.section} (@pxref{Section}), @code{.subsection} (@pxref{SubSection}),
  5341. @code{.pushsection} (@pxref{PushSection}), and @code{.popsection}
  5342. (@pxref{PopSection}).
  5343. This directive swaps the current section (and subsection) with most recently
  5344. referenced section/subsection pair prior to this one. Multiple
  5345. @code{.previous} directives in a row will flip between two sections (and their
  5346. subsections). For example:
  5347. @smallexample
  5348. .section A
  5349. .subsection 1
  5350. .word 0x1234
  5351. .subsection 2
  5352. .word 0x5678
  5353. .previous
  5354. .word 0x9abc
  5355. @end smallexample
  5356. Will place 0x1234 and 0x9abc into subsection 1 and 0x5678 into subsection 2 of
  5357. section A. Whilst:
  5358. @smallexample
  5359. .section A
  5360. .subsection 1
  5361. # Now in section A subsection 1
  5362. .word 0x1234
  5363. .section B
  5364. .subsection 0
  5365. # Now in section B subsection 0
  5366. .word 0x5678
  5367. .subsection 1
  5368. # Now in section B subsection 1
  5369. .word 0x9abc
  5370. .previous
  5371. # Now in section B subsection 0
  5372. .word 0xdef0
  5373. @end smallexample
  5374. Will place 0x1234 into section A, 0x5678 and 0xdef0 into subsection 0 of
  5375. section B and 0x9abc into subsection 1 of section B.
  5376. In terms of the section stack, this directive swaps the current section with
  5377. the top section on the section stack.
  5378. @end ifset
  5379. @node Print
  5380. @section @code{.print @var{string}}
  5381. @cindex @code{print} directive
  5382. @command{@value{AS}} will print @var{string} on the standard output during
  5383. assembly. You must put @var{string} in double quotes.
  5384. @ifset ELF
  5385. @node Protected
  5386. @section @code{.protected @var{names}}
  5387. @cindex @code{protected} directive
  5388. @cindex visibility
  5389. This is one of the ELF visibility directives. The other two are
  5390. @code{.hidden} (@pxref{Hidden}) and @code{.internal} (@pxref{Internal}).
  5391. This directive overrides the named symbols default visibility (which is set by
  5392. their binding: local, global or weak). The directive sets the visibility to
  5393. @code{protected} which means that any references to the symbols from within the
  5394. components that defines them must be resolved to the definition in that
  5395. component, even if a definition in another component would normally preempt
  5396. this.
  5397. @end ifset
  5398. @node Psize
  5399. @section @code{.psize @var{lines} , @var{columns}}
  5400. @cindex @code{psize} directive
  5401. @cindex listing control: paper size
  5402. @cindex paper size, for listings
  5403. Use this directive to declare the number of lines---and, optionally, the
  5404. number of columns---to use for each page, when generating listings.
  5405. If you do not use @code{.psize}, listings use a default line-count
  5406. of 60. You may omit the comma and @var{columns} specification; the
  5407. default width is 200 columns.
  5408. @command{@value{AS}} generates formfeeds whenever the specified number of
  5409. lines is exceeded (or whenever you explicitly request one, using
  5410. @code{.eject}).
  5411. If you specify @var{lines} as @code{0}, no formfeeds are generated save
  5412. those explicitly specified with @code{.eject}.
  5413. @node Purgem
  5414. @section @code{.purgem @var{name}}
  5415. @cindex @code{purgem} directive
  5416. Undefine the macro @var{name}, so that later uses of the string will not be
  5417. expanded. @xref{Macro}.
  5418. @ifset ELF
  5419. @node PushSection
  5420. @section @code{.pushsection @var{name} [, @var{subsection}] [, "@var{flags}"[, @@@var{type}[,@var{arguments}]]]}
  5421. @cindex @code{pushsection} directive
  5422. @cindex Section Stack
  5423. This is one of the ELF section stack manipulation directives. The others are
  5424. @code{.section} (@pxref{Section}), @code{.subsection} (@pxref{SubSection}),
  5425. @code{.popsection} (@pxref{PopSection}), and @code{.previous}
  5426. (@pxref{Previous}).
  5427. This directive pushes the current section (and subsection) onto the
  5428. top of the section stack, and then replaces the current section and
  5429. subsection with @code{name} and @code{subsection}. The optional
  5430. @code{flags}, @code{type} and @code{arguments} are treated the same
  5431. as in the @code{.section} (@pxref{Section}) directive.
  5432. @end ifset
  5433. @node Quad
  5434. @section @code{.quad @var{bignums}}
  5435. @cindex @code{quad} directive
  5436. @code{.quad} expects zero or more bignums, separated by commas. For
  5437. each bignum, it emits
  5438. @ifclear bignum-16
  5439. an 8-byte integer. If the bignum won't fit in 8 bytes, it prints a
  5440. warning message; and just takes the lowest order 8 bytes of the bignum.
  5441. @cindex eight-byte integer
  5442. @cindex integer, 8-byte
  5443. The term ``quad'' comes from contexts in which a ``word'' is two bytes;
  5444. hence @emph{quad}-word for 8 bytes.
  5445. @end ifclear
  5446. @ifset bignum-16
  5447. a 16-byte integer. If the bignum won't fit in 16 bytes, it prints a
  5448. warning message; and just takes the lowest order 16 bytes of the bignum.
  5449. @cindex sixteen-byte integer
  5450. @cindex integer, 16-byte
  5451. @end ifset
  5452. @node Reloc
  5453. @section @code{.reloc @var{offset}, @var{reloc_name}[, @var{expression}]}
  5454. @cindex @code{reloc} directive
  5455. Generate a relocation at @var{offset} of type @var{reloc_name} with value
  5456. @var{expression}. If @var{offset} is a number, the relocation is generated in
  5457. the current section. If @var{offset} is an expression that resolves to a
  5458. symbol plus offset, the relocation is generated in the given symbol's section.
  5459. @var{expression}, if present, must resolve to a symbol plus addend or to an
  5460. absolute value, but note that not all targets support an addend. e.g. ELF REL
  5461. targets such as i386 store an addend in the section contents rather than in the
  5462. relocation. This low level interface does not support addends stored in the
  5463. section.
  5464. @node Rept
  5465. @section @code{.rept @var{count}}
  5466. @cindex @code{rept} directive
  5467. Repeat the sequence of lines between the @code{.rept} directive and the next
  5468. @code{.endr} directive @var{count} times.
  5469. For example, assembling
  5470. @example
  5471. .rept 3
  5472. .long 0
  5473. .endr
  5474. @end example
  5475. is equivalent to assembling
  5476. @example
  5477. .long 0
  5478. .long 0
  5479. .long 0
  5480. @end example
  5481. A count of zero is allowed, but nothing is generated. Negative counts are not
  5482. allowed and if encountered will be treated as if they were zero.
  5483. @node Sbttl
  5484. @section @code{.sbttl "@var{subheading}"}
  5485. @cindex @code{sbttl} directive
  5486. @cindex subtitles for listings
  5487. @cindex listing control: subtitle
  5488. Use @var{subheading} as the title (third line, immediately after the
  5489. title line) when generating assembly listings.
  5490. This directive affects subsequent pages, as well as the current page if
  5491. it appears within ten lines of the top of a page.
  5492. @ifset COFF
  5493. @node Scl
  5494. @section @code{.scl @var{class}}
  5495. @cindex @code{scl} directive
  5496. @cindex symbol storage class (COFF)
  5497. @cindex COFF symbol storage class
  5498. Set the storage-class value for a symbol. This directive may only be
  5499. used inside a @code{.def}/@code{.endef} pair. Storage class may flag
  5500. whether a symbol is static or external, or it may record further
  5501. symbolic debugging information.
  5502. @end ifset
  5503. @ifset COFF-ELF
  5504. @node Section
  5505. @section @code{.section @var{name}}
  5506. @cindex named section
  5507. Use the @code{.section} directive to assemble the following code into a section
  5508. named @var{name}.
  5509. This directive is only supported for targets that actually support arbitrarily
  5510. named sections; on @code{a.out} targets, for example, it is not accepted, even
  5511. with a standard @code{a.out} section name.
  5512. @ifset COFF
  5513. @ifset ELF
  5514. @c only print the extra heading if both COFF and ELF are set
  5515. @subheading COFF Version
  5516. @end ifset
  5517. @cindex @code{section} directive (COFF version)
  5518. For COFF targets, the @code{.section} directive is used in one of the following
  5519. ways:
  5520. @smallexample
  5521. .section @var{name}[, "@var{flags}"]
  5522. .section @var{name}[, @var{subsection}]
  5523. @end smallexample
  5524. If the optional argument is quoted, it is taken as flags to use for the
  5525. section. Each flag is a single character. The following flags are recognized:
  5526. @table @code
  5527. @item b
  5528. bss section (uninitialized data)
  5529. @item n
  5530. section is not loaded
  5531. @item w
  5532. writable section
  5533. @item d
  5534. data section
  5535. @item e
  5536. exclude section from linking
  5537. @item r
  5538. read-only section
  5539. @item x
  5540. executable section
  5541. @item s
  5542. shared section (meaningful for PE targets)
  5543. @item a
  5544. ignored. (For compatibility with the ELF version)
  5545. @item y
  5546. section is not readable (meaningful for PE targets)
  5547. @item 0-9
  5548. single-digit power-of-two section alignment (GNU extension)
  5549. @end table
  5550. If no flags are specified, the default flags depend upon the section name. If
  5551. the section name is not recognized, the default will be for the section to be
  5552. loaded and writable. Note the @code{n} and @code{w} flags remove attributes
  5553. from the section, rather than adding them, so if they are used on their own it
  5554. will be as if no flags had been specified at all.
  5555. If the optional argument to the @code{.section} directive is not quoted, it is
  5556. taken as a subsection number (@pxref{Sub-Sections}).
  5557. @end ifset
  5558. @ifset ELF
  5559. @ifset COFF
  5560. @c only print the extra heading if both COFF and ELF are set
  5561. @subheading ELF Version
  5562. @end ifset
  5563. @cindex Section Stack
  5564. This is one of the ELF section stack manipulation directives. The others are
  5565. @code{.subsection} (@pxref{SubSection}), @code{.pushsection}
  5566. (@pxref{PushSection}), @code{.popsection} (@pxref{PopSection}), and
  5567. @code{.previous} (@pxref{Previous}).
  5568. @cindex @code{section} directive (ELF version)
  5569. For ELF targets, the @code{.section} directive is used like this:
  5570. @smallexample
  5571. .section @var{name} [, "@var{flags}"[, @@@var{type}[,@var{flag_specific_arguments}]]]
  5572. @end smallexample
  5573. @anchor{Section Name Substitutions}
  5574. @kindex --sectname-subst
  5575. @cindex section name substitution
  5576. If the @samp{--sectname-subst} command-line option is provided, the @var{name}
  5577. argument may contain a substitution sequence. Only @code{%S} is supported
  5578. at the moment, and substitutes the current section name. For example:
  5579. @smallexample
  5580. .macro exception_code
  5581. .section %S.exception
  5582. [exception code here]
  5583. .previous
  5584. .endm
  5585. .text
  5586. [code]
  5587. exception_code
  5588. [...]
  5589. .section .init
  5590. [init code]
  5591. exception_code
  5592. [...]
  5593. @end smallexample
  5594. The two @code{exception_code} invocations above would create the
  5595. @code{.text.exception} and @code{.init.exception} sections respectively.
  5596. This is useful e.g. to discriminate between ancillary sections that are
  5597. tied to setup code to be discarded after use from ancillary sections that
  5598. need to stay resident without having to define multiple @code{exception_code}
  5599. macros just for that purpose.
  5600. The optional @var{flags} argument is a quoted string which may contain any
  5601. combination of the following characters:
  5602. @table @code
  5603. @item a
  5604. section is allocatable
  5605. @item d
  5606. section is a GNU_MBIND section
  5607. @item e
  5608. section is excluded from executable and shared library.
  5609. @item o
  5610. section references a symbol defined in another section (the linked-to
  5611. section) in the same file.
  5612. @item w
  5613. section is writable
  5614. @item x
  5615. section is executable
  5616. @item M
  5617. section is mergeable
  5618. @item S
  5619. section contains zero terminated strings
  5620. @item G
  5621. section is a member of a section group
  5622. @item T
  5623. section is used for thread-local-storage
  5624. @item ?
  5625. section is a member of the previously-current section's group, if any
  5626. @item R
  5627. retained section (apply SHF_GNU_RETAIN to prevent linker garbage
  5628. collection, GNU ELF extension)
  5629. @item @code{<number>}
  5630. a numeric value indicating the bits to be set in the ELF section header's flags
  5631. field. Note - if one or more of the alphabetic characters described above is
  5632. also included in the flags field, their bit values will be ORed into the
  5633. resulting value.
  5634. @item @code{<target specific>}
  5635. some targets extend this list with their own flag characters
  5636. @end table
  5637. Note - once a section's flags have been set they cannot be changed. There are
  5638. a few exceptions to this rule however. Processor and application specific
  5639. flags can be added to an already defined section. The @code{.interp},
  5640. @code{.strtab} and @code{.symtab} sections can have the allocate flag
  5641. (@code{a}) set after they are initially defined, and the @code{.note-GNU-stack}
  5642. section may have the executable (@code{x}) flag added. Also note that the
  5643. @code{.attach_to_group} directive can be used to add a section to a group even
  5644. if the section was not originally declared to be part of that group.
  5645. The optional @var{type} argument may contain one of the following constants:
  5646. @table @code
  5647. @item @@progbits
  5648. section contains data
  5649. @item @@nobits
  5650. section does not contain data (i.e., section only occupies space)
  5651. @item @@note
  5652. section contains data which is used by things other than the program
  5653. @item @@init_array
  5654. section contains an array of pointers to init functions
  5655. @item @@fini_array
  5656. section contains an array of pointers to finish functions
  5657. @item @@preinit_array
  5658. section contains an array of pointers to pre-init functions
  5659. @item @@@code{<number>}
  5660. a numeric value to be set as the ELF section header's type field.
  5661. @item @@@code{<target specific>}
  5662. some targets extend this list with their own types
  5663. @end table
  5664. Many targets only support the first three section types. The type may be
  5665. enclosed in double quotes if necessary.
  5666. Note on targets where the @code{@@} character is the start of a comment (eg
  5667. ARM) then another character is used instead. For example the ARM port uses the
  5668. @code{%} character.
  5669. Note - some sections, eg @code{.text} and @code{.data} are considered to be
  5670. special and have fixed types. Any attempt to declare them with a different
  5671. type will generate an error from the assembler.
  5672. If @var{flags} contains the @code{M} symbol then the @var{type} argument must
  5673. be specified as well as an extra argument---@var{entsize}---like this:
  5674. @smallexample
  5675. .section @var{name} , "@var{flags}"M, @@@var{type}, @var{entsize}
  5676. @end smallexample
  5677. Sections with the @code{M} flag but not @code{S} flag must contain fixed size
  5678. constants, each @var{entsize} octets long. Sections with both @code{M} and
  5679. @code{S} must contain zero terminated strings where each character is
  5680. @var{entsize} bytes long. The linker may remove duplicates within sections with
  5681. the same name, same entity size and same flags. @var{entsize} must be an
  5682. absolute expression. For sections with both @code{M} and @code{S}, a string
  5683. which is a suffix of a larger string is considered a duplicate. Thus
  5684. @code{"def"} will be merged with @code{"abcdef"}; A reference to the first
  5685. @code{"def"} will be changed to a reference to @code{"abcdef"+3}.
  5686. If @var{flags} contains the @code{o} flag, then the @var{type} argument
  5687. must be present along with an additional field like this:
  5688. @smallexample
  5689. .section @var{name},"@var{flags}"o,@@@var{type},@var{SymbolName}|@var{SectionIndex}
  5690. @end smallexample
  5691. The @var{SymbolName} field specifies the symbol name which the section
  5692. references. Alternatively a numeric @var{SectionIndex} can be provided. This
  5693. is not generally a good idea as section indicies are rarely known at assembly
  5694. time, but the facility is provided for testing purposes. An index of zero is
  5695. allowed. It indicates that the linked-to section has already been discarded.
  5696. Note: If both the @var{M} and @var{o} flags are present, then the fields
  5697. for the Merge flag should come first, like this:
  5698. @smallexample
  5699. .section @var{name},"@var{flags}"Mo,@@@var{type},@var{entsize},@var{SymbolName}
  5700. @end smallexample
  5701. If @var{flags} contains the @code{G} symbol then the @var{type} argument must
  5702. be present along with an additional field like this:
  5703. @smallexample
  5704. .section @var{name} , "@var{flags}"G, @@@var{type}, @var{GroupName}[, @var{linkage}]
  5705. @end smallexample
  5706. The @var{GroupName} field specifies the name of the section group to which this
  5707. particular section belongs. The optional linkage field can contain:
  5708. @table @code
  5709. @item comdat
  5710. indicates that only one copy of this section should be retained
  5711. @item .gnu.linkonce
  5712. an alias for comdat
  5713. @end table
  5714. Note: if both the @var{M} and @var{G} flags are present then the fields for
  5715. the Merge flag should come first, like this:
  5716. @smallexample
  5717. .section @var{name} , "@var{flags}"MG, @@@var{type}, @var{entsize}, @var{GroupName}[, @var{linkage}]
  5718. @end smallexample
  5719. If both @code{o} flag and @code{G} flag are present, then the
  5720. @var{SymbolName} field for @code{o} comes first, like this:
  5721. @smallexample
  5722. .section @var{name},"@var{flags}"oG,@@@var{type},@var{SymbolName},@var{GroupName}[,@var{linkage}]
  5723. @end smallexample
  5724. If @var{flags} contains the @code{?} symbol then it may not also contain the
  5725. @code{G} symbol and the @var{GroupName} or @var{linkage} fields should not be
  5726. present. Instead, @code{?} says to consider the section that's current before
  5727. this directive. If that section used @code{G}, then the new section will use
  5728. @code{G} with those same @var{GroupName} and @var{linkage} fields implicitly.
  5729. If not, then the @code{?} symbol has no effect.
  5730. The optional @var{unique,@code{<number>}} argument must come last. It
  5731. assigns @var{@code{<number>}} as a unique section ID to distinguish
  5732. different sections with the same section name like these:
  5733. @smallexample
  5734. .section @var{name},"@var{flags}",@@@var{type},@var{unique,@code{<number>}}
  5735. .section @var{name},"@var{flags}"G,@@@var{type},@var{GroupName},[@var{linkage}],@var{unique,@code{<number>}}
  5736. .section @var{name},"@var{flags}"MG,@@@var{type},@var{entsize},@var{GroupName}[,@var{linkage}],@var{unique,@code{<number>}}
  5737. @end smallexample
  5738. The valid values of @var{@code{<number>}} are between 0 and 4294967295.
  5739. If no flags are specified, the default flags depend upon the section name. If
  5740. the section name is not recognized, the default will be for the section to have
  5741. none of the above flags: it will not be allocated in memory, nor writable, nor
  5742. executable. The section will contain data.
  5743. For ELF targets, the assembler supports another type of @code{.section}
  5744. directive for compatibility with the Solaris assembler:
  5745. @smallexample
  5746. .section "@var{name}"[, @var{flags}...]
  5747. @end smallexample
  5748. Note that the section name is quoted. There may be a sequence of comma
  5749. separated flags:
  5750. @table @code
  5751. @item #alloc
  5752. section is allocatable
  5753. @item #write
  5754. section is writable
  5755. @item #execinstr
  5756. section is executable
  5757. @item #exclude
  5758. section is excluded from executable and shared library.
  5759. @item #tls
  5760. section is used for thread local storage
  5761. @end table
  5762. This directive replaces the current section and subsection. See the
  5763. contents of the gas testsuite directory @code{gas/testsuite/gas/elf} for
  5764. some examples of how this directive and the other section stack directives
  5765. work.
  5766. @end ifset
  5767. @end ifset
  5768. @node Set
  5769. @section @code{.set @var{symbol}, @var{expression}}
  5770. @cindex @code{set} directive
  5771. @cindex symbol value, setting
  5772. Set the value of @var{symbol} to @var{expression}. This
  5773. changes @var{symbol}'s value and type to conform to
  5774. @var{expression}. If @var{symbol} was flagged as external, it remains
  5775. flagged (@pxref{Symbol Attributes}).
  5776. You may @code{.set} a symbol many times in the same assembly provided that the
  5777. values given to the symbol are constants. Values that are based on expressions
  5778. involving other symbols are allowed, but some targets may restrict this to only
  5779. being done once per assembly. This is because those targets do not set the
  5780. addresses of symbols at assembly time, but rather delay the assignment until a
  5781. final link is performed. This allows the linker a chance to change the code in
  5782. the files, changing the location of, and the relative distance between, various
  5783. different symbols.
  5784. If you @code{.set} a global symbol, the value stored in the object
  5785. file is the last value stored into it.
  5786. @ifset Z80
  5787. On Z80 @code{set} is a real instruction, use @code{.set} or
  5788. @samp{@var{symbol} defl @var{expression}} instead.
  5789. @end ifset
  5790. @node Short
  5791. @section @code{.short @var{expressions}}
  5792. @cindex @code{short} directive
  5793. @ifset GENERIC
  5794. @code{.short} is normally the same as @samp{.word}.
  5795. @xref{Word,,@code{.word}}.
  5796. In some configurations, however, @code{.short} and @code{.word} generate
  5797. numbers of different lengths. @xref{Machine Dependencies}.
  5798. @end ifset
  5799. @ifclear GENERIC
  5800. @ifset W16
  5801. @code{.short} is the same as @samp{.word}. @xref{Word,,@code{.word}}.
  5802. @end ifset
  5803. @ifset W32
  5804. This expects zero or more @var{expressions}, and emits
  5805. a 16 bit number for each.
  5806. @end ifset
  5807. @end ifclear
  5808. @node Single
  5809. @section @code{.single @var{flonums}}
  5810. @cindex @code{single} directive
  5811. @cindex floating point numbers (single)
  5812. This directive assembles zero or more flonums, separated by commas. It
  5813. has the same effect as @code{.float}.
  5814. @ifset GENERIC
  5815. The exact kind of floating point numbers emitted depends on how
  5816. @command{@value{AS}} is configured. @xref{Machine Dependencies}.
  5817. @end ifset
  5818. @ifclear GENERIC
  5819. @ifset IEEEFLOAT
  5820. On the @value{TARGET} family, @code{.single} emits 32-bit floating point
  5821. numbers in @sc{ieee} format.
  5822. @end ifset
  5823. @end ifclear
  5824. @ifset COFF-ELF
  5825. @node Size
  5826. @section @code{.size}
  5827. This directive is used to set the size associated with a symbol.
  5828. @ifset COFF
  5829. @ifset ELF
  5830. @c only print the extra heading if both COFF and ELF are set
  5831. @subheading COFF Version
  5832. @end ifset
  5833. @cindex @code{size} directive (COFF version)
  5834. For COFF targets, the @code{.size} directive is only permitted inside
  5835. @code{.def}/@code{.endef} pairs. It is used like this:
  5836. @smallexample
  5837. .size @var{expression}
  5838. @end smallexample
  5839. @end ifset
  5840. @ifset ELF
  5841. @ifset COFF
  5842. @c only print the extra heading if both COFF and ELF are set
  5843. @subheading ELF Version
  5844. @end ifset
  5845. @cindex @code{size} directive (ELF version)
  5846. For ELF targets, the @code{.size} directive is used like this:
  5847. @smallexample
  5848. .size @var{name} , @var{expression}
  5849. @end smallexample
  5850. This directive sets the size associated with a symbol @var{name}.
  5851. The size in bytes is computed from @var{expression} which can make use of label
  5852. arithmetic. This directive is typically used to set the size of function
  5853. symbols.
  5854. @end ifset
  5855. @end ifset
  5856. @ifclear no-space-dir
  5857. @node Skip
  5858. @section @code{.skip @var{size} [,@var{fill}]}
  5859. @cindex @code{skip} directive
  5860. @cindex filling memory
  5861. This directive emits @var{size} bytes, each of value @var{fill}. Both
  5862. @var{size} and @var{fill} are absolute expressions. If the comma and
  5863. @var{fill} are omitted, @var{fill} is assumed to be zero. This is the same as
  5864. @samp{.space}.
  5865. @end ifclear
  5866. @node Sleb128
  5867. @section @code{.sleb128 @var{expressions}}
  5868. @cindex @code{sleb128} directive
  5869. @var{sleb128} stands for ``signed little endian base 128.'' This is a
  5870. compact, variable length representation of numbers used by the DWARF
  5871. symbolic debugging format. @xref{Uleb128, ,@code{.uleb128}}.
  5872. @ifclear no-space-dir
  5873. @node Space
  5874. @section @code{.space @var{size} [,@var{fill}]}
  5875. @cindex @code{space} directive
  5876. @cindex filling memory
  5877. This directive emits @var{size} bytes, each of value @var{fill}. Both
  5878. @var{size} and @var{fill} are absolute expressions. If the comma
  5879. and @var{fill} are omitted, @var{fill} is assumed to be zero. This is the same
  5880. as @samp{.skip}.
  5881. @ifset HPPA
  5882. @quotation
  5883. @emph{Warning:} @code{.space} has a completely different meaning for HPPA
  5884. targets; use @code{.block} as a substitute. See @cite{HP9000 Series 800
  5885. Assembly Language Reference Manual} (HP 92432-90001) for the meaning of the
  5886. @code{.space} directive. @xref{HPPA Directives,,HPPA Assembler Directives},
  5887. for a summary.
  5888. @end quotation
  5889. @end ifset
  5890. @end ifclear
  5891. @ifset have-stabs
  5892. @node Stab
  5893. @section @code{.stabd, .stabn, .stabs}
  5894. @cindex symbolic debuggers, information for
  5895. @cindex @code{stab@var{x}} directives
  5896. There are three directives that begin @samp{.stab}.
  5897. All emit symbols (@pxref{Symbols}), for use by symbolic debuggers.
  5898. The symbols are not entered in the @command{@value{AS}} hash table: they
  5899. cannot be referenced elsewhere in the source file.
  5900. Up to five fields are required:
  5901. @table @var
  5902. @item string
  5903. This is the symbol's name. It may contain any character except
  5904. @samp{\000}, so is more general than ordinary symbol names. Some
  5905. debuggers used to code arbitrarily complex structures into symbol names
  5906. using this field.
  5907. @item type
  5908. An absolute expression. The symbol's type is set to the low 8 bits of
  5909. this expression. Any bit pattern is permitted, but @code{@value{LD}}
  5910. and debuggers choke on silly bit patterns.
  5911. @item other
  5912. An absolute expression. The symbol's ``other'' attribute is set to the
  5913. low 8 bits of this expression.
  5914. @item desc
  5915. An absolute expression. The symbol's descriptor is set to the low 16
  5916. bits of this expression.
  5917. @item value
  5918. An absolute expression which becomes the symbol's value.
  5919. @end table
  5920. If a warning is detected while reading a @code{.stabd}, @code{.stabn},
  5921. or @code{.stabs} statement, the symbol has probably already been created;
  5922. you get a half-formed symbol in your object file. This is
  5923. compatible with earlier assemblers!
  5924. @table @code
  5925. @cindex @code{stabd} directive
  5926. @item .stabd @var{type} , @var{other} , @var{desc}
  5927. The ``name'' of the symbol generated is not even an empty string.
  5928. It is a null pointer, for compatibility. Older assemblers used a
  5929. null pointer so they didn't waste space in object files with empty
  5930. strings.
  5931. The symbol's value is set to the location counter,
  5932. relocatably. When your program is linked, the value of this symbol
  5933. is the address of the location counter when the @code{.stabd} was
  5934. assembled.
  5935. @cindex @code{stabn} directive
  5936. @item .stabn @var{type} , @var{other} , @var{desc} , @var{value}
  5937. The name of the symbol is set to the empty string @code{""}.
  5938. @cindex @code{stabs} directive
  5939. @item .stabs @var{string} , @var{type} , @var{other} , @var{desc} , @var{value}
  5940. All five fields are specified.
  5941. @end table
  5942. @end ifset
  5943. @c end have-stabs
  5944. @node String
  5945. @section @code{.string} "@var{str}", @code{.string8} "@var{str}", @code{.string16}
  5946. "@var{str}", @code{.string32} "@var{str}", @code{.string64} "@var{str}"
  5947. @cindex string, copying to object file
  5948. @cindex string8, copying to object file
  5949. @cindex string16, copying to object file
  5950. @cindex string32, copying to object file
  5951. @cindex string64, copying to object file
  5952. @cindex @code{string} directive
  5953. @cindex @code{string8} directive
  5954. @cindex @code{string16} directive
  5955. @cindex @code{string32} directive
  5956. @cindex @code{string64} directive
  5957. Copy the characters in @var{str} to the object file. You may specify more than
  5958. one string to copy, separated by commas. Unless otherwise specified for a
  5959. particular machine, the assembler marks the end of each string with a 0 byte.
  5960. You can use any of the escape sequences described in @ref{Strings,,Strings}.
  5961. The variants @code{string16}, @code{string32} and @code{string64} differ from
  5962. the @code{string} pseudo opcode in that each 8-bit character from @var{str} is
  5963. copied and expanded to 16, 32 or 64 bits respectively. The expanded characters
  5964. are stored in target endianness byte order.
  5965. Example:
  5966. @smallexample
  5967. .string32 "BYE"
  5968. expands to:
  5969. .string "B\0\0\0Y\0\0\0E\0\0\0" /* On little endian targets. */
  5970. .string "\0\0\0B\0\0\0Y\0\0\0E" /* On big endian targets. */
  5971. @end smallexample
  5972. @node Struct
  5973. @section @code{.struct @var{expression}}
  5974. @cindex @code{struct} directive
  5975. Switch to the absolute section, and set the section offset to @var{expression},
  5976. which must be an absolute expression. You might use this as follows:
  5977. @smallexample
  5978. .struct 0
  5979. field1:
  5980. .struct field1 + 4
  5981. field2:
  5982. .struct field2 + 4
  5983. field3:
  5984. @end smallexample
  5985. This would define the symbol @code{field1} to have the value 0, the symbol
  5986. @code{field2} to have the value 4, and the symbol @code{field3} to have the
  5987. value 8. Assembly would be left in the absolute section, and you would need to
  5988. use a @code{.section} directive of some sort to change to some other section
  5989. before further assembly.
  5990. @ifset ELF
  5991. @node SubSection
  5992. @section @code{.subsection @var{name}}
  5993. @cindex @code{subsection} directive
  5994. @cindex Section Stack
  5995. This is one of the ELF section stack manipulation directives. The others are
  5996. @code{.section} (@pxref{Section}), @code{.pushsection} (@pxref{PushSection}),
  5997. @code{.popsection} (@pxref{PopSection}), and @code{.previous}
  5998. (@pxref{Previous}).
  5999. This directive replaces the current subsection with @code{name}. The current
  6000. section is not changed. The replaced subsection is put onto the section stack
  6001. in place of the then current top of stack subsection.
  6002. @end ifset
  6003. @ifset ELF
  6004. @node Symver
  6005. @section @code{.symver}
  6006. @cindex @code{symver} directive
  6007. @cindex symbol versioning
  6008. @cindex versions of symbols
  6009. Use the @code{.symver} directive to bind symbols to specific version nodes
  6010. within a source file. This is only supported on ELF platforms, and is
  6011. typically used when assembling files to be linked into a shared library.
  6012. There are cases where it may make sense to use this in objects to be bound
  6013. into an application itself so as to override a versioned symbol from a
  6014. shared library.
  6015. For ELF targets, the @code{.symver} directive can be used like this:
  6016. @smallexample
  6017. .symver @var{name}, @var{name2@@nodename}[ ,@var{visibility}]
  6018. @end smallexample
  6019. If the original symbol @var{name} is defined within the file
  6020. being assembled, the @code{.symver} directive effectively creates a symbol
  6021. alias with the name @var{name2@@nodename}, and in fact the main reason that we
  6022. just don't try and create a regular alias is that the @var{@@} character isn't
  6023. permitted in symbol names. The @var{name2} part of the name is the actual name
  6024. of the symbol by which it will be externally referenced. The name @var{name}
  6025. itself is merely a name of convenience that is used so that it is possible to
  6026. have definitions for multiple versions of a function within a single source
  6027. file, and so that the compiler can unambiguously know which version of a
  6028. function is being mentioned. The @var{nodename} portion of the alias should be
  6029. the name of a node specified in the version script supplied to the linker when
  6030. building a shared library. If you are attempting to override a versioned
  6031. symbol from a shared library, then @var{nodename} should correspond to the
  6032. nodename of the symbol you are trying to override. The optional argument
  6033. @var{visibility} updates the visibility of the original symbol. The valid
  6034. visibilities are @code{local}, @code{hidden}, and @code{remove}. The
  6035. @code{local} visibility makes the original symbol a local symbol
  6036. (@pxref{Local}). The @code{hidden} visibility sets the visibility of the
  6037. original symbol to @code{hidden} (@pxref{Hidden}). The @code{remove}
  6038. visibility removes the original symbol from the symbol table. If visibility
  6039. isn't specified, the original symbol is unchanged.
  6040. If the symbol @var{name} is not defined within the file being assembled, all
  6041. references to @var{name} will be changed to @var{name2@@nodename}. If no
  6042. reference to @var{name} is made, @var{name2@@nodename} will be removed from the
  6043. symbol table.
  6044. Another usage of the @code{.symver} directive is:
  6045. @smallexample
  6046. .symver @var{name}, @var{name2@@@@nodename}
  6047. @end smallexample
  6048. In this case, the symbol @var{name} must exist and be defined within
  6049. the file being assembled. It is similar to @var{name2@@nodename}. The
  6050. difference is @var{name2@@@@nodename} will also be used to resolve
  6051. references to @var{name2} by the linker.
  6052. The third usage of the @code{.symver} directive is:
  6053. @smallexample
  6054. .symver @var{name}, @var{name2@@@@@@nodename}
  6055. @end smallexample
  6056. When @var{name} is not defined within the
  6057. file being assembled, it is treated as @var{name2@@nodename}. When
  6058. @var{name} is defined within the file being assembled, the symbol
  6059. name, @var{name}, will be changed to @var{name2@@@@nodename}.
  6060. @end ifset
  6061. @ifset COFF
  6062. @node Tag
  6063. @section @code{.tag @var{structname}}
  6064. @cindex COFF structure debugging
  6065. @cindex structure debugging, COFF
  6066. @cindex @code{tag} directive
  6067. This directive is generated by compilers to include auxiliary debugging
  6068. information in the symbol table. It is only permitted inside
  6069. @code{.def}/@code{.endef} pairs. Tags are used to link structure
  6070. definitions in the symbol table with instances of those structures.
  6071. @end ifset
  6072. @node Text
  6073. @section @code{.text @var{subsection}}
  6074. @cindex @code{text} directive
  6075. Tells @command{@value{AS}} to assemble the following statements onto the end of
  6076. the text subsection numbered @var{subsection}, which is an absolute
  6077. expression. If @var{subsection} is omitted, subsection number zero
  6078. is used.
  6079. @node Title
  6080. @section @code{.title "@var{heading}"}
  6081. @cindex @code{title} directive
  6082. @cindex listing control: title line
  6083. Use @var{heading} as the title (second line, immediately after the
  6084. source file name and pagenumber) when generating assembly listings.
  6085. This directive affects subsequent pages, as well as the current page if
  6086. it appears within ten lines of the top of a page.
  6087. @ifset ELF
  6088. @node Tls_common
  6089. @section @code{.tls_common @var{symbol}, @var{length}[, @var{alignment}]}
  6090. @cindex @code{tls_common} directive
  6091. This directive behaves in the same way as the @code{.comm} directive
  6092. (@pxref{Comm}) except that @var{symbol} has type of STT_TLS instead of
  6093. STT_OBJECT.
  6094. @end ifset
  6095. @ifset COFF-ELF
  6096. @node Type
  6097. @section @code{.type}
  6098. This directive is used to set the type of a symbol.
  6099. @ifset COFF
  6100. @ifset ELF
  6101. @c only print the extra heading if both COFF and ELF are set
  6102. @subheading COFF Version
  6103. @end ifset
  6104. @cindex COFF symbol type
  6105. @cindex symbol type, COFF
  6106. @cindex @code{type} directive (COFF version)
  6107. For COFF targets, this directive is permitted only within
  6108. @code{.def}/@code{.endef} pairs. It is used like this:
  6109. @smallexample
  6110. .type @var{int}
  6111. @end smallexample
  6112. This records the integer @var{int} as the type attribute of a symbol table
  6113. entry.
  6114. @end ifset
  6115. @ifset ELF
  6116. @ifset COFF
  6117. @c only print the extra heading if both COFF and ELF are set
  6118. @subheading ELF Version
  6119. @end ifset
  6120. @cindex ELF symbol type
  6121. @cindex symbol type, ELF
  6122. @cindex @code{type} directive (ELF version)
  6123. For ELF targets, the @code{.type} directive is used like this:
  6124. @smallexample
  6125. .type @var{name} , @var{type description}
  6126. @end smallexample
  6127. This sets the type of symbol @var{name} to be either a
  6128. function symbol or an object symbol. There are five different syntaxes
  6129. supported for the @var{type description} field, in order to provide
  6130. compatibility with various other assemblers.
  6131. Because some of the characters used in these syntaxes (such as @samp{@@} and
  6132. @samp{#}) are comment characters for some architectures, some of the syntaxes
  6133. below do not work on all architectures. The first variant will be accepted by
  6134. the GNU assembler on all architectures so that variant should be used for
  6135. maximum portability, if you do not need to assemble your code with other
  6136. assemblers.
  6137. The syntaxes supported are:
  6138. @smallexample
  6139. .type <name> STT_<TYPE_IN_UPPER_CASE>
  6140. .type <name>,#<type>
  6141. .type <name>,@@<type>
  6142. .type <name>,%<type>
  6143. .type <name>,"<type>"
  6144. @end smallexample
  6145. The types supported are:
  6146. @table @gcctabopt
  6147. @item STT_FUNC
  6148. @itemx function
  6149. Mark the symbol as being a function name.
  6150. @item STT_GNU_IFUNC
  6151. @itemx gnu_indirect_function
  6152. Mark the symbol as an indirect function when evaluated during reloc
  6153. processing. (This is only supported on assemblers targeting GNU systems).
  6154. @item STT_OBJECT
  6155. @itemx object
  6156. Mark the symbol as being a data object.
  6157. @item STT_TLS
  6158. @itemx tls_object
  6159. Mark the symbol as being a thread-local data object.
  6160. @item STT_COMMON
  6161. @itemx common
  6162. Mark the symbol as being a common data object.
  6163. @item STT_NOTYPE
  6164. @itemx notype
  6165. Does not mark the symbol in any way. It is supported just for completeness.
  6166. @item gnu_unique_object
  6167. Marks the symbol as being a globally unique data object. The dynamic linker
  6168. will make sure that in the entire process there is just one symbol with this
  6169. name and type in use. (This is only supported on assemblers targeting GNU
  6170. systems).
  6171. @end table
  6172. Changing between incompatible types other than from/to STT_NOTYPE will
  6173. result in a diagnostic. An intermediate change to STT_NOTYPE will silence
  6174. this.
  6175. Note: Some targets support extra types in addition to those listed above.
  6176. @end ifset
  6177. @end ifset
  6178. @node Uleb128
  6179. @section @code{.uleb128 @var{expressions}}
  6180. @cindex @code{uleb128} directive
  6181. @var{uleb128} stands for ``unsigned little endian base 128.'' This is a
  6182. compact, variable length representation of numbers used by the DWARF
  6183. symbolic debugging format. @xref{Sleb128, ,@code{.sleb128}}.
  6184. @ifset COFF
  6185. @node Val
  6186. @section @code{.val @var{addr}}
  6187. @cindex @code{val} directive
  6188. @cindex COFF value attribute
  6189. @cindex value attribute, COFF
  6190. This directive, permitted only within @code{.def}/@code{.endef} pairs,
  6191. records the address @var{addr} as the value attribute of a symbol table
  6192. entry.
  6193. @end ifset
  6194. @ifset ELF
  6195. @node Version
  6196. @section @code{.version "@var{string}"}
  6197. @cindex @code{version} directive
  6198. This directive creates a @code{.note} section and places into it an ELF
  6199. formatted note of type NT_VERSION. The note's name is set to @code{string}.
  6200. @end ifset
  6201. @ifset ELF
  6202. @node VTableEntry
  6203. @section @code{.vtable_entry @var{table}, @var{offset}}
  6204. @cindex @code{vtable_entry} directive
  6205. This directive finds or creates a symbol @code{table} and creates a
  6206. @code{VTABLE_ENTRY} relocation for it with an addend of @code{offset}.
  6207. @node VTableInherit
  6208. @section @code{.vtable_inherit @var{child}, @var{parent}}
  6209. @cindex @code{vtable_inherit} directive
  6210. This directive finds the symbol @code{child} and finds or creates the symbol
  6211. @code{parent} and then creates a @code{VTABLE_INHERIT} relocation for the
  6212. parent whose addend is the value of the child symbol. As a special case the
  6213. parent name of @code{0} is treated as referring to the @code{*ABS*} section.
  6214. @end ifset
  6215. @node Warning
  6216. @section @code{.warning "@var{string}"}
  6217. @cindex warning directive
  6218. Similar to the directive @code{.error}
  6219. (@pxref{Error,,@code{.error "@var{string}"}}), but just emits a warning.
  6220. @node Weak
  6221. @section @code{.weak @var{names}}
  6222. @cindex @code{weak} directive
  6223. This directive sets the weak attribute on the comma separated list of symbol
  6224. @code{names}. If the symbols do not already exist, they will be created.
  6225. On COFF targets other than PE, weak symbols are a GNU extension. This
  6226. directive sets the weak attribute on the comma separated list of symbol
  6227. @code{names}. If the symbols do not already exist, they will be created.
  6228. On the PE target, weak symbols are supported natively as weak aliases.
  6229. When a weak symbol is created that is not an alias, GAS creates an
  6230. alternate symbol to hold the default value.
  6231. @node Weakref
  6232. @section @code{.weakref @var{alias}, @var{target}}
  6233. @cindex @code{weakref} directive
  6234. This directive creates an alias to the target symbol that enables the symbol to
  6235. be referenced with weak-symbol semantics, but without actually making it weak.
  6236. If direct references or definitions of the symbol are present, then the symbol
  6237. will not be weak, but if all references to it are through weak references, the
  6238. symbol will be marked as weak in the symbol table.
  6239. The effect is equivalent to moving all references to the alias to a separate
  6240. assembly source file, renaming the alias to the symbol in it, declaring the
  6241. symbol as weak there, and running a reloadable link to merge the object files
  6242. resulting from the assembly of the new source file and the old source file that
  6243. had the references to the alias removed.
  6244. The alias itself never makes to the symbol table, and is entirely handled
  6245. within the assembler.
  6246. @node Word
  6247. @section @code{.word @var{expressions}}
  6248. @cindex @code{word} directive
  6249. This directive expects zero or more @var{expressions}, of any section,
  6250. separated by commas.
  6251. @ifclear GENERIC
  6252. @ifset W32
  6253. For each expression, @command{@value{AS}} emits a 32-bit number.
  6254. @end ifset
  6255. @ifset W16
  6256. For each expression, @command{@value{AS}} emits a 16-bit number.
  6257. @end ifset
  6258. @end ifclear
  6259. @ifset GENERIC
  6260. The size of the number emitted, and its byte order,
  6261. depend on what target computer the assembly is for.
  6262. @end ifset
  6263. @c on sparc the "special treatment to support compilers" doesn't
  6264. @c happen---32-bit addressability, period; no long/short jumps.
  6265. @ifset DIFF-TBL-KLUGE
  6266. @cindex difference tables altered
  6267. @cindex altered difference tables
  6268. @quotation
  6269. @emph{Warning: Special Treatment to support Compilers}
  6270. @end quotation
  6271. @ifset GENERIC
  6272. Machines with a 32-bit address space, but that do less than 32-bit
  6273. addressing, require the following special treatment. If the machine of
  6274. interest to you does 32-bit addressing (or doesn't require it;
  6275. @pxref{Machine Dependencies}), you can ignore this issue.
  6276. @end ifset
  6277. In order to assemble compiler output into something that works,
  6278. @command{@value{AS}} occasionally does strange things to @samp{.word} directives.
  6279. Directives of the form @samp{.word sym1-sym2} are often emitted by
  6280. compilers as part of jump tables. Therefore, when @command{@value{AS}} assembles a
  6281. directive of the form @samp{.word sym1-sym2}, and the difference between
  6282. @code{sym1} and @code{sym2} does not fit in 16 bits, @command{@value{AS}}
  6283. creates a @dfn{secondary jump table}, immediately before the next label.
  6284. This secondary jump table is preceded by a short-jump to the
  6285. first byte after the secondary table. This short-jump prevents the flow
  6286. of control from accidentally falling into the new table. Inside the
  6287. table is a long-jump to @code{sym2}. The original @samp{.word}
  6288. contains @code{sym1} minus the address of the long-jump to
  6289. @code{sym2}.
  6290. If there were several occurrences of @samp{.word sym1-sym2} before the
  6291. secondary jump table, all of them are adjusted. If there was a
  6292. @samp{.word sym3-sym4}, that also did not fit in sixteen bits, a
  6293. long-jump to @code{sym4} is included in the secondary jump table,
  6294. and the @code{.word} directives are adjusted to contain @code{sym3}
  6295. minus the address of the long-jump to @code{sym4}; and so on, for as many
  6296. entries in the original jump table as necessary.
  6297. @ifset INTERNALS
  6298. @emph{This feature may be disabled by compiling @command{@value{AS}} with the
  6299. @samp{-DWORKING_DOT_WORD} option.} This feature is likely to confuse
  6300. assembly language programmers.
  6301. @end ifset
  6302. @end ifset
  6303. @c end DIFF-TBL-KLUGE
  6304. @ifclear no-space-dir
  6305. @node Zero
  6306. @section @code{.zero @var{size}}
  6307. @cindex @code{zero} directive
  6308. @cindex filling memory with zero bytes
  6309. This directive emits @var{size} 0-valued bytes. @var{size} must be an absolute
  6310. expression. This directive is actually an alias for the @samp{.skip} directive
  6311. so it can take an optional second argument of the value to store in the bytes
  6312. instead of zero. Using @samp{.zero} in this way would be confusing however.
  6313. @end ifclear
  6314. @node 2byte
  6315. @section @code{.2byte @var{expression} [, @var{expression}]*}
  6316. @cindex @code{2byte} directive
  6317. @cindex two-byte integer
  6318. @cindex integer, 2-byte
  6319. This directive expects zero or more expressions, separated by commas. If there
  6320. are no expressions then the directive does nothing. Otherwise each expression
  6321. is evaluated in turn and placed in the next two bytes of the current output
  6322. section, using the endian model of the target. If an expression will not fit
  6323. in two bytes, a warning message is displayed and the least significant two
  6324. bytes of the expression's value are used. If an expression cannot be evaluated
  6325. at assembly time then relocations will be generated in order to compute the
  6326. value at link time.
  6327. This directive does not apply any alignment before or after inserting the
  6328. values. As a result of this, if relocations are generated, they may be
  6329. different from those used for inserting values with a guaranteed alignment.
  6330. @node 4byte
  6331. @section @code{.4byte @var{expression} [, @var{expression}]*}
  6332. @cindex @code{4byte} directive
  6333. @cindex four-byte integer
  6334. @cindex integer, 4-byte
  6335. Like the @option{.2byte} directive, except that it inserts unaligned, four byte
  6336. long values into the output.
  6337. @node 8byte
  6338. @section @code{.8byte @var{expression} [, @var{expression}]*}
  6339. @cindex @code{8byte} directive
  6340. @cindex eight-byte integer
  6341. @cindex integer, 8-byte
  6342. Like the @option{.2byte} directive, except that it inserts unaligned, eight
  6343. byte long bignum values into the output.
  6344. @node Deprecated
  6345. @section Deprecated Directives
  6346. @cindex deprecated directives
  6347. @cindex obsolescent directives
  6348. One day these directives won't work.
  6349. They are included for compatibility with older assemblers.
  6350. @table @t
  6351. @item .abort
  6352. @item .line
  6353. @end table
  6354. @ifset ELF
  6355. @node Object Attributes
  6356. @chapter Object Attributes
  6357. @cindex object attributes
  6358. @command{@value{AS}} assembles source files written for a specific architecture
  6359. into object files for that architecture. But not all object files are alike.
  6360. Many architectures support incompatible variations. For instance, floating
  6361. point arguments might be passed in floating point registers if the object file
  6362. requires hardware floating point support---or floating point arguments might be
  6363. passed in integer registers if the object file supports processors with no
  6364. hardware floating point unit. Or, if two objects are built for different
  6365. generations of the same architecture, the combination may require the
  6366. newer generation at run-time.
  6367. This information is useful during and after linking. At link time,
  6368. @command{@value{LD}} can warn about incompatible object files. After link
  6369. time, tools like @command{gdb} can use it to process the linked file
  6370. correctly.
  6371. Compatibility information is recorded as a series of object attributes. Each
  6372. attribute has a @dfn{vendor}, @dfn{tag}, and @dfn{value}. The vendor is a
  6373. string, and indicates who sets the meaning of the tag. The tag is an integer,
  6374. and indicates what property the attribute describes. The value may be a string
  6375. or an integer, and indicates how the property affects this object. Missing
  6376. attributes are the same as attributes with a zero value or empty string value.
  6377. Object attributes were developed as part of the ABI for the ARM Architecture.
  6378. The file format is documented in @cite{ELF for the ARM Architecture}.
  6379. @menu
  6380. * GNU Object Attributes:: @sc{gnu} Object Attributes
  6381. * Defining New Object Attributes:: Defining New Object Attributes
  6382. @end menu
  6383. @node GNU Object Attributes
  6384. @section @sc{gnu} Object Attributes
  6385. The @code{.gnu_attribute} directive records an object attribute
  6386. with vendor @samp{gnu}.
  6387. Except for @samp{Tag_compatibility}, which has both an integer and a string for
  6388. its value, @sc{gnu} attributes have a string value if the tag number is odd and
  6389. an integer value if the tag number is even. The second bit (@code{@var{tag} &
  6390. 2} is set for architecture-independent attributes and clear for
  6391. architecture-dependent ones.
  6392. @subsection Common @sc{gnu} attributes
  6393. These attributes are valid on all architectures.
  6394. @table @r
  6395. @item Tag_compatibility (32)
  6396. The compatibility attribute takes an integer flag value and a vendor name. If
  6397. the flag value is 0, the file is compatible with other toolchains. If it is 1,
  6398. then the file is only compatible with the named toolchain. If it is greater
  6399. than 1, the file can only be processed by other toolchains under some private
  6400. arrangement indicated by the flag value and the vendor name.
  6401. @end table
  6402. @subsection M680x0 Attributes
  6403. @table @r
  6404. @item Tag_GNU_M68K_ABI_FP (4)
  6405. The floating-point ABI used by this object file. The value will be:
  6406. @itemize @bullet
  6407. @item
  6408. 0 for files not affected by the floating-point ABI.
  6409. @item
  6410. 1 for files using double-precision hardware floating-point ABI.
  6411. @item
  6412. 2 for files using the software floating-point ABI.
  6413. @end itemize
  6414. @end table
  6415. @subsection MIPS Attributes
  6416. @table @r
  6417. @item Tag_GNU_MIPS_ABI_FP (4)
  6418. The floating-point ABI used by this object file. The value will be:
  6419. @itemize @bullet
  6420. @item
  6421. 0 for files not affected by the floating-point ABI.
  6422. @item
  6423. 1 for files using the hardware floating-point ABI with a standard
  6424. double-precision FPU.
  6425. @item
  6426. 2 for files using the hardware floating-point ABI with a single-precision FPU.
  6427. @item
  6428. 3 for files using the software floating-point ABI.
  6429. @item
  6430. 4 for files using the deprecated hardware floating-point ABI which used 64-bit
  6431. floating-point registers, 32-bit general-purpose registers and increased the
  6432. number of callee-saved floating-point registers.
  6433. @item
  6434. 5 for files using the hardware floating-point ABI with a double-precision FPU
  6435. with either 32-bit or 64-bit floating-point registers and 32-bit
  6436. general-purpose registers.
  6437. @item
  6438. 6 for files using the hardware floating-point ABI with 64-bit floating-point
  6439. registers and 32-bit general-purpose registers.
  6440. @item
  6441. 7 for files using the hardware floating-point ABI with 64-bit floating-point
  6442. registers, 32-bit general-purpose registers and a rule that forbids the
  6443. direct use of odd-numbered single-precision floating-point registers.
  6444. @end itemize
  6445. @end table
  6446. @subsection PowerPC Attributes
  6447. @table @r
  6448. @item Tag_GNU_Power_ABI_FP (4)
  6449. The floating-point ABI used by this object file. The value will be:
  6450. @itemize @bullet
  6451. @item
  6452. 0 for files not affected by the floating-point ABI.
  6453. @item
  6454. 1 for files using double-precision hardware floating-point ABI.
  6455. @item
  6456. 2 for files using the software floating-point ABI.
  6457. @item
  6458. 3 for files using single-precision hardware floating-point ABI.
  6459. @end itemize
  6460. @item Tag_GNU_Power_ABI_Vector (8)
  6461. The vector ABI used by this object file. The value will be:
  6462. @itemize @bullet
  6463. @item
  6464. 0 for files not affected by the vector ABI.
  6465. @item
  6466. 1 for files using general purpose registers to pass vectors.
  6467. @item
  6468. 2 for files using AltiVec registers to pass vectors.
  6469. @item
  6470. 3 for files using SPE registers to pass vectors.
  6471. @end itemize
  6472. @end table
  6473. @subsection IBM z Systems Attributes
  6474. @table @r
  6475. @item Tag_GNU_S390_ABI_Vector (8)
  6476. The vector ABI used by this object file. The value will be:
  6477. @itemize @bullet
  6478. @item
  6479. 0 for files not affected by the vector ABI.
  6480. @item
  6481. 1 for files using software vector ABI.
  6482. @item
  6483. 2 for files using hardware vector ABI.
  6484. @end itemize
  6485. @end table
  6486. @subsection MSP430 Attributes
  6487. @table @r
  6488. @item Tag_GNU_MSP430_Data_Region (4)
  6489. The data region used by this object file. The value will be:
  6490. @itemize @bullet
  6491. @item
  6492. 0 for files not using the large memory model.
  6493. @item
  6494. 1 for files which have been compiled with the condition that all
  6495. data is in the lower memory region, i.e. below address 0x10000.
  6496. @item
  6497. 2 for files which allow data to be placed in the full 20-bit memory range.
  6498. @end itemize
  6499. @end table
  6500. @node Defining New Object Attributes
  6501. @section Defining New Object Attributes
  6502. If you want to define a new @sc{gnu} object attribute, here are the places you
  6503. will need to modify. New attributes should be discussed on the @samp{binutils}
  6504. mailing list.
  6505. @itemize @bullet
  6506. @item
  6507. This manual, which is the official register of attributes.
  6508. @item
  6509. The header for your architecture @file{include/elf}, to define the tag.
  6510. @item
  6511. The @file{bfd} support file for your architecture, to merge the attribute
  6512. and issue any appropriate link warnings.
  6513. @item
  6514. Test cases in @file{ld/testsuite} for merging and link warnings.
  6515. @item
  6516. @file{binutils/readelf.c} to display your attribute.
  6517. @item
  6518. GCC, if you want the compiler to mark the attribute automatically.
  6519. @end itemize
  6520. @end ifset
  6521. @ifset GENERIC
  6522. @node Machine Dependencies
  6523. @chapter Machine Dependent Features
  6524. @cindex machine dependencies
  6525. The machine instruction sets are (almost by definition) different on
  6526. each machine where @command{@value{AS}} runs. Floating point representations
  6527. vary as well, and @command{@value{AS}} often supports a few additional
  6528. directives or command-line options for compatibility with other
  6529. assemblers on a particular platform. Finally, some versions of
  6530. @command{@value{AS}} support special pseudo-instructions for branch
  6531. optimization.
  6532. This chapter discusses most of these differences, though it does not
  6533. include details on any machine's instruction set. For details on that
  6534. subject, see the hardware manufacturer's manual.
  6535. @menu
  6536. @ifset AARCH64
  6537. * AArch64-Dependent:: AArch64 Dependent Features
  6538. @end ifset
  6539. @ifset ALPHA
  6540. * Alpha-Dependent:: Alpha Dependent Features
  6541. @end ifset
  6542. @ifset ARC
  6543. * ARC-Dependent:: ARC Dependent Features
  6544. @end ifset
  6545. @ifset ARM
  6546. * ARM-Dependent:: ARM Dependent Features
  6547. @end ifset
  6548. @ifset AVR
  6549. * AVR-Dependent:: AVR Dependent Features
  6550. @end ifset
  6551. @ifset Blackfin
  6552. * Blackfin-Dependent:: Blackfin Dependent Features
  6553. @end ifset
  6554. @ifset BPF
  6555. * BPF-Dependent:: BPF Dependent Features
  6556. @end ifset
  6557. @ifset CR16
  6558. * CR16-Dependent:: CR16 Dependent Features
  6559. @end ifset
  6560. @ifset CRIS
  6561. * CRIS-Dependent:: CRIS Dependent Features
  6562. @end ifset
  6563. @ifset CSKY
  6564. * C-SKY-Dependent:: C-SKY Dependent Features
  6565. @end ifset
  6566. @ifset D10V
  6567. * D10V-Dependent:: D10V Dependent Features
  6568. @end ifset
  6569. @ifset D30V
  6570. * D30V-Dependent:: D30V Dependent Features
  6571. @end ifset
  6572. @ifset EPIPHANY
  6573. * Epiphany-Dependent:: EPIPHANY Dependent Features
  6574. @end ifset
  6575. @ifset H8/300
  6576. * H8/300-Dependent:: Renesas H8/300 Dependent Features
  6577. @end ifset
  6578. @ifset HPPA
  6579. * HPPA-Dependent:: HPPA Dependent Features
  6580. @end ifset
  6581. @ifset I80386
  6582. * i386-Dependent:: Intel 80386 and AMD x86-64 Dependent Features
  6583. @end ifset
  6584. @ifset IA64
  6585. * IA-64-Dependent:: Intel IA-64 Dependent Features
  6586. @end ifset
  6587. @ifset IP2K
  6588. * IP2K-Dependent:: IP2K Dependent Features
  6589. @end ifset
  6590. @ifset LOONGARCH
  6591. * LoongArch-Dependent:: LoongArch Dependent Features
  6592. @end ifset
  6593. @ifset LM32
  6594. * LM32-Dependent:: LM32 Dependent Features
  6595. @end ifset
  6596. @ifset M32C
  6597. * M32C-Dependent:: M32C Dependent Features
  6598. @end ifset
  6599. @ifset M32R
  6600. * M32R-Dependent:: M32R Dependent Features
  6601. @end ifset
  6602. @ifset M680X0
  6603. * M68K-Dependent:: M680x0 Dependent Features
  6604. @end ifset
  6605. @ifset M68HC11
  6606. * M68HC11-Dependent:: M68HC11 and 68HC12 Dependent Features
  6607. @end ifset
  6608. @ifset S12Z
  6609. * S12Z-Dependent:: S12Z Dependent Features
  6610. @end ifset
  6611. @ifset METAG
  6612. * Meta-Dependent :: Meta Dependent Features
  6613. @end ifset
  6614. @ifset MICROBLAZE
  6615. * MicroBlaze-Dependent:: MICROBLAZE Dependent Features
  6616. @end ifset
  6617. @ifset MIPS
  6618. * MIPS-Dependent:: MIPS Dependent Features
  6619. @end ifset
  6620. @ifset MMIX
  6621. * MMIX-Dependent:: MMIX Dependent Features
  6622. @end ifset
  6623. @ifset MSP430
  6624. * MSP430-Dependent:: MSP430 Dependent Features
  6625. @end ifset
  6626. @ifset NDS32
  6627. * NDS32-Dependent:: Andes NDS32 Dependent Features
  6628. @end ifset
  6629. @ifset NIOSII
  6630. * NiosII-Dependent:: Altera Nios II Dependent Features
  6631. @end ifset
  6632. @ifset NS32K
  6633. * NS32K-Dependent:: NS32K Dependent Features
  6634. @end ifset
  6635. @ifset OPENRISC
  6636. * OpenRISC-Dependent:: OpenRISC 1000 Features
  6637. @end ifset
  6638. @ifset PDP11
  6639. * PDP-11-Dependent:: PDP-11 Dependent Features
  6640. @end ifset
  6641. @ifset PJ
  6642. * PJ-Dependent:: picoJava Dependent Features
  6643. @end ifset
  6644. @ifset PPC
  6645. * PPC-Dependent:: PowerPC Dependent Features
  6646. @end ifset
  6647. @ifset PRU
  6648. * PRU-Dependent:: PRU Dependent Features
  6649. @end ifset
  6650. @ifset RISCV
  6651. * RISC-V-Dependent:: RISC-V Dependent Features
  6652. @end ifset
  6653. @ifset RL78
  6654. * RL78-Dependent:: RL78 Dependent Features
  6655. @end ifset
  6656. @ifset RX
  6657. * RX-Dependent:: RX Dependent Features
  6658. @end ifset
  6659. @ifset S390
  6660. * S/390-Dependent:: IBM S/390 Dependent Features
  6661. @end ifset
  6662. @ifset SCORE
  6663. * SCORE-Dependent:: SCORE Dependent Features
  6664. @end ifset
  6665. @ifset SH
  6666. * SH-Dependent:: Renesas / SuperH SH Dependent Features
  6667. @end ifset
  6668. @ifset SPARC
  6669. * Sparc-Dependent:: SPARC Dependent Features
  6670. @end ifset
  6671. @ifset TIC54X
  6672. * TIC54X-Dependent:: TI TMS320C54x Dependent Features
  6673. @end ifset
  6674. @ifset TIC6X
  6675. * TIC6X-Dependent :: TI TMS320C6x Dependent Features
  6676. @end ifset
  6677. @ifset TILEGX
  6678. * TILE-Gx-Dependent :: Tilera TILE-Gx Dependent Features
  6679. @end ifset
  6680. @ifset TILEPRO
  6681. * TILEPro-Dependent :: Tilera TILEPro Dependent Features
  6682. @end ifset
  6683. @ifset V850
  6684. * V850-Dependent:: V850 Dependent Features
  6685. @end ifset
  6686. @ifset VAX
  6687. * Vax-Dependent:: VAX Dependent Features
  6688. @end ifset
  6689. @ifset VISIUM
  6690. * Visium-Dependent:: Visium Dependent Features
  6691. @end ifset
  6692. @ifset WASM32
  6693. * WebAssembly-Dependent:: WebAssembly Dependent Features
  6694. @end ifset
  6695. @ifset XGATE
  6696. * XGATE-Dependent:: XGATE Dependent Features
  6697. @end ifset
  6698. @ifset XSTORMY16
  6699. * XSTORMY16-Dependent:: XStormy16 Dependent Features
  6700. @end ifset
  6701. @ifset XTENSA
  6702. * Xtensa-Dependent:: Xtensa Dependent Features
  6703. @end ifset
  6704. @ifset Z80
  6705. * Z80-Dependent:: Z80 Dependent Features
  6706. @end ifset
  6707. @ifset Z8000
  6708. * Z8000-Dependent:: Z8000 Dependent Features
  6709. @end ifset
  6710. @end menu
  6711. @lowersections
  6712. @end ifset
  6713. @c The following major nodes are *sections* in the GENERIC version, *chapters*
  6714. @c in single-cpu versions. This is mainly achieved by @lowersections. There is a
  6715. @c peculiarity: to preserve cross-references, there must be a node called
  6716. @c "Machine Dependencies". Hence the conditional nodenames in each
  6717. @c major node below. Node defaulting in makeinfo requires adjacency of
  6718. @c node and sectioning commands; hence the repetition of @chapter BLAH
  6719. @c in both conditional blocks.
  6720. @ifset AARCH64
  6721. @include c-aarch64.texi
  6722. @end ifset
  6723. @ifset ALPHA
  6724. @include c-alpha.texi
  6725. @end ifset
  6726. @ifset ARC
  6727. @include c-arc.texi
  6728. @end ifset
  6729. @ifset ARM
  6730. @include c-arm.texi
  6731. @end ifset
  6732. @ifset AVR
  6733. @include c-avr.texi
  6734. @end ifset
  6735. @ifset Blackfin
  6736. @include c-bfin.texi
  6737. @end ifset
  6738. @ifset BPF
  6739. @include c-bpf.texi
  6740. @end ifset
  6741. @ifset CR16
  6742. @include c-cr16.texi
  6743. @end ifset
  6744. @ifset CRIS
  6745. @include c-cris.texi
  6746. @end ifset
  6747. @ifset CSKY
  6748. @include c-csky.texi
  6749. @end ifset
  6750. @ifset Renesas-all
  6751. @ifclear GENERIC
  6752. @node Machine Dependencies
  6753. @chapter Machine Dependent Features
  6754. The machine instruction sets are different on each Renesas chip family,
  6755. and there are also some syntax differences among the families. This
  6756. chapter describes the specific @command{@value{AS}} features for each
  6757. family.
  6758. @menu
  6759. * H8/300-Dependent:: Renesas H8/300 Dependent Features
  6760. * SH-Dependent:: Renesas SH Dependent Features
  6761. @end menu
  6762. @lowersections
  6763. @end ifclear
  6764. @end ifset
  6765. @ifset D10V
  6766. @include c-d10v.texi
  6767. @end ifset
  6768. @ifset D30V
  6769. @include c-d30v.texi
  6770. @end ifset
  6771. @ifset EPIPHANY
  6772. @include c-epiphany.texi
  6773. @end ifset
  6774. @ifset H8/300
  6775. @include c-h8300.texi
  6776. @end ifset
  6777. @ifset HPPA
  6778. @include c-hppa.texi
  6779. @end ifset
  6780. @ifset I80386
  6781. @include c-i386.texi
  6782. @end ifset
  6783. @ifset IA64
  6784. @include c-ia64.texi
  6785. @end ifset
  6786. @ifset IP2K
  6787. @include c-ip2k.texi
  6788. @end ifset
  6789. @ifset LM32
  6790. @include c-lm32.texi
  6791. @end ifset
  6792. @ifset LOONGARCH
  6793. @include c-loongarch.texi
  6794. @end ifset
  6795. @ifset M32C
  6796. @include c-m32c.texi
  6797. @end ifset
  6798. @ifset M32R
  6799. @include c-m32r.texi
  6800. @end ifset
  6801. @ifset M680X0
  6802. @include c-m68k.texi
  6803. @end ifset
  6804. @ifset M68HC11
  6805. @include c-m68hc11.texi
  6806. @end ifset
  6807. @ifset S12Z
  6808. @include c-s12z.texi
  6809. @end ifset
  6810. @ifset METAG
  6811. @include c-metag.texi
  6812. @end ifset
  6813. @ifset MICROBLAZE
  6814. @include c-microblaze.texi
  6815. @end ifset
  6816. @ifset MIPS
  6817. @include c-mips.texi
  6818. @end ifset
  6819. @ifset MMIX
  6820. @include c-mmix.texi
  6821. @end ifset
  6822. @ifset MSP430
  6823. @include c-msp430.texi
  6824. @end ifset
  6825. @ifset NDS32
  6826. @include c-nds32.texi
  6827. @end ifset
  6828. @ifset NIOSII
  6829. @include c-nios2.texi
  6830. @end ifset
  6831. @ifset NS32K
  6832. @include c-ns32k.texi
  6833. @end ifset
  6834. @ifset OPENRISC
  6835. @include c-or1k.texi
  6836. @end ifset
  6837. @ifset PDP11
  6838. @include c-pdp11.texi
  6839. @end ifset
  6840. @ifset PJ
  6841. @include c-pj.texi
  6842. @end ifset
  6843. @ifset PPC
  6844. @include c-ppc.texi
  6845. @end ifset
  6846. @ifset PRU
  6847. @include c-pru.texi
  6848. @end ifset
  6849. @ifset RISCV
  6850. @include c-riscv.texi
  6851. @end ifset
  6852. @ifset RL78
  6853. @include c-rl78.texi
  6854. @end ifset
  6855. @ifset RX
  6856. @include c-rx.texi
  6857. @end ifset
  6858. @ifset S390
  6859. @include c-s390.texi
  6860. @end ifset
  6861. @ifset SCORE
  6862. @include c-score.texi
  6863. @end ifset
  6864. @ifset SH
  6865. @include c-sh.texi
  6866. @end ifset
  6867. @ifset SPARC
  6868. @include c-sparc.texi
  6869. @end ifset
  6870. @ifset TIC54X
  6871. @include c-tic54x.texi
  6872. @end ifset
  6873. @ifset TIC6X
  6874. @include c-tic6x.texi
  6875. @end ifset
  6876. @ifset TILEGX
  6877. @include c-tilegx.texi
  6878. @end ifset
  6879. @ifset TILEPRO
  6880. @include c-tilepro.texi
  6881. @end ifset
  6882. @ifset V850
  6883. @include c-v850.texi
  6884. @end ifset
  6885. @ifset VAX
  6886. @include c-vax.texi
  6887. @end ifset
  6888. @ifset VISIUM
  6889. @include c-visium.texi
  6890. @end ifset
  6891. @ifset WASM32
  6892. @include c-wasm32.texi
  6893. @end ifset
  6894. @ifset XGATE
  6895. @include c-xgate.texi
  6896. @end ifset
  6897. @ifset XSTORMY16
  6898. @include c-xstormy16.texi
  6899. @end ifset
  6900. @ifset XTENSA
  6901. @include c-xtensa.texi
  6902. @end ifset
  6903. @ifset Z80
  6904. @include c-z80.texi
  6905. @end ifset
  6906. @ifset Z8000
  6907. @include c-z8k.texi
  6908. @end ifset
  6909. @ifset GENERIC
  6910. @c reverse effect of @down at top of generic Machine-Dep chapter
  6911. @raisesections
  6912. @end ifset
  6913. @node Reporting Bugs
  6914. @chapter Reporting Bugs
  6915. @cindex bugs in assembler
  6916. @cindex reporting bugs in assembler
  6917. Your bug reports play an essential role in making @command{@value{AS}} reliable.
  6918. Reporting a bug may help you by bringing a solution to your problem, or it may
  6919. not. But in any case the principal function of a bug report is to help the
  6920. entire community by making the next version of @command{@value{AS}} work better.
  6921. Bug reports are your contribution to the maintenance of @command{@value{AS}}.
  6922. In order for a bug report to serve its purpose, you must include the
  6923. information that enables us to fix the bug.
  6924. @menu
  6925. * Bug Criteria:: Have you found a bug?
  6926. * Bug Reporting:: How to report bugs
  6927. @end menu
  6928. @node Bug Criteria
  6929. @section Have You Found a Bug?
  6930. @cindex bug criteria
  6931. If you are not sure whether you have found a bug, here are some guidelines:
  6932. @itemize @bullet
  6933. @cindex fatal signal
  6934. @cindex assembler crash
  6935. @cindex crash of assembler
  6936. @item
  6937. If the assembler gets a fatal signal, for any input whatever, that is a
  6938. @command{@value{AS}} bug. Reliable assemblers never crash.
  6939. @cindex error on valid input
  6940. @item
  6941. If @command{@value{AS}} produces an error message for valid input, that is a bug.
  6942. @cindex invalid input
  6943. @item
  6944. If @command{@value{AS}} does not produce an error message for invalid input, that
  6945. is a bug. However, you should note that your idea of ``invalid input'' might
  6946. be our idea of ``an extension'' or ``support for traditional practice''.
  6947. @item
  6948. If you are an experienced user of assemblers, your suggestions for improvement
  6949. of @command{@value{AS}} are welcome in any case.
  6950. @end itemize
  6951. @node Bug Reporting
  6952. @section How to Report Bugs
  6953. @cindex bug reports
  6954. @cindex assembler bugs, reporting
  6955. A number of companies and individuals offer support for @sc{gnu} products. If
  6956. you obtained @command{@value{AS}} from a support organization, we recommend you
  6957. contact that organization first.
  6958. You can find contact information for many support companies and
  6959. individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
  6960. distribution.
  6961. @ifset BUGURL
  6962. In any event, we also recommend that you send bug reports for @command{@value{AS}}
  6963. to @value{BUGURL}.
  6964. @end ifset
  6965. The fundamental principle of reporting bugs usefully is this:
  6966. @strong{report all the facts}. If you are not sure whether to state a
  6967. fact or leave it out, state it!
  6968. Often people omit facts because they think they know what causes the problem
  6969. and assume that some details do not matter. Thus, you might assume that the
  6970. name of a symbol you use in an example does not matter. Well, probably it does
  6971. not, but one cannot be sure. Perhaps the bug is a stray memory reference which
  6972. happens to fetch from the location where that name is stored in memory;
  6973. perhaps, if the name were different, the contents of that location would fool
  6974. the assembler into doing the right thing despite the bug. Play it safe and
  6975. give a specific, complete example. That is the easiest thing for you to do,
  6976. and the most helpful.
  6977. Keep in mind that the purpose of a bug report is to enable us to fix the bug if
  6978. it is new to us. Therefore, always write your bug reports on the assumption
  6979. that the bug has not been reported previously.
  6980. Sometimes people give a few sketchy facts and ask, ``Does this ring a
  6981. bell?'' This cannot help us fix a bug, so it is basically useless. We
  6982. respond by asking for enough details to enable us to investigate.
  6983. You might as well expedite matters by sending them to begin with.
  6984. To enable us to fix the bug, you should include all these things:
  6985. @itemize @bullet
  6986. @item
  6987. The version of @command{@value{AS}}. @command{@value{AS}} announces it if you start
  6988. it with the @samp{--version} argument.
  6989. Without this, we will not know whether there is any point in looking for
  6990. the bug in the current version of @command{@value{AS}}.
  6991. @item
  6992. Any patches you may have applied to the @command{@value{AS}} source.
  6993. @item
  6994. The type of machine you are using, and the operating system name and
  6995. version number.
  6996. @item
  6997. What compiler (and its version) was used to compile @command{@value{AS}}---e.g.
  6998. ``@code{gcc-2.7}''.
  6999. @item
  7000. The command arguments you gave the assembler to assemble your example and
  7001. observe the bug. To guarantee you will not omit something important, list them
  7002. all. A copy of the Makefile (or the output from make) is sufficient.
  7003. If we were to try to guess the arguments, we would probably guess wrong
  7004. and then we might not encounter the bug.
  7005. @item
  7006. A complete input file that will reproduce the bug. If the bug is observed when
  7007. the assembler is invoked via a compiler, send the assembler source, not the
  7008. high level language source. Most compilers will produce the assembler source
  7009. when run with the @samp{-S} option. If you are using @code{@value{GCC}}, use
  7010. the options @samp{-v --save-temps}; this will save the assembler source in a
  7011. file with an extension of @file{.s}, and also show you exactly how
  7012. @command{@value{AS}} is being run.
  7013. @item
  7014. A description of what behavior you observe that you believe is
  7015. incorrect. For example, ``It gets a fatal signal.''
  7016. Of course, if the bug is that @command{@value{AS}} gets a fatal signal, then we
  7017. will certainly notice it. But if the bug is incorrect output, we might not
  7018. notice unless it is glaringly wrong. You might as well not give us a chance to
  7019. make a mistake.
  7020. Even if the problem you experience is a fatal signal, you should still say so
  7021. explicitly. Suppose something strange is going on, such as, your copy of
  7022. @command{@value{AS}} is out of sync, or you have encountered a bug in the C
  7023. library on your system. (This has happened!) Your copy might crash and ours
  7024. would not. If you told us to expect a crash, then when ours fails to crash, we
  7025. would know that the bug was not happening for us. If you had not told us to
  7026. expect a crash, then we would not be able to draw any conclusion from our
  7027. observations.
  7028. @item
  7029. If you wish to suggest changes to the @command{@value{AS}} source, send us context
  7030. diffs, as generated by @code{diff} with the @samp{-u}, @samp{-c}, or @samp{-p}
  7031. option. Always send diffs from the old file to the new file. If you even
  7032. discuss something in the @command{@value{AS}} source, refer to it by context, not
  7033. by line number.
  7034. The line numbers in our development sources will not match those in your
  7035. sources. Your line numbers would convey no useful information to us.
  7036. @end itemize
  7037. Here are some things that are not necessary:
  7038. @itemize @bullet
  7039. @item
  7040. A description of the envelope of the bug.
  7041. Often people who encounter a bug spend a lot of time investigating
  7042. which changes to the input file will make the bug go away and which
  7043. changes will not affect it.
  7044. This is often time consuming and not very useful, because the way we
  7045. will find the bug is by running a single example under the debugger
  7046. with breakpoints, not by pure deduction from a series of examples.
  7047. We recommend that you save your time for something else.
  7048. Of course, if you can find a simpler example to report @emph{instead}
  7049. of the original one, that is a convenience for us. Errors in the
  7050. output will be easier to spot, running under the debugger will take
  7051. less time, and so on.
  7052. However, simplification is not vital; if you do not want to do this,
  7053. report the bug anyway and send us the entire test case you used.
  7054. @item
  7055. A patch for the bug.
  7056. A patch for the bug does help us if it is a good one. But do not omit
  7057. the necessary information, such as the test case, on the assumption that
  7058. a patch is all we need. We might see problems with your patch and decide
  7059. to fix the problem another way, or we might not understand it at all.
  7060. Sometimes with a program as complicated as @command{@value{AS}} it is very hard to
  7061. construct an example that will make the program follow a certain path through
  7062. the code. If you do not send us the example, we will not be able to construct
  7063. one, so we will not be able to verify that the bug is fixed.
  7064. And if we cannot understand what bug you are trying to fix, or why your
  7065. patch should be an improvement, we will not install it. A test case will
  7066. help us to understand.
  7067. @item
  7068. A guess about what the bug is or what it depends on.
  7069. Such guesses are usually wrong. Even we cannot guess right about such
  7070. things without first using the debugger to find the facts.
  7071. @end itemize
  7072. @node Acknowledgements
  7073. @chapter Acknowledgements
  7074. If you have contributed to GAS and your name isn't listed here,
  7075. it is not meant as a slight. We just don't know about it. Send mail to the
  7076. maintainer, and we'll correct the situation. Currently
  7077. @c (October 2012),
  7078. the maintainer is Nick Clifton (email address @code{nickc@@redhat.com}).
  7079. Dean Elsner wrote the original @sc{gnu} assembler for the VAX.@footnote{Any
  7080. more details?}
  7081. Jay Fenlason maintained GAS for a while, adding support for GDB-specific debug
  7082. information and the 68k series machines, most of the preprocessing pass, and
  7083. extensive changes in @file{messages.c}, @file{input-file.c}, @file{write.c}.
  7084. K. Richard Pixley maintained GAS for a while, adding various enhancements and
  7085. many bug fixes, including merging support for several processors, breaking GAS
  7086. up to handle multiple object file format back ends (including heavy rewrite,
  7087. testing, an integration of the coff and b.out back ends), adding configuration
  7088. including heavy testing and verification of cross assemblers and file splits
  7089. and renaming, converted GAS to strictly ANSI C including full prototypes, added
  7090. support for m680[34]0 and cpu32, did considerable work on i960 including a COFF
  7091. port (including considerable amounts of reverse engineering), a SPARC opcode
  7092. file rewrite, DECstation, rs6000, and hp300hpux host ports, updated ``know''
  7093. assertions and made them work, much other reorganization, cleanup, and lint.
  7094. Ken Raeburn wrote the high-level BFD interface code to replace most of the code
  7095. in format-specific I/O modules.
  7096. The original VMS support was contributed by David L. Kashtan. Eric Youngdale
  7097. has done much work with it since.
  7098. The Intel 80386 machine description was written by Eliot Dresselhaus.
  7099. Minh Tran-Le at IntelliCorp contributed some AIX 386 support.
  7100. The Motorola 88k machine description was contributed by Devon Bowen of Buffalo
  7101. University and Torbjorn Granlund of the Swedish Institute of Computer Science.
  7102. Keith Knowles at the Open Software Foundation wrote the original MIPS back end
  7103. (@file{tc-mips.c}, @file{tc-mips.h}), and contributed Rose format support
  7104. (which hasn't been merged in yet). Ralph Campbell worked with the MIPS code to
  7105. support a.out format.
  7106. Support for the Zilog Z8k and Renesas H8/300 processors (tc-z8k,
  7107. tc-h8300), and IEEE 695 object file format (obj-ieee), was written by
  7108. Steve Chamberlain of Cygnus Support. Steve also modified the COFF back end to
  7109. use BFD for some low-level operations, for use with the H8/300 and AMD 29k
  7110. targets.
  7111. John Gilmore built the AMD 29000 support, added @code{.include} support, and
  7112. simplified the configuration of which versions accept which directives. He
  7113. updated the 68k machine description so that Motorola's opcodes always produced
  7114. fixed-size instructions (e.g., @code{jsr}), while synthetic instructions
  7115. remained shrinkable (@code{jbsr}). John fixed many bugs, including true tested
  7116. cross-compilation support, and one bug in relaxation that took a week and
  7117. required the proverbial one-bit fix.
  7118. Ian Lance Taylor of Cygnus Support merged the Motorola and MIT syntax for the
  7119. 68k, completed support for some COFF targets (68k, i386 SVR3, and SCO Unix),
  7120. added support for MIPS ECOFF and ELF targets, wrote the initial RS/6000 and
  7121. PowerPC assembler, and made a few other minor patches.
  7122. Steve Chamberlain made GAS able to generate listings.
  7123. Hewlett-Packard contributed support for the HP9000/300.
  7124. Jeff Law wrote GAS and BFD support for the native HPPA object format (SOM)
  7125. along with a fairly extensive HPPA testsuite (for both SOM and ELF object
  7126. formats). This work was supported by both the Center for Software Science at
  7127. the University of Utah and Cygnus Support.
  7128. Support for ELF format files has been worked on by Mark Eichin of Cygnus
  7129. Support (original, incomplete implementation for SPARC), Pete Hoogenboom and
  7130. Jeff Law at the University of Utah (HPPA mainly), Michael Meissner of the Open
  7131. Software Foundation (i386 mainly), and Ken Raeburn of Cygnus Support (sparc,
  7132. and some initial 64-bit support).
  7133. Linas Vepstas added GAS support for the ESA/390 ``IBM 370'' architecture.
  7134. Richard Henderson rewrote the Alpha assembler. Klaus Kaempf wrote GAS and BFD
  7135. support for openVMS/Alpha.
  7136. Timothy Wall, Michael Hayes, and Greg Smart contributed to the various tic*
  7137. flavors.
  7138. David Heine, Sterling Augustine, Bob Wilson and John Ruttenberg from Tensilica,
  7139. Inc.@: added support for Xtensa processors.
  7140. Several engineers at Cygnus Support have also provided many small bug fixes and
  7141. configuration enhancements.
  7142. Jon Beniston added support for the Lattice Mico32 architecture.
  7143. Many others have contributed large or small bugfixes and enhancements. If
  7144. you have contributed significant work and are not mentioned on this list, and
  7145. want to be, let us know. Some of the history has been lost; we are not
  7146. intentionally leaving anyone out.
  7147. @node GNU Free Documentation License
  7148. @appendix GNU Free Documentation License
  7149. @include fdl.texi
  7150. @node AS Index
  7151. @unnumbered AS Index
  7152. @printindex cp
  7153. @bye
  7154. @c Local Variables:
  7155. @c fill-column: 79
  7156. @c End: