howto-manager.html 318 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- This file documents the BFD library.
  4. Copyright (C) 1991-2017 Free Software Foundation, Inc.
  5. Permission is granted to copy, distribute and/or modify this document
  6. under the terms of the GNU Free Documentation License, Version 1.3 or
  7. any later version published by the Free Software Foundation; with the
  8. Invariant Sections being "GNU General Public License" and "Funding
  9. Free Software", the Front-Cover texts being (a) (see below), and with
  10. the Back-Cover Texts being (b) (see below). A copy of the license is
  11. included in the section entitled "GNU Free Documentation License".
  12. (a) The FSF's Front-Cover Text is:
  13. A GNU Manual
  14. (b) The FSF's Back-Cover Text is:
  15. You have freedom to copy and modify this GNU Manual, like GNU
  16. software. Copies published by the Free Software Foundation raise
  17. funds for GNU development. -->
  18. <!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
  19. <head>
  20. <title>Untitled Document: howto manager</title>
  21. <meta name="description" content="Untitled Document: howto manager">
  22. <meta name="keywords" content="Untitled Document: howto manager">
  23. <meta name="resource-type" content="document">
  24. <meta name="distribution" content="global">
  25. <meta name="Generator" content="makeinfo">
  26. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  27. <link href="index.html#Top" rel="start" title="Top">
  28. <link href="BFD-Index.html#BFD-Index" rel="index" title="BFD Index">
  29. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  30. <link href="Relocations.html#Relocations" rel="up" title="Relocations">
  31. <link href="Core-Files.html#Core-Files" rel="next" title="Core Files">
  32. <link href="typedef-arelent.html#typedef-arelent" rel="prev" title="typedef arelent">
  33. <style type="text/css">
  34. <!--
  35. a.summary-letter {text-decoration: none}
  36. blockquote.smallquotation {font-size: smaller}
  37. div.display {margin-left: 3.2em}
  38. div.example {margin-left: 3.2em}
  39. div.indentedblock {margin-left: 3.2em}
  40. div.lisp {margin-left: 3.2em}
  41. div.smalldisplay {margin-left: 3.2em}
  42. div.smallexample {margin-left: 3.2em}
  43. div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
  44. div.smalllisp {margin-left: 3.2em}
  45. kbd {font-style:oblique}
  46. pre.display {font-family: inherit}
  47. pre.format {font-family: inherit}
  48. pre.menu-comment {font-family: serif}
  49. pre.menu-preformatted {font-family: serif}
  50. pre.smalldisplay {font-family: inherit; font-size: smaller}
  51. pre.smallexample {font-size: smaller}
  52. pre.smallformat {font-family: inherit; font-size: smaller}
  53. pre.smalllisp {font-size: smaller}
  54. span.nocodebreak {white-space:nowrap}
  55. span.nolinebreak {white-space:nowrap}
  56. span.roman {font-family:serif; font-weight:normal}
  57. span.sansserif {font-family:sans-serif; font-weight:normal}
  58. ul.no-bullet {list-style: none}
  59. -->
  60. </style>
  61. </head>
  62. <body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
  63. <a name="howto-manager"></a>
  64. <div class="header">
  65. <p>
  66. Previous: <a href="typedef-arelent.html#typedef-arelent" accesskey="p" rel="prev">typedef arelent</a>, Up: <a href="Relocations.html#Relocations" accesskey="u" rel="up">Relocations</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="BFD-Index.html#BFD-Index" title="Index" rel="index">Index</a>]</p>
  67. </div>
  68. <hr>
  69. <a name="The-howto-manager"></a>
  70. <h4 class="subsection">2.10.2 The howto manager</h4>
  71. <p>When an application wants to create a relocation, but doesn&rsquo;t
  72. know what the target machine might call it, it can find out by
  73. using this bit of code.
  74. </p>
  75. <a name="index-bfd_005freloc_005fcode_005ftype"></a>
  76. <a name="bfd_005freloc_005fcode_005ftype"></a>
  77. <h4 class="subsubsection">2.10.2.1 <code>bfd_reloc_code_type</code></h4>
  78. <p><strong>Description</strong><br>
  79. The insides of a reloc code. The idea is that, eventually, there
  80. will be one enumerator for every type of relocation we ever do.
  81. Pass one of these values to <code>bfd_reloc_type_lookup</code>, and it&rsquo;ll
  82. return a howto pointer.
  83. </p>
  84. <p>This does mean that the application must determine the correct
  85. enumerator value; you can&rsquo;t get a howto pointer from a random set
  86. of attributes.
  87. </p>
  88. <p>Here are the possible values for <code>enum bfd_reloc_code_real</code>:
  89. </p>
  90. <dl>
  91. <dt><a name="index-BFD_005fRELOC_005f64"></a>: <strong>BFD_RELOC_64</strong></dt>
  92. <dt><a name="index-BFD_005fRELOC_005f32"></a>: <strong>BFD_RELOC_32</strong></dt>
  93. <dt><a name="index-BFD_005fRELOC_005f26"></a>: <strong>BFD_RELOC_26</strong></dt>
  94. <dt><a name="index-BFD_005fRELOC_005f24"></a>: <strong>BFD_RELOC_24</strong></dt>
  95. <dt><a name="index-BFD_005fRELOC_005f16"></a>: <strong>BFD_RELOC_16</strong></dt>
  96. <dt><a name="index-BFD_005fRELOC_005f14"></a>: <strong>BFD_RELOC_14</strong></dt>
  97. <dt><a name="index-BFD_005fRELOC_005f8"></a>: <strong>BFD_RELOC_8</strong></dt>
  98. <dd><p>Basic absolute relocations of N bits.
  99. </p></dd></dl>
  100. <dl>
  101. <dt><a name="index-BFD_005fRELOC_005f64_005fPCREL"></a>: <strong>BFD_RELOC_64_PCREL</strong></dt>
  102. <dt><a name="index-BFD_005fRELOC_005f32_005fPCREL"></a>: <strong>BFD_RELOC_32_PCREL</strong></dt>
  103. <dt><a name="index-BFD_005fRELOC_005f24_005fPCREL"></a>: <strong>BFD_RELOC_24_PCREL</strong></dt>
  104. <dt><a name="index-BFD_005fRELOC_005f16_005fPCREL"></a>: <strong>BFD_RELOC_16_PCREL</strong></dt>
  105. <dt><a name="index-BFD_005fRELOC_005f12_005fPCREL"></a>: <strong>BFD_RELOC_12_PCREL</strong></dt>
  106. <dt><a name="index-BFD_005fRELOC_005f8_005fPCREL"></a>: <strong>BFD_RELOC_8_PCREL</strong></dt>
  107. <dd><p>PC-relative relocations. Sometimes these are relative to the address
  108. of the relocation itself; sometimes they are relative to the start of
  109. the section containing the relocation. It depends on the specific target.
  110. </p>
  111. <p>The 24-bit relocation is used in some Intel 960 configurations.
  112. </p></dd></dl>
  113. <dl>
  114. <dt><a name="index-BFD_005fRELOC_005f32_005fSECREL"></a>: <strong>BFD_RELOC_32_SECREL</strong></dt>
  115. <dd><p>Section relative relocations. Some targets need this for DWARF2.
  116. </p></dd></dl>
  117. <dl>
  118. <dt><a name="index-BFD_005fRELOC_005f32_005fGOT_005fPCREL"></a>: <strong>BFD_RELOC_32_GOT_PCREL</strong></dt>
  119. <dt><a name="index-BFD_005fRELOC_005f16_005fGOT_005fPCREL"></a>: <strong>BFD_RELOC_16_GOT_PCREL</strong></dt>
  120. <dt><a name="index-BFD_005fRELOC_005f8_005fGOT_005fPCREL"></a>: <strong>BFD_RELOC_8_GOT_PCREL</strong></dt>
  121. <dt><a name="index-BFD_005fRELOC_005f32_005fGOTOFF"></a>: <strong>BFD_RELOC_32_GOTOFF</strong></dt>
  122. <dt><a name="index-BFD_005fRELOC_005f16_005fGOTOFF"></a>: <strong>BFD_RELOC_16_GOTOFF</strong></dt>
  123. <dt><a name="index-BFD_005fRELOC_005fLO16_005fGOTOFF"></a>: <strong>BFD_RELOC_LO16_GOTOFF</strong></dt>
  124. <dt><a name="index-BFD_005fRELOC_005fHI16_005fGOTOFF"></a>: <strong>BFD_RELOC_HI16_GOTOFF</strong></dt>
  125. <dt><a name="index-BFD_005fRELOC_005fHI16_005fS_005fGOTOFF"></a>: <strong>BFD_RELOC_HI16_S_GOTOFF</strong></dt>
  126. <dt><a name="index-BFD_005fRELOC_005f8_005fGOTOFF"></a>: <strong>BFD_RELOC_8_GOTOFF</strong></dt>
  127. <dt><a name="index-BFD_005fRELOC_005f64_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_64_PLT_PCREL</strong></dt>
  128. <dt><a name="index-BFD_005fRELOC_005f32_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_32_PLT_PCREL</strong></dt>
  129. <dt><a name="index-BFD_005fRELOC_005f24_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_24_PLT_PCREL</strong></dt>
  130. <dt><a name="index-BFD_005fRELOC_005f16_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_16_PLT_PCREL</strong></dt>
  131. <dt><a name="index-BFD_005fRELOC_005f8_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_8_PLT_PCREL</strong></dt>
  132. <dt><a name="index-BFD_005fRELOC_005f64_005fPLTOFF"></a>: <strong>BFD_RELOC_64_PLTOFF</strong></dt>
  133. <dt><a name="index-BFD_005fRELOC_005f32_005fPLTOFF"></a>: <strong>BFD_RELOC_32_PLTOFF</strong></dt>
  134. <dt><a name="index-BFD_005fRELOC_005f16_005fPLTOFF"></a>: <strong>BFD_RELOC_16_PLTOFF</strong></dt>
  135. <dt><a name="index-BFD_005fRELOC_005fLO16_005fPLTOFF"></a>: <strong>BFD_RELOC_LO16_PLTOFF</strong></dt>
  136. <dt><a name="index-BFD_005fRELOC_005fHI16_005fPLTOFF"></a>: <strong>BFD_RELOC_HI16_PLTOFF</strong></dt>
  137. <dt><a name="index-BFD_005fRELOC_005fHI16_005fS_005fPLTOFF"></a>: <strong>BFD_RELOC_HI16_S_PLTOFF</strong></dt>
  138. <dt><a name="index-BFD_005fRELOC_005f8_005fPLTOFF"></a>: <strong>BFD_RELOC_8_PLTOFF</strong></dt>
  139. <dd><p>For ELF.
  140. </p></dd></dl>
  141. <dl>
  142. <dt><a name="index-BFD_005fRELOC_005fSIZE32"></a>: <strong>BFD_RELOC_SIZE32</strong></dt>
  143. <dt><a name="index-BFD_005fRELOC_005fSIZE64"></a>: <strong>BFD_RELOC_SIZE64</strong></dt>
  144. <dd><p>Size relocations.
  145. </p></dd></dl>
  146. <dl>
  147. <dt><a name="index-BFD_005fRELOC_005f68K_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_68K_GLOB_DAT</strong></dt>
  148. <dt><a name="index-BFD_005fRELOC_005f68K_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_68K_JMP_SLOT</strong></dt>
  149. <dt><a name="index-BFD_005fRELOC_005f68K_005fRELATIVE"></a>: <strong>BFD_RELOC_68K_RELATIVE</strong></dt>
  150. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fGD32"></a>: <strong>BFD_RELOC_68K_TLS_GD32</strong></dt>
  151. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fGD16"></a>: <strong>BFD_RELOC_68K_TLS_GD16</strong></dt>
  152. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fGD8"></a>: <strong>BFD_RELOC_68K_TLS_GD8</strong></dt>
  153. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fLDM32"></a>: <strong>BFD_RELOC_68K_TLS_LDM32</strong></dt>
  154. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fLDM16"></a>: <strong>BFD_RELOC_68K_TLS_LDM16</strong></dt>
  155. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fLDM8"></a>: <strong>BFD_RELOC_68K_TLS_LDM8</strong></dt>
  156. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fLDO32"></a>: <strong>BFD_RELOC_68K_TLS_LDO32</strong></dt>
  157. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fLDO16"></a>: <strong>BFD_RELOC_68K_TLS_LDO16</strong></dt>
  158. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fLDO8"></a>: <strong>BFD_RELOC_68K_TLS_LDO8</strong></dt>
  159. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fIE32"></a>: <strong>BFD_RELOC_68K_TLS_IE32</strong></dt>
  160. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fIE16"></a>: <strong>BFD_RELOC_68K_TLS_IE16</strong></dt>
  161. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fIE8"></a>: <strong>BFD_RELOC_68K_TLS_IE8</strong></dt>
  162. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fLE32"></a>: <strong>BFD_RELOC_68K_TLS_LE32</strong></dt>
  163. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fLE16"></a>: <strong>BFD_RELOC_68K_TLS_LE16</strong></dt>
  164. <dt><a name="index-BFD_005fRELOC_005f68K_005fTLS_005fLE8"></a>: <strong>BFD_RELOC_68K_TLS_LE8</strong></dt>
  165. <dd><p>Relocations used by 68K ELF.
  166. </p></dd></dl>
  167. <dl>
  168. <dt><a name="index-BFD_005fRELOC_005f32_005fBASEREL"></a>: <strong>BFD_RELOC_32_BASEREL</strong></dt>
  169. <dt><a name="index-BFD_005fRELOC_005f16_005fBASEREL"></a>: <strong>BFD_RELOC_16_BASEREL</strong></dt>
  170. <dt><a name="index-BFD_005fRELOC_005fLO16_005fBASEREL"></a>: <strong>BFD_RELOC_LO16_BASEREL</strong></dt>
  171. <dt><a name="index-BFD_005fRELOC_005fHI16_005fBASEREL"></a>: <strong>BFD_RELOC_HI16_BASEREL</strong></dt>
  172. <dt><a name="index-BFD_005fRELOC_005fHI16_005fS_005fBASEREL"></a>: <strong>BFD_RELOC_HI16_S_BASEREL</strong></dt>
  173. <dt><a name="index-BFD_005fRELOC_005f8_005fBASEREL"></a>: <strong>BFD_RELOC_8_BASEREL</strong></dt>
  174. <dt><a name="index-BFD_005fRELOC_005fRVA"></a>: <strong>BFD_RELOC_RVA</strong></dt>
  175. <dd><p>Linkage-table relative.
  176. </p></dd></dl>
  177. <dl>
  178. <dt><a name="index-BFD_005fRELOC_005f8_005fFFnn"></a>: <strong>BFD_RELOC_8_FFnn</strong></dt>
  179. <dd><p>Absolute 8-bit relocation, but used to form an address like 0xFFnn.
  180. </p></dd></dl>
  181. <dl>
  182. <dt><a name="index-BFD_005fRELOC_005f32_005fPCREL_005fS2"></a>: <strong>BFD_RELOC_32_PCREL_S2</strong></dt>
  183. <dt><a name="index-BFD_005fRELOC_005f16_005fPCREL_005fS2"></a>: <strong>BFD_RELOC_16_PCREL_S2</strong></dt>
  184. <dt><a name="index-BFD_005fRELOC_005f23_005fPCREL_005fS2"></a>: <strong>BFD_RELOC_23_PCREL_S2</strong></dt>
  185. <dd><p>These PC-relative relocations are stored as word displacements &ndash;
  186. i.e., byte displacements shifted right two bits. The 30-bit word
  187. displacement (&lt;&lt;32_PCREL_S2&gt;&gt; &ndash; 32 bits, shifted 2) is used on the
  188. SPARC. (SPARC tools generally refer to this as &lt;&lt;WDISP30&gt;&gt;.) The
  189. signed 16-bit displacement is used on the MIPS, and the 23-bit
  190. displacement is used on the Alpha.
  191. </p></dd></dl>
  192. <dl>
  193. <dt><a name="index-BFD_005fRELOC_005fHI22"></a>: <strong>BFD_RELOC_HI22</strong></dt>
  194. <dt><a name="index-BFD_005fRELOC_005fLO10"></a>: <strong>BFD_RELOC_LO10</strong></dt>
  195. <dd><p>High 22 bits and low 10 bits of 32-bit value, placed into lower bits of
  196. the target word. These are used on the SPARC.
  197. </p></dd></dl>
  198. <dl>
  199. <dt><a name="index-BFD_005fRELOC_005fGPREL16"></a>: <strong>BFD_RELOC_GPREL16</strong></dt>
  200. <dt><a name="index-BFD_005fRELOC_005fGPREL32"></a>: <strong>BFD_RELOC_GPREL32</strong></dt>
  201. <dd><p>For systems that allocate a Global Pointer register, these are
  202. displacements off that register. These relocation types are
  203. handled specially, because the value the register will have is
  204. decided relatively late.
  205. </p></dd></dl>
  206. <dl>
  207. <dt><a name="index-BFD_005fRELOC_005fI960_005fCALLJ"></a>: <strong>BFD_RELOC_I960_CALLJ</strong></dt>
  208. <dd><p>Reloc types used for i960/b.out.
  209. </p></dd></dl>
  210. <dl>
  211. <dt><a name="index-BFD_005fRELOC_005fNONE"></a>: <strong>BFD_RELOC_NONE</strong></dt>
  212. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fWDISP22"></a>: <strong>BFD_RELOC_SPARC_WDISP22</strong></dt>
  213. <dt><a name="index-BFD_005fRELOC_005fSPARC22"></a>: <strong>BFD_RELOC_SPARC22</strong></dt>
  214. <dt><a name="index-BFD_005fRELOC_005fSPARC13"></a>: <strong>BFD_RELOC_SPARC13</strong></dt>
  215. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fGOT10"></a>: <strong>BFD_RELOC_SPARC_GOT10</strong></dt>
  216. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fGOT13"></a>: <strong>BFD_RELOC_SPARC_GOT13</strong></dt>
  217. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fGOT22"></a>: <strong>BFD_RELOC_SPARC_GOT22</strong></dt>
  218. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fPC10"></a>: <strong>BFD_RELOC_SPARC_PC10</strong></dt>
  219. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fPC22"></a>: <strong>BFD_RELOC_SPARC_PC22</strong></dt>
  220. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fWPLT30"></a>: <strong>BFD_RELOC_SPARC_WPLT30</strong></dt>
  221. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fCOPY"></a>: <strong>BFD_RELOC_SPARC_COPY</strong></dt>
  222. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_SPARC_GLOB_DAT</strong></dt>
  223. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_SPARC_JMP_SLOT</strong></dt>
  224. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fRELATIVE"></a>: <strong>BFD_RELOC_SPARC_RELATIVE</strong></dt>
  225. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fUA16"></a>: <strong>BFD_RELOC_SPARC_UA16</strong></dt>
  226. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fUA32"></a>: <strong>BFD_RELOC_SPARC_UA32</strong></dt>
  227. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fUA64"></a>: <strong>BFD_RELOC_SPARC_UA64</strong></dt>
  228. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fGOTDATA_005fHIX22"></a>: <strong>BFD_RELOC_SPARC_GOTDATA_HIX22</strong></dt>
  229. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fGOTDATA_005fLOX10"></a>: <strong>BFD_RELOC_SPARC_GOTDATA_LOX10</strong></dt>
  230. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fGOTDATA_005fOP_005fHIX22"></a>: <strong>BFD_RELOC_SPARC_GOTDATA_OP_HIX22</strong></dt>
  231. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fGOTDATA_005fOP_005fLOX10"></a>: <strong>BFD_RELOC_SPARC_GOTDATA_OP_LOX10</strong></dt>
  232. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fGOTDATA_005fOP"></a>: <strong>BFD_RELOC_SPARC_GOTDATA_OP</strong></dt>
  233. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fJMP_005fIREL"></a>: <strong>BFD_RELOC_SPARC_JMP_IREL</strong></dt>
  234. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fIRELATIVE"></a>: <strong>BFD_RELOC_SPARC_IRELATIVE</strong></dt>
  235. <dd><p>SPARC ELF relocations. There is probably some overlap with other
  236. relocation types already defined.
  237. </p></dd></dl>
  238. <dl>
  239. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fBASE13"></a>: <strong>BFD_RELOC_SPARC_BASE13</strong></dt>
  240. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fBASE22"></a>: <strong>BFD_RELOC_SPARC_BASE22</strong></dt>
  241. <dd><p>I think these are specific to SPARC a.out (e.g., Sun 4).
  242. </p></dd></dl>
  243. <dl>
  244. <dt><a name="index-BFD_005fRELOC_005fSPARC_005f64"></a>: <strong>BFD_RELOC_SPARC_64</strong></dt>
  245. <dt><a name="index-BFD_005fRELOC_005fSPARC_005f10"></a>: <strong>BFD_RELOC_SPARC_10</strong></dt>
  246. <dt><a name="index-BFD_005fRELOC_005fSPARC_005f11"></a>: <strong>BFD_RELOC_SPARC_11</strong></dt>
  247. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fOLO10"></a>: <strong>BFD_RELOC_SPARC_OLO10</strong></dt>
  248. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fHH22"></a>: <strong>BFD_RELOC_SPARC_HH22</strong></dt>
  249. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fHM10"></a>: <strong>BFD_RELOC_SPARC_HM10</strong></dt>
  250. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fLM22"></a>: <strong>BFD_RELOC_SPARC_LM22</strong></dt>
  251. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fPC_005fHH22"></a>: <strong>BFD_RELOC_SPARC_PC_HH22</strong></dt>
  252. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fPC_005fHM10"></a>: <strong>BFD_RELOC_SPARC_PC_HM10</strong></dt>
  253. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fPC_005fLM22"></a>: <strong>BFD_RELOC_SPARC_PC_LM22</strong></dt>
  254. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fWDISP16"></a>: <strong>BFD_RELOC_SPARC_WDISP16</strong></dt>
  255. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fWDISP19"></a>: <strong>BFD_RELOC_SPARC_WDISP19</strong></dt>
  256. <dt><a name="index-BFD_005fRELOC_005fSPARC_005f7"></a>: <strong>BFD_RELOC_SPARC_7</strong></dt>
  257. <dt><a name="index-BFD_005fRELOC_005fSPARC_005f6"></a>: <strong>BFD_RELOC_SPARC_6</strong></dt>
  258. <dt><a name="index-BFD_005fRELOC_005fSPARC_005f5"></a>: <strong>BFD_RELOC_SPARC_5</strong></dt>
  259. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fDISP64"></a>: <strong>BFD_RELOC_SPARC_DISP64</strong></dt>
  260. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fPLT32"></a>: <strong>BFD_RELOC_SPARC_PLT32</strong></dt>
  261. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fPLT64"></a>: <strong>BFD_RELOC_SPARC_PLT64</strong></dt>
  262. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fHIX22"></a>: <strong>BFD_RELOC_SPARC_HIX22</strong></dt>
  263. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fLOX10"></a>: <strong>BFD_RELOC_SPARC_LOX10</strong></dt>
  264. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fH44"></a>: <strong>BFD_RELOC_SPARC_H44</strong></dt>
  265. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fM44"></a>: <strong>BFD_RELOC_SPARC_M44</strong></dt>
  266. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fL44"></a>: <strong>BFD_RELOC_SPARC_L44</strong></dt>
  267. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fREGISTER"></a>: <strong>BFD_RELOC_SPARC_REGISTER</strong></dt>
  268. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fH34"></a>: <strong>BFD_RELOC_SPARC_H34</strong></dt>
  269. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fSIZE32"></a>: <strong>BFD_RELOC_SPARC_SIZE32</strong></dt>
  270. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fSIZE64"></a>: <strong>BFD_RELOC_SPARC_SIZE64</strong></dt>
  271. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fWDISP10"></a>: <strong>BFD_RELOC_SPARC_WDISP10</strong></dt>
  272. <dd><p>SPARC64 relocations
  273. </p></dd></dl>
  274. <dl>
  275. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fREV32"></a>: <strong>BFD_RELOC_SPARC_REV32</strong></dt>
  276. <dd><p>SPARC little endian relocation
  277. </p></dd></dl>
  278. <dl>
  279. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fGD_005fHI22"></a>: <strong>BFD_RELOC_SPARC_TLS_GD_HI22</strong></dt>
  280. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fGD_005fLO10"></a>: <strong>BFD_RELOC_SPARC_TLS_GD_LO10</strong></dt>
  281. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fGD_005fADD"></a>: <strong>BFD_RELOC_SPARC_TLS_GD_ADD</strong></dt>
  282. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fGD_005fCALL"></a>: <strong>BFD_RELOC_SPARC_TLS_GD_CALL</strong></dt>
  283. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fLDM_005fHI22"></a>: <strong>BFD_RELOC_SPARC_TLS_LDM_HI22</strong></dt>
  284. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fLDM_005fLO10"></a>: <strong>BFD_RELOC_SPARC_TLS_LDM_LO10</strong></dt>
  285. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fLDM_005fADD"></a>: <strong>BFD_RELOC_SPARC_TLS_LDM_ADD</strong></dt>
  286. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fLDM_005fCALL"></a>: <strong>BFD_RELOC_SPARC_TLS_LDM_CALL</strong></dt>
  287. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fLDO_005fHIX22"></a>: <strong>BFD_RELOC_SPARC_TLS_LDO_HIX22</strong></dt>
  288. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fLDO_005fLOX10"></a>: <strong>BFD_RELOC_SPARC_TLS_LDO_LOX10</strong></dt>
  289. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fLDO_005fADD"></a>: <strong>BFD_RELOC_SPARC_TLS_LDO_ADD</strong></dt>
  290. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fIE_005fHI22"></a>: <strong>BFD_RELOC_SPARC_TLS_IE_HI22</strong></dt>
  291. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fIE_005fLO10"></a>: <strong>BFD_RELOC_SPARC_TLS_IE_LO10</strong></dt>
  292. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fIE_005fLD"></a>: <strong>BFD_RELOC_SPARC_TLS_IE_LD</strong></dt>
  293. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fIE_005fLDX"></a>: <strong>BFD_RELOC_SPARC_TLS_IE_LDX</strong></dt>
  294. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fIE_005fADD"></a>: <strong>BFD_RELOC_SPARC_TLS_IE_ADD</strong></dt>
  295. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fLE_005fHIX22"></a>: <strong>BFD_RELOC_SPARC_TLS_LE_HIX22</strong></dt>
  296. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fLE_005fLOX10"></a>: <strong>BFD_RELOC_SPARC_TLS_LE_LOX10</strong></dt>
  297. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fDTPMOD32"></a>: <strong>BFD_RELOC_SPARC_TLS_DTPMOD32</strong></dt>
  298. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fDTPMOD64"></a>: <strong>BFD_RELOC_SPARC_TLS_DTPMOD64</strong></dt>
  299. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fDTPOFF32"></a>: <strong>BFD_RELOC_SPARC_TLS_DTPOFF32</strong></dt>
  300. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fDTPOFF64"></a>: <strong>BFD_RELOC_SPARC_TLS_DTPOFF64</strong></dt>
  301. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fTPOFF32"></a>: <strong>BFD_RELOC_SPARC_TLS_TPOFF32</strong></dt>
  302. <dt><a name="index-BFD_005fRELOC_005fSPARC_005fTLS_005fTPOFF64"></a>: <strong>BFD_RELOC_SPARC_TLS_TPOFF64</strong></dt>
  303. <dd><p>SPARC TLS relocations
  304. </p></dd></dl>
  305. <dl>
  306. <dt><a name="index-BFD_005fRELOC_005fSPU_005fIMM7"></a>: <strong>BFD_RELOC_SPU_IMM7</strong></dt>
  307. <dt><a name="index-BFD_005fRELOC_005fSPU_005fIMM8"></a>: <strong>BFD_RELOC_SPU_IMM8</strong></dt>
  308. <dt><a name="index-BFD_005fRELOC_005fSPU_005fIMM10"></a>: <strong>BFD_RELOC_SPU_IMM10</strong></dt>
  309. <dt><a name="index-BFD_005fRELOC_005fSPU_005fIMM10W"></a>: <strong>BFD_RELOC_SPU_IMM10W</strong></dt>
  310. <dt><a name="index-BFD_005fRELOC_005fSPU_005fIMM16"></a>: <strong>BFD_RELOC_SPU_IMM16</strong></dt>
  311. <dt><a name="index-BFD_005fRELOC_005fSPU_005fIMM16W"></a>: <strong>BFD_RELOC_SPU_IMM16W</strong></dt>
  312. <dt><a name="index-BFD_005fRELOC_005fSPU_005fIMM18"></a>: <strong>BFD_RELOC_SPU_IMM18</strong></dt>
  313. <dt><a name="index-BFD_005fRELOC_005fSPU_005fPCREL9a"></a>: <strong>BFD_RELOC_SPU_PCREL9a</strong></dt>
  314. <dt><a name="index-BFD_005fRELOC_005fSPU_005fPCREL9b"></a>: <strong>BFD_RELOC_SPU_PCREL9b</strong></dt>
  315. <dt><a name="index-BFD_005fRELOC_005fSPU_005fPCREL16"></a>: <strong>BFD_RELOC_SPU_PCREL16</strong></dt>
  316. <dt><a name="index-BFD_005fRELOC_005fSPU_005fLO16"></a>: <strong>BFD_RELOC_SPU_LO16</strong></dt>
  317. <dt><a name="index-BFD_005fRELOC_005fSPU_005fHI16"></a>: <strong>BFD_RELOC_SPU_HI16</strong></dt>
  318. <dt><a name="index-BFD_005fRELOC_005fSPU_005fPPU32"></a>: <strong>BFD_RELOC_SPU_PPU32</strong></dt>
  319. <dt><a name="index-BFD_005fRELOC_005fSPU_005fPPU64"></a>: <strong>BFD_RELOC_SPU_PPU64</strong></dt>
  320. <dt><a name="index-BFD_005fRELOC_005fSPU_005fADD_005fPIC"></a>: <strong>BFD_RELOC_SPU_ADD_PIC</strong></dt>
  321. <dd><p>SPU Relocations.
  322. </p></dd></dl>
  323. <dl>
  324. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fGPDISP_005fHI16"></a>: <strong>BFD_RELOC_ALPHA_GPDISP_HI16</strong></dt>
  325. <dd><p>Alpha ECOFF and ELF relocations. Some of these treat the symbol or
  326. &quot;addend&quot; in some special way.
  327. For GPDISP_HI16 (&quot;gpdisp&quot;) relocations, the symbol is ignored when
  328. writing; when reading, it will be the absolute section symbol. The
  329. addend is the displacement in bytes of the &quot;lda&quot; instruction from
  330. the &quot;ldah&quot; instruction (which is at the address of this reloc).
  331. </p></dd></dl>
  332. <dl>
  333. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fGPDISP_005fLO16"></a>: <strong>BFD_RELOC_ALPHA_GPDISP_LO16</strong></dt>
  334. <dd><p>For GPDISP_LO16 (&quot;ignore&quot;) relocations, the symbol is handled as
  335. with GPDISP_HI16 relocs. The addend is ignored when writing the
  336. relocations out, and is filled in with the file&rsquo;s GP value on
  337. reading, for convenience.
  338. </p></dd></dl>
  339. <dl>
  340. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fGPDISP"></a>: <strong>BFD_RELOC_ALPHA_GPDISP</strong></dt>
  341. <dd><p>The ELF GPDISP relocation is exactly the same as the GPDISP_HI16
  342. relocation except that there is no accompanying GPDISP_LO16
  343. relocation.
  344. </p></dd></dl>
  345. <dl>
  346. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fLITERAL"></a>: <strong>BFD_RELOC_ALPHA_LITERAL</strong></dt>
  347. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fELF_005fLITERAL"></a>: <strong>BFD_RELOC_ALPHA_ELF_LITERAL</strong></dt>
  348. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fLITUSE"></a>: <strong>BFD_RELOC_ALPHA_LITUSE</strong></dt>
  349. <dd><p>The Alpha LITERAL/LITUSE relocs are produced by a symbol reference;
  350. the assembler turns it into a LDQ instruction to load the address of
  351. the symbol, and then fills in a register in the real instruction.
  352. </p>
  353. <p>The LITERAL reloc, at the LDQ instruction, refers to the .lita
  354. section symbol. The addend is ignored when writing, but is filled
  355. in with the file&rsquo;s GP value on reading, for convenience, as with the
  356. GPDISP_LO16 reloc.
  357. </p>
  358. <p>The ELF_LITERAL reloc is somewhere between 16_GOTOFF and GPDISP_LO16.
  359. It should refer to the symbol to be referenced, as with 16_GOTOFF,
  360. but it generates output not based on the position within the .got
  361. section, but relative to the GP value chosen for the file during the
  362. final link stage.
  363. </p>
  364. <p>The LITUSE reloc, on the instruction using the loaded address, gives
  365. information to the linker that it might be able to use to optimize
  366. away some literal section references. The symbol is ignored (read
  367. as the absolute section symbol), and the &quot;addend&quot; indicates the type
  368. of instruction using the register:
  369. 1 - &quot;memory&quot; fmt insn
  370. 2 - byte-manipulation (byte offset reg)
  371. 3 - jsr (target of branch)
  372. </p></dd></dl>
  373. <dl>
  374. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fHINT"></a>: <strong>BFD_RELOC_ALPHA_HINT</strong></dt>
  375. <dd><p>The HINT relocation indicates a value that should be filled into the
  376. &quot;hint&quot; field of a jmp/jsr/ret instruction, for possible branch-
  377. prediction logic which may be provided on some processors.
  378. </p></dd></dl>
  379. <dl>
  380. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fLINKAGE"></a>: <strong>BFD_RELOC_ALPHA_LINKAGE</strong></dt>
  381. <dd><p>The LINKAGE relocation outputs a linkage pair in the object file,
  382. which is filled by the linker.
  383. </p></dd></dl>
  384. <dl>
  385. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fCODEADDR"></a>: <strong>BFD_RELOC_ALPHA_CODEADDR</strong></dt>
  386. <dd><p>The CODEADDR relocation outputs a STO_CA in the object file,
  387. which is filled by the linker.
  388. </p></dd></dl>
  389. <dl>
  390. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fGPREL_005fHI16"></a>: <strong>BFD_RELOC_ALPHA_GPREL_HI16</strong></dt>
  391. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fGPREL_005fLO16"></a>: <strong>BFD_RELOC_ALPHA_GPREL_LO16</strong></dt>
  392. <dd><p>The GPREL_HI/LO relocations together form a 32-bit offset from the
  393. GP register.
  394. </p></dd></dl>
  395. <dl>
  396. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fBRSGP"></a>: <strong>BFD_RELOC_ALPHA_BRSGP</strong></dt>
  397. <dd><p>Like BFD_RELOC_23_PCREL_S2, except that the source and target must
  398. share a common GP, and the target address is adjusted for
  399. STO_ALPHA_STD_GPLOAD.
  400. </p></dd></dl>
  401. <dl>
  402. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fNOP"></a>: <strong>BFD_RELOC_ALPHA_NOP</strong></dt>
  403. <dd><p>The NOP relocation outputs a NOP if the longword displacement
  404. between two procedure entry points is &lt; 2^21.
  405. </p></dd></dl>
  406. <dl>
  407. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fBSR"></a>: <strong>BFD_RELOC_ALPHA_BSR</strong></dt>
  408. <dd><p>The BSR relocation outputs a BSR if the longword displacement
  409. between two procedure entry points is &lt; 2^21.
  410. </p></dd></dl>
  411. <dl>
  412. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fLDA"></a>: <strong>BFD_RELOC_ALPHA_LDA</strong></dt>
  413. <dd><p>The LDA relocation outputs a LDA if the longword displacement
  414. between two procedure entry points is &lt; 2^16.
  415. </p></dd></dl>
  416. <dl>
  417. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fBOH"></a>: <strong>BFD_RELOC_ALPHA_BOH</strong></dt>
  418. <dd><p>The BOH relocation outputs a BSR if the longword displacement
  419. between two procedure entry points is &lt; 2^21, or else a hint.
  420. </p></dd></dl>
  421. <dl>
  422. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fTLSGD"></a>: <strong>BFD_RELOC_ALPHA_TLSGD</strong></dt>
  423. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fTLSLDM"></a>: <strong>BFD_RELOC_ALPHA_TLSLDM</strong></dt>
  424. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fDTPMOD64"></a>: <strong>BFD_RELOC_ALPHA_DTPMOD64</strong></dt>
  425. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fGOTDTPREL16"></a>: <strong>BFD_RELOC_ALPHA_GOTDTPREL16</strong></dt>
  426. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fDTPREL64"></a>: <strong>BFD_RELOC_ALPHA_DTPREL64</strong></dt>
  427. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fDTPREL_005fHI16"></a>: <strong>BFD_RELOC_ALPHA_DTPREL_HI16</strong></dt>
  428. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fDTPREL_005fLO16"></a>: <strong>BFD_RELOC_ALPHA_DTPREL_LO16</strong></dt>
  429. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fDTPREL16"></a>: <strong>BFD_RELOC_ALPHA_DTPREL16</strong></dt>
  430. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fGOTTPREL16"></a>: <strong>BFD_RELOC_ALPHA_GOTTPREL16</strong></dt>
  431. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fTPREL64"></a>: <strong>BFD_RELOC_ALPHA_TPREL64</strong></dt>
  432. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fTPREL_005fHI16"></a>: <strong>BFD_RELOC_ALPHA_TPREL_HI16</strong></dt>
  433. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fTPREL_005fLO16"></a>: <strong>BFD_RELOC_ALPHA_TPREL_LO16</strong></dt>
  434. <dt><a name="index-BFD_005fRELOC_005fALPHA_005fTPREL16"></a>: <strong>BFD_RELOC_ALPHA_TPREL16</strong></dt>
  435. <dd><p>Alpha thread-local storage relocations.
  436. </p></dd></dl>
  437. <dl>
  438. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fJMP"></a>: <strong>BFD_RELOC_MIPS_JMP</strong></dt>
  439. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fJMP"></a>: <strong>BFD_RELOC_MICROMIPS_JMP</strong></dt>
  440. <dd><p>The MIPS jump instruction.
  441. </p></dd></dl>
  442. <dl>
  443. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fJMP"></a>: <strong>BFD_RELOC_MIPS16_JMP</strong></dt>
  444. <dd><p>The MIPS16 jump instruction.
  445. </p></dd></dl>
  446. <dl>
  447. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fGPREL"></a>: <strong>BFD_RELOC_MIPS16_GPREL</strong></dt>
  448. <dd><p>MIPS16 GP relative reloc.
  449. </p></dd></dl>
  450. <dl>
  451. <dt><a name="index-BFD_005fRELOC_005fHI16"></a>: <strong>BFD_RELOC_HI16</strong></dt>
  452. <dd><p>High 16 bits of 32-bit value; simple reloc.
  453. </p></dd></dl>
  454. <dl>
  455. <dt><a name="index-BFD_005fRELOC_005fHI16_005fS"></a>: <strong>BFD_RELOC_HI16_S</strong></dt>
  456. <dd><p>High 16 bits of 32-bit value but the low 16 bits will be sign
  457. extended and added to form the final result. If the low 16
  458. bits form a negative number, we need to add one to the high value
  459. to compensate for the borrow when the low bits are added.
  460. </p></dd></dl>
  461. <dl>
  462. <dt><a name="index-BFD_005fRELOC_005fLO16"></a>: <strong>BFD_RELOC_LO16</strong></dt>
  463. <dd><p>Low 16 bits.
  464. </p></dd></dl>
  465. <dl>
  466. <dt><a name="index-BFD_005fRELOC_005fHI16_005fPCREL"></a>: <strong>BFD_RELOC_HI16_PCREL</strong></dt>
  467. <dd><p>High 16 bits of 32-bit pc-relative value
  468. </p></dd></dl>
  469. <dl>
  470. <dt><a name="index-BFD_005fRELOC_005fHI16_005fS_005fPCREL"></a>: <strong>BFD_RELOC_HI16_S_PCREL</strong></dt>
  471. <dd><p>High 16 bits of 32-bit pc-relative value, adjusted
  472. </p></dd></dl>
  473. <dl>
  474. <dt><a name="index-BFD_005fRELOC_005fLO16_005fPCREL"></a>: <strong>BFD_RELOC_LO16_PCREL</strong></dt>
  475. <dd><p>Low 16 bits of pc-relative value
  476. </p></dd></dl>
  477. <dl>
  478. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fGOT16"></a>: <strong>BFD_RELOC_MIPS16_GOT16</strong></dt>
  479. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fCALL16"></a>: <strong>BFD_RELOC_MIPS16_CALL16</strong></dt>
  480. <dd><p>Equivalent of BFD_RELOC_MIPS_*, but with the MIPS16 layout of
  481. 16-bit immediate fields
  482. </p></dd></dl>
  483. <dl>
  484. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fHI16"></a>: <strong>BFD_RELOC_MIPS16_HI16</strong></dt>
  485. <dd><p>MIPS16 high 16 bits of 32-bit value.
  486. </p></dd></dl>
  487. <dl>
  488. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fHI16_005fS"></a>: <strong>BFD_RELOC_MIPS16_HI16_S</strong></dt>
  489. <dd><p>MIPS16 high 16 bits of 32-bit value but the low 16 bits will be sign
  490. extended and added to form the final result. If the low 16
  491. bits form a negative number, we need to add one to the high value
  492. to compensate for the borrow when the low bits are added.
  493. </p></dd></dl>
  494. <dl>
  495. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fLO16"></a>: <strong>BFD_RELOC_MIPS16_LO16</strong></dt>
  496. <dd><p>MIPS16 low 16 bits.
  497. </p></dd></dl>
  498. <dl>
  499. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fTLS_005fGD"></a>: <strong>BFD_RELOC_MIPS16_TLS_GD</strong></dt>
  500. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fTLS_005fLDM"></a>: <strong>BFD_RELOC_MIPS16_TLS_LDM</strong></dt>
  501. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fTLS_005fDTPREL_005fHI16"></a>: <strong>BFD_RELOC_MIPS16_TLS_DTPREL_HI16</strong></dt>
  502. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fTLS_005fDTPREL_005fLO16"></a>: <strong>BFD_RELOC_MIPS16_TLS_DTPREL_LO16</strong></dt>
  503. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fTLS_005fGOTTPREL"></a>: <strong>BFD_RELOC_MIPS16_TLS_GOTTPREL</strong></dt>
  504. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fTLS_005fTPREL_005fHI16"></a>: <strong>BFD_RELOC_MIPS16_TLS_TPREL_HI16</strong></dt>
  505. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005fTLS_005fTPREL_005fLO16"></a>: <strong>BFD_RELOC_MIPS16_TLS_TPREL_LO16</strong></dt>
  506. <dd><p>MIPS16 TLS relocations
  507. </p></dd></dl>
  508. <dl>
  509. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fLITERAL"></a>: <strong>BFD_RELOC_MIPS_LITERAL</strong></dt>
  510. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fLITERAL"></a>: <strong>BFD_RELOC_MICROMIPS_LITERAL</strong></dt>
  511. <dd><p>Relocation against a MIPS literal section.
  512. </p></dd></dl>
  513. <dl>
  514. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005f7_005fPCREL_005fS1"></a>: <strong>BFD_RELOC_MICROMIPS_7_PCREL_S1</strong></dt>
  515. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005f10_005fPCREL_005fS1"></a>: <strong>BFD_RELOC_MICROMIPS_10_PCREL_S1</strong></dt>
  516. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005f16_005fPCREL_005fS1"></a>: <strong>BFD_RELOC_MICROMIPS_16_PCREL_S1</strong></dt>
  517. <dd><p>microMIPS PC-relative relocations.
  518. </p></dd></dl>
  519. <dl>
  520. <dt><a name="index-BFD_005fRELOC_005fMIPS16_005f16_005fPCREL_005fS1"></a>: <strong>BFD_RELOC_MIPS16_16_PCREL_S1</strong></dt>
  521. <dd><p>MIPS16 PC-relative relocation.
  522. </p></dd></dl>
  523. <dl>
  524. <dt><a name="index-BFD_005fRELOC_005fMIPS_005f21_005fPCREL_005fS2"></a>: <strong>BFD_RELOC_MIPS_21_PCREL_S2</strong></dt>
  525. <dt><a name="index-BFD_005fRELOC_005fMIPS_005f26_005fPCREL_005fS2"></a>: <strong>BFD_RELOC_MIPS_26_PCREL_S2</strong></dt>
  526. <dt><a name="index-BFD_005fRELOC_005fMIPS_005f18_005fPCREL_005fS3"></a>: <strong>BFD_RELOC_MIPS_18_PCREL_S3</strong></dt>
  527. <dt><a name="index-BFD_005fRELOC_005fMIPS_005f19_005fPCREL_005fS2"></a>: <strong>BFD_RELOC_MIPS_19_PCREL_S2</strong></dt>
  528. <dd><p>MIPS PC-relative relocations.
  529. </p></dd></dl>
  530. <dl>
  531. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fGPREL16"></a>: <strong>BFD_RELOC_MICROMIPS_GPREL16</strong></dt>
  532. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fHI16"></a>: <strong>BFD_RELOC_MICROMIPS_HI16</strong></dt>
  533. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fHI16_005fS"></a>: <strong>BFD_RELOC_MICROMIPS_HI16_S</strong></dt>
  534. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fLO16"></a>: <strong>BFD_RELOC_MICROMIPS_LO16</strong></dt>
  535. <dd><p>microMIPS versions of generic BFD relocs.
  536. </p></dd></dl>
  537. <dl>
  538. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fGOT16"></a>: <strong>BFD_RELOC_MIPS_GOT16</strong></dt>
  539. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fGOT16"></a>: <strong>BFD_RELOC_MICROMIPS_GOT16</strong></dt>
  540. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fCALL16"></a>: <strong>BFD_RELOC_MIPS_CALL16</strong></dt>
  541. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fCALL16"></a>: <strong>BFD_RELOC_MICROMIPS_CALL16</strong></dt>
  542. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fGOT_005fHI16"></a>: <strong>BFD_RELOC_MIPS_GOT_HI16</strong></dt>
  543. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fGOT_005fHI16"></a>: <strong>BFD_RELOC_MICROMIPS_GOT_HI16</strong></dt>
  544. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fGOT_005fLO16"></a>: <strong>BFD_RELOC_MIPS_GOT_LO16</strong></dt>
  545. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fGOT_005fLO16"></a>: <strong>BFD_RELOC_MICROMIPS_GOT_LO16</strong></dt>
  546. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fCALL_005fHI16"></a>: <strong>BFD_RELOC_MIPS_CALL_HI16</strong></dt>
  547. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fCALL_005fHI16"></a>: <strong>BFD_RELOC_MICROMIPS_CALL_HI16</strong></dt>
  548. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fCALL_005fLO16"></a>: <strong>BFD_RELOC_MIPS_CALL_LO16</strong></dt>
  549. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fCALL_005fLO16"></a>: <strong>BFD_RELOC_MICROMIPS_CALL_LO16</strong></dt>
  550. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fSUB"></a>: <strong>BFD_RELOC_MIPS_SUB</strong></dt>
  551. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fSUB"></a>: <strong>BFD_RELOC_MICROMIPS_SUB</strong></dt>
  552. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fGOT_005fPAGE"></a>: <strong>BFD_RELOC_MIPS_GOT_PAGE</strong></dt>
  553. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fGOT_005fPAGE"></a>: <strong>BFD_RELOC_MICROMIPS_GOT_PAGE</strong></dt>
  554. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fGOT_005fOFST"></a>: <strong>BFD_RELOC_MIPS_GOT_OFST</strong></dt>
  555. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fGOT_005fOFST"></a>: <strong>BFD_RELOC_MICROMIPS_GOT_OFST</strong></dt>
  556. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fGOT_005fDISP"></a>: <strong>BFD_RELOC_MIPS_GOT_DISP</strong></dt>
  557. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fGOT_005fDISP"></a>: <strong>BFD_RELOC_MICROMIPS_GOT_DISP</strong></dt>
  558. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fSHIFT5"></a>: <strong>BFD_RELOC_MIPS_SHIFT5</strong></dt>
  559. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fSHIFT6"></a>: <strong>BFD_RELOC_MIPS_SHIFT6</strong></dt>
  560. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fINSERT_005fA"></a>: <strong>BFD_RELOC_MIPS_INSERT_A</strong></dt>
  561. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fINSERT_005fB"></a>: <strong>BFD_RELOC_MIPS_INSERT_B</strong></dt>
  562. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fDELETE"></a>: <strong>BFD_RELOC_MIPS_DELETE</strong></dt>
  563. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fHIGHEST"></a>: <strong>BFD_RELOC_MIPS_HIGHEST</strong></dt>
  564. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fHIGHEST"></a>: <strong>BFD_RELOC_MICROMIPS_HIGHEST</strong></dt>
  565. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fHIGHER"></a>: <strong>BFD_RELOC_MIPS_HIGHER</strong></dt>
  566. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fHIGHER"></a>: <strong>BFD_RELOC_MICROMIPS_HIGHER</strong></dt>
  567. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fSCN_005fDISP"></a>: <strong>BFD_RELOC_MIPS_SCN_DISP</strong></dt>
  568. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fSCN_005fDISP"></a>: <strong>BFD_RELOC_MICROMIPS_SCN_DISP</strong></dt>
  569. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fREL16"></a>: <strong>BFD_RELOC_MIPS_REL16</strong></dt>
  570. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fRELGOT"></a>: <strong>BFD_RELOC_MIPS_RELGOT</strong></dt>
  571. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fJALR"></a>: <strong>BFD_RELOC_MIPS_JALR</strong></dt>
  572. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fJALR"></a>: <strong>BFD_RELOC_MICROMIPS_JALR</strong></dt>
  573. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fDTPMOD32"></a>: <strong>BFD_RELOC_MIPS_TLS_DTPMOD32</strong></dt>
  574. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fDTPREL32"></a>: <strong>BFD_RELOC_MIPS_TLS_DTPREL32</strong></dt>
  575. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fDTPMOD64"></a>: <strong>BFD_RELOC_MIPS_TLS_DTPMOD64</strong></dt>
  576. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fDTPREL64"></a>: <strong>BFD_RELOC_MIPS_TLS_DTPREL64</strong></dt>
  577. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fGD"></a>: <strong>BFD_RELOC_MIPS_TLS_GD</strong></dt>
  578. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fTLS_005fGD"></a>: <strong>BFD_RELOC_MICROMIPS_TLS_GD</strong></dt>
  579. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fLDM"></a>: <strong>BFD_RELOC_MIPS_TLS_LDM</strong></dt>
  580. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fTLS_005fLDM"></a>: <strong>BFD_RELOC_MICROMIPS_TLS_LDM</strong></dt>
  581. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fDTPREL_005fHI16"></a>: <strong>BFD_RELOC_MIPS_TLS_DTPREL_HI16</strong></dt>
  582. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fTLS_005fDTPREL_005fHI16"></a>: <strong>BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16</strong></dt>
  583. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fDTPREL_005fLO16"></a>: <strong>BFD_RELOC_MIPS_TLS_DTPREL_LO16</strong></dt>
  584. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fTLS_005fDTPREL_005fLO16"></a>: <strong>BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16</strong></dt>
  585. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fGOTTPREL"></a>: <strong>BFD_RELOC_MIPS_TLS_GOTTPREL</strong></dt>
  586. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fTLS_005fGOTTPREL"></a>: <strong>BFD_RELOC_MICROMIPS_TLS_GOTTPREL</strong></dt>
  587. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fTPREL32"></a>: <strong>BFD_RELOC_MIPS_TLS_TPREL32</strong></dt>
  588. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fTPREL64"></a>: <strong>BFD_RELOC_MIPS_TLS_TPREL64</strong></dt>
  589. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fTPREL_005fHI16"></a>: <strong>BFD_RELOC_MIPS_TLS_TPREL_HI16</strong></dt>
  590. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fTLS_005fTPREL_005fHI16"></a>: <strong>BFD_RELOC_MICROMIPS_TLS_TPREL_HI16</strong></dt>
  591. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fTLS_005fTPREL_005fLO16"></a>: <strong>BFD_RELOC_MIPS_TLS_TPREL_LO16</strong></dt>
  592. <dt><a name="index-BFD_005fRELOC_005fMICROMIPS_005fTLS_005fTPREL_005fLO16"></a>: <strong>BFD_RELOC_MICROMIPS_TLS_TPREL_LO16</strong></dt>
  593. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fEH"></a>: <strong>BFD_RELOC_MIPS_EH</strong></dt>
  594. <dd><p>MIPS ELF relocations.
  595. </p></dd></dl>
  596. <dl>
  597. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fCOPY"></a>: <strong>BFD_RELOC_MIPS_COPY</strong></dt>
  598. <dt><a name="index-BFD_005fRELOC_005fMIPS_005fJUMP_005fSLOT"></a>: <strong>BFD_RELOC_MIPS_JUMP_SLOT</strong></dt>
  599. <dd><p>MIPS ELF relocations (VxWorks and PLT extensions).
  600. </p></dd></dl>
  601. <dl>
  602. <dt><a name="index-BFD_005fRELOC_005fMOXIE_005f10_005fPCREL"></a>: <strong>BFD_RELOC_MOXIE_10_PCREL</strong></dt>
  603. <dd><p>Moxie ELF relocations.
  604. </p></dd></dl>
  605. <dl>
  606. <dt><a name="index-BFD_005fRELOC_005fFT32_005f10"></a>: <strong>BFD_RELOC_FT32_10</strong></dt>
  607. <dt><a name="index-BFD_005fRELOC_005fFT32_005f20"></a>: <strong>BFD_RELOC_FT32_20</strong></dt>
  608. <dt><a name="index-BFD_005fRELOC_005fFT32_005f17"></a>: <strong>BFD_RELOC_FT32_17</strong></dt>
  609. <dt><a name="index-BFD_005fRELOC_005fFT32_005f18"></a>: <strong>BFD_RELOC_FT32_18</strong></dt>
  610. <dd><p>FT32 ELF relocations.
  611. </p></dd></dl>
  612. <dl>
  613. <dt><a name="index-BFD_005fRELOC_005fFRV_005fLABEL16"></a>: <strong>BFD_RELOC_FRV_LABEL16</strong></dt>
  614. <dt><a name="index-BFD_005fRELOC_005fFRV_005fLABEL24"></a>: <strong>BFD_RELOC_FRV_LABEL24</strong></dt>
  615. <dt><a name="index-BFD_005fRELOC_005fFRV_005fLO16"></a>: <strong>BFD_RELOC_FRV_LO16</strong></dt>
  616. <dt><a name="index-BFD_005fRELOC_005fFRV_005fHI16"></a>: <strong>BFD_RELOC_FRV_HI16</strong></dt>
  617. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGPREL12"></a>: <strong>BFD_RELOC_FRV_GPREL12</strong></dt>
  618. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGPRELU12"></a>: <strong>BFD_RELOC_FRV_GPRELU12</strong></dt>
  619. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGPREL32"></a>: <strong>BFD_RELOC_FRV_GPREL32</strong></dt>
  620. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGPRELHI"></a>: <strong>BFD_RELOC_FRV_GPRELHI</strong></dt>
  621. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGPRELLO"></a>: <strong>BFD_RELOC_FRV_GPRELLO</strong></dt>
  622. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOT12"></a>: <strong>BFD_RELOC_FRV_GOT12</strong></dt>
  623. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTHI"></a>: <strong>BFD_RELOC_FRV_GOTHI</strong></dt>
  624. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTLO"></a>: <strong>BFD_RELOC_FRV_GOTLO</strong></dt>
  625. <dt><a name="index-BFD_005fRELOC_005fFRV_005fFUNCDESC"></a>: <strong>BFD_RELOC_FRV_FUNCDESC</strong></dt>
  626. <dt><a name="index-BFD_005fRELOC_005fFRV_005fFUNCDESC_005fGOT12"></a>: <strong>BFD_RELOC_FRV_FUNCDESC_GOT12</strong></dt>
  627. <dt><a name="index-BFD_005fRELOC_005fFRV_005fFUNCDESC_005fGOTHI"></a>: <strong>BFD_RELOC_FRV_FUNCDESC_GOTHI</strong></dt>
  628. <dt><a name="index-BFD_005fRELOC_005fFRV_005fFUNCDESC_005fGOTLO"></a>: <strong>BFD_RELOC_FRV_FUNCDESC_GOTLO</strong></dt>
  629. <dt><a name="index-BFD_005fRELOC_005fFRV_005fFUNCDESC_005fVALUE"></a>: <strong>BFD_RELOC_FRV_FUNCDESC_VALUE</strong></dt>
  630. <dt><a name="index-BFD_005fRELOC_005fFRV_005fFUNCDESC_005fGOTOFF12"></a>: <strong>BFD_RELOC_FRV_FUNCDESC_GOTOFF12</strong></dt>
  631. <dt><a name="index-BFD_005fRELOC_005fFRV_005fFUNCDESC_005fGOTOFFHI"></a>: <strong>BFD_RELOC_FRV_FUNCDESC_GOTOFFHI</strong></dt>
  632. <dt><a name="index-BFD_005fRELOC_005fFRV_005fFUNCDESC_005fGOTOFFLO"></a>: <strong>BFD_RELOC_FRV_FUNCDESC_GOTOFFLO</strong></dt>
  633. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTOFF12"></a>: <strong>BFD_RELOC_FRV_GOTOFF12</strong></dt>
  634. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTOFFHI"></a>: <strong>BFD_RELOC_FRV_GOTOFFHI</strong></dt>
  635. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTOFFLO"></a>: <strong>BFD_RELOC_FRV_GOTOFFLO</strong></dt>
  636. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGETTLSOFF"></a>: <strong>BFD_RELOC_FRV_GETTLSOFF</strong></dt>
  637. <dt><a name="index-BFD_005fRELOC_005fFRV_005fTLSDESC_005fVALUE"></a>: <strong>BFD_RELOC_FRV_TLSDESC_VALUE</strong></dt>
  638. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTTLSDESC12"></a>: <strong>BFD_RELOC_FRV_GOTTLSDESC12</strong></dt>
  639. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTTLSDESCHI"></a>: <strong>BFD_RELOC_FRV_GOTTLSDESCHI</strong></dt>
  640. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTTLSDESCLO"></a>: <strong>BFD_RELOC_FRV_GOTTLSDESCLO</strong></dt>
  641. <dt><a name="index-BFD_005fRELOC_005fFRV_005fTLSMOFF12"></a>: <strong>BFD_RELOC_FRV_TLSMOFF12</strong></dt>
  642. <dt><a name="index-BFD_005fRELOC_005fFRV_005fTLSMOFFHI"></a>: <strong>BFD_RELOC_FRV_TLSMOFFHI</strong></dt>
  643. <dt><a name="index-BFD_005fRELOC_005fFRV_005fTLSMOFFLO"></a>: <strong>BFD_RELOC_FRV_TLSMOFFLO</strong></dt>
  644. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTTLSOFF12"></a>: <strong>BFD_RELOC_FRV_GOTTLSOFF12</strong></dt>
  645. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTTLSOFFHI"></a>: <strong>BFD_RELOC_FRV_GOTTLSOFFHI</strong></dt>
  646. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGOTTLSOFFLO"></a>: <strong>BFD_RELOC_FRV_GOTTLSOFFLO</strong></dt>
  647. <dt><a name="index-BFD_005fRELOC_005fFRV_005fTLSOFF"></a>: <strong>BFD_RELOC_FRV_TLSOFF</strong></dt>
  648. <dt><a name="index-BFD_005fRELOC_005fFRV_005fTLSDESC_005fRELAX"></a>: <strong>BFD_RELOC_FRV_TLSDESC_RELAX</strong></dt>
  649. <dt><a name="index-BFD_005fRELOC_005fFRV_005fGETTLSOFF_005fRELAX"></a>: <strong>BFD_RELOC_FRV_GETTLSOFF_RELAX</strong></dt>
  650. <dt><a name="index-BFD_005fRELOC_005fFRV_005fTLSOFF_005fRELAX"></a>: <strong>BFD_RELOC_FRV_TLSOFF_RELAX</strong></dt>
  651. <dt><a name="index-BFD_005fRELOC_005fFRV_005fTLSMOFF"></a>: <strong>BFD_RELOC_FRV_TLSMOFF</strong></dt>
  652. <dd><p>Fujitsu Frv Relocations.
  653. </p></dd></dl>
  654. <dl>
  655. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fGOTOFF24"></a>: <strong>BFD_RELOC_MN10300_GOTOFF24</strong></dt>
  656. <dd><p>This is a 24bit GOT-relative reloc for the mn10300.
  657. </p></dd></dl>
  658. <dl>
  659. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fGOT32"></a>: <strong>BFD_RELOC_MN10300_GOT32</strong></dt>
  660. <dd><p>This is a 32bit GOT-relative reloc for the mn10300, offset by two bytes
  661. in the instruction.
  662. </p></dd></dl>
  663. <dl>
  664. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fGOT24"></a>: <strong>BFD_RELOC_MN10300_GOT24</strong></dt>
  665. <dd><p>This is a 24bit GOT-relative reloc for the mn10300, offset by two bytes
  666. in the instruction.
  667. </p></dd></dl>
  668. <dl>
  669. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fGOT16"></a>: <strong>BFD_RELOC_MN10300_GOT16</strong></dt>
  670. <dd><p>This is a 16bit GOT-relative reloc for the mn10300, offset by two bytes
  671. in the instruction.
  672. </p></dd></dl>
  673. <dl>
  674. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fCOPY"></a>: <strong>BFD_RELOC_MN10300_COPY</strong></dt>
  675. <dd><p>Copy symbol at runtime.
  676. </p></dd></dl>
  677. <dl>
  678. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_MN10300_GLOB_DAT</strong></dt>
  679. <dd><p>Create GOT entry.
  680. </p></dd></dl>
  681. <dl>
  682. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_MN10300_JMP_SLOT</strong></dt>
  683. <dd><p>Create PLT entry.
  684. </p></dd></dl>
  685. <dl>
  686. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fRELATIVE"></a>: <strong>BFD_RELOC_MN10300_RELATIVE</strong></dt>
  687. <dd><p>Adjust by program base.
  688. </p></dd></dl>
  689. <dl>
  690. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fSYM_005fDIFF"></a>: <strong>BFD_RELOC_MN10300_SYM_DIFF</strong></dt>
  691. <dd><p>Together with another reloc targeted at the same location,
  692. allows for a value that is the difference of two symbols
  693. in the same section.
  694. </p></dd></dl>
  695. <dl>
  696. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fALIGN"></a>: <strong>BFD_RELOC_MN10300_ALIGN</strong></dt>
  697. <dd><p>The addend of this reloc is an alignment power that must
  698. be honoured at the offset&rsquo;s location, regardless of linker
  699. relaxation.
  700. </p></dd></dl>
  701. <dl>
  702. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fTLS_005fGD"></a>: <strong>BFD_RELOC_MN10300_TLS_GD</strong></dt>
  703. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fTLS_005fLD"></a>: <strong>BFD_RELOC_MN10300_TLS_LD</strong></dt>
  704. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fTLS_005fLDO"></a>: <strong>BFD_RELOC_MN10300_TLS_LDO</strong></dt>
  705. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fTLS_005fGOTIE"></a>: <strong>BFD_RELOC_MN10300_TLS_GOTIE</strong></dt>
  706. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fTLS_005fIE"></a>: <strong>BFD_RELOC_MN10300_TLS_IE</strong></dt>
  707. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fTLS_005fLE"></a>: <strong>BFD_RELOC_MN10300_TLS_LE</strong></dt>
  708. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fTLS_005fDTPMOD"></a>: <strong>BFD_RELOC_MN10300_TLS_DTPMOD</strong></dt>
  709. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fTLS_005fDTPOFF"></a>: <strong>BFD_RELOC_MN10300_TLS_DTPOFF</strong></dt>
  710. <dt><a name="index-BFD_005fRELOC_005fMN10300_005fTLS_005fTPOFF"></a>: <strong>BFD_RELOC_MN10300_TLS_TPOFF</strong></dt>
  711. <dd><p>Various TLS-related relocations.
  712. </p></dd></dl>
  713. <dl>
  714. <dt><a name="index-BFD_005fRELOC_005fMN10300_005f32_005fPCREL"></a>: <strong>BFD_RELOC_MN10300_32_PCREL</strong></dt>
  715. <dd><p>This is a 32bit pcrel reloc for the mn10300, offset by two bytes in the
  716. instruction.
  717. </p></dd></dl>
  718. <dl>
  719. <dt><a name="index-BFD_005fRELOC_005fMN10300_005f16_005fPCREL"></a>: <strong>BFD_RELOC_MN10300_16_PCREL</strong></dt>
  720. <dd><p>This is a 16bit pcrel reloc for the mn10300, offset by two bytes in the
  721. instruction.
  722. </p></dd></dl>
  723. <dl>
  724. <dt><a name="index-BFD_005fRELOC_005f386_005fGOT32"></a>: <strong>BFD_RELOC_386_GOT32</strong></dt>
  725. <dt><a name="index-BFD_005fRELOC_005f386_005fPLT32"></a>: <strong>BFD_RELOC_386_PLT32</strong></dt>
  726. <dt><a name="index-BFD_005fRELOC_005f386_005fCOPY"></a>: <strong>BFD_RELOC_386_COPY</strong></dt>
  727. <dt><a name="index-BFD_005fRELOC_005f386_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_386_GLOB_DAT</strong></dt>
  728. <dt><a name="index-BFD_005fRELOC_005f386_005fJUMP_005fSLOT"></a>: <strong>BFD_RELOC_386_JUMP_SLOT</strong></dt>
  729. <dt><a name="index-BFD_005fRELOC_005f386_005fRELATIVE"></a>: <strong>BFD_RELOC_386_RELATIVE</strong></dt>
  730. <dt><a name="index-BFD_005fRELOC_005f386_005fGOTOFF"></a>: <strong>BFD_RELOC_386_GOTOFF</strong></dt>
  731. <dt><a name="index-BFD_005fRELOC_005f386_005fGOTPC"></a>: <strong>BFD_RELOC_386_GOTPC</strong></dt>
  732. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fTPOFF"></a>: <strong>BFD_RELOC_386_TLS_TPOFF</strong></dt>
  733. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fIE"></a>: <strong>BFD_RELOC_386_TLS_IE</strong></dt>
  734. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fGOTIE"></a>: <strong>BFD_RELOC_386_TLS_GOTIE</strong></dt>
  735. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fLE"></a>: <strong>BFD_RELOC_386_TLS_LE</strong></dt>
  736. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fGD"></a>: <strong>BFD_RELOC_386_TLS_GD</strong></dt>
  737. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fLDM"></a>: <strong>BFD_RELOC_386_TLS_LDM</strong></dt>
  738. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fLDO_005f32"></a>: <strong>BFD_RELOC_386_TLS_LDO_32</strong></dt>
  739. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fIE_005f32"></a>: <strong>BFD_RELOC_386_TLS_IE_32</strong></dt>
  740. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fLE_005f32"></a>: <strong>BFD_RELOC_386_TLS_LE_32</strong></dt>
  741. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fDTPMOD32"></a>: <strong>BFD_RELOC_386_TLS_DTPMOD32</strong></dt>
  742. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fDTPOFF32"></a>: <strong>BFD_RELOC_386_TLS_DTPOFF32</strong></dt>
  743. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fTPOFF32"></a>: <strong>BFD_RELOC_386_TLS_TPOFF32</strong></dt>
  744. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fGOTDESC"></a>: <strong>BFD_RELOC_386_TLS_GOTDESC</strong></dt>
  745. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fDESC_005fCALL"></a>: <strong>BFD_RELOC_386_TLS_DESC_CALL</strong></dt>
  746. <dt><a name="index-BFD_005fRELOC_005f386_005fTLS_005fDESC"></a>: <strong>BFD_RELOC_386_TLS_DESC</strong></dt>
  747. <dt><a name="index-BFD_005fRELOC_005f386_005fIRELATIVE"></a>: <strong>BFD_RELOC_386_IRELATIVE</strong></dt>
  748. <dt><a name="index-BFD_005fRELOC_005f386_005fGOT32X"></a>: <strong>BFD_RELOC_386_GOT32X</strong></dt>
  749. <dd><p>i386/elf relocations
  750. </p></dd></dl>
  751. <dl>
  752. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOT32"></a>: <strong>BFD_RELOC_X86_64_GOT32</strong></dt>
  753. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fPLT32"></a>: <strong>BFD_RELOC_X86_64_PLT32</strong></dt>
  754. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fCOPY"></a>: <strong>BFD_RELOC_X86_64_COPY</strong></dt>
  755. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_X86_64_GLOB_DAT</strong></dt>
  756. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fJUMP_005fSLOT"></a>: <strong>BFD_RELOC_X86_64_JUMP_SLOT</strong></dt>
  757. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fRELATIVE"></a>: <strong>BFD_RELOC_X86_64_RELATIVE</strong></dt>
  758. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOTPCREL"></a>: <strong>BFD_RELOC_X86_64_GOTPCREL</strong></dt>
  759. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005f32S"></a>: <strong>BFD_RELOC_X86_64_32S</strong></dt>
  760. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fDTPMOD64"></a>: <strong>BFD_RELOC_X86_64_DTPMOD64</strong></dt>
  761. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fDTPOFF64"></a>: <strong>BFD_RELOC_X86_64_DTPOFF64</strong></dt>
  762. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fTPOFF64"></a>: <strong>BFD_RELOC_X86_64_TPOFF64</strong></dt>
  763. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fTLSGD"></a>: <strong>BFD_RELOC_X86_64_TLSGD</strong></dt>
  764. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fTLSLD"></a>: <strong>BFD_RELOC_X86_64_TLSLD</strong></dt>
  765. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fDTPOFF32"></a>: <strong>BFD_RELOC_X86_64_DTPOFF32</strong></dt>
  766. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOTTPOFF"></a>: <strong>BFD_RELOC_X86_64_GOTTPOFF</strong></dt>
  767. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fTPOFF32"></a>: <strong>BFD_RELOC_X86_64_TPOFF32</strong></dt>
  768. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOTOFF64"></a>: <strong>BFD_RELOC_X86_64_GOTOFF64</strong></dt>
  769. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOTPC32"></a>: <strong>BFD_RELOC_X86_64_GOTPC32</strong></dt>
  770. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOT64"></a>: <strong>BFD_RELOC_X86_64_GOT64</strong></dt>
  771. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOTPCREL64"></a>: <strong>BFD_RELOC_X86_64_GOTPCREL64</strong></dt>
  772. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOTPC64"></a>: <strong>BFD_RELOC_X86_64_GOTPC64</strong></dt>
  773. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOTPLT64"></a>: <strong>BFD_RELOC_X86_64_GOTPLT64</strong></dt>
  774. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fPLTOFF64"></a>: <strong>BFD_RELOC_X86_64_PLTOFF64</strong></dt>
  775. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOTPC32_005fTLSDESC"></a>: <strong>BFD_RELOC_X86_64_GOTPC32_TLSDESC</strong></dt>
  776. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fTLSDESC_005fCALL"></a>: <strong>BFD_RELOC_X86_64_TLSDESC_CALL</strong></dt>
  777. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fTLSDESC"></a>: <strong>BFD_RELOC_X86_64_TLSDESC</strong></dt>
  778. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fIRELATIVE"></a>: <strong>BFD_RELOC_X86_64_IRELATIVE</strong></dt>
  779. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fPC32_005fBND"></a>: <strong>BFD_RELOC_X86_64_PC32_BND</strong></dt>
  780. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fPLT32_005fBND"></a>: <strong>BFD_RELOC_X86_64_PLT32_BND</strong></dt>
  781. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fGOTPCRELX"></a>: <strong>BFD_RELOC_X86_64_GOTPCRELX</strong></dt>
  782. <dt><a name="index-BFD_005fRELOC_005fX86_005f64_005fREX_005fGOTPCRELX"></a>: <strong>BFD_RELOC_X86_64_REX_GOTPCRELX</strong></dt>
  783. <dd><p>x86-64/elf relocations
  784. </p></dd></dl>
  785. <dl>
  786. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fIMM_005f8"></a>: <strong>BFD_RELOC_NS32K_IMM_8</strong></dt>
  787. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fIMM_005f16"></a>: <strong>BFD_RELOC_NS32K_IMM_16</strong></dt>
  788. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fIMM_005f32"></a>: <strong>BFD_RELOC_NS32K_IMM_32</strong></dt>
  789. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fIMM_005f8_005fPCREL"></a>: <strong>BFD_RELOC_NS32K_IMM_8_PCREL</strong></dt>
  790. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fIMM_005f16_005fPCREL"></a>: <strong>BFD_RELOC_NS32K_IMM_16_PCREL</strong></dt>
  791. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fIMM_005f32_005fPCREL"></a>: <strong>BFD_RELOC_NS32K_IMM_32_PCREL</strong></dt>
  792. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fDISP_005f8"></a>: <strong>BFD_RELOC_NS32K_DISP_8</strong></dt>
  793. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fDISP_005f16"></a>: <strong>BFD_RELOC_NS32K_DISP_16</strong></dt>
  794. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fDISP_005f32"></a>: <strong>BFD_RELOC_NS32K_DISP_32</strong></dt>
  795. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fDISP_005f8_005fPCREL"></a>: <strong>BFD_RELOC_NS32K_DISP_8_PCREL</strong></dt>
  796. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fDISP_005f16_005fPCREL"></a>: <strong>BFD_RELOC_NS32K_DISP_16_PCREL</strong></dt>
  797. <dt><a name="index-BFD_005fRELOC_005fNS32K_005fDISP_005f32_005fPCREL"></a>: <strong>BFD_RELOC_NS32K_DISP_32_PCREL</strong></dt>
  798. <dd><p>ns32k relocations
  799. </p></dd></dl>
  800. <dl>
  801. <dt><a name="index-BFD_005fRELOC_005fPDP11_005fDISP_005f8_005fPCREL"></a>: <strong>BFD_RELOC_PDP11_DISP_8_PCREL</strong></dt>
  802. <dt><a name="index-BFD_005fRELOC_005fPDP11_005fDISP_005f6_005fPCREL"></a>: <strong>BFD_RELOC_PDP11_DISP_6_PCREL</strong></dt>
  803. <dd><p>PDP11 relocations
  804. </p></dd></dl>
  805. <dl>
  806. <dt><a name="index-BFD_005fRELOC_005fPJ_005fCODE_005fHI16"></a>: <strong>BFD_RELOC_PJ_CODE_HI16</strong></dt>
  807. <dt><a name="index-BFD_005fRELOC_005fPJ_005fCODE_005fLO16"></a>: <strong>BFD_RELOC_PJ_CODE_LO16</strong></dt>
  808. <dt><a name="index-BFD_005fRELOC_005fPJ_005fCODE_005fDIR16"></a>: <strong>BFD_RELOC_PJ_CODE_DIR16</strong></dt>
  809. <dt><a name="index-BFD_005fRELOC_005fPJ_005fCODE_005fDIR32"></a>: <strong>BFD_RELOC_PJ_CODE_DIR32</strong></dt>
  810. <dt><a name="index-BFD_005fRELOC_005fPJ_005fCODE_005fREL16"></a>: <strong>BFD_RELOC_PJ_CODE_REL16</strong></dt>
  811. <dt><a name="index-BFD_005fRELOC_005fPJ_005fCODE_005fREL32"></a>: <strong>BFD_RELOC_PJ_CODE_REL32</strong></dt>
  812. <dd><p>Picojava relocs. Not all of these appear in object files.
  813. </p></dd></dl>
  814. <dl>
  815. <dt><a name="index-BFD_005fRELOC_005fPPC_005fB26"></a>: <strong>BFD_RELOC_PPC_B26</strong></dt>
  816. <dt><a name="index-BFD_005fRELOC_005fPPC_005fBA26"></a>: <strong>BFD_RELOC_PPC_BA26</strong></dt>
  817. <dt><a name="index-BFD_005fRELOC_005fPPC_005fTOC16"></a>: <strong>BFD_RELOC_PPC_TOC16</strong></dt>
  818. <dt><a name="index-BFD_005fRELOC_005fPPC_005fB16"></a>: <strong>BFD_RELOC_PPC_B16</strong></dt>
  819. <dt><a name="index-BFD_005fRELOC_005fPPC_005fB16_005fBRTAKEN"></a>: <strong>BFD_RELOC_PPC_B16_BRTAKEN</strong></dt>
  820. <dt><a name="index-BFD_005fRELOC_005fPPC_005fB16_005fBRNTAKEN"></a>: <strong>BFD_RELOC_PPC_B16_BRNTAKEN</strong></dt>
  821. <dt><a name="index-BFD_005fRELOC_005fPPC_005fBA16"></a>: <strong>BFD_RELOC_PPC_BA16</strong></dt>
  822. <dt><a name="index-BFD_005fRELOC_005fPPC_005fBA16_005fBRTAKEN"></a>: <strong>BFD_RELOC_PPC_BA16_BRTAKEN</strong></dt>
  823. <dt><a name="index-BFD_005fRELOC_005fPPC_005fBA16_005fBRNTAKEN"></a>: <strong>BFD_RELOC_PPC_BA16_BRNTAKEN</strong></dt>
  824. <dt><a name="index-BFD_005fRELOC_005fPPC_005fCOPY"></a>: <strong>BFD_RELOC_PPC_COPY</strong></dt>
  825. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_PPC_GLOB_DAT</strong></dt>
  826. <dt><a name="index-BFD_005fRELOC_005fPPC_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_PPC_JMP_SLOT</strong></dt>
  827. <dt><a name="index-BFD_005fRELOC_005fPPC_005fRELATIVE"></a>: <strong>BFD_RELOC_PPC_RELATIVE</strong></dt>
  828. <dt><a name="index-BFD_005fRELOC_005fPPC_005fLOCAL24PC"></a>: <strong>BFD_RELOC_PPC_LOCAL24PC</strong></dt>
  829. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fNADDR32"></a>: <strong>BFD_RELOC_PPC_EMB_NADDR32</strong></dt>
  830. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fNADDR16"></a>: <strong>BFD_RELOC_PPC_EMB_NADDR16</strong></dt>
  831. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fNADDR16_005fLO"></a>: <strong>BFD_RELOC_PPC_EMB_NADDR16_LO</strong></dt>
  832. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fNADDR16_005fHI"></a>: <strong>BFD_RELOC_PPC_EMB_NADDR16_HI</strong></dt>
  833. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fNADDR16_005fHA"></a>: <strong>BFD_RELOC_PPC_EMB_NADDR16_HA</strong></dt>
  834. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fSDAI16"></a>: <strong>BFD_RELOC_PPC_EMB_SDAI16</strong></dt>
  835. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fSDA2I16"></a>: <strong>BFD_RELOC_PPC_EMB_SDA2I16</strong></dt>
  836. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fSDA2REL"></a>: <strong>BFD_RELOC_PPC_EMB_SDA2REL</strong></dt>
  837. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fSDA21"></a>: <strong>BFD_RELOC_PPC_EMB_SDA21</strong></dt>
  838. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fMRKREF"></a>: <strong>BFD_RELOC_PPC_EMB_MRKREF</strong></dt>
  839. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fRELSEC16"></a>: <strong>BFD_RELOC_PPC_EMB_RELSEC16</strong></dt>
  840. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fRELST_005fLO"></a>: <strong>BFD_RELOC_PPC_EMB_RELST_LO</strong></dt>
  841. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fRELST_005fHI"></a>: <strong>BFD_RELOC_PPC_EMB_RELST_HI</strong></dt>
  842. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fRELST_005fHA"></a>: <strong>BFD_RELOC_PPC_EMB_RELST_HA</strong></dt>
  843. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fBIT_005fFLD"></a>: <strong>BFD_RELOC_PPC_EMB_BIT_FLD</strong></dt>
  844. <dt><a name="index-BFD_005fRELOC_005fPPC_005fEMB_005fRELSDA"></a>: <strong>BFD_RELOC_PPC_EMB_RELSDA</strong></dt>
  845. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fREL8"></a>: <strong>BFD_RELOC_PPC_VLE_REL8</strong></dt>
  846. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fREL15"></a>: <strong>BFD_RELOC_PPC_VLE_REL15</strong></dt>
  847. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fREL24"></a>: <strong>BFD_RELOC_PPC_VLE_REL24</strong></dt>
  848. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fLO16A"></a>: <strong>BFD_RELOC_PPC_VLE_LO16A</strong></dt>
  849. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fLO16D"></a>: <strong>BFD_RELOC_PPC_VLE_LO16D</strong></dt>
  850. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fHI16A"></a>: <strong>BFD_RELOC_PPC_VLE_HI16A</strong></dt>
  851. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fHI16D"></a>: <strong>BFD_RELOC_PPC_VLE_HI16D</strong></dt>
  852. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fHA16A"></a>: <strong>BFD_RELOC_PPC_VLE_HA16A</strong></dt>
  853. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fHA16D"></a>: <strong>BFD_RELOC_PPC_VLE_HA16D</strong></dt>
  854. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fSDA21"></a>: <strong>BFD_RELOC_PPC_VLE_SDA21</strong></dt>
  855. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fSDA21_005fLO"></a>: <strong>BFD_RELOC_PPC_VLE_SDA21_LO</strong></dt>
  856. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fSDAREL_005fLO16A"></a>: <strong>BFD_RELOC_PPC_VLE_SDAREL_LO16A</strong></dt>
  857. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fSDAREL_005fLO16D"></a>: <strong>BFD_RELOC_PPC_VLE_SDAREL_LO16D</strong></dt>
  858. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fSDAREL_005fHI16A"></a>: <strong>BFD_RELOC_PPC_VLE_SDAREL_HI16A</strong></dt>
  859. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fSDAREL_005fHI16D"></a>: <strong>BFD_RELOC_PPC_VLE_SDAREL_HI16D</strong></dt>
  860. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fSDAREL_005fHA16A"></a>: <strong>BFD_RELOC_PPC_VLE_SDAREL_HA16A</strong></dt>
  861. <dt><a name="index-BFD_005fRELOC_005fPPC_005fVLE_005fSDAREL_005fHA16D"></a>: <strong>BFD_RELOC_PPC_VLE_SDAREL_HA16D</strong></dt>
  862. <dt><a name="index-BFD_005fRELOC_005fPPC_005f16DX_005fHA"></a>: <strong>BFD_RELOC_PPC_16DX_HA</strong></dt>
  863. <dt><a name="index-BFD_005fRELOC_005fPPC_005fREL16DX_005fHA"></a>: <strong>BFD_RELOC_PPC_REL16DX_HA</strong></dt>
  864. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fHIGHER"></a>: <strong>BFD_RELOC_PPC64_HIGHER</strong></dt>
  865. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fHIGHER_005fS"></a>: <strong>BFD_RELOC_PPC64_HIGHER_S</strong></dt>
  866. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fHIGHEST"></a>: <strong>BFD_RELOC_PPC64_HIGHEST</strong></dt>
  867. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fHIGHEST_005fS"></a>: <strong>BFD_RELOC_PPC64_HIGHEST_S</strong></dt>
  868. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTOC16_005fLO"></a>: <strong>BFD_RELOC_PPC64_TOC16_LO</strong></dt>
  869. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTOC16_005fHI"></a>: <strong>BFD_RELOC_PPC64_TOC16_HI</strong></dt>
  870. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTOC16_005fHA"></a>: <strong>BFD_RELOC_PPC64_TOC16_HA</strong></dt>
  871. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTOC"></a>: <strong>BFD_RELOC_PPC64_TOC</strong></dt>
  872. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fPLTGOT16"></a>: <strong>BFD_RELOC_PPC64_PLTGOT16</strong></dt>
  873. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fPLTGOT16_005fLO"></a>: <strong>BFD_RELOC_PPC64_PLTGOT16_LO</strong></dt>
  874. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fPLTGOT16_005fHI"></a>: <strong>BFD_RELOC_PPC64_PLTGOT16_HI</strong></dt>
  875. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fPLTGOT16_005fHA"></a>: <strong>BFD_RELOC_PPC64_PLTGOT16_HA</strong></dt>
  876. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fADDR16_005fDS"></a>: <strong>BFD_RELOC_PPC64_ADDR16_DS</strong></dt>
  877. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fADDR16_005fLO_005fDS"></a>: <strong>BFD_RELOC_PPC64_ADDR16_LO_DS</strong></dt>
  878. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fGOT16_005fDS"></a>: <strong>BFD_RELOC_PPC64_GOT16_DS</strong></dt>
  879. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fGOT16_005fLO_005fDS"></a>: <strong>BFD_RELOC_PPC64_GOT16_LO_DS</strong></dt>
  880. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fPLT16_005fLO_005fDS"></a>: <strong>BFD_RELOC_PPC64_PLT16_LO_DS</strong></dt>
  881. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fSECTOFF_005fDS"></a>: <strong>BFD_RELOC_PPC64_SECTOFF_DS</strong></dt>
  882. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fSECTOFF_005fLO_005fDS"></a>: <strong>BFD_RELOC_PPC64_SECTOFF_LO_DS</strong></dt>
  883. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTOC16_005fDS"></a>: <strong>BFD_RELOC_PPC64_TOC16_DS</strong></dt>
  884. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTOC16_005fLO_005fDS"></a>: <strong>BFD_RELOC_PPC64_TOC16_LO_DS</strong></dt>
  885. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fPLTGOT16_005fDS"></a>: <strong>BFD_RELOC_PPC64_PLTGOT16_DS</strong></dt>
  886. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fPLTGOT16_005fLO_005fDS"></a>: <strong>BFD_RELOC_PPC64_PLTGOT16_LO_DS</strong></dt>
  887. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fADDR16_005fHIGH"></a>: <strong>BFD_RELOC_PPC64_ADDR16_HIGH</strong></dt>
  888. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fADDR16_005fHIGHA"></a>: <strong>BFD_RELOC_PPC64_ADDR16_HIGHA</strong></dt>
  889. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fADDR64_005fLOCAL"></a>: <strong>BFD_RELOC_PPC64_ADDR64_LOCAL</strong></dt>
  890. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fENTRY"></a>: <strong>BFD_RELOC_PPC64_ENTRY</strong></dt>
  891. <dd><p>Power(rs6000) and PowerPC relocations.
  892. </p></dd></dl>
  893. <dl>
  894. <dt><a name="index-BFD_005fRELOC_005fPPC_005fTLS"></a>: <strong>BFD_RELOC_PPC_TLS</strong></dt>
  895. <dt><a name="index-BFD_005fRELOC_005fPPC_005fTLSGD"></a>: <strong>BFD_RELOC_PPC_TLSGD</strong></dt>
  896. <dt><a name="index-BFD_005fRELOC_005fPPC_005fTLSLD"></a>: <strong>BFD_RELOC_PPC_TLSLD</strong></dt>
  897. <dt><a name="index-BFD_005fRELOC_005fPPC_005fDTPMOD"></a>: <strong>BFD_RELOC_PPC_DTPMOD</strong></dt>
  898. <dt><a name="index-BFD_005fRELOC_005fPPC_005fTPREL16"></a>: <strong>BFD_RELOC_PPC_TPREL16</strong></dt>
  899. <dt><a name="index-BFD_005fRELOC_005fPPC_005fTPREL16_005fLO"></a>: <strong>BFD_RELOC_PPC_TPREL16_LO</strong></dt>
  900. <dt><a name="index-BFD_005fRELOC_005fPPC_005fTPREL16_005fHI"></a>: <strong>BFD_RELOC_PPC_TPREL16_HI</strong></dt>
  901. <dt><a name="index-BFD_005fRELOC_005fPPC_005fTPREL16_005fHA"></a>: <strong>BFD_RELOC_PPC_TPREL16_HA</strong></dt>
  902. <dt><a name="index-BFD_005fRELOC_005fPPC_005fTPREL"></a>: <strong>BFD_RELOC_PPC_TPREL</strong></dt>
  903. <dt><a name="index-BFD_005fRELOC_005fPPC_005fDTPREL16"></a>: <strong>BFD_RELOC_PPC_DTPREL16</strong></dt>
  904. <dt><a name="index-BFD_005fRELOC_005fPPC_005fDTPREL16_005fLO"></a>: <strong>BFD_RELOC_PPC_DTPREL16_LO</strong></dt>
  905. <dt><a name="index-BFD_005fRELOC_005fPPC_005fDTPREL16_005fHI"></a>: <strong>BFD_RELOC_PPC_DTPREL16_HI</strong></dt>
  906. <dt><a name="index-BFD_005fRELOC_005fPPC_005fDTPREL16_005fHA"></a>: <strong>BFD_RELOC_PPC_DTPREL16_HA</strong></dt>
  907. <dt><a name="index-BFD_005fRELOC_005fPPC_005fDTPREL"></a>: <strong>BFD_RELOC_PPC_DTPREL</strong></dt>
  908. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTLSGD16"></a>: <strong>BFD_RELOC_PPC_GOT_TLSGD16</strong></dt>
  909. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTLSGD16_005fLO"></a>: <strong>BFD_RELOC_PPC_GOT_TLSGD16_LO</strong></dt>
  910. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTLSGD16_005fHI"></a>: <strong>BFD_RELOC_PPC_GOT_TLSGD16_HI</strong></dt>
  911. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTLSGD16_005fHA"></a>: <strong>BFD_RELOC_PPC_GOT_TLSGD16_HA</strong></dt>
  912. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTLSLD16"></a>: <strong>BFD_RELOC_PPC_GOT_TLSLD16</strong></dt>
  913. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTLSLD16_005fLO"></a>: <strong>BFD_RELOC_PPC_GOT_TLSLD16_LO</strong></dt>
  914. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTLSLD16_005fHI"></a>: <strong>BFD_RELOC_PPC_GOT_TLSLD16_HI</strong></dt>
  915. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTLSLD16_005fHA"></a>: <strong>BFD_RELOC_PPC_GOT_TLSLD16_HA</strong></dt>
  916. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTPREL16"></a>: <strong>BFD_RELOC_PPC_GOT_TPREL16</strong></dt>
  917. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTPREL16_005fLO"></a>: <strong>BFD_RELOC_PPC_GOT_TPREL16_LO</strong></dt>
  918. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTPREL16_005fHI"></a>: <strong>BFD_RELOC_PPC_GOT_TPREL16_HI</strong></dt>
  919. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fTPREL16_005fHA"></a>: <strong>BFD_RELOC_PPC_GOT_TPREL16_HA</strong></dt>
  920. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fDTPREL16"></a>: <strong>BFD_RELOC_PPC_GOT_DTPREL16</strong></dt>
  921. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fDTPREL16_005fLO"></a>: <strong>BFD_RELOC_PPC_GOT_DTPREL16_LO</strong></dt>
  922. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fDTPREL16_005fHI"></a>: <strong>BFD_RELOC_PPC_GOT_DTPREL16_HI</strong></dt>
  923. <dt><a name="index-BFD_005fRELOC_005fPPC_005fGOT_005fDTPREL16_005fHA"></a>: <strong>BFD_RELOC_PPC_GOT_DTPREL16_HA</strong></dt>
  924. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTPREL16_005fDS"></a>: <strong>BFD_RELOC_PPC64_TPREL16_DS</strong></dt>
  925. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTPREL16_005fLO_005fDS"></a>: <strong>BFD_RELOC_PPC64_TPREL16_LO_DS</strong></dt>
  926. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTPREL16_005fHIGHER"></a>: <strong>BFD_RELOC_PPC64_TPREL16_HIGHER</strong></dt>
  927. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTPREL16_005fHIGHERA"></a>: <strong>BFD_RELOC_PPC64_TPREL16_HIGHERA</strong></dt>
  928. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTPREL16_005fHIGHEST"></a>: <strong>BFD_RELOC_PPC64_TPREL16_HIGHEST</strong></dt>
  929. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTPREL16_005fHIGHESTA"></a>: <strong>BFD_RELOC_PPC64_TPREL16_HIGHESTA</strong></dt>
  930. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fDTPREL16_005fDS"></a>: <strong>BFD_RELOC_PPC64_DTPREL16_DS</strong></dt>
  931. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fDTPREL16_005fLO_005fDS"></a>: <strong>BFD_RELOC_PPC64_DTPREL16_LO_DS</strong></dt>
  932. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fDTPREL16_005fHIGHER"></a>: <strong>BFD_RELOC_PPC64_DTPREL16_HIGHER</strong></dt>
  933. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fDTPREL16_005fHIGHERA"></a>: <strong>BFD_RELOC_PPC64_DTPREL16_HIGHERA</strong></dt>
  934. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fDTPREL16_005fHIGHEST"></a>: <strong>BFD_RELOC_PPC64_DTPREL16_HIGHEST</strong></dt>
  935. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fDTPREL16_005fHIGHESTA"></a>: <strong>BFD_RELOC_PPC64_DTPREL16_HIGHESTA</strong></dt>
  936. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTPREL16_005fHIGH"></a>: <strong>BFD_RELOC_PPC64_TPREL16_HIGH</strong></dt>
  937. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fTPREL16_005fHIGHA"></a>: <strong>BFD_RELOC_PPC64_TPREL16_HIGHA</strong></dt>
  938. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fDTPREL16_005fHIGH"></a>: <strong>BFD_RELOC_PPC64_DTPREL16_HIGH</strong></dt>
  939. <dt><a name="index-BFD_005fRELOC_005fPPC64_005fDTPREL16_005fHIGHA"></a>: <strong>BFD_RELOC_PPC64_DTPREL16_HIGHA</strong></dt>
  940. <dd><p>PowerPC and PowerPC64 thread-local storage relocations.
  941. </p></dd></dl>
  942. <dl>
  943. <dt><a name="index-BFD_005fRELOC_005fI370_005fD12"></a>: <strong>BFD_RELOC_I370_D12</strong></dt>
  944. <dd><p>IBM 370/390 relocations
  945. </p></dd></dl>
  946. <dl>
  947. <dt><a name="index-BFD_005fRELOC_005fCTOR"></a>: <strong>BFD_RELOC_CTOR</strong></dt>
  948. <dd><p>The type of reloc used to build a constructor table - at the moment
  949. probably a 32 bit wide absolute relocation, but the target can choose.
  950. It generally does map to one of the other relocation types.
  951. </p></dd></dl>
  952. <dl>
  953. <dt><a name="index-BFD_005fRELOC_005fARM_005fPCREL_005fBRANCH"></a>: <strong>BFD_RELOC_ARM_PCREL_BRANCH</strong></dt>
  954. <dd><p>ARM 26 bit pc-relative branch. The lowest two bits must be zero and are
  955. not stored in the instruction.
  956. </p></dd></dl>
  957. <dl>
  958. <dt><a name="index-BFD_005fRELOC_005fARM_005fPCREL_005fBLX"></a>: <strong>BFD_RELOC_ARM_PCREL_BLX</strong></dt>
  959. <dd><p>ARM 26 bit pc-relative branch. The lowest bit must be zero and is
  960. not stored in the instruction. The 2nd lowest bit comes from a 1 bit
  961. field in the instruction.
  962. </p></dd></dl>
  963. <dl>
  964. <dt><a name="index-BFD_005fRELOC_005fTHUMB_005fPCREL_005fBLX"></a>: <strong>BFD_RELOC_THUMB_PCREL_BLX</strong></dt>
  965. <dd><p>Thumb 22 bit pc-relative branch. The lowest bit must be zero and is
  966. not stored in the instruction. The 2nd lowest bit comes from a 1 bit
  967. field in the instruction.
  968. </p></dd></dl>
  969. <dl>
  970. <dt><a name="index-BFD_005fRELOC_005fARM_005fPCREL_005fCALL"></a>: <strong>BFD_RELOC_ARM_PCREL_CALL</strong></dt>
  971. <dd><p>ARM 26-bit pc-relative branch for an unconditional BL or BLX instruction.
  972. </p></dd></dl>
  973. <dl>
  974. <dt><a name="index-BFD_005fRELOC_005fARM_005fPCREL_005fJUMP"></a>: <strong>BFD_RELOC_ARM_PCREL_JUMP</strong></dt>
  975. <dd><p>ARM 26-bit pc-relative branch for B or conditional BL instruction.
  976. </p></dd></dl>
  977. <dl>
  978. <dt><a name="index-BFD_005fRELOC_005fTHUMB_005fPCREL_005fBRANCH7"></a>: <strong>BFD_RELOC_THUMB_PCREL_BRANCH7</strong></dt>
  979. <dt><a name="index-BFD_005fRELOC_005fTHUMB_005fPCREL_005fBRANCH9"></a>: <strong>BFD_RELOC_THUMB_PCREL_BRANCH9</strong></dt>
  980. <dt><a name="index-BFD_005fRELOC_005fTHUMB_005fPCREL_005fBRANCH12"></a>: <strong>BFD_RELOC_THUMB_PCREL_BRANCH12</strong></dt>
  981. <dt><a name="index-BFD_005fRELOC_005fTHUMB_005fPCREL_005fBRANCH20"></a>: <strong>BFD_RELOC_THUMB_PCREL_BRANCH20</strong></dt>
  982. <dt><a name="index-BFD_005fRELOC_005fTHUMB_005fPCREL_005fBRANCH23"></a>: <strong>BFD_RELOC_THUMB_PCREL_BRANCH23</strong></dt>
  983. <dt><a name="index-BFD_005fRELOC_005fTHUMB_005fPCREL_005fBRANCH25"></a>: <strong>BFD_RELOC_THUMB_PCREL_BRANCH25</strong></dt>
  984. <dd><p>Thumb 7-, 9-, 12-, 20-, 23-, and 25-bit pc-relative branches.
  985. The lowest bit must be zero and is not stored in the instruction.
  986. Note that the corresponding ELF R_ARM_THM_JUMPnn constant has an
  987. &quot;nn&quot; one smaller in all cases. Note further that BRANCH23
  988. corresponds to R_ARM_THM_CALL.
  989. </p></dd></dl>
  990. <dl>
  991. <dt><a name="index-BFD_005fRELOC_005fARM_005fOFFSET_005fIMM"></a>: <strong>BFD_RELOC_ARM_OFFSET_IMM</strong></dt>
  992. <dd><p>12-bit immediate offset, used in ARM-format ldr and str instructions.
  993. </p></dd></dl>
  994. <dl>
  995. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fOFFSET"></a>: <strong>BFD_RELOC_ARM_THUMB_OFFSET</strong></dt>
  996. <dd><p>5-bit immediate offset, used in Thumb-format ldr and str instructions.
  997. </p></dd></dl>
  998. <dl>
  999. <dt><a name="index-BFD_005fRELOC_005fARM_005fTARGET1"></a>: <strong>BFD_RELOC_ARM_TARGET1</strong></dt>
  1000. <dd><p>Pc-relative or absolute relocation depending on target. Used for
  1001. entries in .init_array sections.
  1002. </p></dd></dl>
  1003. <dl>
  1004. <dt><a name="index-BFD_005fRELOC_005fARM_005fROSEGREL32"></a>: <strong>BFD_RELOC_ARM_ROSEGREL32</strong></dt>
  1005. <dd><p>Read-only segment base relative address.
  1006. </p></dd></dl>
  1007. <dl>
  1008. <dt><a name="index-BFD_005fRELOC_005fARM_005fSBREL32"></a>: <strong>BFD_RELOC_ARM_SBREL32</strong></dt>
  1009. <dd><p>Data segment base relative address.
  1010. </p></dd></dl>
  1011. <dl>
  1012. <dt><a name="index-BFD_005fRELOC_005fARM_005fTARGET2"></a>: <strong>BFD_RELOC_ARM_TARGET2</strong></dt>
  1013. <dd><p>This reloc is used for references to RTTI data from exception handling
  1014. tables. The actual definition depends on the target. It may be a
  1015. pc-relative or some form of GOT-indirect relocation.
  1016. </p></dd></dl>
  1017. <dl>
  1018. <dt><a name="index-BFD_005fRELOC_005fARM_005fPREL31"></a>: <strong>BFD_RELOC_ARM_PREL31</strong></dt>
  1019. <dd><p>31-bit PC relative address.
  1020. </p></dd></dl>
  1021. <dl>
  1022. <dt><a name="index-BFD_005fRELOC_005fARM_005fMOVW"></a>: <strong>BFD_RELOC_ARM_MOVW</strong></dt>
  1023. <dt><a name="index-BFD_005fRELOC_005fARM_005fMOVT"></a>: <strong>BFD_RELOC_ARM_MOVT</strong></dt>
  1024. <dt><a name="index-BFD_005fRELOC_005fARM_005fMOVW_005fPCREL"></a>: <strong>BFD_RELOC_ARM_MOVW_PCREL</strong></dt>
  1025. <dt><a name="index-BFD_005fRELOC_005fARM_005fMOVT_005fPCREL"></a>: <strong>BFD_RELOC_ARM_MOVT_PCREL</strong></dt>
  1026. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fMOVW"></a>: <strong>BFD_RELOC_ARM_THUMB_MOVW</strong></dt>
  1027. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fMOVT"></a>: <strong>BFD_RELOC_ARM_THUMB_MOVT</strong></dt>
  1028. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fMOVW_005fPCREL"></a>: <strong>BFD_RELOC_ARM_THUMB_MOVW_PCREL</strong></dt>
  1029. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fMOVT_005fPCREL"></a>: <strong>BFD_RELOC_ARM_THUMB_MOVT_PCREL</strong></dt>
  1030. <dd><p>Low and High halfword relocations for MOVW and MOVT instructions.
  1031. </p></dd></dl>
  1032. <dl>
  1033. <dt><a name="index-BFD_005fRELOC_005fARM_005fJUMP_005fSLOT"></a>: <strong>BFD_RELOC_ARM_JUMP_SLOT</strong></dt>
  1034. <dt><a name="index-BFD_005fRELOC_005fARM_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_ARM_GLOB_DAT</strong></dt>
  1035. <dt><a name="index-BFD_005fRELOC_005fARM_005fGOT32"></a>: <strong>BFD_RELOC_ARM_GOT32</strong></dt>
  1036. <dt><a name="index-BFD_005fRELOC_005fARM_005fPLT32"></a>: <strong>BFD_RELOC_ARM_PLT32</strong></dt>
  1037. <dt><a name="index-BFD_005fRELOC_005fARM_005fRELATIVE"></a>: <strong>BFD_RELOC_ARM_RELATIVE</strong></dt>
  1038. <dt><a name="index-BFD_005fRELOC_005fARM_005fGOTOFF"></a>: <strong>BFD_RELOC_ARM_GOTOFF</strong></dt>
  1039. <dt><a name="index-BFD_005fRELOC_005fARM_005fGOTPC"></a>: <strong>BFD_RELOC_ARM_GOTPC</strong></dt>
  1040. <dt><a name="index-BFD_005fRELOC_005fARM_005fGOT_005fPREL"></a>: <strong>BFD_RELOC_ARM_GOT_PREL</strong></dt>
  1041. <dd><p>Relocations for setting up GOTs and PLTs for shared libraries.
  1042. </p></dd></dl>
  1043. <dl>
  1044. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fGD32"></a>: <strong>BFD_RELOC_ARM_TLS_GD32</strong></dt>
  1045. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fLDO32"></a>: <strong>BFD_RELOC_ARM_TLS_LDO32</strong></dt>
  1046. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fLDM32"></a>: <strong>BFD_RELOC_ARM_TLS_LDM32</strong></dt>
  1047. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fDTPOFF32"></a>: <strong>BFD_RELOC_ARM_TLS_DTPOFF32</strong></dt>
  1048. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fDTPMOD32"></a>: <strong>BFD_RELOC_ARM_TLS_DTPMOD32</strong></dt>
  1049. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fTPOFF32"></a>: <strong>BFD_RELOC_ARM_TLS_TPOFF32</strong></dt>
  1050. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fIE32"></a>: <strong>BFD_RELOC_ARM_TLS_IE32</strong></dt>
  1051. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fLE32"></a>: <strong>BFD_RELOC_ARM_TLS_LE32</strong></dt>
  1052. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fGOTDESC"></a>: <strong>BFD_RELOC_ARM_TLS_GOTDESC</strong></dt>
  1053. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fCALL"></a>: <strong>BFD_RELOC_ARM_TLS_CALL</strong></dt>
  1054. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHM_005fTLS_005fCALL"></a>: <strong>BFD_RELOC_ARM_THM_TLS_CALL</strong></dt>
  1055. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fDESCSEQ"></a>: <strong>BFD_RELOC_ARM_TLS_DESCSEQ</strong></dt>
  1056. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHM_005fTLS_005fDESCSEQ"></a>: <strong>BFD_RELOC_ARM_THM_TLS_DESCSEQ</strong></dt>
  1057. <dt><a name="index-BFD_005fRELOC_005fARM_005fTLS_005fDESC"></a>: <strong>BFD_RELOC_ARM_TLS_DESC</strong></dt>
  1058. <dd><p>ARM thread-local storage relocations.
  1059. </p></dd></dl>
  1060. <dl>
  1061. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fPC_005fG0_005fNC"></a>: <strong>BFD_RELOC_ARM_ALU_PC_G0_NC</strong></dt>
  1062. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fPC_005fG0"></a>: <strong>BFD_RELOC_ARM_ALU_PC_G0</strong></dt>
  1063. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fPC_005fG1_005fNC"></a>: <strong>BFD_RELOC_ARM_ALU_PC_G1_NC</strong></dt>
  1064. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fPC_005fG1"></a>: <strong>BFD_RELOC_ARM_ALU_PC_G1</strong></dt>
  1065. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fPC_005fG2"></a>: <strong>BFD_RELOC_ARM_ALU_PC_G2</strong></dt>
  1066. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDR_005fPC_005fG0"></a>: <strong>BFD_RELOC_ARM_LDR_PC_G0</strong></dt>
  1067. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDR_005fPC_005fG1"></a>: <strong>BFD_RELOC_ARM_LDR_PC_G1</strong></dt>
  1068. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDR_005fPC_005fG2"></a>: <strong>BFD_RELOC_ARM_LDR_PC_G2</strong></dt>
  1069. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDRS_005fPC_005fG0"></a>: <strong>BFD_RELOC_ARM_LDRS_PC_G0</strong></dt>
  1070. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDRS_005fPC_005fG1"></a>: <strong>BFD_RELOC_ARM_LDRS_PC_G1</strong></dt>
  1071. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDRS_005fPC_005fG2"></a>: <strong>BFD_RELOC_ARM_LDRS_PC_G2</strong></dt>
  1072. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDC_005fPC_005fG0"></a>: <strong>BFD_RELOC_ARM_LDC_PC_G0</strong></dt>
  1073. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDC_005fPC_005fG1"></a>: <strong>BFD_RELOC_ARM_LDC_PC_G1</strong></dt>
  1074. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDC_005fPC_005fG2"></a>: <strong>BFD_RELOC_ARM_LDC_PC_G2</strong></dt>
  1075. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fSB_005fG0_005fNC"></a>: <strong>BFD_RELOC_ARM_ALU_SB_G0_NC</strong></dt>
  1076. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fSB_005fG0"></a>: <strong>BFD_RELOC_ARM_ALU_SB_G0</strong></dt>
  1077. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fSB_005fG1_005fNC"></a>: <strong>BFD_RELOC_ARM_ALU_SB_G1_NC</strong></dt>
  1078. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fSB_005fG1"></a>: <strong>BFD_RELOC_ARM_ALU_SB_G1</strong></dt>
  1079. <dt><a name="index-BFD_005fRELOC_005fARM_005fALU_005fSB_005fG2"></a>: <strong>BFD_RELOC_ARM_ALU_SB_G2</strong></dt>
  1080. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDR_005fSB_005fG0"></a>: <strong>BFD_RELOC_ARM_LDR_SB_G0</strong></dt>
  1081. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDR_005fSB_005fG1"></a>: <strong>BFD_RELOC_ARM_LDR_SB_G1</strong></dt>
  1082. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDR_005fSB_005fG2"></a>: <strong>BFD_RELOC_ARM_LDR_SB_G2</strong></dt>
  1083. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDRS_005fSB_005fG0"></a>: <strong>BFD_RELOC_ARM_LDRS_SB_G0</strong></dt>
  1084. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDRS_005fSB_005fG1"></a>: <strong>BFD_RELOC_ARM_LDRS_SB_G1</strong></dt>
  1085. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDRS_005fSB_005fG2"></a>: <strong>BFD_RELOC_ARM_LDRS_SB_G2</strong></dt>
  1086. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDC_005fSB_005fG0"></a>: <strong>BFD_RELOC_ARM_LDC_SB_G0</strong></dt>
  1087. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDC_005fSB_005fG1"></a>: <strong>BFD_RELOC_ARM_LDC_SB_G1</strong></dt>
  1088. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDC_005fSB_005fG2"></a>: <strong>BFD_RELOC_ARM_LDC_SB_G2</strong></dt>
  1089. <dd><p>ARM group relocations.
  1090. </p></dd></dl>
  1091. <dl>
  1092. <dt><a name="index-BFD_005fRELOC_005fARM_005fV4BX"></a>: <strong>BFD_RELOC_ARM_V4BX</strong></dt>
  1093. <dd><p>Annotation of BX instructions.
  1094. </p></dd></dl>
  1095. <dl>
  1096. <dt><a name="index-BFD_005fRELOC_005fARM_005fIRELATIVE"></a>: <strong>BFD_RELOC_ARM_IRELATIVE</strong></dt>
  1097. <dd><p>ARM support for STT_GNU_IFUNC.
  1098. </p></dd></dl>
  1099. <dl>
  1100. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fALU_005fABS_005fG0_005fNC"></a>: <strong>BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC</strong></dt>
  1101. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fALU_005fABS_005fG1_005fNC"></a>: <strong>BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC</strong></dt>
  1102. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fALU_005fABS_005fG2_005fNC"></a>: <strong>BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC</strong></dt>
  1103. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fALU_005fABS_005fG3_005fNC"></a>: <strong>BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC</strong></dt>
  1104. <dd><p>Thumb1 relocations to support execute-only code.
  1105. </p></dd></dl>
  1106. <dl>
  1107. <dt><a name="index-BFD_005fRELOC_005fARM_005fIMMEDIATE"></a>: <strong>BFD_RELOC_ARM_IMMEDIATE</strong></dt>
  1108. <dt><a name="index-BFD_005fRELOC_005fARM_005fADRL_005fIMMEDIATE"></a>: <strong>BFD_RELOC_ARM_ADRL_IMMEDIATE</strong></dt>
  1109. <dt><a name="index-BFD_005fRELOC_005fARM_005fT32_005fIMMEDIATE"></a>: <strong>BFD_RELOC_ARM_T32_IMMEDIATE</strong></dt>
  1110. <dt><a name="index-BFD_005fRELOC_005fARM_005fT32_005fADD_005fIMM"></a>: <strong>BFD_RELOC_ARM_T32_ADD_IMM</strong></dt>
  1111. <dt><a name="index-BFD_005fRELOC_005fARM_005fT32_005fIMM12"></a>: <strong>BFD_RELOC_ARM_T32_IMM12</strong></dt>
  1112. <dt><a name="index-BFD_005fRELOC_005fARM_005fT32_005fADD_005fPC12"></a>: <strong>BFD_RELOC_ARM_T32_ADD_PC12</strong></dt>
  1113. <dt><a name="index-BFD_005fRELOC_005fARM_005fSHIFT_005fIMM"></a>: <strong>BFD_RELOC_ARM_SHIFT_IMM</strong></dt>
  1114. <dt><a name="index-BFD_005fRELOC_005fARM_005fSMC"></a>: <strong>BFD_RELOC_ARM_SMC</strong></dt>
  1115. <dt><a name="index-BFD_005fRELOC_005fARM_005fHVC"></a>: <strong>BFD_RELOC_ARM_HVC</strong></dt>
  1116. <dt><a name="index-BFD_005fRELOC_005fARM_005fSWI"></a>: <strong>BFD_RELOC_ARM_SWI</strong></dt>
  1117. <dt><a name="index-BFD_005fRELOC_005fARM_005fMULTI"></a>: <strong>BFD_RELOC_ARM_MULTI</strong></dt>
  1118. <dt><a name="index-BFD_005fRELOC_005fARM_005fCP_005fOFF_005fIMM"></a>: <strong>BFD_RELOC_ARM_CP_OFF_IMM</strong></dt>
  1119. <dt><a name="index-BFD_005fRELOC_005fARM_005fCP_005fOFF_005fIMM_005fS2"></a>: <strong>BFD_RELOC_ARM_CP_OFF_IMM_S2</strong></dt>
  1120. <dt><a name="index-BFD_005fRELOC_005fARM_005fT32_005fCP_005fOFF_005fIMM"></a>: <strong>BFD_RELOC_ARM_T32_CP_OFF_IMM</strong></dt>
  1121. <dt><a name="index-BFD_005fRELOC_005fARM_005fT32_005fCP_005fOFF_005fIMM_005fS2"></a>: <strong>BFD_RELOC_ARM_T32_CP_OFF_IMM_S2</strong></dt>
  1122. <dt><a name="index-BFD_005fRELOC_005fARM_005fADR_005fIMM"></a>: <strong>BFD_RELOC_ARM_ADR_IMM</strong></dt>
  1123. <dt><a name="index-BFD_005fRELOC_005fARM_005fLDR_005fIMM"></a>: <strong>BFD_RELOC_ARM_LDR_IMM</strong></dt>
  1124. <dt><a name="index-BFD_005fRELOC_005fARM_005fLITERAL"></a>: <strong>BFD_RELOC_ARM_LITERAL</strong></dt>
  1125. <dt><a name="index-BFD_005fRELOC_005fARM_005fIN_005fPOOL"></a>: <strong>BFD_RELOC_ARM_IN_POOL</strong></dt>
  1126. <dt><a name="index-BFD_005fRELOC_005fARM_005fOFFSET_005fIMM8"></a>: <strong>BFD_RELOC_ARM_OFFSET_IMM8</strong></dt>
  1127. <dt><a name="index-BFD_005fRELOC_005fARM_005fT32_005fOFFSET_005fU8"></a>: <strong>BFD_RELOC_ARM_T32_OFFSET_U8</strong></dt>
  1128. <dt><a name="index-BFD_005fRELOC_005fARM_005fT32_005fOFFSET_005fIMM"></a>: <strong>BFD_RELOC_ARM_T32_OFFSET_IMM</strong></dt>
  1129. <dt><a name="index-BFD_005fRELOC_005fARM_005fHWLITERAL"></a>: <strong>BFD_RELOC_ARM_HWLITERAL</strong></dt>
  1130. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fADD"></a>: <strong>BFD_RELOC_ARM_THUMB_ADD</strong></dt>
  1131. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fIMM"></a>: <strong>BFD_RELOC_ARM_THUMB_IMM</strong></dt>
  1132. <dt><a name="index-BFD_005fRELOC_005fARM_005fTHUMB_005fSHIFT"></a>: <strong>BFD_RELOC_ARM_THUMB_SHIFT</strong></dt>
  1133. <dd><p>These relocs are only used within the ARM assembler. They are not
  1134. (at present) written to any object files.
  1135. </p></dd></dl>
  1136. <dl>
  1137. <dt><a name="index-BFD_005fRELOC_005fSH_005fPCDISP8BY2"></a>: <strong>BFD_RELOC_SH_PCDISP8BY2</strong></dt>
  1138. <dt><a name="index-BFD_005fRELOC_005fSH_005fPCDISP12BY2"></a>: <strong>BFD_RELOC_SH_PCDISP12BY2</strong></dt>
  1139. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM3"></a>: <strong>BFD_RELOC_SH_IMM3</strong></dt>
  1140. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM3U"></a>: <strong>BFD_RELOC_SH_IMM3U</strong></dt>
  1141. <dt><a name="index-BFD_005fRELOC_005fSH_005fDISP12"></a>: <strong>BFD_RELOC_SH_DISP12</strong></dt>
  1142. <dt><a name="index-BFD_005fRELOC_005fSH_005fDISP12BY2"></a>: <strong>BFD_RELOC_SH_DISP12BY2</strong></dt>
  1143. <dt><a name="index-BFD_005fRELOC_005fSH_005fDISP12BY4"></a>: <strong>BFD_RELOC_SH_DISP12BY4</strong></dt>
  1144. <dt><a name="index-BFD_005fRELOC_005fSH_005fDISP12BY8"></a>: <strong>BFD_RELOC_SH_DISP12BY8</strong></dt>
  1145. <dt><a name="index-BFD_005fRELOC_005fSH_005fDISP20"></a>: <strong>BFD_RELOC_SH_DISP20</strong></dt>
  1146. <dt><a name="index-BFD_005fRELOC_005fSH_005fDISP20BY8"></a>: <strong>BFD_RELOC_SH_DISP20BY8</strong></dt>
  1147. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM4"></a>: <strong>BFD_RELOC_SH_IMM4</strong></dt>
  1148. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM4BY2"></a>: <strong>BFD_RELOC_SH_IMM4BY2</strong></dt>
  1149. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM4BY4"></a>: <strong>BFD_RELOC_SH_IMM4BY4</strong></dt>
  1150. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM8"></a>: <strong>BFD_RELOC_SH_IMM8</strong></dt>
  1151. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM8BY2"></a>: <strong>BFD_RELOC_SH_IMM8BY2</strong></dt>
  1152. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM8BY4"></a>: <strong>BFD_RELOC_SH_IMM8BY4</strong></dt>
  1153. <dt><a name="index-BFD_005fRELOC_005fSH_005fPCRELIMM8BY2"></a>: <strong>BFD_RELOC_SH_PCRELIMM8BY2</strong></dt>
  1154. <dt><a name="index-BFD_005fRELOC_005fSH_005fPCRELIMM8BY4"></a>: <strong>BFD_RELOC_SH_PCRELIMM8BY4</strong></dt>
  1155. <dt><a name="index-BFD_005fRELOC_005fSH_005fSWITCH16"></a>: <strong>BFD_RELOC_SH_SWITCH16</strong></dt>
  1156. <dt><a name="index-BFD_005fRELOC_005fSH_005fSWITCH32"></a>: <strong>BFD_RELOC_SH_SWITCH32</strong></dt>
  1157. <dt><a name="index-BFD_005fRELOC_005fSH_005fUSES"></a>: <strong>BFD_RELOC_SH_USES</strong></dt>
  1158. <dt><a name="index-BFD_005fRELOC_005fSH_005fCOUNT"></a>: <strong>BFD_RELOC_SH_COUNT</strong></dt>
  1159. <dt><a name="index-BFD_005fRELOC_005fSH_005fALIGN"></a>: <strong>BFD_RELOC_SH_ALIGN</strong></dt>
  1160. <dt><a name="index-BFD_005fRELOC_005fSH_005fCODE"></a>: <strong>BFD_RELOC_SH_CODE</strong></dt>
  1161. <dt><a name="index-BFD_005fRELOC_005fSH_005fDATA"></a>: <strong>BFD_RELOC_SH_DATA</strong></dt>
  1162. <dt><a name="index-BFD_005fRELOC_005fSH_005fLABEL"></a>: <strong>BFD_RELOC_SH_LABEL</strong></dt>
  1163. <dt><a name="index-BFD_005fRELOC_005fSH_005fLOOP_005fSTART"></a>: <strong>BFD_RELOC_SH_LOOP_START</strong></dt>
  1164. <dt><a name="index-BFD_005fRELOC_005fSH_005fLOOP_005fEND"></a>: <strong>BFD_RELOC_SH_LOOP_END</strong></dt>
  1165. <dt><a name="index-BFD_005fRELOC_005fSH_005fCOPY"></a>: <strong>BFD_RELOC_SH_COPY</strong></dt>
  1166. <dt><a name="index-BFD_005fRELOC_005fSH_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_SH_GLOB_DAT</strong></dt>
  1167. <dt><a name="index-BFD_005fRELOC_005fSH_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_SH_JMP_SLOT</strong></dt>
  1168. <dt><a name="index-BFD_005fRELOC_005fSH_005fRELATIVE"></a>: <strong>BFD_RELOC_SH_RELATIVE</strong></dt>
  1169. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPC"></a>: <strong>BFD_RELOC_SH_GOTPC</strong></dt>
  1170. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOT_005fLOW16"></a>: <strong>BFD_RELOC_SH_GOT_LOW16</strong></dt>
  1171. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOT_005fMEDLOW16"></a>: <strong>BFD_RELOC_SH_GOT_MEDLOW16</strong></dt>
  1172. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOT_005fMEDHI16"></a>: <strong>BFD_RELOC_SH_GOT_MEDHI16</strong></dt>
  1173. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOT_005fHI16"></a>: <strong>BFD_RELOC_SH_GOT_HI16</strong></dt>
  1174. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPLT_005fLOW16"></a>: <strong>BFD_RELOC_SH_GOTPLT_LOW16</strong></dt>
  1175. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPLT_005fMEDLOW16"></a>: <strong>BFD_RELOC_SH_GOTPLT_MEDLOW16</strong></dt>
  1176. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPLT_005fMEDHI16"></a>: <strong>BFD_RELOC_SH_GOTPLT_MEDHI16</strong></dt>
  1177. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPLT_005fHI16"></a>: <strong>BFD_RELOC_SH_GOTPLT_HI16</strong></dt>
  1178. <dt><a name="index-BFD_005fRELOC_005fSH_005fPLT_005fLOW16"></a>: <strong>BFD_RELOC_SH_PLT_LOW16</strong></dt>
  1179. <dt><a name="index-BFD_005fRELOC_005fSH_005fPLT_005fMEDLOW16"></a>: <strong>BFD_RELOC_SH_PLT_MEDLOW16</strong></dt>
  1180. <dt><a name="index-BFD_005fRELOC_005fSH_005fPLT_005fMEDHI16"></a>: <strong>BFD_RELOC_SH_PLT_MEDHI16</strong></dt>
  1181. <dt><a name="index-BFD_005fRELOC_005fSH_005fPLT_005fHI16"></a>: <strong>BFD_RELOC_SH_PLT_HI16</strong></dt>
  1182. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTOFF_005fLOW16"></a>: <strong>BFD_RELOC_SH_GOTOFF_LOW16</strong></dt>
  1183. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTOFF_005fMEDLOW16"></a>: <strong>BFD_RELOC_SH_GOTOFF_MEDLOW16</strong></dt>
  1184. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTOFF_005fMEDHI16"></a>: <strong>BFD_RELOC_SH_GOTOFF_MEDHI16</strong></dt>
  1185. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTOFF_005fHI16"></a>: <strong>BFD_RELOC_SH_GOTOFF_HI16</strong></dt>
  1186. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPC_005fLOW16"></a>: <strong>BFD_RELOC_SH_GOTPC_LOW16</strong></dt>
  1187. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPC_005fMEDLOW16"></a>: <strong>BFD_RELOC_SH_GOTPC_MEDLOW16</strong></dt>
  1188. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPC_005fMEDHI16"></a>: <strong>BFD_RELOC_SH_GOTPC_MEDHI16</strong></dt>
  1189. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPC_005fHI16"></a>: <strong>BFD_RELOC_SH_GOTPC_HI16</strong></dt>
  1190. <dt><a name="index-BFD_005fRELOC_005fSH_005fCOPY64"></a>: <strong>BFD_RELOC_SH_COPY64</strong></dt>
  1191. <dt><a name="index-BFD_005fRELOC_005fSH_005fGLOB_005fDAT64"></a>: <strong>BFD_RELOC_SH_GLOB_DAT64</strong></dt>
  1192. <dt><a name="index-BFD_005fRELOC_005fSH_005fJMP_005fSLOT64"></a>: <strong>BFD_RELOC_SH_JMP_SLOT64</strong></dt>
  1193. <dt><a name="index-BFD_005fRELOC_005fSH_005fRELATIVE64"></a>: <strong>BFD_RELOC_SH_RELATIVE64</strong></dt>
  1194. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOT10BY4"></a>: <strong>BFD_RELOC_SH_GOT10BY4</strong></dt>
  1195. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOT10BY8"></a>: <strong>BFD_RELOC_SH_GOT10BY8</strong></dt>
  1196. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPLT10BY4"></a>: <strong>BFD_RELOC_SH_GOTPLT10BY4</strong></dt>
  1197. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPLT10BY8"></a>: <strong>BFD_RELOC_SH_GOTPLT10BY8</strong></dt>
  1198. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTPLT32"></a>: <strong>BFD_RELOC_SH_GOTPLT32</strong></dt>
  1199. <dt><a name="index-BFD_005fRELOC_005fSH_005fSHMEDIA_005fCODE"></a>: <strong>BFD_RELOC_SH_SHMEDIA_CODE</strong></dt>
  1200. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMU5"></a>: <strong>BFD_RELOC_SH_IMMU5</strong></dt>
  1201. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMS6"></a>: <strong>BFD_RELOC_SH_IMMS6</strong></dt>
  1202. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMS6BY32"></a>: <strong>BFD_RELOC_SH_IMMS6BY32</strong></dt>
  1203. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMU6"></a>: <strong>BFD_RELOC_SH_IMMU6</strong></dt>
  1204. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMS10"></a>: <strong>BFD_RELOC_SH_IMMS10</strong></dt>
  1205. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMS10BY2"></a>: <strong>BFD_RELOC_SH_IMMS10BY2</strong></dt>
  1206. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMS10BY4"></a>: <strong>BFD_RELOC_SH_IMMS10BY4</strong></dt>
  1207. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMS10BY8"></a>: <strong>BFD_RELOC_SH_IMMS10BY8</strong></dt>
  1208. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMS16"></a>: <strong>BFD_RELOC_SH_IMMS16</strong></dt>
  1209. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMMU16"></a>: <strong>BFD_RELOC_SH_IMMU16</strong></dt>
  1210. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM_005fLOW16"></a>: <strong>BFD_RELOC_SH_IMM_LOW16</strong></dt>
  1211. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM_005fLOW16_005fPCREL"></a>: <strong>BFD_RELOC_SH_IMM_LOW16_PCREL</strong></dt>
  1212. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM_005fMEDLOW16"></a>: <strong>BFD_RELOC_SH_IMM_MEDLOW16</strong></dt>
  1213. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM_005fMEDLOW16_005fPCREL"></a>: <strong>BFD_RELOC_SH_IMM_MEDLOW16_PCREL</strong></dt>
  1214. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM_005fMEDHI16"></a>: <strong>BFD_RELOC_SH_IMM_MEDHI16</strong></dt>
  1215. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM_005fMEDHI16_005fPCREL"></a>: <strong>BFD_RELOC_SH_IMM_MEDHI16_PCREL</strong></dt>
  1216. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM_005fHI16"></a>: <strong>BFD_RELOC_SH_IMM_HI16</strong></dt>
  1217. <dt><a name="index-BFD_005fRELOC_005fSH_005fIMM_005fHI16_005fPCREL"></a>: <strong>BFD_RELOC_SH_IMM_HI16_PCREL</strong></dt>
  1218. <dt><a name="index-BFD_005fRELOC_005fSH_005fPT_005f16"></a>: <strong>BFD_RELOC_SH_PT_16</strong></dt>
  1219. <dt><a name="index-BFD_005fRELOC_005fSH_005fTLS_005fGD_005f32"></a>: <strong>BFD_RELOC_SH_TLS_GD_32</strong></dt>
  1220. <dt><a name="index-BFD_005fRELOC_005fSH_005fTLS_005fLD_005f32"></a>: <strong>BFD_RELOC_SH_TLS_LD_32</strong></dt>
  1221. <dt><a name="index-BFD_005fRELOC_005fSH_005fTLS_005fLDO_005f32"></a>: <strong>BFD_RELOC_SH_TLS_LDO_32</strong></dt>
  1222. <dt><a name="index-BFD_005fRELOC_005fSH_005fTLS_005fIE_005f32"></a>: <strong>BFD_RELOC_SH_TLS_IE_32</strong></dt>
  1223. <dt><a name="index-BFD_005fRELOC_005fSH_005fTLS_005fLE_005f32"></a>: <strong>BFD_RELOC_SH_TLS_LE_32</strong></dt>
  1224. <dt><a name="index-BFD_005fRELOC_005fSH_005fTLS_005fDTPMOD32"></a>: <strong>BFD_RELOC_SH_TLS_DTPMOD32</strong></dt>
  1225. <dt><a name="index-BFD_005fRELOC_005fSH_005fTLS_005fDTPOFF32"></a>: <strong>BFD_RELOC_SH_TLS_DTPOFF32</strong></dt>
  1226. <dt><a name="index-BFD_005fRELOC_005fSH_005fTLS_005fTPOFF32"></a>: <strong>BFD_RELOC_SH_TLS_TPOFF32</strong></dt>
  1227. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOT20"></a>: <strong>BFD_RELOC_SH_GOT20</strong></dt>
  1228. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTOFF20"></a>: <strong>BFD_RELOC_SH_GOTOFF20</strong></dt>
  1229. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTFUNCDESC"></a>: <strong>BFD_RELOC_SH_GOTFUNCDESC</strong></dt>
  1230. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTFUNCDESC20"></a>: <strong>BFD_RELOC_SH_GOTFUNCDESC20</strong></dt>
  1231. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTOFFFUNCDESC"></a>: <strong>BFD_RELOC_SH_GOTOFFFUNCDESC</strong></dt>
  1232. <dt><a name="index-BFD_005fRELOC_005fSH_005fGOTOFFFUNCDESC20"></a>: <strong>BFD_RELOC_SH_GOTOFFFUNCDESC20</strong></dt>
  1233. <dt><a name="index-BFD_005fRELOC_005fSH_005fFUNCDESC"></a>: <strong>BFD_RELOC_SH_FUNCDESC</strong></dt>
  1234. <dd><p>Renesas / SuperH SH relocs. Not all of these appear in object files.
  1235. </p></dd></dl>
  1236. <dl>
  1237. <dt><a name="index-BFD_005fRELOC_005fARC_005fNONE"></a>: <strong>BFD_RELOC_ARC_NONE</strong></dt>
  1238. <dt><a name="index-BFD_005fRELOC_005fARC_005f8"></a>: <strong>BFD_RELOC_ARC_8</strong></dt>
  1239. <dt><a name="index-BFD_005fRELOC_005fARC_005f16"></a>: <strong>BFD_RELOC_ARC_16</strong></dt>
  1240. <dt><a name="index-BFD_005fRELOC_005fARC_005f24"></a>: <strong>BFD_RELOC_ARC_24</strong></dt>
  1241. <dt><a name="index-BFD_005fRELOC_005fARC_005f32"></a>: <strong>BFD_RELOC_ARC_32</strong></dt>
  1242. <dt><a name="index-BFD_005fRELOC_005fARC_005fN8"></a>: <strong>BFD_RELOC_ARC_N8</strong></dt>
  1243. <dt><a name="index-BFD_005fRELOC_005fARC_005fN16"></a>: <strong>BFD_RELOC_ARC_N16</strong></dt>
  1244. <dt><a name="index-BFD_005fRELOC_005fARC_005fN24"></a>: <strong>BFD_RELOC_ARC_N24</strong></dt>
  1245. <dt><a name="index-BFD_005fRELOC_005fARC_005fN32"></a>: <strong>BFD_RELOC_ARC_N32</strong></dt>
  1246. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA"></a>: <strong>BFD_RELOC_ARC_SDA</strong></dt>
  1247. <dt><a name="index-BFD_005fRELOC_005fARC_005fSECTOFF"></a>: <strong>BFD_RELOC_ARC_SECTOFF</strong></dt>
  1248. <dt><a name="index-BFD_005fRELOC_005fARC_005fS21H_005fPCREL"></a>: <strong>BFD_RELOC_ARC_S21H_PCREL</strong></dt>
  1249. <dt><a name="index-BFD_005fRELOC_005fARC_005fS21W_005fPCREL"></a>: <strong>BFD_RELOC_ARC_S21W_PCREL</strong></dt>
  1250. <dt><a name="index-BFD_005fRELOC_005fARC_005fS25H_005fPCREL"></a>: <strong>BFD_RELOC_ARC_S25H_PCREL</strong></dt>
  1251. <dt><a name="index-BFD_005fRELOC_005fARC_005fS25W_005fPCREL"></a>: <strong>BFD_RELOC_ARC_S25W_PCREL</strong></dt>
  1252. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA32"></a>: <strong>BFD_RELOC_ARC_SDA32</strong></dt>
  1253. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA_005fLDST"></a>: <strong>BFD_RELOC_ARC_SDA_LDST</strong></dt>
  1254. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA_005fLDST1"></a>: <strong>BFD_RELOC_ARC_SDA_LDST1</strong></dt>
  1255. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA_005fLDST2"></a>: <strong>BFD_RELOC_ARC_SDA_LDST2</strong></dt>
  1256. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA16_005fLD"></a>: <strong>BFD_RELOC_ARC_SDA16_LD</strong></dt>
  1257. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA16_005fLD1"></a>: <strong>BFD_RELOC_ARC_SDA16_LD1</strong></dt>
  1258. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA16_005fLD2"></a>: <strong>BFD_RELOC_ARC_SDA16_LD2</strong></dt>
  1259. <dt><a name="index-BFD_005fRELOC_005fARC_005fS13_005fPCREL"></a>: <strong>BFD_RELOC_ARC_S13_PCREL</strong></dt>
  1260. <dt><a name="index-BFD_005fRELOC_005fARC_005fW"></a>: <strong>BFD_RELOC_ARC_W</strong></dt>
  1261. <dt><a name="index-BFD_005fRELOC_005fARC_005f32_005fME"></a>: <strong>BFD_RELOC_ARC_32_ME</strong></dt>
  1262. <dt><a name="index-BFD_005fRELOC_005fARC_005f32_005fME_005fS"></a>: <strong>BFD_RELOC_ARC_32_ME_S</strong></dt>
  1263. <dt><a name="index-BFD_005fRELOC_005fARC_005fN32_005fME"></a>: <strong>BFD_RELOC_ARC_N32_ME</strong></dt>
  1264. <dt><a name="index-BFD_005fRELOC_005fARC_005fSECTOFF_005fME"></a>: <strong>BFD_RELOC_ARC_SECTOFF_ME</strong></dt>
  1265. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA32_005fME"></a>: <strong>BFD_RELOC_ARC_SDA32_ME</strong></dt>
  1266. <dt><a name="index-BFD_005fRELOC_005fARC_005fW_005fME"></a>: <strong>BFD_RELOC_ARC_W_ME</strong></dt>
  1267. <dt><a name="index-BFD_005fRELOC_005fAC_005fSECTOFF_005fU8"></a>: <strong>BFD_RELOC_AC_SECTOFF_U8</strong></dt>
  1268. <dt><a name="index-BFD_005fRELOC_005fAC_005fSECTOFF_005fU8_005f1"></a>: <strong>BFD_RELOC_AC_SECTOFF_U8_1</strong></dt>
  1269. <dt><a name="index-BFD_005fRELOC_005fAC_005fSECTOFF_005fU8_005f2"></a>: <strong>BFD_RELOC_AC_SECTOFF_U8_2</strong></dt>
  1270. <dt><a name="index-BFD_005fRELOC_005fAC_005fSECTOFF_005fS9"></a>: <strong>BFD_RELOC_AC_SECTOFF_S9</strong></dt>
  1271. <dt><a name="index-BFD_005fRELOC_005fAC_005fSECTOFF_005fS9_005f1"></a>: <strong>BFD_RELOC_AC_SECTOFF_S9_1</strong></dt>
  1272. <dt><a name="index-BFD_005fRELOC_005fAC_005fSECTOFF_005fS9_005f2"></a>: <strong>BFD_RELOC_AC_SECTOFF_S9_2</strong></dt>
  1273. <dt><a name="index-BFD_005fRELOC_005fARC_005fSECTOFF_005fME_005f1"></a>: <strong>BFD_RELOC_ARC_SECTOFF_ME_1</strong></dt>
  1274. <dt><a name="index-BFD_005fRELOC_005fARC_005fSECTOFF_005fME_005f2"></a>: <strong>BFD_RELOC_ARC_SECTOFF_ME_2</strong></dt>
  1275. <dt><a name="index-BFD_005fRELOC_005fARC_005fSECTOFF_005f1"></a>: <strong>BFD_RELOC_ARC_SECTOFF_1</strong></dt>
  1276. <dt><a name="index-BFD_005fRELOC_005fARC_005fSECTOFF_005f2"></a>: <strong>BFD_RELOC_ARC_SECTOFF_2</strong></dt>
  1277. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA_005f12"></a>: <strong>BFD_RELOC_ARC_SDA_12</strong></dt>
  1278. <dt><a name="index-BFD_005fRELOC_005fARC_005fSDA16_005fST2"></a>: <strong>BFD_RELOC_ARC_SDA16_ST2</strong></dt>
  1279. <dt><a name="index-BFD_005fRELOC_005fARC_005f32_005fPCREL"></a>: <strong>BFD_RELOC_ARC_32_PCREL</strong></dt>
  1280. <dt><a name="index-BFD_005fRELOC_005fARC_005fPC32"></a>: <strong>BFD_RELOC_ARC_PC32</strong></dt>
  1281. <dt><a name="index-BFD_005fRELOC_005fARC_005fGOT32"></a>: <strong>BFD_RELOC_ARC_GOT32</strong></dt>
  1282. <dt><a name="index-BFD_005fRELOC_005fARC_005fGOTPC32"></a>: <strong>BFD_RELOC_ARC_GOTPC32</strong></dt>
  1283. <dt><a name="index-BFD_005fRELOC_005fARC_005fPLT32"></a>: <strong>BFD_RELOC_ARC_PLT32</strong></dt>
  1284. <dt><a name="index-BFD_005fRELOC_005fARC_005fCOPY"></a>: <strong>BFD_RELOC_ARC_COPY</strong></dt>
  1285. <dt><a name="index-BFD_005fRELOC_005fARC_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_ARC_GLOB_DAT</strong></dt>
  1286. <dt><a name="index-BFD_005fRELOC_005fARC_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_ARC_JMP_SLOT</strong></dt>
  1287. <dt><a name="index-BFD_005fRELOC_005fARC_005fRELATIVE"></a>: <strong>BFD_RELOC_ARC_RELATIVE</strong></dt>
  1288. <dt><a name="index-BFD_005fRELOC_005fARC_005fGOTOFF"></a>: <strong>BFD_RELOC_ARC_GOTOFF</strong></dt>
  1289. <dt><a name="index-BFD_005fRELOC_005fARC_005fGOTPC"></a>: <strong>BFD_RELOC_ARC_GOTPC</strong></dt>
  1290. <dt><a name="index-BFD_005fRELOC_005fARC_005fS21W_005fPCREL_005fPLT"></a>: <strong>BFD_RELOC_ARC_S21W_PCREL_PLT</strong></dt>
  1291. <dt><a name="index-BFD_005fRELOC_005fARC_005fS25H_005fPCREL_005fPLT"></a>: <strong>BFD_RELOC_ARC_S25H_PCREL_PLT</strong></dt>
  1292. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fDTPMOD"></a>: <strong>BFD_RELOC_ARC_TLS_DTPMOD</strong></dt>
  1293. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fTPOFF"></a>: <strong>BFD_RELOC_ARC_TLS_TPOFF</strong></dt>
  1294. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fGD_005fGOT"></a>: <strong>BFD_RELOC_ARC_TLS_GD_GOT</strong></dt>
  1295. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fGD_005fLD"></a>: <strong>BFD_RELOC_ARC_TLS_GD_LD</strong></dt>
  1296. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fGD_005fCALL"></a>: <strong>BFD_RELOC_ARC_TLS_GD_CALL</strong></dt>
  1297. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fIE_005fGOT"></a>: <strong>BFD_RELOC_ARC_TLS_IE_GOT</strong></dt>
  1298. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fDTPOFF"></a>: <strong>BFD_RELOC_ARC_TLS_DTPOFF</strong></dt>
  1299. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fDTPOFF_005fS9"></a>: <strong>BFD_RELOC_ARC_TLS_DTPOFF_S9</strong></dt>
  1300. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fLE_005fS9"></a>: <strong>BFD_RELOC_ARC_TLS_LE_S9</strong></dt>
  1301. <dt><a name="index-BFD_005fRELOC_005fARC_005fTLS_005fLE_005f32"></a>: <strong>BFD_RELOC_ARC_TLS_LE_32</strong></dt>
  1302. <dt><a name="index-BFD_005fRELOC_005fARC_005fS25W_005fPCREL_005fPLT"></a>: <strong>BFD_RELOC_ARC_S25W_PCREL_PLT</strong></dt>
  1303. <dt><a name="index-BFD_005fRELOC_005fARC_005fS21H_005fPCREL_005fPLT"></a>: <strong>BFD_RELOC_ARC_S21H_PCREL_PLT</strong></dt>
  1304. <dt><a name="index-BFD_005fRELOC_005fARC_005fNPS_005fCMEM16"></a>: <strong>BFD_RELOC_ARC_NPS_CMEM16</strong></dt>
  1305. <dd><p>ARC relocs.
  1306. </p></dd></dl>
  1307. <dl>
  1308. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f16_005fIMM"></a>: <strong>BFD_RELOC_BFIN_16_IMM</strong></dt>
  1309. <dd><p>ADI Blackfin 16 bit immediate absolute reloc.
  1310. </p></dd></dl>
  1311. <dl>
  1312. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f16_005fHIGH"></a>: <strong>BFD_RELOC_BFIN_16_HIGH</strong></dt>
  1313. <dd><p>ADI Blackfin 16 bit immediate absolute reloc higher 16 bits.
  1314. </p></dd></dl>
  1315. <dl>
  1316. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f4_005fPCREL"></a>: <strong>BFD_RELOC_BFIN_4_PCREL</strong></dt>
  1317. <dd><p>ADI Blackfin &rsquo;a&rsquo; part of LSETUP.
  1318. </p></dd></dl>
  1319. <dl>
  1320. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f5_005fPCREL"></a>: <strong>BFD_RELOC_BFIN_5_PCREL</strong></dt>
  1321. <dd><p>ADI Blackfin.
  1322. </p></dd></dl>
  1323. <dl>
  1324. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f16_005fLOW"></a>: <strong>BFD_RELOC_BFIN_16_LOW</strong></dt>
  1325. <dd><p>ADI Blackfin 16 bit immediate absolute reloc lower 16 bits.
  1326. </p></dd></dl>
  1327. <dl>
  1328. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f10_005fPCREL"></a>: <strong>BFD_RELOC_BFIN_10_PCREL</strong></dt>
  1329. <dd><p>ADI Blackfin.
  1330. </p></dd></dl>
  1331. <dl>
  1332. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f11_005fPCREL"></a>: <strong>BFD_RELOC_BFIN_11_PCREL</strong></dt>
  1333. <dd><p>ADI Blackfin &rsquo;b&rsquo; part of LSETUP.
  1334. </p></dd></dl>
  1335. <dl>
  1336. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f12_005fPCREL_005fJUMP"></a>: <strong>BFD_RELOC_BFIN_12_PCREL_JUMP</strong></dt>
  1337. <dd><p>ADI Blackfin.
  1338. </p></dd></dl>
  1339. <dl>
  1340. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f12_005fPCREL_005fJUMP_005fS"></a>: <strong>BFD_RELOC_BFIN_12_PCREL_JUMP_S</strong></dt>
  1341. <dd><p>ADI Blackfin Short jump, pcrel.
  1342. </p></dd></dl>
  1343. <dl>
  1344. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f24_005fPCREL_005fCALL_005fX"></a>: <strong>BFD_RELOC_BFIN_24_PCREL_CALL_X</strong></dt>
  1345. <dd><p>ADI Blackfin Call.x not implemented.
  1346. </p></dd></dl>
  1347. <dl>
  1348. <dt><a name="index-BFD_005fRELOC_005fBFIN_005f24_005fPCREL_005fJUMP_005fL"></a>: <strong>BFD_RELOC_BFIN_24_PCREL_JUMP_L</strong></dt>
  1349. <dd><p>ADI Blackfin Long Jump pcrel.
  1350. </p></dd></dl>
  1351. <dl>
  1352. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fGOT17M4"></a>: <strong>BFD_RELOC_BFIN_GOT17M4</strong></dt>
  1353. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fGOTHI"></a>: <strong>BFD_RELOC_BFIN_GOTHI</strong></dt>
  1354. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fGOTLO"></a>: <strong>BFD_RELOC_BFIN_GOTLO</strong></dt>
  1355. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fFUNCDESC"></a>: <strong>BFD_RELOC_BFIN_FUNCDESC</strong></dt>
  1356. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fFUNCDESC_005fGOT17M4"></a>: <strong>BFD_RELOC_BFIN_FUNCDESC_GOT17M4</strong></dt>
  1357. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fFUNCDESC_005fGOTHI"></a>: <strong>BFD_RELOC_BFIN_FUNCDESC_GOTHI</strong></dt>
  1358. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fFUNCDESC_005fGOTLO"></a>: <strong>BFD_RELOC_BFIN_FUNCDESC_GOTLO</strong></dt>
  1359. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fFUNCDESC_005fVALUE"></a>: <strong>BFD_RELOC_BFIN_FUNCDESC_VALUE</strong></dt>
  1360. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fFUNCDESC_005fGOTOFF17M4"></a>: <strong>BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4</strong></dt>
  1361. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fFUNCDESC_005fGOTOFFHI"></a>: <strong>BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI</strong></dt>
  1362. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fFUNCDESC_005fGOTOFFLO"></a>: <strong>BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO</strong></dt>
  1363. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fGOTOFF17M4"></a>: <strong>BFD_RELOC_BFIN_GOTOFF17M4</strong></dt>
  1364. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fGOTOFFHI"></a>: <strong>BFD_RELOC_BFIN_GOTOFFHI</strong></dt>
  1365. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fGOTOFFLO"></a>: <strong>BFD_RELOC_BFIN_GOTOFFLO</strong></dt>
  1366. <dd><p>ADI Blackfin FD-PIC relocations.
  1367. </p></dd></dl>
  1368. <dl>
  1369. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fGOT"></a>: <strong>BFD_RELOC_BFIN_GOT</strong></dt>
  1370. <dd><p>ADI Blackfin GOT relocation.
  1371. </p></dd></dl>
  1372. <dl>
  1373. <dt><a name="index-BFD_005fRELOC_005fBFIN_005fPLTPC"></a>: <strong>BFD_RELOC_BFIN_PLTPC</strong></dt>
  1374. <dd><p>ADI Blackfin PLTPC relocation.
  1375. </p></dd></dl>
  1376. <dl>
  1377. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fPUSH"></a>: <strong>BFD_ARELOC_BFIN_PUSH</strong></dt>
  1378. <dd><p>ADI Blackfin arithmetic relocation.
  1379. </p></dd></dl>
  1380. <dl>
  1381. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fCONST"></a>: <strong>BFD_ARELOC_BFIN_CONST</strong></dt>
  1382. <dd><p>ADI Blackfin arithmetic relocation.
  1383. </p></dd></dl>
  1384. <dl>
  1385. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fADD"></a>: <strong>BFD_ARELOC_BFIN_ADD</strong></dt>
  1386. <dd><p>ADI Blackfin arithmetic relocation.
  1387. </p></dd></dl>
  1388. <dl>
  1389. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fSUB"></a>: <strong>BFD_ARELOC_BFIN_SUB</strong></dt>
  1390. <dd><p>ADI Blackfin arithmetic relocation.
  1391. </p></dd></dl>
  1392. <dl>
  1393. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fMULT"></a>: <strong>BFD_ARELOC_BFIN_MULT</strong></dt>
  1394. <dd><p>ADI Blackfin arithmetic relocation.
  1395. </p></dd></dl>
  1396. <dl>
  1397. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fDIV"></a>: <strong>BFD_ARELOC_BFIN_DIV</strong></dt>
  1398. <dd><p>ADI Blackfin arithmetic relocation.
  1399. </p></dd></dl>
  1400. <dl>
  1401. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fMOD"></a>: <strong>BFD_ARELOC_BFIN_MOD</strong></dt>
  1402. <dd><p>ADI Blackfin arithmetic relocation.
  1403. </p></dd></dl>
  1404. <dl>
  1405. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fLSHIFT"></a>: <strong>BFD_ARELOC_BFIN_LSHIFT</strong></dt>
  1406. <dd><p>ADI Blackfin arithmetic relocation.
  1407. </p></dd></dl>
  1408. <dl>
  1409. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fRSHIFT"></a>: <strong>BFD_ARELOC_BFIN_RSHIFT</strong></dt>
  1410. <dd><p>ADI Blackfin arithmetic relocation.
  1411. </p></dd></dl>
  1412. <dl>
  1413. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fAND"></a>: <strong>BFD_ARELOC_BFIN_AND</strong></dt>
  1414. <dd><p>ADI Blackfin arithmetic relocation.
  1415. </p></dd></dl>
  1416. <dl>
  1417. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fOR"></a>: <strong>BFD_ARELOC_BFIN_OR</strong></dt>
  1418. <dd><p>ADI Blackfin arithmetic relocation.
  1419. </p></dd></dl>
  1420. <dl>
  1421. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fXOR"></a>: <strong>BFD_ARELOC_BFIN_XOR</strong></dt>
  1422. <dd><p>ADI Blackfin arithmetic relocation.
  1423. </p></dd></dl>
  1424. <dl>
  1425. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fLAND"></a>: <strong>BFD_ARELOC_BFIN_LAND</strong></dt>
  1426. <dd><p>ADI Blackfin arithmetic relocation.
  1427. </p></dd></dl>
  1428. <dl>
  1429. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fLOR"></a>: <strong>BFD_ARELOC_BFIN_LOR</strong></dt>
  1430. <dd><p>ADI Blackfin arithmetic relocation.
  1431. </p></dd></dl>
  1432. <dl>
  1433. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fLEN"></a>: <strong>BFD_ARELOC_BFIN_LEN</strong></dt>
  1434. <dd><p>ADI Blackfin arithmetic relocation.
  1435. </p></dd></dl>
  1436. <dl>
  1437. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fNEG"></a>: <strong>BFD_ARELOC_BFIN_NEG</strong></dt>
  1438. <dd><p>ADI Blackfin arithmetic relocation.
  1439. </p></dd></dl>
  1440. <dl>
  1441. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fCOMP"></a>: <strong>BFD_ARELOC_BFIN_COMP</strong></dt>
  1442. <dd><p>ADI Blackfin arithmetic relocation.
  1443. </p></dd></dl>
  1444. <dl>
  1445. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fPAGE"></a>: <strong>BFD_ARELOC_BFIN_PAGE</strong></dt>
  1446. <dd><p>ADI Blackfin arithmetic relocation.
  1447. </p></dd></dl>
  1448. <dl>
  1449. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fHWPAGE"></a>: <strong>BFD_ARELOC_BFIN_HWPAGE</strong></dt>
  1450. <dd><p>ADI Blackfin arithmetic relocation.
  1451. </p></dd></dl>
  1452. <dl>
  1453. <dt><a name="index-BFD_005fARELOC_005fBFIN_005fADDR"></a>: <strong>BFD_ARELOC_BFIN_ADDR</strong></dt>
  1454. <dd><p>ADI Blackfin arithmetic relocation.
  1455. </p></dd></dl>
  1456. <dl>
  1457. <dt><a name="index-BFD_005fRELOC_005fD10V_005f10_005fPCREL_005fR"></a>: <strong>BFD_RELOC_D10V_10_PCREL_R</strong></dt>
  1458. <dd><p>Mitsubishi D10V relocs.
  1459. This is a 10-bit reloc with the right 2 bits
  1460. assumed to be 0.
  1461. </p></dd></dl>
  1462. <dl>
  1463. <dt><a name="index-BFD_005fRELOC_005fD10V_005f10_005fPCREL_005fL"></a>: <strong>BFD_RELOC_D10V_10_PCREL_L</strong></dt>
  1464. <dd><p>Mitsubishi D10V relocs.
  1465. This is a 10-bit reloc with the right 2 bits
  1466. assumed to be 0. This is the same as the previous reloc
  1467. except it is in the left container, i.e.,
  1468. shifted left 15 bits.
  1469. </p></dd></dl>
  1470. <dl>
  1471. <dt><a name="index-BFD_005fRELOC_005fD10V_005f18"></a>: <strong>BFD_RELOC_D10V_18</strong></dt>
  1472. <dd><p>This is an 18-bit reloc with the right 2 bits
  1473. assumed to be 0.
  1474. </p></dd></dl>
  1475. <dl>
  1476. <dt><a name="index-BFD_005fRELOC_005fD10V_005f18_005fPCREL"></a>: <strong>BFD_RELOC_D10V_18_PCREL</strong></dt>
  1477. <dd><p>This is an 18-bit reloc with the right 2 bits
  1478. assumed to be 0.
  1479. </p></dd></dl>
  1480. <dl>
  1481. <dt><a name="index-BFD_005fRELOC_005fD30V_005f6"></a>: <strong>BFD_RELOC_D30V_6</strong></dt>
  1482. <dd><p>Mitsubishi D30V relocs.
  1483. This is a 6-bit absolute reloc.
  1484. </p></dd></dl>
  1485. <dl>
  1486. <dt><a name="index-BFD_005fRELOC_005fD30V_005f9_005fPCREL"></a>: <strong>BFD_RELOC_D30V_9_PCREL</strong></dt>
  1487. <dd><p>This is a 6-bit pc-relative reloc with
  1488. the right 3 bits assumed to be 0.
  1489. </p></dd></dl>
  1490. <dl>
  1491. <dt><a name="index-BFD_005fRELOC_005fD30V_005f9_005fPCREL_005fR"></a>: <strong>BFD_RELOC_D30V_9_PCREL_R</strong></dt>
  1492. <dd><p>This is a 6-bit pc-relative reloc with
  1493. the right 3 bits assumed to be 0. Same
  1494. as the previous reloc but on the right side
  1495. of the container.
  1496. </p></dd></dl>
  1497. <dl>
  1498. <dt><a name="index-BFD_005fRELOC_005fD30V_005f15"></a>: <strong>BFD_RELOC_D30V_15</strong></dt>
  1499. <dd><p>This is a 12-bit absolute reloc with the
  1500. right 3 bitsassumed to be 0.
  1501. </p></dd></dl>
  1502. <dl>
  1503. <dt><a name="index-BFD_005fRELOC_005fD30V_005f15_005fPCREL"></a>: <strong>BFD_RELOC_D30V_15_PCREL</strong></dt>
  1504. <dd><p>This is a 12-bit pc-relative reloc with
  1505. the right 3 bits assumed to be 0.
  1506. </p></dd></dl>
  1507. <dl>
  1508. <dt><a name="index-BFD_005fRELOC_005fD30V_005f15_005fPCREL_005fR"></a>: <strong>BFD_RELOC_D30V_15_PCREL_R</strong></dt>
  1509. <dd><p>This is a 12-bit pc-relative reloc with
  1510. the right 3 bits assumed to be 0. Same
  1511. as the previous reloc but on the right side
  1512. of the container.
  1513. </p></dd></dl>
  1514. <dl>
  1515. <dt><a name="index-BFD_005fRELOC_005fD30V_005f21"></a>: <strong>BFD_RELOC_D30V_21</strong></dt>
  1516. <dd><p>This is an 18-bit absolute reloc with
  1517. the right 3 bits assumed to be 0.
  1518. </p></dd></dl>
  1519. <dl>
  1520. <dt><a name="index-BFD_005fRELOC_005fD30V_005f21_005fPCREL"></a>: <strong>BFD_RELOC_D30V_21_PCREL</strong></dt>
  1521. <dd><p>This is an 18-bit pc-relative reloc with
  1522. the right 3 bits assumed to be 0.
  1523. </p></dd></dl>
  1524. <dl>
  1525. <dt><a name="index-BFD_005fRELOC_005fD30V_005f21_005fPCREL_005fR"></a>: <strong>BFD_RELOC_D30V_21_PCREL_R</strong></dt>
  1526. <dd><p>This is an 18-bit pc-relative reloc with
  1527. the right 3 bits assumed to be 0. Same
  1528. as the previous reloc but on the right side
  1529. of the container.
  1530. </p></dd></dl>
  1531. <dl>
  1532. <dt><a name="index-BFD_005fRELOC_005fD30V_005f32"></a>: <strong>BFD_RELOC_D30V_32</strong></dt>
  1533. <dd><p>This is a 32-bit absolute reloc.
  1534. </p></dd></dl>
  1535. <dl>
  1536. <dt><a name="index-BFD_005fRELOC_005fD30V_005f32_005fPCREL"></a>: <strong>BFD_RELOC_D30V_32_PCREL</strong></dt>
  1537. <dd><p>This is a 32-bit pc-relative reloc.
  1538. </p></dd></dl>
  1539. <dl>
  1540. <dt><a name="index-BFD_005fRELOC_005fDLX_005fHI16_005fS"></a>: <strong>BFD_RELOC_DLX_HI16_S</strong></dt>
  1541. <dd><p>DLX relocs
  1542. </p></dd></dl>
  1543. <dl>
  1544. <dt><a name="index-BFD_005fRELOC_005fDLX_005fLO16"></a>: <strong>BFD_RELOC_DLX_LO16</strong></dt>
  1545. <dd><p>DLX relocs
  1546. </p></dd></dl>
  1547. <dl>
  1548. <dt><a name="index-BFD_005fRELOC_005fDLX_005fJMP26"></a>: <strong>BFD_RELOC_DLX_JMP26</strong></dt>
  1549. <dd><p>DLX relocs
  1550. </p></dd></dl>
  1551. <dl>
  1552. <dt><a name="index-BFD_005fRELOC_005fM32C_005fHI8"></a>: <strong>BFD_RELOC_M32C_HI8</strong></dt>
  1553. <dt><a name="index-BFD_005fRELOC_005fM32C_005fRL_005fJUMP"></a>: <strong>BFD_RELOC_M32C_RL_JUMP</strong></dt>
  1554. <dt><a name="index-BFD_005fRELOC_005fM32C_005fRL_005f1ADDR"></a>: <strong>BFD_RELOC_M32C_RL_1ADDR</strong></dt>
  1555. <dt><a name="index-BFD_005fRELOC_005fM32C_005fRL_005f2ADDR"></a>: <strong>BFD_RELOC_M32C_RL_2ADDR</strong></dt>
  1556. <dd><p>Renesas M16C/M32C Relocations.
  1557. </p></dd></dl>
  1558. <dl>
  1559. <dt><a name="index-BFD_005fRELOC_005fM32R_005f24"></a>: <strong>BFD_RELOC_M32R_24</strong></dt>
  1560. <dd><p>Renesas M32R (formerly Mitsubishi M32R) relocs.
  1561. This is a 24 bit absolute address.
  1562. </p></dd></dl>
  1563. <dl>
  1564. <dt><a name="index-BFD_005fRELOC_005fM32R_005f10_005fPCREL"></a>: <strong>BFD_RELOC_M32R_10_PCREL</strong></dt>
  1565. <dd><p>This is a 10-bit pc-relative reloc with the right 2 bits assumed to be 0.
  1566. </p></dd></dl>
  1567. <dl>
  1568. <dt><a name="index-BFD_005fRELOC_005fM32R_005f18_005fPCREL"></a>: <strong>BFD_RELOC_M32R_18_PCREL</strong></dt>
  1569. <dd><p>This is an 18-bit reloc with the right 2 bits assumed to be 0.
  1570. </p></dd></dl>
  1571. <dl>
  1572. <dt><a name="index-BFD_005fRELOC_005fM32R_005f26_005fPCREL"></a>: <strong>BFD_RELOC_M32R_26_PCREL</strong></dt>
  1573. <dd><p>This is a 26-bit reloc with the right 2 bits assumed to be 0.
  1574. </p></dd></dl>
  1575. <dl>
  1576. <dt><a name="index-BFD_005fRELOC_005fM32R_005fHI16_005fULO"></a>: <strong>BFD_RELOC_M32R_HI16_ULO</strong></dt>
  1577. <dd><p>This is a 16-bit reloc containing the high 16 bits of an address
  1578. used when the lower 16 bits are treated as unsigned.
  1579. </p></dd></dl>
  1580. <dl>
  1581. <dt><a name="index-BFD_005fRELOC_005fM32R_005fHI16_005fSLO"></a>: <strong>BFD_RELOC_M32R_HI16_SLO</strong></dt>
  1582. <dd><p>This is a 16-bit reloc containing the high 16 bits of an address
  1583. used when the lower 16 bits are treated as signed.
  1584. </p></dd></dl>
  1585. <dl>
  1586. <dt><a name="index-BFD_005fRELOC_005fM32R_005fLO16"></a>: <strong>BFD_RELOC_M32R_LO16</strong></dt>
  1587. <dd><p>This is a 16-bit reloc containing the lower 16 bits of an address.
  1588. </p></dd></dl>
  1589. <dl>
  1590. <dt><a name="index-BFD_005fRELOC_005fM32R_005fSDA16"></a>: <strong>BFD_RELOC_M32R_SDA16</strong></dt>
  1591. <dd><p>This is a 16-bit reloc containing the small data area offset for use in
  1592. add3, load, and store instructions.
  1593. </p></dd></dl>
  1594. <dl>
  1595. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOT24"></a>: <strong>BFD_RELOC_M32R_GOT24</strong></dt>
  1596. <dt><a name="index-BFD_005fRELOC_005fM32R_005f26_005fPLTREL"></a>: <strong>BFD_RELOC_M32R_26_PLTREL</strong></dt>
  1597. <dt><a name="index-BFD_005fRELOC_005fM32R_005fCOPY"></a>: <strong>BFD_RELOC_M32R_COPY</strong></dt>
  1598. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_M32R_GLOB_DAT</strong></dt>
  1599. <dt><a name="index-BFD_005fRELOC_005fM32R_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_M32R_JMP_SLOT</strong></dt>
  1600. <dt><a name="index-BFD_005fRELOC_005fM32R_005fRELATIVE"></a>: <strong>BFD_RELOC_M32R_RELATIVE</strong></dt>
  1601. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOTOFF"></a>: <strong>BFD_RELOC_M32R_GOTOFF</strong></dt>
  1602. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOTOFF_005fHI_005fULO"></a>: <strong>BFD_RELOC_M32R_GOTOFF_HI_ULO</strong></dt>
  1603. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOTOFF_005fHI_005fSLO"></a>: <strong>BFD_RELOC_M32R_GOTOFF_HI_SLO</strong></dt>
  1604. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOTOFF_005fLO"></a>: <strong>BFD_RELOC_M32R_GOTOFF_LO</strong></dt>
  1605. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOTPC24"></a>: <strong>BFD_RELOC_M32R_GOTPC24</strong></dt>
  1606. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOT16_005fHI_005fULO"></a>: <strong>BFD_RELOC_M32R_GOT16_HI_ULO</strong></dt>
  1607. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOT16_005fHI_005fSLO"></a>: <strong>BFD_RELOC_M32R_GOT16_HI_SLO</strong></dt>
  1608. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOT16_005fLO"></a>: <strong>BFD_RELOC_M32R_GOT16_LO</strong></dt>
  1609. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOTPC_005fHI_005fULO"></a>: <strong>BFD_RELOC_M32R_GOTPC_HI_ULO</strong></dt>
  1610. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOTPC_005fHI_005fSLO"></a>: <strong>BFD_RELOC_M32R_GOTPC_HI_SLO</strong></dt>
  1611. <dt><a name="index-BFD_005fRELOC_005fM32R_005fGOTPC_005fLO"></a>: <strong>BFD_RELOC_M32R_GOTPC_LO</strong></dt>
  1612. <dd><p>For PIC.
  1613. </p></dd></dl>
  1614. <dl>
  1615. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f20"></a>: <strong>BFD_RELOC_NDS32_20</strong></dt>
  1616. <dd><p>NDS32 relocs.
  1617. This is a 20 bit absolute address.
  1618. </p></dd></dl>
  1619. <dl>
  1620. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f9_005fPCREL"></a>: <strong>BFD_RELOC_NDS32_9_PCREL</strong></dt>
  1621. <dd><p>This is a 9-bit pc-relative reloc with the right 1 bit assumed to be 0.
  1622. </p></dd></dl>
  1623. <dl>
  1624. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fWORD_005f9_005fPCREL"></a>: <strong>BFD_RELOC_NDS32_WORD_9_PCREL</strong></dt>
  1625. <dd><p>This is a 9-bit pc-relative reloc with the right 1 bit assumed to be 0.
  1626. </p></dd></dl>
  1627. <dl>
  1628. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f15_005fPCREL"></a>: <strong>BFD_RELOC_NDS32_15_PCREL</strong></dt>
  1629. <dd><p>This is an 15-bit reloc with the right 1 bit assumed to be 0.
  1630. </p></dd></dl>
  1631. <dl>
  1632. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f17_005fPCREL"></a>: <strong>BFD_RELOC_NDS32_17_PCREL</strong></dt>
  1633. <dd><p>This is an 17-bit reloc with the right 1 bit assumed to be 0.
  1634. </p></dd></dl>
  1635. <dl>
  1636. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f25_005fPCREL"></a>: <strong>BFD_RELOC_NDS32_25_PCREL</strong></dt>
  1637. <dd><p>This is a 25-bit reloc with the right 1 bit assumed to be 0.
  1638. </p></dd></dl>
  1639. <dl>
  1640. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fHI20"></a>: <strong>BFD_RELOC_NDS32_HI20</strong></dt>
  1641. <dd><p>This is a 20-bit reloc containing the high 20 bits of an address
  1642. used with the lower 12 bits
  1643. </p></dd></dl>
  1644. <dl>
  1645. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLO12S3"></a>: <strong>BFD_RELOC_NDS32_LO12S3</strong></dt>
  1646. <dd><p>This is a 12-bit reloc containing the lower 12 bits of an address
  1647. then shift right by 3. This is used with ldi,sdi...
  1648. </p></dd></dl>
  1649. <dl>
  1650. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLO12S2"></a>: <strong>BFD_RELOC_NDS32_LO12S2</strong></dt>
  1651. <dd><p>This is a 12-bit reloc containing the lower 12 bits of an address
  1652. then shift left by 2. This is used with lwi,swi...
  1653. </p></dd></dl>
  1654. <dl>
  1655. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLO12S1"></a>: <strong>BFD_RELOC_NDS32_LO12S1</strong></dt>
  1656. <dd><p>This is a 12-bit reloc containing the lower 12 bits of an address
  1657. then shift left by 1. This is used with lhi,shi...
  1658. </p></dd></dl>
  1659. <dl>
  1660. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLO12S0"></a>: <strong>BFD_RELOC_NDS32_LO12S0</strong></dt>
  1661. <dd><p>This is a 12-bit reloc containing the lower 12 bits of an address
  1662. then shift left by 0. This is used with lbisbi...
  1663. </p></dd></dl>
  1664. <dl>
  1665. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLO12S0_005fORI"></a>: <strong>BFD_RELOC_NDS32_LO12S0_ORI</strong></dt>
  1666. <dd><p>This is a 12-bit reloc containing the lower 12 bits of an address
  1667. then shift left by 0. This is only used with branch relaxations
  1668. </p></dd></dl>
  1669. <dl>
  1670. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA15S3"></a>: <strong>BFD_RELOC_NDS32_SDA15S3</strong></dt>
  1671. <dd><p>This is a 15-bit reloc containing the small data area 18-bit signed offset
  1672. and shift left by 3 for use in ldi, sdi...
  1673. </p></dd></dl>
  1674. <dl>
  1675. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA15S2"></a>: <strong>BFD_RELOC_NDS32_SDA15S2</strong></dt>
  1676. <dd><p>This is a 15-bit reloc containing the small data area 17-bit signed offset
  1677. and shift left by 2 for use in lwi, swi...
  1678. </p></dd></dl>
  1679. <dl>
  1680. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA15S1"></a>: <strong>BFD_RELOC_NDS32_SDA15S1</strong></dt>
  1681. <dd><p>This is a 15-bit reloc containing the small data area 16-bit signed offset
  1682. and shift left by 1 for use in lhi, shi...
  1683. </p></dd></dl>
  1684. <dl>
  1685. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA15S0"></a>: <strong>BFD_RELOC_NDS32_SDA15S0</strong></dt>
  1686. <dd><p>This is a 15-bit reloc containing the small data area 15-bit signed offset
  1687. and shift left by 0 for use in lbi, sbi...
  1688. </p></dd></dl>
  1689. <dl>
  1690. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA16S3"></a>: <strong>BFD_RELOC_NDS32_SDA16S3</strong></dt>
  1691. <dd><p>This is a 16-bit reloc containing the small data area 16-bit signed offset
  1692. and shift left by 3
  1693. </p></dd></dl>
  1694. <dl>
  1695. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA17S2"></a>: <strong>BFD_RELOC_NDS32_SDA17S2</strong></dt>
  1696. <dd><p>This is a 17-bit reloc containing the small data area 17-bit signed offset
  1697. and shift left by 2 for use in lwi.gp, swi.gp...
  1698. </p></dd></dl>
  1699. <dl>
  1700. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA18S1"></a>: <strong>BFD_RELOC_NDS32_SDA18S1</strong></dt>
  1701. <dd><p>This is a 18-bit reloc containing the small data area 18-bit signed offset
  1702. and shift left by 1 for use in lhi.gp, shi.gp...
  1703. </p></dd></dl>
  1704. <dl>
  1705. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA19S0"></a>: <strong>BFD_RELOC_NDS32_SDA19S0</strong></dt>
  1706. <dd><p>This is a 19-bit reloc containing the small data area 19-bit signed offset
  1707. and shift left by 0 for use in lbi.gp, sbi.gp...
  1708. </p></dd></dl>
  1709. <dl>
  1710. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOT20"></a>: <strong>BFD_RELOC_NDS32_GOT20</strong></dt>
  1711. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f9_005fPLTREL"></a>: <strong>BFD_RELOC_NDS32_9_PLTREL</strong></dt>
  1712. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f25_005fPLTREL"></a>: <strong>BFD_RELOC_NDS32_25_PLTREL</strong></dt>
  1713. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fCOPY"></a>: <strong>BFD_RELOC_NDS32_COPY</strong></dt>
  1714. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_NDS32_GLOB_DAT</strong></dt>
  1715. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_NDS32_JMP_SLOT</strong></dt>
  1716. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fRELATIVE"></a>: <strong>BFD_RELOC_NDS32_RELATIVE</strong></dt>
  1717. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTOFF"></a>: <strong>BFD_RELOC_NDS32_GOTOFF</strong></dt>
  1718. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTOFF_005fHI20"></a>: <strong>BFD_RELOC_NDS32_GOTOFF_HI20</strong></dt>
  1719. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTOFF_005fLO12"></a>: <strong>BFD_RELOC_NDS32_GOTOFF_LO12</strong></dt>
  1720. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTPC20"></a>: <strong>BFD_RELOC_NDS32_GOTPC20</strong></dt>
  1721. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOT_005fHI20"></a>: <strong>BFD_RELOC_NDS32_GOT_HI20</strong></dt>
  1722. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOT_005fLO12"></a>: <strong>BFD_RELOC_NDS32_GOT_LO12</strong></dt>
  1723. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTPC_005fHI20"></a>: <strong>BFD_RELOC_NDS32_GOTPC_HI20</strong></dt>
  1724. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTPC_005fLO12"></a>: <strong>BFD_RELOC_NDS32_GOTPC_LO12</strong></dt>
  1725. <dd><p>for PIC
  1726. </p></dd></dl>
  1727. <dl>
  1728. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fINSN16"></a>: <strong>BFD_RELOC_NDS32_INSN16</strong></dt>
  1729. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLABEL"></a>: <strong>BFD_RELOC_NDS32_LABEL</strong></dt>
  1730. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGCALL1"></a>: <strong>BFD_RELOC_NDS32_LONGCALL1</strong></dt>
  1731. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGCALL2"></a>: <strong>BFD_RELOC_NDS32_LONGCALL2</strong></dt>
  1732. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGCALL3"></a>: <strong>BFD_RELOC_NDS32_LONGCALL3</strong></dt>
  1733. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGJUMP1"></a>: <strong>BFD_RELOC_NDS32_LONGJUMP1</strong></dt>
  1734. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGJUMP2"></a>: <strong>BFD_RELOC_NDS32_LONGJUMP2</strong></dt>
  1735. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGJUMP3"></a>: <strong>BFD_RELOC_NDS32_LONGJUMP3</strong></dt>
  1736. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLOADSTORE"></a>: <strong>BFD_RELOC_NDS32_LOADSTORE</strong></dt>
  1737. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f9_005fFIXED"></a>: <strong>BFD_RELOC_NDS32_9_FIXED</strong></dt>
  1738. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f15_005fFIXED"></a>: <strong>BFD_RELOC_NDS32_15_FIXED</strong></dt>
  1739. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f17_005fFIXED"></a>: <strong>BFD_RELOC_NDS32_17_FIXED</strong></dt>
  1740. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f25_005fFIXED"></a>: <strong>BFD_RELOC_NDS32_25_FIXED</strong></dt>
  1741. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGCALL4"></a>: <strong>BFD_RELOC_NDS32_LONGCALL4</strong></dt>
  1742. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGCALL5"></a>: <strong>BFD_RELOC_NDS32_LONGCALL5</strong></dt>
  1743. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGCALL6"></a>: <strong>BFD_RELOC_NDS32_LONGCALL6</strong></dt>
  1744. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGJUMP4"></a>: <strong>BFD_RELOC_NDS32_LONGJUMP4</strong></dt>
  1745. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGJUMP5"></a>: <strong>BFD_RELOC_NDS32_LONGJUMP5</strong></dt>
  1746. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGJUMP6"></a>: <strong>BFD_RELOC_NDS32_LONGJUMP6</strong></dt>
  1747. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLONGJUMP7"></a>: <strong>BFD_RELOC_NDS32_LONGJUMP7</strong></dt>
  1748. <dd><p>for relax
  1749. </p></dd></dl>
  1750. <dl>
  1751. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPLTREL_005fHI20"></a>: <strong>BFD_RELOC_NDS32_PLTREL_HI20</strong></dt>
  1752. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPLTREL_005fLO12"></a>: <strong>BFD_RELOC_NDS32_PLTREL_LO12</strong></dt>
  1753. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPLT_005fGOTREL_005fHI20"></a>: <strong>BFD_RELOC_NDS32_PLT_GOTREL_HI20</strong></dt>
  1754. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPLT_005fGOTREL_005fLO12"></a>: <strong>BFD_RELOC_NDS32_PLT_GOTREL_LO12</strong></dt>
  1755. <dd><p>for PIC
  1756. </p></dd></dl>
  1757. <dl>
  1758. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA12S2_005fDP"></a>: <strong>BFD_RELOC_NDS32_SDA12S2_DP</strong></dt>
  1759. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA12S2_005fSP"></a>: <strong>BFD_RELOC_NDS32_SDA12S2_SP</strong></dt>
  1760. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLO12S2_005fDP"></a>: <strong>BFD_RELOC_NDS32_LO12S2_DP</strong></dt>
  1761. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fLO12S2_005fSP"></a>: <strong>BFD_RELOC_NDS32_LO12S2_SP</strong></dt>
  1762. <dd><p>for floating point
  1763. </p></dd></dl>
  1764. <dl>
  1765. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fDWARF2_005fOP1"></a>: <strong>BFD_RELOC_NDS32_DWARF2_OP1</strong></dt>
  1766. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fDWARF2_005fOP2"></a>: <strong>BFD_RELOC_NDS32_DWARF2_OP2</strong></dt>
  1767. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fDWARF2_005fLEB"></a>: <strong>BFD_RELOC_NDS32_DWARF2_LEB</strong></dt>
  1768. <dd><p>for dwarf2 debug_line.
  1769. </p></dd></dl>
  1770. <dl>
  1771. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fUPDATE_005fTA"></a>: <strong>BFD_RELOC_NDS32_UPDATE_TA</strong></dt>
  1772. <dd><p>for eliminate 16-bit instructions
  1773. </p></dd></dl>
  1774. <dl>
  1775. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPLT_005fGOTREL_005fLO20"></a>: <strong>BFD_RELOC_NDS32_PLT_GOTREL_LO20</strong></dt>
  1776. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPLT_005fGOTREL_005fLO15"></a>: <strong>BFD_RELOC_NDS32_PLT_GOTREL_LO15</strong></dt>
  1777. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPLT_005fGOTREL_005fLO19"></a>: <strong>BFD_RELOC_NDS32_PLT_GOTREL_LO19</strong></dt>
  1778. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOT_005fLO15"></a>: <strong>BFD_RELOC_NDS32_GOT_LO15</strong></dt>
  1779. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOT_005fLO19"></a>: <strong>BFD_RELOC_NDS32_GOT_LO19</strong></dt>
  1780. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTOFF_005fLO15"></a>: <strong>BFD_RELOC_NDS32_GOTOFF_LO15</strong></dt>
  1781. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTOFF_005fLO19"></a>: <strong>BFD_RELOC_NDS32_GOTOFF_LO19</strong></dt>
  1782. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOT15S2"></a>: <strong>BFD_RELOC_NDS32_GOT15S2</strong></dt>
  1783. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOT17S2"></a>: <strong>BFD_RELOC_NDS32_GOT17S2</strong></dt>
  1784. <dd><p>for PIC object relaxation
  1785. </p></dd></dl>
  1786. <dl>
  1787. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f5"></a>: <strong>BFD_RELOC_NDS32_5</strong></dt>
  1788. <dd><p>NDS32 relocs.
  1789. This is a 5 bit absolute address.
  1790. </p></dd></dl>
  1791. <dl>
  1792. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f10_005fUPCREL"></a>: <strong>BFD_RELOC_NDS32_10_UPCREL</strong></dt>
  1793. <dd><p>This is a 10-bit unsigned pc-relative reloc with the right 1 bit assumed to be 0.
  1794. </p></dd></dl>
  1795. <dl>
  1796. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSDA_005fFP7U2_005fRELA"></a>: <strong>BFD_RELOC_NDS32_SDA_FP7U2_RELA</strong></dt>
  1797. <dd><p>If fp were omitted, fp can used as another gp.
  1798. </p></dd></dl>
  1799. <dl>
  1800. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fRELAX_005fENTRY"></a>: <strong>BFD_RELOC_NDS32_RELAX_ENTRY</strong></dt>
  1801. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOT_005fSUFF"></a>: <strong>BFD_RELOC_NDS32_GOT_SUFF</strong></dt>
  1802. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTOFF_005fSUFF"></a>: <strong>BFD_RELOC_NDS32_GOTOFF_SUFF</strong></dt>
  1803. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPLT_005fGOT_005fSUFF"></a>: <strong>BFD_RELOC_NDS32_PLT_GOT_SUFF</strong></dt>
  1804. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fMULCALL_005fSUFF"></a>: <strong>BFD_RELOC_NDS32_MULCALL_SUFF</strong></dt>
  1805. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPTR"></a>: <strong>BFD_RELOC_NDS32_PTR</strong></dt>
  1806. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPTR_005fCOUNT"></a>: <strong>BFD_RELOC_NDS32_PTR_COUNT</strong></dt>
  1807. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPTR_005fRESOLVED"></a>: <strong>BFD_RELOC_NDS32_PTR_RESOLVED</strong></dt>
  1808. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fPLTBLOCK"></a>: <strong>BFD_RELOC_NDS32_PLTBLOCK</strong></dt>
  1809. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fRELAX_005fREGION_005fBEGIN"></a>: <strong>BFD_RELOC_NDS32_RELAX_REGION_BEGIN</strong></dt>
  1810. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fRELAX_005fREGION_005fEND"></a>: <strong>BFD_RELOC_NDS32_RELAX_REGION_END</strong></dt>
  1811. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fMINUEND"></a>: <strong>BFD_RELOC_NDS32_MINUEND</strong></dt>
  1812. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fSUBTRAHEND"></a>: <strong>BFD_RELOC_NDS32_SUBTRAHEND</strong></dt>
  1813. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fDIFF8"></a>: <strong>BFD_RELOC_NDS32_DIFF8</strong></dt>
  1814. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fDIFF16"></a>: <strong>BFD_RELOC_NDS32_DIFF16</strong></dt>
  1815. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fDIFF32"></a>: <strong>BFD_RELOC_NDS32_DIFF32</strong></dt>
  1816. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fDIFF_005fULEB128"></a>: <strong>BFD_RELOC_NDS32_DIFF_ULEB128</strong></dt>
  1817. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fEMPTY"></a>: <strong>BFD_RELOC_NDS32_EMPTY</strong></dt>
  1818. <dd><p>relaxation relative relocation types
  1819. </p></dd></dl>
  1820. <dl>
  1821. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f25_005fABS"></a>: <strong>BFD_RELOC_NDS32_25_ABS</strong></dt>
  1822. <dd><p>This is a 25 bit absolute address.
  1823. </p></dd></dl>
  1824. <dl>
  1825. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fDATA"></a>: <strong>BFD_RELOC_NDS32_DATA</strong></dt>
  1826. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTRAN"></a>: <strong>BFD_RELOC_NDS32_TRAN</strong></dt>
  1827. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f17IFC_005fPCREL"></a>: <strong>BFD_RELOC_NDS32_17IFC_PCREL</strong></dt>
  1828. <dt><a name="index-BFD_005fRELOC_005fNDS32_005f10IFCU_005fPCREL"></a>: <strong>BFD_RELOC_NDS32_10IFCU_PCREL</strong></dt>
  1829. <dd><p>For ex9 and ifc using.
  1830. </p></dd></dl>
  1831. <dl>
  1832. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTPOFF"></a>: <strong>BFD_RELOC_NDS32_TPOFF</strong></dt>
  1833. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fLE_005fHI20"></a>: <strong>BFD_RELOC_NDS32_TLS_LE_HI20</strong></dt>
  1834. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fLE_005fLO12"></a>: <strong>BFD_RELOC_NDS32_TLS_LE_LO12</strong></dt>
  1835. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fLE_005fADD"></a>: <strong>BFD_RELOC_NDS32_TLS_LE_ADD</strong></dt>
  1836. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fLE_005fLS"></a>: <strong>BFD_RELOC_NDS32_TLS_LE_LS</strong></dt>
  1837. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fGOTTPOFF"></a>: <strong>BFD_RELOC_NDS32_GOTTPOFF</strong></dt>
  1838. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fIE_005fHI20"></a>: <strong>BFD_RELOC_NDS32_TLS_IE_HI20</strong></dt>
  1839. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fIE_005fLO12S2"></a>: <strong>BFD_RELOC_NDS32_TLS_IE_LO12S2</strong></dt>
  1840. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fTPOFF"></a>: <strong>BFD_RELOC_NDS32_TLS_TPOFF</strong></dt>
  1841. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fLE_005f20"></a>: <strong>BFD_RELOC_NDS32_TLS_LE_20</strong></dt>
  1842. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fLE_005f15S0"></a>: <strong>BFD_RELOC_NDS32_TLS_LE_15S0</strong></dt>
  1843. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fLE_005f15S1"></a>: <strong>BFD_RELOC_NDS32_TLS_LE_15S1</strong></dt>
  1844. <dt><a name="index-BFD_005fRELOC_005fNDS32_005fTLS_005fLE_005f15S2"></a>: <strong>BFD_RELOC_NDS32_TLS_LE_15S2</strong></dt>
  1845. <dd><p>For TLS.
  1846. </p></dd></dl>
  1847. <dl>
  1848. <dt><a name="index-BFD_005fRELOC_005fV850_005f9_005fPCREL"></a>: <strong>BFD_RELOC_V850_9_PCREL</strong></dt>
  1849. <dd><p>This is a 9-bit reloc
  1850. </p></dd></dl>
  1851. <dl>
  1852. <dt><a name="index-BFD_005fRELOC_005fV850_005f22_005fPCREL"></a>: <strong>BFD_RELOC_V850_22_PCREL</strong></dt>
  1853. <dd><p>This is a 22-bit reloc
  1854. </p></dd></dl>
  1855. <dl>
  1856. <dt><a name="index-BFD_005fRELOC_005fV850_005fSDA_005f16_005f16_005fOFFSET"></a>: <strong>BFD_RELOC_V850_SDA_16_16_OFFSET</strong></dt>
  1857. <dd><p>This is a 16 bit offset from the short data area pointer.
  1858. </p></dd></dl>
  1859. <dl>
  1860. <dt><a name="index-BFD_005fRELOC_005fV850_005fSDA_005f15_005f16_005fOFFSET"></a>: <strong>BFD_RELOC_V850_SDA_15_16_OFFSET</strong></dt>
  1861. <dd><p>This is a 16 bit offset (of which only 15 bits are used) from the
  1862. short data area pointer.
  1863. </p></dd></dl>
  1864. <dl>
  1865. <dt><a name="index-BFD_005fRELOC_005fV850_005fZDA_005f16_005f16_005fOFFSET"></a>: <strong>BFD_RELOC_V850_ZDA_16_16_OFFSET</strong></dt>
  1866. <dd><p>This is a 16 bit offset from the zero data area pointer.
  1867. </p></dd></dl>
  1868. <dl>
  1869. <dt><a name="index-BFD_005fRELOC_005fV850_005fZDA_005f15_005f16_005fOFFSET"></a>: <strong>BFD_RELOC_V850_ZDA_15_16_OFFSET</strong></dt>
  1870. <dd><p>This is a 16 bit offset (of which only 15 bits are used) from the
  1871. zero data area pointer.
  1872. </p></dd></dl>
  1873. <dl>
  1874. <dt><a name="index-BFD_005fRELOC_005fV850_005fTDA_005f6_005f8_005fOFFSET"></a>: <strong>BFD_RELOC_V850_TDA_6_8_OFFSET</strong></dt>
  1875. <dd><p>This is an 8 bit offset (of which only 6 bits are used) from the
  1876. tiny data area pointer.
  1877. </p></dd></dl>
  1878. <dl>
  1879. <dt><a name="index-BFD_005fRELOC_005fV850_005fTDA_005f7_005f8_005fOFFSET"></a>: <strong>BFD_RELOC_V850_TDA_7_8_OFFSET</strong></dt>
  1880. <dd><p>This is an 8bit offset (of which only 7 bits are used) from the tiny
  1881. data area pointer.
  1882. </p></dd></dl>
  1883. <dl>
  1884. <dt><a name="index-BFD_005fRELOC_005fV850_005fTDA_005f7_005f7_005fOFFSET"></a>: <strong>BFD_RELOC_V850_TDA_7_7_OFFSET</strong></dt>
  1885. <dd><p>This is a 7 bit offset from the tiny data area pointer.
  1886. </p></dd></dl>
  1887. <dl>
  1888. <dt><a name="index-BFD_005fRELOC_005fV850_005fTDA_005f16_005f16_005fOFFSET"></a>: <strong>BFD_RELOC_V850_TDA_16_16_OFFSET</strong></dt>
  1889. <dd><p>This is a 16 bit offset from the tiny data area pointer.
  1890. </p></dd></dl>
  1891. <dl>
  1892. <dt><a name="index-BFD_005fRELOC_005fV850_005fTDA_005f4_005f5_005fOFFSET"></a>: <strong>BFD_RELOC_V850_TDA_4_5_OFFSET</strong></dt>
  1893. <dd><p>This is a 5 bit offset (of which only 4 bits are used) from the tiny
  1894. data area pointer.
  1895. </p></dd></dl>
  1896. <dl>
  1897. <dt><a name="index-BFD_005fRELOC_005fV850_005fTDA_005f4_005f4_005fOFFSET"></a>: <strong>BFD_RELOC_V850_TDA_4_4_OFFSET</strong></dt>
  1898. <dd><p>This is a 4 bit offset from the tiny data area pointer.
  1899. </p></dd></dl>
  1900. <dl>
  1901. <dt><a name="index-BFD_005fRELOC_005fV850_005fSDA_005f16_005f16_005fSPLIT_005fOFFSET"></a>: <strong>BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET</strong></dt>
  1902. <dd><p>This is a 16 bit offset from the short data area pointer, with the
  1903. bits placed non-contiguously in the instruction.
  1904. </p></dd></dl>
  1905. <dl>
  1906. <dt><a name="index-BFD_005fRELOC_005fV850_005fZDA_005f16_005f16_005fSPLIT_005fOFFSET"></a>: <strong>BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET</strong></dt>
  1907. <dd><p>This is a 16 bit offset from the zero data area pointer, with the
  1908. bits placed non-contiguously in the instruction.
  1909. </p></dd></dl>
  1910. <dl>
  1911. <dt><a name="index-BFD_005fRELOC_005fV850_005fCALLT_005f6_005f7_005fOFFSET"></a>: <strong>BFD_RELOC_V850_CALLT_6_7_OFFSET</strong></dt>
  1912. <dd><p>This is a 6 bit offset from the call table base pointer.
  1913. </p></dd></dl>
  1914. <dl>
  1915. <dt><a name="index-BFD_005fRELOC_005fV850_005fCALLT_005f16_005f16_005fOFFSET"></a>: <strong>BFD_RELOC_V850_CALLT_16_16_OFFSET</strong></dt>
  1916. <dd><p>This is a 16 bit offset from the call table base pointer.
  1917. </p></dd></dl>
  1918. <dl>
  1919. <dt><a name="index-BFD_005fRELOC_005fV850_005fLONGCALL"></a>: <strong>BFD_RELOC_V850_LONGCALL</strong></dt>
  1920. <dd><p>Used for relaxing indirect function calls.
  1921. </p></dd></dl>
  1922. <dl>
  1923. <dt><a name="index-BFD_005fRELOC_005fV850_005fLONGJUMP"></a>: <strong>BFD_RELOC_V850_LONGJUMP</strong></dt>
  1924. <dd><p>Used for relaxing indirect jumps.
  1925. </p></dd></dl>
  1926. <dl>
  1927. <dt><a name="index-BFD_005fRELOC_005fV850_005fALIGN"></a>: <strong>BFD_RELOC_V850_ALIGN</strong></dt>
  1928. <dd><p>Used to maintain alignment whilst relaxing.
  1929. </p></dd></dl>
  1930. <dl>
  1931. <dt><a name="index-BFD_005fRELOC_005fV850_005fLO16_005fSPLIT_005fOFFSET"></a>: <strong>BFD_RELOC_V850_LO16_SPLIT_OFFSET</strong></dt>
  1932. <dd><p>This is a variation of BFD_RELOC_LO16 that can be used in v850e ld.bu
  1933. instructions.
  1934. </p></dd></dl>
  1935. <dl>
  1936. <dt><a name="index-BFD_005fRELOC_005fV850_005f16_005fPCREL"></a>: <strong>BFD_RELOC_V850_16_PCREL</strong></dt>
  1937. <dd><p>This is a 16-bit reloc.
  1938. </p></dd></dl>
  1939. <dl>
  1940. <dt><a name="index-BFD_005fRELOC_005fV850_005f17_005fPCREL"></a>: <strong>BFD_RELOC_V850_17_PCREL</strong></dt>
  1941. <dd><p>This is a 17-bit reloc.
  1942. </p></dd></dl>
  1943. <dl>
  1944. <dt><a name="index-BFD_005fRELOC_005fV850_005f23"></a>: <strong>BFD_RELOC_V850_23</strong></dt>
  1945. <dd><p>This is a 23-bit reloc.
  1946. </p></dd></dl>
  1947. <dl>
  1948. <dt><a name="index-BFD_005fRELOC_005fV850_005f32_005fPCREL"></a>: <strong>BFD_RELOC_V850_32_PCREL</strong></dt>
  1949. <dd><p>This is a 32-bit reloc.
  1950. </p></dd></dl>
  1951. <dl>
  1952. <dt><a name="index-BFD_005fRELOC_005fV850_005f32_005fABS"></a>: <strong>BFD_RELOC_V850_32_ABS</strong></dt>
  1953. <dd><p>This is a 32-bit reloc.
  1954. </p></dd></dl>
  1955. <dl>
  1956. <dt><a name="index-BFD_005fRELOC_005fV850_005f16_005fSPLIT_005fOFFSET"></a>: <strong>BFD_RELOC_V850_16_SPLIT_OFFSET</strong></dt>
  1957. <dd><p>This is a 16-bit reloc.
  1958. </p></dd></dl>
  1959. <dl>
  1960. <dt><a name="index-BFD_005fRELOC_005fV850_005f16_005fS1"></a>: <strong>BFD_RELOC_V850_16_S1</strong></dt>
  1961. <dd><p>This is a 16-bit reloc.
  1962. </p></dd></dl>
  1963. <dl>
  1964. <dt><a name="index-BFD_005fRELOC_005fV850_005fLO16_005fS1"></a>: <strong>BFD_RELOC_V850_LO16_S1</strong></dt>
  1965. <dd><p>Low 16 bits. 16 bit shifted by 1.
  1966. </p></dd></dl>
  1967. <dl>
  1968. <dt><a name="index-BFD_005fRELOC_005fV850_005fCALLT_005f15_005f16_005fOFFSET"></a>: <strong>BFD_RELOC_V850_CALLT_15_16_OFFSET</strong></dt>
  1969. <dd><p>This is a 16 bit offset from the call table base pointer.
  1970. </p></dd></dl>
  1971. <dl>
  1972. <dt><a name="index-BFD_005fRELOC_005fV850_005f32_005fGOTPCREL"></a>: <strong>BFD_RELOC_V850_32_GOTPCREL</strong></dt>
  1973. <dd><p>DSO relocations.
  1974. </p></dd></dl>
  1975. <dl>
  1976. <dt><a name="index-BFD_005fRELOC_005fV850_005f16_005fGOT"></a>: <strong>BFD_RELOC_V850_16_GOT</strong></dt>
  1977. <dd><p>DSO relocations.
  1978. </p></dd></dl>
  1979. <dl>
  1980. <dt><a name="index-BFD_005fRELOC_005fV850_005f32_005fGOT"></a>: <strong>BFD_RELOC_V850_32_GOT</strong></dt>
  1981. <dd><p>DSO relocations.
  1982. </p></dd></dl>
  1983. <dl>
  1984. <dt><a name="index-BFD_005fRELOC_005fV850_005f22_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_V850_22_PLT_PCREL</strong></dt>
  1985. <dd><p>DSO relocations.
  1986. </p></dd></dl>
  1987. <dl>
  1988. <dt><a name="index-BFD_005fRELOC_005fV850_005f32_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_V850_32_PLT_PCREL</strong></dt>
  1989. <dd><p>DSO relocations.
  1990. </p></dd></dl>
  1991. <dl>
  1992. <dt><a name="index-BFD_005fRELOC_005fV850_005fCOPY"></a>: <strong>BFD_RELOC_V850_COPY</strong></dt>
  1993. <dd><p>DSO relocations.
  1994. </p></dd></dl>
  1995. <dl>
  1996. <dt><a name="index-BFD_005fRELOC_005fV850_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_V850_GLOB_DAT</strong></dt>
  1997. <dd><p>DSO relocations.
  1998. </p></dd></dl>
  1999. <dl>
  2000. <dt><a name="index-BFD_005fRELOC_005fV850_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_V850_JMP_SLOT</strong></dt>
  2001. <dd><p>DSO relocations.
  2002. </p></dd></dl>
  2003. <dl>
  2004. <dt><a name="index-BFD_005fRELOC_005fV850_005fRELATIVE"></a>: <strong>BFD_RELOC_V850_RELATIVE</strong></dt>
  2005. <dd><p>DSO relocations.
  2006. </p></dd></dl>
  2007. <dl>
  2008. <dt><a name="index-BFD_005fRELOC_005fV850_005f16_005fGOTOFF"></a>: <strong>BFD_RELOC_V850_16_GOTOFF</strong></dt>
  2009. <dd><p>DSO relocations.
  2010. </p></dd></dl>
  2011. <dl>
  2012. <dt><a name="index-BFD_005fRELOC_005fV850_005f32_005fGOTOFF"></a>: <strong>BFD_RELOC_V850_32_GOTOFF</strong></dt>
  2013. <dd><p>DSO relocations.
  2014. </p></dd></dl>
  2015. <dl>
  2016. <dt><a name="index-BFD_005fRELOC_005fV850_005fCODE"></a>: <strong>BFD_RELOC_V850_CODE</strong></dt>
  2017. <dd><p>start code.
  2018. </p></dd></dl>
  2019. <dl>
  2020. <dt><a name="index-BFD_005fRELOC_005fV850_005fDATA"></a>: <strong>BFD_RELOC_V850_DATA</strong></dt>
  2021. <dd><p>start data in text.
  2022. </p></dd></dl>
  2023. <dl>
  2024. <dt><a name="index-BFD_005fRELOC_005fTIC30_005fLDP"></a>: <strong>BFD_RELOC_TIC30_LDP</strong></dt>
  2025. <dd><p>This is a 8bit DP reloc for the tms320c30, where the most
  2026. significant 8 bits of a 24 bit word are placed into the least
  2027. significant 8 bits of the opcode.
  2028. </p></dd></dl>
  2029. <dl>
  2030. <dt><a name="index-BFD_005fRELOC_005fTIC54X_005fPARTLS7"></a>: <strong>BFD_RELOC_TIC54X_PARTLS7</strong></dt>
  2031. <dd><p>This is a 7bit reloc for the tms320c54x, where the least
  2032. significant 7 bits of a 16 bit word are placed into the least
  2033. significant 7 bits of the opcode.
  2034. </p></dd></dl>
  2035. <dl>
  2036. <dt><a name="index-BFD_005fRELOC_005fTIC54X_005fPARTMS9"></a>: <strong>BFD_RELOC_TIC54X_PARTMS9</strong></dt>
  2037. <dd><p>This is a 9bit DP reloc for the tms320c54x, where the most
  2038. significant 9 bits of a 16 bit word are placed into the least
  2039. significant 9 bits of the opcode.
  2040. </p></dd></dl>
  2041. <dl>
  2042. <dt><a name="index-BFD_005fRELOC_005fTIC54X_005f23"></a>: <strong>BFD_RELOC_TIC54X_23</strong></dt>
  2043. <dd><p>This is an extended address 23-bit reloc for the tms320c54x.
  2044. </p></dd></dl>
  2045. <dl>
  2046. <dt><a name="index-BFD_005fRELOC_005fTIC54X_005f16_005fOF_005f23"></a>: <strong>BFD_RELOC_TIC54X_16_OF_23</strong></dt>
  2047. <dd><p>This is a 16-bit reloc for the tms320c54x, where the least
  2048. significant 16 bits of a 23-bit extended address are placed into
  2049. the opcode.
  2050. </p></dd></dl>
  2051. <dl>
  2052. <dt><a name="index-BFD_005fRELOC_005fTIC54X_005fMS7_005fOF_005f23"></a>: <strong>BFD_RELOC_TIC54X_MS7_OF_23</strong></dt>
  2053. <dd><p>This is a reloc for the tms320c54x, where the most
  2054. significant 7 bits of a 23-bit extended address are placed into
  2055. the opcode.
  2056. </p></dd></dl>
  2057. <dl>
  2058. <dt><a name="index-BFD_005fRELOC_005fC6000_005fPCR_005fS21"></a>: <strong>BFD_RELOC_C6000_PCR_S21</strong></dt>
  2059. <dt><a name="index-BFD_005fRELOC_005fC6000_005fPCR_005fS12"></a>: <strong>BFD_RELOC_C6000_PCR_S12</strong></dt>
  2060. <dt><a name="index-BFD_005fRELOC_005fC6000_005fPCR_005fS10"></a>: <strong>BFD_RELOC_C6000_PCR_S10</strong></dt>
  2061. <dt><a name="index-BFD_005fRELOC_005fC6000_005fPCR_005fS7"></a>: <strong>BFD_RELOC_C6000_PCR_S7</strong></dt>
  2062. <dt><a name="index-BFD_005fRELOC_005fC6000_005fABS_005fS16"></a>: <strong>BFD_RELOC_C6000_ABS_S16</strong></dt>
  2063. <dt><a name="index-BFD_005fRELOC_005fC6000_005fABS_005fL16"></a>: <strong>BFD_RELOC_C6000_ABS_L16</strong></dt>
  2064. <dt><a name="index-BFD_005fRELOC_005fC6000_005fABS_005fH16"></a>: <strong>BFD_RELOC_C6000_ABS_H16</strong></dt>
  2065. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fU15_005fB"></a>: <strong>BFD_RELOC_C6000_SBR_U15_B</strong></dt>
  2066. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fU15_005fH"></a>: <strong>BFD_RELOC_C6000_SBR_U15_H</strong></dt>
  2067. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fU15_005fW"></a>: <strong>BFD_RELOC_C6000_SBR_U15_W</strong></dt>
  2068. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fS16"></a>: <strong>BFD_RELOC_C6000_SBR_S16</strong></dt>
  2069. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fL16_005fB"></a>: <strong>BFD_RELOC_C6000_SBR_L16_B</strong></dt>
  2070. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fL16_005fH"></a>: <strong>BFD_RELOC_C6000_SBR_L16_H</strong></dt>
  2071. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fL16_005fW"></a>: <strong>BFD_RELOC_C6000_SBR_L16_W</strong></dt>
  2072. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fH16_005fB"></a>: <strong>BFD_RELOC_C6000_SBR_H16_B</strong></dt>
  2073. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fH16_005fH"></a>: <strong>BFD_RELOC_C6000_SBR_H16_H</strong></dt>
  2074. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fH16_005fW"></a>: <strong>BFD_RELOC_C6000_SBR_H16_W</strong></dt>
  2075. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fGOT_005fU15_005fW"></a>: <strong>BFD_RELOC_C6000_SBR_GOT_U15_W</strong></dt>
  2076. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fGOT_005fL16_005fW"></a>: <strong>BFD_RELOC_C6000_SBR_GOT_L16_W</strong></dt>
  2077. <dt><a name="index-BFD_005fRELOC_005fC6000_005fSBR_005fGOT_005fH16_005fW"></a>: <strong>BFD_RELOC_C6000_SBR_GOT_H16_W</strong></dt>
  2078. <dt><a name="index-BFD_005fRELOC_005fC6000_005fDSBT_005fINDEX"></a>: <strong>BFD_RELOC_C6000_DSBT_INDEX</strong></dt>
  2079. <dt><a name="index-BFD_005fRELOC_005fC6000_005fPREL31"></a>: <strong>BFD_RELOC_C6000_PREL31</strong></dt>
  2080. <dt><a name="index-BFD_005fRELOC_005fC6000_005fCOPY"></a>: <strong>BFD_RELOC_C6000_COPY</strong></dt>
  2081. <dt><a name="index-BFD_005fRELOC_005fC6000_005fJUMP_005fSLOT"></a>: <strong>BFD_RELOC_C6000_JUMP_SLOT</strong></dt>
  2082. <dt><a name="index-BFD_005fRELOC_005fC6000_005fEHTYPE"></a>: <strong>BFD_RELOC_C6000_EHTYPE</strong></dt>
  2083. <dt><a name="index-BFD_005fRELOC_005fC6000_005fPCR_005fH16"></a>: <strong>BFD_RELOC_C6000_PCR_H16</strong></dt>
  2084. <dt><a name="index-BFD_005fRELOC_005fC6000_005fPCR_005fL16"></a>: <strong>BFD_RELOC_C6000_PCR_L16</strong></dt>
  2085. <dt><a name="index-BFD_005fRELOC_005fC6000_005fALIGN"></a>: <strong>BFD_RELOC_C6000_ALIGN</strong></dt>
  2086. <dt><a name="index-BFD_005fRELOC_005fC6000_005fFPHEAD"></a>: <strong>BFD_RELOC_C6000_FPHEAD</strong></dt>
  2087. <dt><a name="index-BFD_005fRELOC_005fC6000_005fNOCMP"></a>: <strong>BFD_RELOC_C6000_NOCMP</strong></dt>
  2088. <dd><p>TMS320C6000 relocations.
  2089. </p></dd></dl>
  2090. <dl>
  2091. <dt><a name="index-BFD_005fRELOC_005fFR30_005f48"></a>: <strong>BFD_RELOC_FR30_48</strong></dt>
  2092. <dd><p>This is a 48 bit reloc for the FR30 that stores 32 bits.
  2093. </p></dd></dl>
  2094. <dl>
  2095. <dt><a name="index-BFD_005fRELOC_005fFR30_005f20"></a>: <strong>BFD_RELOC_FR30_20</strong></dt>
  2096. <dd><p>This is a 32 bit reloc for the FR30 that stores 20 bits split up into
  2097. two sections.
  2098. </p></dd></dl>
  2099. <dl>
  2100. <dt><a name="index-BFD_005fRELOC_005fFR30_005f6_005fIN_005f4"></a>: <strong>BFD_RELOC_FR30_6_IN_4</strong></dt>
  2101. <dd><p>This is a 16 bit reloc for the FR30 that stores a 6 bit word offset in
  2102. 4 bits.
  2103. </p></dd></dl>
  2104. <dl>
  2105. <dt><a name="index-BFD_005fRELOC_005fFR30_005f8_005fIN_005f8"></a>: <strong>BFD_RELOC_FR30_8_IN_8</strong></dt>
  2106. <dd><p>This is a 16 bit reloc for the FR30 that stores an 8 bit byte offset
  2107. into 8 bits.
  2108. </p></dd></dl>
  2109. <dl>
  2110. <dt><a name="index-BFD_005fRELOC_005fFR30_005f9_005fIN_005f8"></a>: <strong>BFD_RELOC_FR30_9_IN_8</strong></dt>
  2111. <dd><p>This is a 16 bit reloc for the FR30 that stores a 9 bit short offset
  2112. into 8 bits.
  2113. </p></dd></dl>
  2114. <dl>
  2115. <dt><a name="index-BFD_005fRELOC_005fFR30_005f10_005fIN_005f8"></a>: <strong>BFD_RELOC_FR30_10_IN_8</strong></dt>
  2116. <dd><p>This is a 16 bit reloc for the FR30 that stores a 10 bit word offset
  2117. into 8 bits.
  2118. </p></dd></dl>
  2119. <dl>
  2120. <dt><a name="index-BFD_005fRELOC_005fFR30_005f9_005fPCREL"></a>: <strong>BFD_RELOC_FR30_9_PCREL</strong></dt>
  2121. <dd><p>This is a 16 bit reloc for the FR30 that stores a 9 bit pc relative
  2122. short offset into 8 bits.
  2123. </p></dd></dl>
  2124. <dl>
  2125. <dt><a name="index-BFD_005fRELOC_005fFR30_005f12_005fPCREL"></a>: <strong>BFD_RELOC_FR30_12_PCREL</strong></dt>
  2126. <dd><p>This is a 16 bit reloc for the FR30 that stores a 12 bit pc relative
  2127. short offset into 11 bits.
  2128. </p></dd></dl>
  2129. <dl>
  2130. <dt><a name="index-BFD_005fRELOC_005fMCORE_005fPCREL_005fIMM8BY4"></a>: <strong>BFD_RELOC_MCORE_PCREL_IMM8BY4</strong></dt>
  2131. <dt><a name="index-BFD_005fRELOC_005fMCORE_005fPCREL_005fIMM11BY2"></a>: <strong>BFD_RELOC_MCORE_PCREL_IMM11BY2</strong></dt>
  2132. <dt><a name="index-BFD_005fRELOC_005fMCORE_005fPCREL_005fIMM4BY2"></a>: <strong>BFD_RELOC_MCORE_PCREL_IMM4BY2</strong></dt>
  2133. <dt><a name="index-BFD_005fRELOC_005fMCORE_005fPCREL_005f32"></a>: <strong>BFD_RELOC_MCORE_PCREL_32</strong></dt>
  2134. <dt><a name="index-BFD_005fRELOC_005fMCORE_005fPCREL_005fJSR_005fIMM11BY2"></a>: <strong>BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2</strong></dt>
  2135. <dt><a name="index-BFD_005fRELOC_005fMCORE_005fRVA"></a>: <strong>BFD_RELOC_MCORE_RVA</strong></dt>
  2136. <dd><p>Motorola Mcore relocations.
  2137. </p></dd></dl>
  2138. <dl>
  2139. <dt><a name="index-BFD_005fRELOC_005fMEP_005f8"></a>: <strong>BFD_RELOC_MEP_8</strong></dt>
  2140. <dt><a name="index-BFD_005fRELOC_005fMEP_005f16"></a>: <strong>BFD_RELOC_MEP_16</strong></dt>
  2141. <dt><a name="index-BFD_005fRELOC_005fMEP_005f32"></a>: <strong>BFD_RELOC_MEP_32</strong></dt>
  2142. <dt><a name="index-BFD_005fRELOC_005fMEP_005fPCREL8A2"></a>: <strong>BFD_RELOC_MEP_PCREL8A2</strong></dt>
  2143. <dt><a name="index-BFD_005fRELOC_005fMEP_005fPCREL12A2"></a>: <strong>BFD_RELOC_MEP_PCREL12A2</strong></dt>
  2144. <dt><a name="index-BFD_005fRELOC_005fMEP_005fPCREL17A2"></a>: <strong>BFD_RELOC_MEP_PCREL17A2</strong></dt>
  2145. <dt><a name="index-BFD_005fRELOC_005fMEP_005fPCREL24A2"></a>: <strong>BFD_RELOC_MEP_PCREL24A2</strong></dt>
  2146. <dt><a name="index-BFD_005fRELOC_005fMEP_005fPCABS24A2"></a>: <strong>BFD_RELOC_MEP_PCABS24A2</strong></dt>
  2147. <dt><a name="index-BFD_005fRELOC_005fMEP_005fLOW16"></a>: <strong>BFD_RELOC_MEP_LOW16</strong></dt>
  2148. <dt><a name="index-BFD_005fRELOC_005fMEP_005fHI16U"></a>: <strong>BFD_RELOC_MEP_HI16U</strong></dt>
  2149. <dt><a name="index-BFD_005fRELOC_005fMEP_005fHI16S"></a>: <strong>BFD_RELOC_MEP_HI16S</strong></dt>
  2150. <dt><a name="index-BFD_005fRELOC_005fMEP_005fGPREL"></a>: <strong>BFD_RELOC_MEP_GPREL</strong></dt>
  2151. <dt><a name="index-BFD_005fRELOC_005fMEP_005fTPREL"></a>: <strong>BFD_RELOC_MEP_TPREL</strong></dt>
  2152. <dt><a name="index-BFD_005fRELOC_005fMEP_005fTPREL7"></a>: <strong>BFD_RELOC_MEP_TPREL7</strong></dt>
  2153. <dt><a name="index-BFD_005fRELOC_005fMEP_005fTPREL7A2"></a>: <strong>BFD_RELOC_MEP_TPREL7A2</strong></dt>
  2154. <dt><a name="index-BFD_005fRELOC_005fMEP_005fTPREL7A4"></a>: <strong>BFD_RELOC_MEP_TPREL7A4</strong></dt>
  2155. <dt><a name="index-BFD_005fRELOC_005fMEP_005fUIMM24"></a>: <strong>BFD_RELOC_MEP_UIMM24</strong></dt>
  2156. <dt><a name="index-BFD_005fRELOC_005fMEP_005fADDR24A4"></a>: <strong>BFD_RELOC_MEP_ADDR24A4</strong></dt>
  2157. <dt><a name="index-BFD_005fRELOC_005fMEP_005fGNU_005fVTINHERIT"></a>: <strong>BFD_RELOC_MEP_GNU_VTINHERIT</strong></dt>
  2158. <dt><a name="index-BFD_005fRELOC_005fMEP_005fGNU_005fVTENTRY"></a>: <strong>BFD_RELOC_MEP_GNU_VTENTRY</strong></dt>
  2159. <dd><p>Toshiba Media Processor Relocations.
  2160. </p></dd></dl>
  2161. <dl>
  2162. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fHIADDR16"></a>: <strong>BFD_RELOC_METAG_HIADDR16</strong></dt>
  2163. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fLOADDR16"></a>: <strong>BFD_RELOC_METAG_LOADDR16</strong></dt>
  2164. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fRELBRANCH"></a>: <strong>BFD_RELOC_METAG_RELBRANCH</strong></dt>
  2165. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fGETSETOFF"></a>: <strong>BFD_RELOC_METAG_GETSETOFF</strong></dt>
  2166. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fHIOG"></a>: <strong>BFD_RELOC_METAG_HIOG</strong></dt>
  2167. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fLOOG"></a>: <strong>BFD_RELOC_METAG_LOOG</strong></dt>
  2168. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fREL8"></a>: <strong>BFD_RELOC_METAG_REL8</strong></dt>
  2169. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fREL16"></a>: <strong>BFD_RELOC_METAG_REL16</strong></dt>
  2170. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fHI16_005fGOTOFF"></a>: <strong>BFD_RELOC_METAG_HI16_GOTOFF</strong></dt>
  2171. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fLO16_005fGOTOFF"></a>: <strong>BFD_RELOC_METAG_LO16_GOTOFF</strong></dt>
  2172. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fGETSET_005fGOTOFF"></a>: <strong>BFD_RELOC_METAG_GETSET_GOTOFF</strong></dt>
  2173. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fGETSET_005fGOT"></a>: <strong>BFD_RELOC_METAG_GETSET_GOT</strong></dt>
  2174. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fHI16_005fGOTPC"></a>: <strong>BFD_RELOC_METAG_HI16_GOTPC</strong></dt>
  2175. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fLO16_005fGOTPC"></a>: <strong>BFD_RELOC_METAG_LO16_GOTPC</strong></dt>
  2176. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fHI16_005fPLT"></a>: <strong>BFD_RELOC_METAG_HI16_PLT</strong></dt>
  2177. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fLO16_005fPLT"></a>: <strong>BFD_RELOC_METAG_LO16_PLT</strong></dt>
  2178. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fRELBRANCH_005fPLT"></a>: <strong>BFD_RELOC_METAG_RELBRANCH_PLT</strong></dt>
  2179. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fGOTOFF"></a>: <strong>BFD_RELOC_METAG_GOTOFF</strong></dt>
  2180. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fPLT"></a>: <strong>BFD_RELOC_METAG_PLT</strong></dt>
  2181. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fCOPY"></a>: <strong>BFD_RELOC_METAG_COPY</strong></dt>
  2182. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_METAG_JMP_SLOT</strong></dt>
  2183. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fRELATIVE"></a>: <strong>BFD_RELOC_METAG_RELATIVE</strong></dt>
  2184. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_METAG_GLOB_DAT</strong></dt>
  2185. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fGD"></a>: <strong>BFD_RELOC_METAG_TLS_GD</strong></dt>
  2186. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fLDM"></a>: <strong>BFD_RELOC_METAG_TLS_LDM</strong></dt>
  2187. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fLDO_005fHI16"></a>: <strong>BFD_RELOC_METAG_TLS_LDO_HI16</strong></dt>
  2188. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fLDO_005fLO16"></a>: <strong>BFD_RELOC_METAG_TLS_LDO_LO16</strong></dt>
  2189. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fLDO"></a>: <strong>BFD_RELOC_METAG_TLS_LDO</strong></dt>
  2190. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fIE"></a>: <strong>BFD_RELOC_METAG_TLS_IE</strong></dt>
  2191. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fIENONPIC"></a>: <strong>BFD_RELOC_METAG_TLS_IENONPIC</strong></dt>
  2192. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fIENONPIC_005fHI16"></a>: <strong>BFD_RELOC_METAG_TLS_IENONPIC_HI16</strong></dt>
  2193. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fIENONPIC_005fLO16"></a>: <strong>BFD_RELOC_METAG_TLS_IENONPIC_LO16</strong></dt>
  2194. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fTPOFF"></a>: <strong>BFD_RELOC_METAG_TLS_TPOFF</strong></dt>
  2195. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fDTPMOD"></a>: <strong>BFD_RELOC_METAG_TLS_DTPMOD</strong></dt>
  2196. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fDTPOFF"></a>: <strong>BFD_RELOC_METAG_TLS_DTPOFF</strong></dt>
  2197. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fLE"></a>: <strong>BFD_RELOC_METAG_TLS_LE</strong></dt>
  2198. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fLE_005fHI16"></a>: <strong>BFD_RELOC_METAG_TLS_LE_HI16</strong></dt>
  2199. <dt><a name="index-BFD_005fRELOC_005fMETAG_005fTLS_005fLE_005fLO16"></a>: <strong>BFD_RELOC_METAG_TLS_LE_LO16</strong></dt>
  2200. <dd><p>Imagination Technologies Meta relocations.
  2201. </p></dd></dl>
  2202. <dl>
  2203. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fGETA"></a>: <strong>BFD_RELOC_MMIX_GETA</strong></dt>
  2204. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fGETA_005f1"></a>: <strong>BFD_RELOC_MMIX_GETA_1</strong></dt>
  2205. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fGETA_005f2"></a>: <strong>BFD_RELOC_MMIX_GETA_2</strong></dt>
  2206. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fGETA_005f3"></a>: <strong>BFD_RELOC_MMIX_GETA_3</strong></dt>
  2207. <dd><p>These are relocations for the GETA instruction.
  2208. </p></dd></dl>
  2209. <dl>
  2210. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fCBRANCH"></a>: <strong>BFD_RELOC_MMIX_CBRANCH</strong></dt>
  2211. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fCBRANCH_005fJ"></a>: <strong>BFD_RELOC_MMIX_CBRANCH_J</strong></dt>
  2212. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fCBRANCH_005f1"></a>: <strong>BFD_RELOC_MMIX_CBRANCH_1</strong></dt>
  2213. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fCBRANCH_005f2"></a>: <strong>BFD_RELOC_MMIX_CBRANCH_2</strong></dt>
  2214. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fCBRANCH_005f3"></a>: <strong>BFD_RELOC_MMIX_CBRANCH_3</strong></dt>
  2215. <dd><p>These are relocations for a conditional branch instruction.
  2216. </p></dd></dl>
  2217. <dl>
  2218. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fPUSHJ"></a>: <strong>BFD_RELOC_MMIX_PUSHJ</strong></dt>
  2219. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fPUSHJ_005f1"></a>: <strong>BFD_RELOC_MMIX_PUSHJ_1</strong></dt>
  2220. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fPUSHJ_005f2"></a>: <strong>BFD_RELOC_MMIX_PUSHJ_2</strong></dt>
  2221. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fPUSHJ_005f3"></a>: <strong>BFD_RELOC_MMIX_PUSHJ_3</strong></dt>
  2222. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fPUSHJ_005fSTUBBABLE"></a>: <strong>BFD_RELOC_MMIX_PUSHJ_STUBBABLE</strong></dt>
  2223. <dd><p>These are relocations for the PUSHJ instruction.
  2224. </p></dd></dl>
  2225. <dl>
  2226. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fJMP"></a>: <strong>BFD_RELOC_MMIX_JMP</strong></dt>
  2227. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fJMP_005f1"></a>: <strong>BFD_RELOC_MMIX_JMP_1</strong></dt>
  2228. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fJMP_005f2"></a>: <strong>BFD_RELOC_MMIX_JMP_2</strong></dt>
  2229. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fJMP_005f3"></a>: <strong>BFD_RELOC_MMIX_JMP_3</strong></dt>
  2230. <dd><p>These are relocations for the JMP instruction.
  2231. </p></dd></dl>
  2232. <dl>
  2233. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fADDR19"></a>: <strong>BFD_RELOC_MMIX_ADDR19</strong></dt>
  2234. <dd><p>This is a relocation for a relative address as in a GETA instruction or
  2235. a branch.
  2236. </p></dd></dl>
  2237. <dl>
  2238. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fADDR27"></a>: <strong>BFD_RELOC_MMIX_ADDR27</strong></dt>
  2239. <dd><p>This is a relocation for a relative address as in a JMP instruction.
  2240. </p></dd></dl>
  2241. <dl>
  2242. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fREG_005fOR_005fBYTE"></a>: <strong>BFD_RELOC_MMIX_REG_OR_BYTE</strong></dt>
  2243. <dd><p>This is a relocation for an instruction field that may be a general
  2244. register or a value 0..255.
  2245. </p></dd></dl>
  2246. <dl>
  2247. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fREG"></a>: <strong>BFD_RELOC_MMIX_REG</strong></dt>
  2248. <dd><p>This is a relocation for an instruction field that may be a general
  2249. register.
  2250. </p></dd></dl>
  2251. <dl>
  2252. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fBASE_005fPLUS_005fOFFSET"></a>: <strong>BFD_RELOC_MMIX_BASE_PLUS_OFFSET</strong></dt>
  2253. <dd><p>This is a relocation for two instruction fields holding a register and
  2254. an offset, the equivalent of the relocation.
  2255. </p></dd></dl>
  2256. <dl>
  2257. <dt><a name="index-BFD_005fRELOC_005fMMIX_005fLOCAL"></a>: <strong>BFD_RELOC_MMIX_LOCAL</strong></dt>
  2258. <dd><p>This relocation is an assertion that the expression is not allocated as
  2259. a global register. It does not modify contents.
  2260. </p></dd></dl>
  2261. <dl>
  2262. <dt><a name="index-BFD_005fRELOC_005fAVR_005f7_005fPCREL"></a>: <strong>BFD_RELOC_AVR_7_PCREL</strong></dt>
  2263. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit pc relative
  2264. short offset into 7 bits.
  2265. </p></dd></dl>
  2266. <dl>
  2267. <dt><a name="index-BFD_005fRELOC_005fAVR_005f13_005fPCREL"></a>: <strong>BFD_RELOC_AVR_13_PCREL</strong></dt>
  2268. <dd><p>This is a 16 bit reloc for the AVR that stores 13 bit pc relative
  2269. short offset into 12 bits.
  2270. </p></dd></dl>
  2271. <dl>
  2272. <dt><a name="index-BFD_005fRELOC_005fAVR_005f16_005fPM"></a>: <strong>BFD_RELOC_AVR_16_PM</strong></dt>
  2273. <dd><p>This is a 16 bit reloc for the AVR that stores 17 bit value (usually
  2274. program memory address) into 16 bits.
  2275. </p></dd></dl>
  2276. <dl>
  2277. <dt><a name="index-BFD_005fRELOC_005fAVR_005fLO8_005fLDI"></a>: <strong>BFD_RELOC_AVR_LO8_LDI</strong></dt>
  2278. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit value (usually
  2279. data memory address) into 8 bit immediate value of LDI insn.
  2280. </p></dd></dl>
  2281. <dl>
  2282. <dt><a name="index-BFD_005fRELOC_005fAVR_005fHI8_005fLDI"></a>: <strong>BFD_RELOC_AVR_HI8_LDI</strong></dt>
  2283. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
  2284. of data memory address) into 8 bit immediate value of LDI insn.
  2285. </p></dd></dl>
  2286. <dl>
  2287. <dt><a name="index-BFD_005fRELOC_005fAVR_005fHH8_005fLDI"></a>: <strong>BFD_RELOC_AVR_HH8_LDI</strong></dt>
  2288. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
  2289. of program memory address) into 8 bit immediate value of LDI insn.
  2290. </p></dd></dl>
  2291. <dl>
  2292. <dt><a name="index-BFD_005fRELOC_005fAVR_005fMS8_005fLDI"></a>: <strong>BFD_RELOC_AVR_MS8_LDI</strong></dt>
  2293. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
  2294. of 32 bit value) into 8 bit immediate value of LDI insn.
  2295. </p></dd></dl>
  2296. <dl>
  2297. <dt><a name="index-BFD_005fRELOC_005fAVR_005fLO8_005fLDI_005fNEG"></a>: <strong>BFD_RELOC_AVR_LO8_LDI_NEG</strong></dt>
  2298. <dd><p>This is a 16 bit reloc for the AVR that stores negated 8 bit value
  2299. (usually data memory address) into 8 bit immediate value of SUBI insn.
  2300. </p></dd></dl>
  2301. <dl>
  2302. <dt><a name="index-BFD_005fRELOC_005fAVR_005fHI8_005fLDI_005fNEG"></a>: <strong>BFD_RELOC_AVR_HI8_LDI_NEG</strong></dt>
  2303. <dd><p>This is a 16 bit reloc for the AVR that stores negated 8 bit value
  2304. (high 8 bit of data memory address) into 8 bit immediate value of
  2305. SUBI insn.
  2306. </p></dd></dl>
  2307. <dl>
  2308. <dt><a name="index-BFD_005fRELOC_005fAVR_005fHH8_005fLDI_005fNEG"></a>: <strong>BFD_RELOC_AVR_HH8_LDI_NEG</strong></dt>
  2309. <dd><p>This is a 16 bit reloc for the AVR that stores negated 8 bit value
  2310. (most high 8 bit of program memory address) into 8 bit immediate value
  2311. of LDI or SUBI insn.
  2312. </p></dd></dl>
  2313. <dl>
  2314. <dt><a name="index-BFD_005fRELOC_005fAVR_005fMS8_005fLDI_005fNEG"></a>: <strong>BFD_RELOC_AVR_MS8_LDI_NEG</strong></dt>
  2315. <dd><p>This is a 16 bit reloc for the AVR that stores negated 8 bit value (msb
  2316. of 32 bit value) into 8 bit immediate value of LDI insn.
  2317. </p></dd></dl>
  2318. <dl>
  2319. <dt><a name="index-BFD_005fRELOC_005fAVR_005fLO8_005fLDI_005fPM"></a>: <strong>BFD_RELOC_AVR_LO8_LDI_PM</strong></dt>
  2320. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit value (usually
  2321. command address) into 8 bit immediate value of LDI insn.
  2322. </p></dd></dl>
  2323. <dl>
  2324. <dt><a name="index-BFD_005fRELOC_005fAVR_005fLO8_005fLDI_005fGS"></a>: <strong>BFD_RELOC_AVR_LO8_LDI_GS</strong></dt>
  2325. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit value
  2326. (command address) into 8 bit immediate value of LDI insn. If the address
  2327. is beyond the 128k boundary, the linker inserts a jump stub for this reloc
  2328. in the lower 128k.
  2329. </p></dd></dl>
  2330. <dl>
  2331. <dt><a name="index-BFD_005fRELOC_005fAVR_005fHI8_005fLDI_005fPM"></a>: <strong>BFD_RELOC_AVR_HI8_LDI_PM</strong></dt>
  2332. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
  2333. of command address) into 8 bit immediate value of LDI insn.
  2334. </p></dd></dl>
  2335. <dl>
  2336. <dt><a name="index-BFD_005fRELOC_005fAVR_005fHI8_005fLDI_005fGS"></a>: <strong>BFD_RELOC_AVR_HI8_LDI_GS</strong></dt>
  2337. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
  2338. of command address) into 8 bit immediate value of LDI insn. If the address
  2339. is beyond the 128k boundary, the linker inserts a jump stub for this reloc
  2340. below 128k.
  2341. </p></dd></dl>
  2342. <dl>
  2343. <dt><a name="index-BFD_005fRELOC_005fAVR_005fHH8_005fLDI_005fPM"></a>: <strong>BFD_RELOC_AVR_HH8_LDI_PM</strong></dt>
  2344. <dd><p>This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
  2345. of command address) into 8 bit immediate value of LDI insn.
  2346. </p></dd></dl>
  2347. <dl>
  2348. <dt><a name="index-BFD_005fRELOC_005fAVR_005fLO8_005fLDI_005fPM_005fNEG"></a>: <strong>BFD_RELOC_AVR_LO8_LDI_PM_NEG</strong></dt>
  2349. <dd><p>This is a 16 bit reloc for the AVR that stores negated 8 bit value
  2350. (usually command address) into 8 bit immediate value of SUBI insn.
  2351. </p></dd></dl>
  2352. <dl>
  2353. <dt><a name="index-BFD_005fRELOC_005fAVR_005fHI8_005fLDI_005fPM_005fNEG"></a>: <strong>BFD_RELOC_AVR_HI8_LDI_PM_NEG</strong></dt>
  2354. <dd><p>This is a 16 bit reloc for the AVR that stores negated 8 bit value
  2355. (high 8 bit of 16 bit command address) into 8 bit immediate value
  2356. of SUBI insn.
  2357. </p></dd></dl>
  2358. <dl>
  2359. <dt><a name="index-BFD_005fRELOC_005fAVR_005fHH8_005fLDI_005fPM_005fNEG"></a>: <strong>BFD_RELOC_AVR_HH8_LDI_PM_NEG</strong></dt>
  2360. <dd><p>This is a 16 bit reloc for the AVR that stores negated 8 bit value
  2361. (high 6 bit of 22 bit command address) into 8 bit immediate
  2362. value of SUBI insn.
  2363. </p></dd></dl>
  2364. <dl>
  2365. <dt><a name="index-BFD_005fRELOC_005fAVR_005fCALL"></a>: <strong>BFD_RELOC_AVR_CALL</strong></dt>
  2366. <dd><p>This is a 32 bit reloc for the AVR that stores 23 bit value
  2367. into 22 bits.
  2368. </p></dd></dl>
  2369. <dl>
  2370. <dt><a name="index-BFD_005fRELOC_005fAVR_005fLDI"></a>: <strong>BFD_RELOC_AVR_LDI</strong></dt>
  2371. <dd><p>This is a 16 bit reloc for the AVR that stores all needed bits
  2372. for absolute addressing with ldi with overflow check to linktime
  2373. </p></dd></dl>
  2374. <dl>
  2375. <dt><a name="index-BFD_005fRELOC_005fAVR_005f6"></a>: <strong>BFD_RELOC_AVR_6</strong></dt>
  2376. <dd><p>This is a 6 bit reloc for the AVR that stores offset for ldd/std
  2377. instructions
  2378. </p></dd></dl>
  2379. <dl>
  2380. <dt><a name="index-BFD_005fRELOC_005fAVR_005f6_005fADIW"></a>: <strong>BFD_RELOC_AVR_6_ADIW</strong></dt>
  2381. <dd><p>This is a 6 bit reloc for the AVR that stores offset for adiw/sbiw
  2382. instructions
  2383. </p></dd></dl>
  2384. <dl>
  2385. <dt><a name="index-BFD_005fRELOC_005fAVR_005f8_005fLO"></a>: <strong>BFD_RELOC_AVR_8_LO</strong></dt>
  2386. <dd><p>This is a 8 bit reloc for the AVR that stores bits 0..7 of a symbol
  2387. in .byte lo8(symbol)
  2388. </p></dd></dl>
  2389. <dl>
  2390. <dt><a name="index-BFD_005fRELOC_005fAVR_005f8_005fHI"></a>: <strong>BFD_RELOC_AVR_8_HI</strong></dt>
  2391. <dd><p>This is a 8 bit reloc for the AVR that stores bits 8..15 of a symbol
  2392. in .byte hi8(symbol)
  2393. </p></dd></dl>
  2394. <dl>
  2395. <dt><a name="index-BFD_005fRELOC_005fAVR_005f8_005fHLO"></a>: <strong>BFD_RELOC_AVR_8_HLO</strong></dt>
  2396. <dd><p>This is a 8 bit reloc for the AVR that stores bits 16..23 of a symbol
  2397. in .byte hlo8(symbol)
  2398. </p></dd></dl>
  2399. <dl>
  2400. <dt><a name="index-BFD_005fRELOC_005fAVR_005fDIFF8"></a>: <strong>BFD_RELOC_AVR_DIFF8</strong></dt>
  2401. <dt><a name="index-BFD_005fRELOC_005fAVR_005fDIFF16"></a>: <strong>BFD_RELOC_AVR_DIFF16</strong></dt>
  2402. <dt><a name="index-BFD_005fRELOC_005fAVR_005fDIFF32"></a>: <strong>BFD_RELOC_AVR_DIFF32</strong></dt>
  2403. <dd><p>AVR relocations to mark the difference of two local symbols.
  2404. These are only needed to support linker relaxation and can be ignored
  2405. when not relaxing. The field is set to the value of the difference
  2406. assuming no relaxation. The relocation encodes the position of the
  2407. second symbol so the linker can determine whether to adjust the field
  2408. value.
  2409. </p></dd></dl>
  2410. <dl>
  2411. <dt><a name="index-BFD_005fRELOC_005fAVR_005fLDS_005fSTS_005f16"></a>: <strong>BFD_RELOC_AVR_LDS_STS_16</strong></dt>
  2412. <dd><p>This is a 7 bit reloc for the AVR that stores SRAM address for 16bit
  2413. lds and sts instructions supported only tiny core.
  2414. </p></dd></dl>
  2415. <dl>
  2416. <dt><a name="index-BFD_005fRELOC_005fAVR_005fPORT6"></a>: <strong>BFD_RELOC_AVR_PORT6</strong></dt>
  2417. <dd><p>This is a 6 bit reloc for the AVR that stores an I/O register
  2418. number for the IN and OUT instructions
  2419. </p></dd></dl>
  2420. <dl>
  2421. <dt><a name="index-BFD_005fRELOC_005fAVR_005fPORT5"></a>: <strong>BFD_RELOC_AVR_PORT5</strong></dt>
  2422. <dd><p>This is a 5 bit reloc for the AVR that stores an I/O register
  2423. number for the SBIC, SBIS, SBI and CBI instructions
  2424. </p></dd></dl>
  2425. <dl>
  2426. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fHI20"></a>: <strong>BFD_RELOC_RISCV_HI20</strong></dt>
  2427. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fPCREL_005fHI20"></a>: <strong>BFD_RELOC_RISCV_PCREL_HI20</strong></dt>
  2428. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fPCREL_005fLO12_005fI"></a>: <strong>BFD_RELOC_RISCV_PCREL_LO12_I</strong></dt>
  2429. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fPCREL_005fLO12_005fS"></a>: <strong>BFD_RELOC_RISCV_PCREL_LO12_S</strong></dt>
  2430. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fLO12_005fI"></a>: <strong>BFD_RELOC_RISCV_LO12_I</strong></dt>
  2431. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fLO12_005fS"></a>: <strong>BFD_RELOC_RISCV_LO12_S</strong></dt>
  2432. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fGPREL12_005fI"></a>: <strong>BFD_RELOC_RISCV_GPREL12_I</strong></dt>
  2433. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fGPREL12_005fS"></a>: <strong>BFD_RELOC_RISCV_GPREL12_S</strong></dt>
  2434. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTPREL_005fHI20"></a>: <strong>BFD_RELOC_RISCV_TPREL_HI20</strong></dt>
  2435. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTPREL_005fLO12_005fI"></a>: <strong>BFD_RELOC_RISCV_TPREL_LO12_I</strong></dt>
  2436. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTPREL_005fLO12_005fS"></a>: <strong>BFD_RELOC_RISCV_TPREL_LO12_S</strong></dt>
  2437. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTPREL_005fADD"></a>: <strong>BFD_RELOC_RISCV_TPREL_ADD</strong></dt>
  2438. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fCALL"></a>: <strong>BFD_RELOC_RISCV_CALL</strong></dt>
  2439. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fCALL_005fPLT"></a>: <strong>BFD_RELOC_RISCV_CALL_PLT</strong></dt>
  2440. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fADD8"></a>: <strong>BFD_RELOC_RISCV_ADD8</strong></dt>
  2441. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fADD16"></a>: <strong>BFD_RELOC_RISCV_ADD16</strong></dt>
  2442. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fADD32"></a>: <strong>BFD_RELOC_RISCV_ADD32</strong></dt>
  2443. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fADD64"></a>: <strong>BFD_RELOC_RISCV_ADD64</strong></dt>
  2444. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fSUB8"></a>: <strong>BFD_RELOC_RISCV_SUB8</strong></dt>
  2445. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fSUB16"></a>: <strong>BFD_RELOC_RISCV_SUB16</strong></dt>
  2446. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fSUB32"></a>: <strong>BFD_RELOC_RISCV_SUB32</strong></dt>
  2447. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fSUB64"></a>: <strong>BFD_RELOC_RISCV_SUB64</strong></dt>
  2448. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fGOT_005fHI20"></a>: <strong>BFD_RELOC_RISCV_GOT_HI20</strong></dt>
  2449. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTLS_005fGOT_005fHI20"></a>: <strong>BFD_RELOC_RISCV_TLS_GOT_HI20</strong></dt>
  2450. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTLS_005fGD_005fHI20"></a>: <strong>BFD_RELOC_RISCV_TLS_GD_HI20</strong></dt>
  2451. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fJMP"></a>: <strong>BFD_RELOC_RISCV_JMP</strong></dt>
  2452. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTLS_005fDTPMOD32"></a>: <strong>BFD_RELOC_RISCV_TLS_DTPMOD32</strong></dt>
  2453. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTLS_005fDTPREL32"></a>: <strong>BFD_RELOC_RISCV_TLS_DTPREL32</strong></dt>
  2454. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTLS_005fDTPMOD64"></a>: <strong>BFD_RELOC_RISCV_TLS_DTPMOD64</strong></dt>
  2455. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTLS_005fDTPREL64"></a>: <strong>BFD_RELOC_RISCV_TLS_DTPREL64</strong></dt>
  2456. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTLS_005fTPREL32"></a>: <strong>BFD_RELOC_RISCV_TLS_TPREL32</strong></dt>
  2457. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTLS_005fTPREL64"></a>: <strong>BFD_RELOC_RISCV_TLS_TPREL64</strong></dt>
  2458. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fALIGN"></a>: <strong>BFD_RELOC_RISCV_ALIGN</strong></dt>
  2459. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fRVC_005fBRANCH"></a>: <strong>BFD_RELOC_RISCV_RVC_BRANCH</strong></dt>
  2460. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fRVC_005fJUMP"></a>: <strong>BFD_RELOC_RISCV_RVC_JUMP</strong></dt>
  2461. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fRVC_005fLUI"></a>: <strong>BFD_RELOC_RISCV_RVC_LUI</strong></dt>
  2462. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fGPREL_005fI"></a>: <strong>BFD_RELOC_RISCV_GPREL_I</strong></dt>
  2463. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fGPREL_005fS"></a>: <strong>BFD_RELOC_RISCV_GPREL_S</strong></dt>
  2464. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTPREL_005fI"></a>: <strong>BFD_RELOC_RISCV_TPREL_I</strong></dt>
  2465. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fTPREL_005fS"></a>: <strong>BFD_RELOC_RISCV_TPREL_S</strong></dt>
  2466. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fRELAX"></a>: <strong>BFD_RELOC_RISCV_RELAX</strong></dt>
  2467. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fCFA"></a>: <strong>BFD_RELOC_RISCV_CFA</strong></dt>
  2468. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fSUB6"></a>: <strong>BFD_RELOC_RISCV_SUB6</strong></dt>
  2469. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fSET6"></a>: <strong>BFD_RELOC_RISCV_SET6</strong></dt>
  2470. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fSET8"></a>: <strong>BFD_RELOC_RISCV_SET8</strong></dt>
  2471. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fSET16"></a>: <strong>BFD_RELOC_RISCV_SET16</strong></dt>
  2472. <dt><a name="index-BFD_005fRELOC_005fRISCV_005fSET32"></a>: <strong>BFD_RELOC_RISCV_SET32</strong></dt>
  2473. <dd><p>RISC-V relocations.
  2474. </p></dd></dl>
  2475. <dl>
  2476. <dt><a name="index-BFD_005fRELOC_005fRL78_005fNEG8"></a>: <strong>BFD_RELOC_RL78_NEG8</strong></dt>
  2477. <dt><a name="index-BFD_005fRELOC_005fRL78_005fNEG16"></a>: <strong>BFD_RELOC_RL78_NEG16</strong></dt>
  2478. <dt><a name="index-BFD_005fRELOC_005fRL78_005fNEG24"></a>: <strong>BFD_RELOC_RL78_NEG24</strong></dt>
  2479. <dt><a name="index-BFD_005fRELOC_005fRL78_005fNEG32"></a>: <strong>BFD_RELOC_RL78_NEG32</strong></dt>
  2480. <dt><a name="index-BFD_005fRELOC_005fRL78_005f16_005fOP"></a>: <strong>BFD_RELOC_RL78_16_OP</strong></dt>
  2481. <dt><a name="index-BFD_005fRELOC_005fRL78_005f24_005fOP"></a>: <strong>BFD_RELOC_RL78_24_OP</strong></dt>
  2482. <dt><a name="index-BFD_005fRELOC_005fRL78_005f32_005fOP"></a>: <strong>BFD_RELOC_RL78_32_OP</strong></dt>
  2483. <dt><a name="index-BFD_005fRELOC_005fRL78_005f8U"></a>: <strong>BFD_RELOC_RL78_8U</strong></dt>
  2484. <dt><a name="index-BFD_005fRELOC_005fRL78_005f16U"></a>: <strong>BFD_RELOC_RL78_16U</strong></dt>
  2485. <dt><a name="index-BFD_005fRELOC_005fRL78_005f24U"></a>: <strong>BFD_RELOC_RL78_24U</strong></dt>
  2486. <dt><a name="index-BFD_005fRELOC_005fRL78_005fDIR3U_005fPCREL"></a>: <strong>BFD_RELOC_RL78_DIR3U_PCREL</strong></dt>
  2487. <dt><a name="index-BFD_005fRELOC_005fRL78_005fDIFF"></a>: <strong>BFD_RELOC_RL78_DIFF</strong></dt>
  2488. <dt><a name="index-BFD_005fRELOC_005fRL78_005fGPRELB"></a>: <strong>BFD_RELOC_RL78_GPRELB</strong></dt>
  2489. <dt><a name="index-BFD_005fRELOC_005fRL78_005fGPRELW"></a>: <strong>BFD_RELOC_RL78_GPRELW</strong></dt>
  2490. <dt><a name="index-BFD_005fRELOC_005fRL78_005fGPRELL"></a>: <strong>BFD_RELOC_RL78_GPRELL</strong></dt>
  2491. <dt><a name="index-BFD_005fRELOC_005fRL78_005fSYM"></a>: <strong>BFD_RELOC_RL78_SYM</strong></dt>
  2492. <dt><a name="index-BFD_005fRELOC_005fRL78_005fOP_005fSUBTRACT"></a>: <strong>BFD_RELOC_RL78_OP_SUBTRACT</strong></dt>
  2493. <dt><a name="index-BFD_005fRELOC_005fRL78_005fOP_005fNEG"></a>: <strong>BFD_RELOC_RL78_OP_NEG</strong></dt>
  2494. <dt><a name="index-BFD_005fRELOC_005fRL78_005fOP_005fAND"></a>: <strong>BFD_RELOC_RL78_OP_AND</strong></dt>
  2495. <dt><a name="index-BFD_005fRELOC_005fRL78_005fOP_005fSHRA"></a>: <strong>BFD_RELOC_RL78_OP_SHRA</strong></dt>
  2496. <dt><a name="index-BFD_005fRELOC_005fRL78_005fABS8"></a>: <strong>BFD_RELOC_RL78_ABS8</strong></dt>
  2497. <dt><a name="index-BFD_005fRELOC_005fRL78_005fABS16"></a>: <strong>BFD_RELOC_RL78_ABS16</strong></dt>
  2498. <dt><a name="index-BFD_005fRELOC_005fRL78_005fABS16_005fREV"></a>: <strong>BFD_RELOC_RL78_ABS16_REV</strong></dt>
  2499. <dt><a name="index-BFD_005fRELOC_005fRL78_005fABS32"></a>: <strong>BFD_RELOC_RL78_ABS32</strong></dt>
  2500. <dt><a name="index-BFD_005fRELOC_005fRL78_005fABS32_005fREV"></a>: <strong>BFD_RELOC_RL78_ABS32_REV</strong></dt>
  2501. <dt><a name="index-BFD_005fRELOC_005fRL78_005fABS16U"></a>: <strong>BFD_RELOC_RL78_ABS16U</strong></dt>
  2502. <dt><a name="index-BFD_005fRELOC_005fRL78_005fABS16UW"></a>: <strong>BFD_RELOC_RL78_ABS16UW</strong></dt>
  2503. <dt><a name="index-BFD_005fRELOC_005fRL78_005fABS16UL"></a>: <strong>BFD_RELOC_RL78_ABS16UL</strong></dt>
  2504. <dt><a name="index-BFD_005fRELOC_005fRL78_005fRELAX"></a>: <strong>BFD_RELOC_RL78_RELAX</strong></dt>
  2505. <dt><a name="index-BFD_005fRELOC_005fRL78_005fHI16"></a>: <strong>BFD_RELOC_RL78_HI16</strong></dt>
  2506. <dt><a name="index-BFD_005fRELOC_005fRL78_005fHI8"></a>: <strong>BFD_RELOC_RL78_HI8</strong></dt>
  2507. <dt><a name="index-BFD_005fRELOC_005fRL78_005fLO16"></a>: <strong>BFD_RELOC_RL78_LO16</strong></dt>
  2508. <dt><a name="index-BFD_005fRELOC_005fRL78_005fCODE"></a>: <strong>BFD_RELOC_RL78_CODE</strong></dt>
  2509. <dt><a name="index-BFD_005fRELOC_005fRL78_005fSADDR"></a>: <strong>BFD_RELOC_RL78_SADDR</strong></dt>
  2510. <dd><p>Renesas RL78 Relocations.
  2511. </p></dd></dl>
  2512. <dl>
  2513. <dt><a name="index-BFD_005fRELOC_005fRX_005fNEG8"></a>: <strong>BFD_RELOC_RX_NEG8</strong></dt>
  2514. <dt><a name="index-BFD_005fRELOC_005fRX_005fNEG16"></a>: <strong>BFD_RELOC_RX_NEG16</strong></dt>
  2515. <dt><a name="index-BFD_005fRELOC_005fRX_005fNEG24"></a>: <strong>BFD_RELOC_RX_NEG24</strong></dt>
  2516. <dt><a name="index-BFD_005fRELOC_005fRX_005fNEG32"></a>: <strong>BFD_RELOC_RX_NEG32</strong></dt>
  2517. <dt><a name="index-BFD_005fRELOC_005fRX_005f16_005fOP"></a>: <strong>BFD_RELOC_RX_16_OP</strong></dt>
  2518. <dt><a name="index-BFD_005fRELOC_005fRX_005f24_005fOP"></a>: <strong>BFD_RELOC_RX_24_OP</strong></dt>
  2519. <dt><a name="index-BFD_005fRELOC_005fRX_005f32_005fOP"></a>: <strong>BFD_RELOC_RX_32_OP</strong></dt>
  2520. <dt><a name="index-BFD_005fRELOC_005fRX_005f8U"></a>: <strong>BFD_RELOC_RX_8U</strong></dt>
  2521. <dt><a name="index-BFD_005fRELOC_005fRX_005f16U"></a>: <strong>BFD_RELOC_RX_16U</strong></dt>
  2522. <dt><a name="index-BFD_005fRELOC_005fRX_005f24U"></a>: <strong>BFD_RELOC_RX_24U</strong></dt>
  2523. <dt><a name="index-BFD_005fRELOC_005fRX_005fDIR3U_005fPCREL"></a>: <strong>BFD_RELOC_RX_DIR3U_PCREL</strong></dt>
  2524. <dt><a name="index-BFD_005fRELOC_005fRX_005fDIFF"></a>: <strong>BFD_RELOC_RX_DIFF</strong></dt>
  2525. <dt><a name="index-BFD_005fRELOC_005fRX_005fGPRELB"></a>: <strong>BFD_RELOC_RX_GPRELB</strong></dt>
  2526. <dt><a name="index-BFD_005fRELOC_005fRX_005fGPRELW"></a>: <strong>BFD_RELOC_RX_GPRELW</strong></dt>
  2527. <dt><a name="index-BFD_005fRELOC_005fRX_005fGPRELL"></a>: <strong>BFD_RELOC_RX_GPRELL</strong></dt>
  2528. <dt><a name="index-BFD_005fRELOC_005fRX_005fSYM"></a>: <strong>BFD_RELOC_RX_SYM</strong></dt>
  2529. <dt><a name="index-BFD_005fRELOC_005fRX_005fOP_005fSUBTRACT"></a>: <strong>BFD_RELOC_RX_OP_SUBTRACT</strong></dt>
  2530. <dt><a name="index-BFD_005fRELOC_005fRX_005fOP_005fNEG"></a>: <strong>BFD_RELOC_RX_OP_NEG</strong></dt>
  2531. <dt><a name="index-BFD_005fRELOC_005fRX_005fABS8"></a>: <strong>BFD_RELOC_RX_ABS8</strong></dt>
  2532. <dt><a name="index-BFD_005fRELOC_005fRX_005fABS16"></a>: <strong>BFD_RELOC_RX_ABS16</strong></dt>
  2533. <dt><a name="index-BFD_005fRELOC_005fRX_005fABS16_005fREV"></a>: <strong>BFD_RELOC_RX_ABS16_REV</strong></dt>
  2534. <dt><a name="index-BFD_005fRELOC_005fRX_005fABS32"></a>: <strong>BFD_RELOC_RX_ABS32</strong></dt>
  2535. <dt><a name="index-BFD_005fRELOC_005fRX_005fABS32_005fREV"></a>: <strong>BFD_RELOC_RX_ABS32_REV</strong></dt>
  2536. <dt><a name="index-BFD_005fRELOC_005fRX_005fABS16U"></a>: <strong>BFD_RELOC_RX_ABS16U</strong></dt>
  2537. <dt><a name="index-BFD_005fRELOC_005fRX_005fABS16UW"></a>: <strong>BFD_RELOC_RX_ABS16UW</strong></dt>
  2538. <dt><a name="index-BFD_005fRELOC_005fRX_005fABS16UL"></a>: <strong>BFD_RELOC_RX_ABS16UL</strong></dt>
  2539. <dt><a name="index-BFD_005fRELOC_005fRX_005fRELAX"></a>: <strong>BFD_RELOC_RX_RELAX</strong></dt>
  2540. <dd><p>Renesas RX Relocations.
  2541. </p></dd></dl>
  2542. <dl>
  2543. <dt><a name="index-BFD_005fRELOC_005f390_005f12"></a>: <strong>BFD_RELOC_390_12</strong></dt>
  2544. <dd><p>Direct 12 bit.
  2545. </p></dd></dl>
  2546. <dl>
  2547. <dt><a name="index-BFD_005fRELOC_005f390_005fGOT12"></a>: <strong>BFD_RELOC_390_GOT12</strong></dt>
  2548. <dd><p>12 bit GOT offset.
  2549. </p></dd></dl>
  2550. <dl>
  2551. <dt><a name="index-BFD_005fRELOC_005f390_005fPLT32"></a>: <strong>BFD_RELOC_390_PLT32</strong></dt>
  2552. <dd><p>32 bit PC relative PLT address.
  2553. </p></dd></dl>
  2554. <dl>
  2555. <dt><a name="index-BFD_005fRELOC_005f390_005fCOPY"></a>: <strong>BFD_RELOC_390_COPY</strong></dt>
  2556. <dd><p>Copy symbol at runtime.
  2557. </p></dd></dl>
  2558. <dl>
  2559. <dt><a name="index-BFD_005fRELOC_005f390_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_390_GLOB_DAT</strong></dt>
  2560. <dd><p>Create GOT entry.
  2561. </p></dd></dl>
  2562. <dl>
  2563. <dt><a name="index-BFD_005fRELOC_005f390_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_390_JMP_SLOT</strong></dt>
  2564. <dd><p>Create PLT entry.
  2565. </p></dd></dl>
  2566. <dl>
  2567. <dt><a name="index-BFD_005fRELOC_005f390_005fRELATIVE"></a>: <strong>BFD_RELOC_390_RELATIVE</strong></dt>
  2568. <dd><p>Adjust by program base.
  2569. </p></dd></dl>
  2570. <dl>
  2571. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTPC"></a>: <strong>BFD_RELOC_390_GOTPC</strong></dt>
  2572. <dd><p>32 bit PC relative offset to GOT.
  2573. </p></dd></dl>
  2574. <dl>
  2575. <dt><a name="index-BFD_005fRELOC_005f390_005fGOT16"></a>: <strong>BFD_RELOC_390_GOT16</strong></dt>
  2576. <dd><p>16 bit GOT offset.
  2577. </p></dd></dl>
  2578. <dl>
  2579. <dt><a name="index-BFD_005fRELOC_005f390_005fPC12DBL"></a>: <strong>BFD_RELOC_390_PC12DBL</strong></dt>
  2580. <dd><p>PC relative 12 bit shifted by 1.
  2581. </p></dd></dl>
  2582. <dl>
  2583. <dt><a name="index-BFD_005fRELOC_005f390_005fPLT12DBL"></a>: <strong>BFD_RELOC_390_PLT12DBL</strong></dt>
  2584. <dd><p>12 bit PC rel. PLT shifted by 1.
  2585. </p></dd></dl>
  2586. <dl>
  2587. <dt><a name="index-BFD_005fRELOC_005f390_005fPC16DBL"></a>: <strong>BFD_RELOC_390_PC16DBL</strong></dt>
  2588. <dd><p>PC relative 16 bit shifted by 1.
  2589. </p></dd></dl>
  2590. <dl>
  2591. <dt><a name="index-BFD_005fRELOC_005f390_005fPLT16DBL"></a>: <strong>BFD_RELOC_390_PLT16DBL</strong></dt>
  2592. <dd><p>16 bit PC rel. PLT shifted by 1.
  2593. </p></dd></dl>
  2594. <dl>
  2595. <dt><a name="index-BFD_005fRELOC_005f390_005fPC24DBL"></a>: <strong>BFD_RELOC_390_PC24DBL</strong></dt>
  2596. <dd><p>PC relative 24 bit shifted by 1.
  2597. </p></dd></dl>
  2598. <dl>
  2599. <dt><a name="index-BFD_005fRELOC_005f390_005fPLT24DBL"></a>: <strong>BFD_RELOC_390_PLT24DBL</strong></dt>
  2600. <dd><p>24 bit PC rel. PLT shifted by 1.
  2601. </p></dd></dl>
  2602. <dl>
  2603. <dt><a name="index-BFD_005fRELOC_005f390_005fPC32DBL"></a>: <strong>BFD_RELOC_390_PC32DBL</strong></dt>
  2604. <dd><p>PC relative 32 bit shifted by 1.
  2605. </p></dd></dl>
  2606. <dl>
  2607. <dt><a name="index-BFD_005fRELOC_005f390_005fPLT32DBL"></a>: <strong>BFD_RELOC_390_PLT32DBL</strong></dt>
  2608. <dd><p>32 bit PC rel. PLT shifted by 1.
  2609. </p></dd></dl>
  2610. <dl>
  2611. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTPCDBL"></a>: <strong>BFD_RELOC_390_GOTPCDBL</strong></dt>
  2612. <dd><p>32 bit PC rel. GOT shifted by 1.
  2613. </p></dd></dl>
  2614. <dl>
  2615. <dt><a name="index-BFD_005fRELOC_005f390_005fGOT64"></a>: <strong>BFD_RELOC_390_GOT64</strong></dt>
  2616. <dd><p>64 bit GOT offset.
  2617. </p></dd></dl>
  2618. <dl>
  2619. <dt><a name="index-BFD_005fRELOC_005f390_005fPLT64"></a>: <strong>BFD_RELOC_390_PLT64</strong></dt>
  2620. <dd><p>64 bit PC relative PLT address.
  2621. </p></dd></dl>
  2622. <dl>
  2623. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTENT"></a>: <strong>BFD_RELOC_390_GOTENT</strong></dt>
  2624. <dd><p>32 bit rel. offset to GOT entry.
  2625. </p></dd></dl>
  2626. <dl>
  2627. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTOFF64"></a>: <strong>BFD_RELOC_390_GOTOFF64</strong></dt>
  2628. <dd><p>64 bit offset to GOT.
  2629. </p></dd></dl>
  2630. <dl>
  2631. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTPLT12"></a>: <strong>BFD_RELOC_390_GOTPLT12</strong></dt>
  2632. <dd><p>12-bit offset to symbol-entry within GOT, with PLT handling.
  2633. </p></dd></dl>
  2634. <dl>
  2635. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTPLT16"></a>: <strong>BFD_RELOC_390_GOTPLT16</strong></dt>
  2636. <dd><p>16-bit offset to symbol-entry within GOT, with PLT handling.
  2637. </p></dd></dl>
  2638. <dl>
  2639. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTPLT32"></a>: <strong>BFD_RELOC_390_GOTPLT32</strong></dt>
  2640. <dd><p>32-bit offset to symbol-entry within GOT, with PLT handling.
  2641. </p></dd></dl>
  2642. <dl>
  2643. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTPLT64"></a>: <strong>BFD_RELOC_390_GOTPLT64</strong></dt>
  2644. <dd><p>64-bit offset to symbol-entry within GOT, with PLT handling.
  2645. </p></dd></dl>
  2646. <dl>
  2647. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTPLTENT"></a>: <strong>BFD_RELOC_390_GOTPLTENT</strong></dt>
  2648. <dd><p>32-bit rel. offset to symbol-entry within GOT, with PLT handling.
  2649. </p></dd></dl>
  2650. <dl>
  2651. <dt><a name="index-BFD_005fRELOC_005f390_005fPLTOFF16"></a>: <strong>BFD_RELOC_390_PLTOFF16</strong></dt>
  2652. <dd><p>16-bit rel. offset from the GOT to a PLT entry.
  2653. </p></dd></dl>
  2654. <dl>
  2655. <dt><a name="index-BFD_005fRELOC_005f390_005fPLTOFF32"></a>: <strong>BFD_RELOC_390_PLTOFF32</strong></dt>
  2656. <dd><p>32-bit rel. offset from the GOT to a PLT entry.
  2657. </p></dd></dl>
  2658. <dl>
  2659. <dt><a name="index-BFD_005fRELOC_005f390_005fPLTOFF64"></a>: <strong>BFD_RELOC_390_PLTOFF64</strong></dt>
  2660. <dd><p>64-bit rel. offset from the GOT to a PLT entry.
  2661. </p></dd></dl>
  2662. <dl>
  2663. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fLOAD"></a>: <strong>BFD_RELOC_390_TLS_LOAD</strong></dt>
  2664. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fGDCALL"></a>: <strong>BFD_RELOC_390_TLS_GDCALL</strong></dt>
  2665. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fLDCALL"></a>: <strong>BFD_RELOC_390_TLS_LDCALL</strong></dt>
  2666. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fGD32"></a>: <strong>BFD_RELOC_390_TLS_GD32</strong></dt>
  2667. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fGD64"></a>: <strong>BFD_RELOC_390_TLS_GD64</strong></dt>
  2668. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fGOTIE12"></a>: <strong>BFD_RELOC_390_TLS_GOTIE12</strong></dt>
  2669. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fGOTIE32"></a>: <strong>BFD_RELOC_390_TLS_GOTIE32</strong></dt>
  2670. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fGOTIE64"></a>: <strong>BFD_RELOC_390_TLS_GOTIE64</strong></dt>
  2671. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fLDM32"></a>: <strong>BFD_RELOC_390_TLS_LDM32</strong></dt>
  2672. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fLDM64"></a>: <strong>BFD_RELOC_390_TLS_LDM64</strong></dt>
  2673. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fIE32"></a>: <strong>BFD_RELOC_390_TLS_IE32</strong></dt>
  2674. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fIE64"></a>: <strong>BFD_RELOC_390_TLS_IE64</strong></dt>
  2675. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fIEENT"></a>: <strong>BFD_RELOC_390_TLS_IEENT</strong></dt>
  2676. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fLE32"></a>: <strong>BFD_RELOC_390_TLS_LE32</strong></dt>
  2677. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fLE64"></a>: <strong>BFD_RELOC_390_TLS_LE64</strong></dt>
  2678. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fLDO32"></a>: <strong>BFD_RELOC_390_TLS_LDO32</strong></dt>
  2679. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fLDO64"></a>: <strong>BFD_RELOC_390_TLS_LDO64</strong></dt>
  2680. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fDTPMOD"></a>: <strong>BFD_RELOC_390_TLS_DTPMOD</strong></dt>
  2681. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fDTPOFF"></a>: <strong>BFD_RELOC_390_TLS_DTPOFF</strong></dt>
  2682. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fTPOFF"></a>: <strong>BFD_RELOC_390_TLS_TPOFF</strong></dt>
  2683. <dd><p>s390 tls relocations.
  2684. </p></dd></dl>
  2685. <dl>
  2686. <dt><a name="index-BFD_005fRELOC_005f390_005f20"></a>: <strong>BFD_RELOC_390_20</strong></dt>
  2687. <dt><a name="index-BFD_005fRELOC_005f390_005fGOT20"></a>: <strong>BFD_RELOC_390_GOT20</strong></dt>
  2688. <dt><a name="index-BFD_005fRELOC_005f390_005fGOTPLT20"></a>: <strong>BFD_RELOC_390_GOTPLT20</strong></dt>
  2689. <dt><a name="index-BFD_005fRELOC_005f390_005fTLS_005fGOTIE20"></a>: <strong>BFD_RELOC_390_TLS_GOTIE20</strong></dt>
  2690. <dd><p>Long displacement extension.
  2691. </p></dd></dl>
  2692. <dl>
  2693. <dt><a name="index-BFD_005fRELOC_005f390_005fIRELATIVE"></a>: <strong>BFD_RELOC_390_IRELATIVE</strong></dt>
  2694. <dd><p>STT_GNU_IFUNC relocation.
  2695. </p></dd></dl>
  2696. <dl>
  2697. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fGPREL15"></a>: <strong>BFD_RELOC_SCORE_GPREL15</strong></dt>
  2698. <dd><p>Score relocations
  2699. Low 16 bit for load/store
  2700. </p></dd></dl>
  2701. <dl>
  2702. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fDUMMY2"></a>: <strong>BFD_RELOC_SCORE_DUMMY2</strong></dt>
  2703. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fJMP"></a>: <strong>BFD_RELOC_SCORE_JMP</strong></dt>
  2704. <dd><p>This is a 24-bit reloc with the right 1 bit assumed to be 0
  2705. </p></dd></dl>
  2706. <dl>
  2707. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fBRANCH"></a>: <strong>BFD_RELOC_SCORE_BRANCH</strong></dt>
  2708. <dd><p>This is a 19-bit reloc with the right 1 bit assumed to be 0
  2709. </p></dd></dl>
  2710. <dl>
  2711. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fIMM30"></a>: <strong>BFD_RELOC_SCORE_IMM30</strong></dt>
  2712. <dd><p>This is a 32-bit reloc for 48-bit instructions.
  2713. </p></dd></dl>
  2714. <dl>
  2715. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fIMM32"></a>: <strong>BFD_RELOC_SCORE_IMM32</strong></dt>
  2716. <dd><p>This is a 32-bit reloc for 48-bit instructions.
  2717. </p></dd></dl>
  2718. <dl>
  2719. <dt><a name="index-BFD_005fRELOC_005fSCORE16_005fJMP"></a>: <strong>BFD_RELOC_SCORE16_JMP</strong></dt>
  2720. <dd><p>This is a 11-bit reloc with the right 1 bit assumed to be 0
  2721. </p></dd></dl>
  2722. <dl>
  2723. <dt><a name="index-BFD_005fRELOC_005fSCORE16_005fBRANCH"></a>: <strong>BFD_RELOC_SCORE16_BRANCH</strong></dt>
  2724. <dd><p>This is a 8-bit reloc with the right 1 bit assumed to be 0
  2725. </p></dd></dl>
  2726. <dl>
  2727. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fBCMP"></a>: <strong>BFD_RELOC_SCORE_BCMP</strong></dt>
  2728. <dd><p>This is a 9-bit reloc with the right 1 bit assumed to be 0
  2729. </p></dd></dl>
  2730. <dl>
  2731. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fGOT15"></a>: <strong>BFD_RELOC_SCORE_GOT15</strong></dt>
  2732. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fGOT_005fLO16"></a>: <strong>BFD_RELOC_SCORE_GOT_LO16</strong></dt>
  2733. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fCALL15"></a>: <strong>BFD_RELOC_SCORE_CALL15</strong></dt>
  2734. <dt><a name="index-BFD_005fRELOC_005fSCORE_005fDUMMY_005fHI16"></a>: <strong>BFD_RELOC_SCORE_DUMMY_HI16</strong></dt>
  2735. <dd><p>Undocumented Score relocs
  2736. </p></dd></dl>
  2737. <dl>
  2738. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fFR9"></a>: <strong>BFD_RELOC_IP2K_FR9</strong></dt>
  2739. <dd><p>Scenix IP2K - 9-bit register number / data address
  2740. </p></dd></dl>
  2741. <dl>
  2742. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fBANK"></a>: <strong>BFD_RELOC_IP2K_BANK</strong></dt>
  2743. <dd><p>Scenix IP2K - 4-bit register/data bank number
  2744. </p></dd></dl>
  2745. <dl>
  2746. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fADDR16CJP"></a>: <strong>BFD_RELOC_IP2K_ADDR16CJP</strong></dt>
  2747. <dd><p>Scenix IP2K - low 13 bits of instruction word address
  2748. </p></dd></dl>
  2749. <dl>
  2750. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fPAGE3"></a>: <strong>BFD_RELOC_IP2K_PAGE3</strong></dt>
  2751. <dd><p>Scenix IP2K - high 3 bits of instruction word address
  2752. </p></dd></dl>
  2753. <dl>
  2754. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fLO8DATA"></a>: <strong>BFD_RELOC_IP2K_LO8DATA</strong></dt>
  2755. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fHI8DATA"></a>: <strong>BFD_RELOC_IP2K_HI8DATA</strong></dt>
  2756. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fEX8DATA"></a>: <strong>BFD_RELOC_IP2K_EX8DATA</strong></dt>
  2757. <dd><p>Scenix IP2K - ext/low/high 8 bits of data address
  2758. </p></dd></dl>
  2759. <dl>
  2760. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fLO8INSN"></a>: <strong>BFD_RELOC_IP2K_LO8INSN</strong></dt>
  2761. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fHI8INSN"></a>: <strong>BFD_RELOC_IP2K_HI8INSN</strong></dt>
  2762. <dd><p>Scenix IP2K - low/high 8 bits of instruction word address
  2763. </p></dd></dl>
  2764. <dl>
  2765. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fPC_005fSKIP"></a>: <strong>BFD_RELOC_IP2K_PC_SKIP</strong></dt>
  2766. <dd><p>Scenix IP2K - even/odd PC modifier to modify snb pcl.0
  2767. </p></dd></dl>
  2768. <dl>
  2769. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fTEXT"></a>: <strong>BFD_RELOC_IP2K_TEXT</strong></dt>
  2770. <dd><p>Scenix IP2K - 16 bit word address in text section.
  2771. </p></dd></dl>
  2772. <dl>
  2773. <dt><a name="index-BFD_005fRELOC_005fIP2K_005fFR_005fOFFSET"></a>: <strong>BFD_RELOC_IP2K_FR_OFFSET</strong></dt>
  2774. <dd><p>Scenix IP2K - 7-bit sp or dp offset
  2775. </p></dd></dl>
  2776. <dl>
  2777. <dt><a name="index-BFD_005fRELOC_005fVPE4KMATH_005fDATA"></a>: <strong>BFD_RELOC_VPE4KMATH_DATA</strong></dt>
  2778. <dt><a name="index-BFD_005fRELOC_005fVPE4KMATH_005fINSN"></a>: <strong>BFD_RELOC_VPE4KMATH_INSN</strong></dt>
  2779. <dd><p>Scenix VPE4K coprocessor - data/insn-space addressing
  2780. </p></dd></dl>
  2781. <dl>
  2782. <dt><a name="index-BFD_005fRELOC_005fVTABLE_005fINHERIT"></a>: <strong>BFD_RELOC_VTABLE_INHERIT</strong></dt>
  2783. <dt><a name="index-BFD_005fRELOC_005fVTABLE_005fENTRY"></a>: <strong>BFD_RELOC_VTABLE_ENTRY</strong></dt>
  2784. <dd><p>These two relocations are used by the linker to determine which of
  2785. the entries in a C++ virtual function table are actually used. When
  2786. the &ndash;gc-sections option is given, the linker will zero out the entries
  2787. that are not used, so that the code for those functions need not be
  2788. included in the output.
  2789. </p>
  2790. <p>VTABLE_INHERIT is a zero-space relocation used to describe to the
  2791. linker the inheritance tree of a C++ virtual function table. The
  2792. relocation&rsquo;s symbol should be the parent class&rsquo; vtable, and the
  2793. relocation should be located at the child vtable.
  2794. </p>
  2795. <p>VTABLE_ENTRY is a zero-space relocation that describes the use of a
  2796. virtual function table entry. The reloc&rsquo;s symbol should refer to the
  2797. table of the class mentioned in the code. Off of that base, an offset
  2798. describes the entry that is being used. For Rela hosts, this offset
  2799. is stored in the reloc&rsquo;s addend. For Rel hosts, we are forced to put
  2800. this offset in the reloc&rsquo;s section offset.
  2801. </p></dd></dl>
  2802. <dl>
  2803. <dt><a name="index-BFD_005fRELOC_005fIA64_005fIMM14"></a>: <strong>BFD_RELOC_IA64_IMM14</strong></dt>
  2804. <dt><a name="index-BFD_005fRELOC_005fIA64_005fIMM22"></a>: <strong>BFD_RELOC_IA64_IMM22</strong></dt>
  2805. <dt><a name="index-BFD_005fRELOC_005fIA64_005fIMM64"></a>: <strong>BFD_RELOC_IA64_IMM64</strong></dt>
  2806. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDIR32MSB"></a>: <strong>BFD_RELOC_IA64_DIR32MSB</strong></dt>
  2807. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDIR32LSB"></a>: <strong>BFD_RELOC_IA64_DIR32LSB</strong></dt>
  2808. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDIR64MSB"></a>: <strong>BFD_RELOC_IA64_DIR64MSB</strong></dt>
  2809. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDIR64LSB"></a>: <strong>BFD_RELOC_IA64_DIR64LSB</strong></dt>
  2810. <dt><a name="index-BFD_005fRELOC_005fIA64_005fGPREL22"></a>: <strong>BFD_RELOC_IA64_GPREL22</strong></dt>
  2811. <dt><a name="index-BFD_005fRELOC_005fIA64_005fGPREL64I"></a>: <strong>BFD_RELOC_IA64_GPREL64I</strong></dt>
  2812. <dt><a name="index-BFD_005fRELOC_005fIA64_005fGPREL32MSB"></a>: <strong>BFD_RELOC_IA64_GPREL32MSB</strong></dt>
  2813. <dt><a name="index-BFD_005fRELOC_005fIA64_005fGPREL32LSB"></a>: <strong>BFD_RELOC_IA64_GPREL32LSB</strong></dt>
  2814. <dt><a name="index-BFD_005fRELOC_005fIA64_005fGPREL64MSB"></a>: <strong>BFD_RELOC_IA64_GPREL64MSB</strong></dt>
  2815. <dt><a name="index-BFD_005fRELOC_005fIA64_005fGPREL64LSB"></a>: <strong>BFD_RELOC_IA64_GPREL64LSB</strong></dt>
  2816. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF22"></a>: <strong>BFD_RELOC_IA64_LTOFF22</strong></dt>
  2817. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF64I"></a>: <strong>BFD_RELOC_IA64_LTOFF64I</strong></dt>
  2818. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPLTOFF22"></a>: <strong>BFD_RELOC_IA64_PLTOFF22</strong></dt>
  2819. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPLTOFF64I"></a>: <strong>BFD_RELOC_IA64_PLTOFF64I</strong></dt>
  2820. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPLTOFF64MSB"></a>: <strong>BFD_RELOC_IA64_PLTOFF64MSB</strong></dt>
  2821. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPLTOFF64LSB"></a>: <strong>BFD_RELOC_IA64_PLTOFF64LSB</strong></dt>
  2822. <dt><a name="index-BFD_005fRELOC_005fIA64_005fFPTR64I"></a>: <strong>BFD_RELOC_IA64_FPTR64I</strong></dt>
  2823. <dt><a name="index-BFD_005fRELOC_005fIA64_005fFPTR32MSB"></a>: <strong>BFD_RELOC_IA64_FPTR32MSB</strong></dt>
  2824. <dt><a name="index-BFD_005fRELOC_005fIA64_005fFPTR32LSB"></a>: <strong>BFD_RELOC_IA64_FPTR32LSB</strong></dt>
  2825. <dt><a name="index-BFD_005fRELOC_005fIA64_005fFPTR64MSB"></a>: <strong>BFD_RELOC_IA64_FPTR64MSB</strong></dt>
  2826. <dt><a name="index-BFD_005fRELOC_005fIA64_005fFPTR64LSB"></a>: <strong>BFD_RELOC_IA64_FPTR64LSB</strong></dt>
  2827. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL21B"></a>: <strong>BFD_RELOC_IA64_PCREL21B</strong></dt>
  2828. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL21BI"></a>: <strong>BFD_RELOC_IA64_PCREL21BI</strong></dt>
  2829. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL21M"></a>: <strong>BFD_RELOC_IA64_PCREL21M</strong></dt>
  2830. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL21F"></a>: <strong>BFD_RELOC_IA64_PCREL21F</strong></dt>
  2831. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL22"></a>: <strong>BFD_RELOC_IA64_PCREL22</strong></dt>
  2832. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL60B"></a>: <strong>BFD_RELOC_IA64_PCREL60B</strong></dt>
  2833. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL64I"></a>: <strong>BFD_RELOC_IA64_PCREL64I</strong></dt>
  2834. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL32MSB"></a>: <strong>BFD_RELOC_IA64_PCREL32MSB</strong></dt>
  2835. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL32LSB"></a>: <strong>BFD_RELOC_IA64_PCREL32LSB</strong></dt>
  2836. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL64MSB"></a>: <strong>BFD_RELOC_IA64_PCREL64MSB</strong></dt>
  2837. <dt><a name="index-BFD_005fRELOC_005fIA64_005fPCREL64LSB"></a>: <strong>BFD_RELOC_IA64_PCREL64LSB</strong></dt>
  2838. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF_005fFPTR22"></a>: <strong>BFD_RELOC_IA64_LTOFF_FPTR22</strong></dt>
  2839. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF_005fFPTR64I"></a>: <strong>BFD_RELOC_IA64_LTOFF_FPTR64I</strong></dt>
  2840. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF_005fFPTR32MSB"></a>: <strong>BFD_RELOC_IA64_LTOFF_FPTR32MSB</strong></dt>
  2841. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF_005fFPTR32LSB"></a>: <strong>BFD_RELOC_IA64_LTOFF_FPTR32LSB</strong></dt>
  2842. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF_005fFPTR64MSB"></a>: <strong>BFD_RELOC_IA64_LTOFF_FPTR64MSB</strong></dt>
  2843. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF_005fFPTR64LSB"></a>: <strong>BFD_RELOC_IA64_LTOFF_FPTR64LSB</strong></dt>
  2844. <dt><a name="index-BFD_005fRELOC_005fIA64_005fSEGREL32MSB"></a>: <strong>BFD_RELOC_IA64_SEGREL32MSB</strong></dt>
  2845. <dt><a name="index-BFD_005fRELOC_005fIA64_005fSEGREL32LSB"></a>: <strong>BFD_RELOC_IA64_SEGREL32LSB</strong></dt>
  2846. <dt><a name="index-BFD_005fRELOC_005fIA64_005fSEGREL64MSB"></a>: <strong>BFD_RELOC_IA64_SEGREL64MSB</strong></dt>
  2847. <dt><a name="index-BFD_005fRELOC_005fIA64_005fSEGREL64LSB"></a>: <strong>BFD_RELOC_IA64_SEGREL64LSB</strong></dt>
  2848. <dt><a name="index-BFD_005fRELOC_005fIA64_005fSECREL32MSB"></a>: <strong>BFD_RELOC_IA64_SECREL32MSB</strong></dt>
  2849. <dt><a name="index-BFD_005fRELOC_005fIA64_005fSECREL32LSB"></a>: <strong>BFD_RELOC_IA64_SECREL32LSB</strong></dt>
  2850. <dt><a name="index-BFD_005fRELOC_005fIA64_005fSECREL64MSB"></a>: <strong>BFD_RELOC_IA64_SECREL64MSB</strong></dt>
  2851. <dt><a name="index-BFD_005fRELOC_005fIA64_005fSECREL64LSB"></a>: <strong>BFD_RELOC_IA64_SECREL64LSB</strong></dt>
  2852. <dt><a name="index-BFD_005fRELOC_005fIA64_005fREL32MSB"></a>: <strong>BFD_RELOC_IA64_REL32MSB</strong></dt>
  2853. <dt><a name="index-BFD_005fRELOC_005fIA64_005fREL32LSB"></a>: <strong>BFD_RELOC_IA64_REL32LSB</strong></dt>
  2854. <dt><a name="index-BFD_005fRELOC_005fIA64_005fREL64MSB"></a>: <strong>BFD_RELOC_IA64_REL64MSB</strong></dt>
  2855. <dt><a name="index-BFD_005fRELOC_005fIA64_005fREL64LSB"></a>: <strong>BFD_RELOC_IA64_REL64LSB</strong></dt>
  2856. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTV32MSB"></a>: <strong>BFD_RELOC_IA64_LTV32MSB</strong></dt>
  2857. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTV32LSB"></a>: <strong>BFD_RELOC_IA64_LTV32LSB</strong></dt>
  2858. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTV64MSB"></a>: <strong>BFD_RELOC_IA64_LTV64MSB</strong></dt>
  2859. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTV64LSB"></a>: <strong>BFD_RELOC_IA64_LTV64LSB</strong></dt>
  2860. <dt><a name="index-BFD_005fRELOC_005fIA64_005fIPLTMSB"></a>: <strong>BFD_RELOC_IA64_IPLTMSB</strong></dt>
  2861. <dt><a name="index-BFD_005fRELOC_005fIA64_005fIPLTLSB"></a>: <strong>BFD_RELOC_IA64_IPLTLSB</strong></dt>
  2862. <dt><a name="index-BFD_005fRELOC_005fIA64_005fCOPY"></a>: <strong>BFD_RELOC_IA64_COPY</strong></dt>
  2863. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF22X"></a>: <strong>BFD_RELOC_IA64_LTOFF22X</strong></dt>
  2864. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLDXMOV"></a>: <strong>BFD_RELOC_IA64_LDXMOV</strong></dt>
  2865. <dt><a name="index-BFD_005fRELOC_005fIA64_005fTPREL14"></a>: <strong>BFD_RELOC_IA64_TPREL14</strong></dt>
  2866. <dt><a name="index-BFD_005fRELOC_005fIA64_005fTPREL22"></a>: <strong>BFD_RELOC_IA64_TPREL22</strong></dt>
  2867. <dt><a name="index-BFD_005fRELOC_005fIA64_005fTPREL64I"></a>: <strong>BFD_RELOC_IA64_TPREL64I</strong></dt>
  2868. <dt><a name="index-BFD_005fRELOC_005fIA64_005fTPREL64MSB"></a>: <strong>BFD_RELOC_IA64_TPREL64MSB</strong></dt>
  2869. <dt><a name="index-BFD_005fRELOC_005fIA64_005fTPREL64LSB"></a>: <strong>BFD_RELOC_IA64_TPREL64LSB</strong></dt>
  2870. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF_005fTPREL22"></a>: <strong>BFD_RELOC_IA64_LTOFF_TPREL22</strong></dt>
  2871. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDTPMOD64MSB"></a>: <strong>BFD_RELOC_IA64_DTPMOD64MSB</strong></dt>
  2872. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDTPMOD64LSB"></a>: <strong>BFD_RELOC_IA64_DTPMOD64LSB</strong></dt>
  2873. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF_005fDTPMOD22"></a>: <strong>BFD_RELOC_IA64_LTOFF_DTPMOD22</strong></dt>
  2874. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDTPREL14"></a>: <strong>BFD_RELOC_IA64_DTPREL14</strong></dt>
  2875. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDTPREL22"></a>: <strong>BFD_RELOC_IA64_DTPREL22</strong></dt>
  2876. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDTPREL64I"></a>: <strong>BFD_RELOC_IA64_DTPREL64I</strong></dt>
  2877. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDTPREL32MSB"></a>: <strong>BFD_RELOC_IA64_DTPREL32MSB</strong></dt>
  2878. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDTPREL32LSB"></a>: <strong>BFD_RELOC_IA64_DTPREL32LSB</strong></dt>
  2879. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDTPREL64MSB"></a>: <strong>BFD_RELOC_IA64_DTPREL64MSB</strong></dt>
  2880. <dt><a name="index-BFD_005fRELOC_005fIA64_005fDTPREL64LSB"></a>: <strong>BFD_RELOC_IA64_DTPREL64LSB</strong></dt>
  2881. <dt><a name="index-BFD_005fRELOC_005fIA64_005fLTOFF_005fDTPREL22"></a>: <strong>BFD_RELOC_IA64_LTOFF_DTPREL22</strong></dt>
  2882. <dd><p>Intel IA64 Relocations.
  2883. </p></dd></dl>
  2884. <dl>
  2885. <dt><a name="index-BFD_005fRELOC_005fM68HC11_005fHI8"></a>: <strong>BFD_RELOC_M68HC11_HI8</strong></dt>
  2886. <dd><p>Motorola 68HC11 reloc.
  2887. This is the 8 bit high part of an absolute address.
  2888. </p></dd></dl>
  2889. <dl>
  2890. <dt><a name="index-BFD_005fRELOC_005fM68HC11_005fLO8"></a>: <strong>BFD_RELOC_M68HC11_LO8</strong></dt>
  2891. <dd><p>Motorola 68HC11 reloc.
  2892. This is the 8 bit low part of an absolute address.
  2893. </p></dd></dl>
  2894. <dl>
  2895. <dt><a name="index-BFD_005fRELOC_005fM68HC11_005f3B"></a>: <strong>BFD_RELOC_M68HC11_3B</strong></dt>
  2896. <dd><p>Motorola 68HC11 reloc.
  2897. This is the 3 bit of a value.
  2898. </p></dd></dl>
  2899. <dl>
  2900. <dt><a name="index-BFD_005fRELOC_005fM68HC11_005fRL_005fJUMP"></a>: <strong>BFD_RELOC_M68HC11_RL_JUMP</strong></dt>
  2901. <dd><p>Motorola 68HC11 reloc.
  2902. This reloc marks the beginning of a jump/call instruction.
  2903. It is used for linker relaxation to correctly identify beginning
  2904. of instruction and change some branches to use PC-relative
  2905. addressing mode.
  2906. </p></dd></dl>
  2907. <dl>
  2908. <dt><a name="index-BFD_005fRELOC_005fM68HC11_005fRL_005fGROUP"></a>: <strong>BFD_RELOC_M68HC11_RL_GROUP</strong></dt>
  2909. <dd><p>Motorola 68HC11 reloc.
  2910. This reloc marks a group of several instructions that gcc generates
  2911. and for which the linker relaxation pass can modify and/or remove
  2912. some of them.
  2913. </p></dd></dl>
  2914. <dl>
  2915. <dt><a name="index-BFD_005fRELOC_005fM68HC11_005fLO16"></a>: <strong>BFD_RELOC_M68HC11_LO16</strong></dt>
  2916. <dd><p>Motorola 68HC11 reloc.
  2917. This is the 16-bit lower part of an address. It is used for &rsquo;call&rsquo;
  2918. instruction to specify the symbol address without any special
  2919. transformation (due to memory bank window).
  2920. </p></dd></dl>
  2921. <dl>
  2922. <dt><a name="index-BFD_005fRELOC_005fM68HC11_005fPAGE"></a>: <strong>BFD_RELOC_M68HC11_PAGE</strong></dt>
  2923. <dd><p>Motorola 68HC11 reloc.
  2924. This is a 8-bit reloc that specifies the page number of an address.
  2925. It is used by &rsquo;call&rsquo; instruction to specify the page number of
  2926. the symbol.
  2927. </p></dd></dl>
  2928. <dl>
  2929. <dt><a name="index-BFD_005fRELOC_005fM68HC11_005f24"></a>: <strong>BFD_RELOC_M68HC11_24</strong></dt>
  2930. <dd><p>Motorola 68HC11 reloc.
  2931. This is a 24-bit reloc that represents the address with a 16-bit
  2932. value and a 8-bit page number. The symbol address is transformed
  2933. to follow the 16K memory bank of 68HC12 (seen as mapped in the window).
  2934. </p></dd></dl>
  2935. <dl>
  2936. <dt><a name="index-BFD_005fRELOC_005fM68HC12_005f5B"></a>: <strong>BFD_RELOC_M68HC12_5B</strong></dt>
  2937. <dd><p>Motorola 68HC12 reloc.
  2938. This is the 5 bits of a value.
  2939. </p></dd></dl>
  2940. <dl>
  2941. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fRL_005fJUMP"></a>: <strong>BFD_RELOC_XGATE_RL_JUMP</strong></dt>
  2942. <dd><p>Freescale XGATE reloc.
  2943. This reloc marks the beginning of a bra/jal instruction.
  2944. </p></dd></dl>
  2945. <dl>
  2946. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fRL_005fGROUP"></a>: <strong>BFD_RELOC_XGATE_RL_GROUP</strong></dt>
  2947. <dd><p>Freescale XGATE reloc.
  2948. This reloc marks a group of several instructions that gcc generates
  2949. and for which the linker relaxation pass can modify and/or remove
  2950. some of them.
  2951. </p></dd></dl>
  2952. <dl>
  2953. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fLO16"></a>: <strong>BFD_RELOC_XGATE_LO16</strong></dt>
  2954. <dd><p>Freescale XGATE reloc.
  2955. This is the 16-bit lower part of an address. It is used for the &rsquo;16-bit&rsquo;
  2956. instructions.
  2957. </p></dd></dl>
  2958. <dl>
  2959. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fGPAGE"></a>: <strong>BFD_RELOC_XGATE_GPAGE</strong></dt>
  2960. <dd><p>Freescale XGATE reloc.
  2961. </p></dd></dl>
  2962. <dl>
  2963. <dt><a name="index-BFD_005fRELOC_005fXGATE_005f24"></a>: <strong>BFD_RELOC_XGATE_24</strong></dt>
  2964. <dd><p>Freescale XGATE reloc.
  2965. </p></dd></dl>
  2966. <dl>
  2967. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fPCREL_005f9"></a>: <strong>BFD_RELOC_XGATE_PCREL_9</strong></dt>
  2968. <dd><p>Freescale XGATE reloc.
  2969. This is a 9-bit pc-relative reloc.
  2970. </p></dd></dl>
  2971. <dl>
  2972. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fPCREL_005f10"></a>: <strong>BFD_RELOC_XGATE_PCREL_10</strong></dt>
  2973. <dd><p>Freescale XGATE reloc.
  2974. This is a 10-bit pc-relative reloc.
  2975. </p></dd></dl>
  2976. <dl>
  2977. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fIMM8_005fLO"></a>: <strong>BFD_RELOC_XGATE_IMM8_LO</strong></dt>
  2978. <dd><p>Freescale XGATE reloc.
  2979. This is the 16-bit lower part of an address. It is used for the &rsquo;16-bit&rsquo;
  2980. instructions.
  2981. </p></dd></dl>
  2982. <dl>
  2983. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fIMM8_005fHI"></a>: <strong>BFD_RELOC_XGATE_IMM8_HI</strong></dt>
  2984. <dd><p>Freescale XGATE reloc.
  2985. This is the 16-bit higher part of an address. It is used for the &rsquo;16-bit&rsquo;
  2986. instructions.
  2987. </p></dd></dl>
  2988. <dl>
  2989. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fIMM3"></a>: <strong>BFD_RELOC_XGATE_IMM3</strong></dt>
  2990. <dd><p>Freescale XGATE reloc.
  2991. This is a 3-bit pc-relative reloc.
  2992. </p></dd></dl>
  2993. <dl>
  2994. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fIMM4"></a>: <strong>BFD_RELOC_XGATE_IMM4</strong></dt>
  2995. <dd><p>Freescale XGATE reloc.
  2996. This is a 4-bit pc-relative reloc.
  2997. </p></dd></dl>
  2998. <dl>
  2999. <dt><a name="index-BFD_005fRELOC_005fXGATE_005fIMM5"></a>: <strong>BFD_RELOC_XGATE_IMM5</strong></dt>
  3000. <dd><p>Freescale XGATE reloc.
  3001. This is a 5-bit pc-relative reloc.
  3002. </p></dd></dl>
  3003. <dl>
  3004. <dt><a name="index-BFD_005fRELOC_005fM68HC12_005f9B"></a>: <strong>BFD_RELOC_M68HC12_9B</strong></dt>
  3005. <dd><p>Motorola 68HC12 reloc.
  3006. This is the 9 bits of a value.
  3007. </p></dd></dl>
  3008. <dl>
  3009. <dt><a name="index-BFD_005fRELOC_005fM68HC12_005f16B"></a>: <strong>BFD_RELOC_M68HC12_16B</strong></dt>
  3010. <dd><p>Motorola 68HC12 reloc.
  3011. This is the 16 bits of a value.
  3012. </p></dd></dl>
  3013. <dl>
  3014. <dt><a name="index-BFD_005fRELOC_005fM68HC12_005f9_005fPCREL"></a>: <strong>BFD_RELOC_M68HC12_9_PCREL</strong></dt>
  3015. <dd><p>Motorola 68HC12/XGATE reloc.
  3016. This is a PCREL9 branch.
  3017. </p></dd></dl>
  3018. <dl>
  3019. <dt><a name="index-BFD_005fRELOC_005fM68HC12_005f10_005fPCREL"></a>: <strong>BFD_RELOC_M68HC12_10_PCREL</strong></dt>
  3020. <dd><p>Motorola 68HC12/XGATE reloc.
  3021. This is a PCREL10 branch.
  3022. </p></dd></dl>
  3023. <dl>
  3024. <dt><a name="index-BFD_005fRELOC_005fM68HC12_005fLO8XG"></a>: <strong>BFD_RELOC_M68HC12_LO8XG</strong></dt>
  3025. <dd><p>Motorola 68HC12/XGATE reloc.
  3026. This is the 8 bit low part of an absolute address and immediately precedes
  3027. a matching HI8XG part.
  3028. </p></dd></dl>
  3029. <dl>
  3030. <dt><a name="index-BFD_005fRELOC_005fM68HC12_005fHI8XG"></a>: <strong>BFD_RELOC_M68HC12_HI8XG</strong></dt>
  3031. <dd><p>Motorola 68HC12/XGATE reloc.
  3032. This is the 8 bit high part of an absolute address and immediately follows
  3033. a matching LO8XG part.
  3034. </p></dd></dl>
  3035. <dl>
  3036. <dt><a name="index-BFD_005fRELOC_005f16C_005fNUM08"></a>: <strong>BFD_RELOC_16C_NUM08</strong></dt>
  3037. <dt><a name="index-BFD_005fRELOC_005f16C_005fNUM08_005fC"></a>: <strong>BFD_RELOC_16C_NUM08_C</strong></dt>
  3038. <dt><a name="index-BFD_005fRELOC_005f16C_005fNUM16"></a>: <strong>BFD_RELOC_16C_NUM16</strong></dt>
  3039. <dt><a name="index-BFD_005fRELOC_005f16C_005fNUM16_005fC"></a>: <strong>BFD_RELOC_16C_NUM16_C</strong></dt>
  3040. <dt><a name="index-BFD_005fRELOC_005f16C_005fNUM32"></a>: <strong>BFD_RELOC_16C_NUM32</strong></dt>
  3041. <dt><a name="index-BFD_005fRELOC_005f16C_005fNUM32_005fC"></a>: <strong>BFD_RELOC_16C_NUM32_C</strong></dt>
  3042. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP04"></a>: <strong>BFD_RELOC_16C_DISP04</strong></dt>
  3043. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP04_005fC"></a>: <strong>BFD_RELOC_16C_DISP04_C</strong></dt>
  3044. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP08"></a>: <strong>BFD_RELOC_16C_DISP08</strong></dt>
  3045. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP08_005fC"></a>: <strong>BFD_RELOC_16C_DISP08_C</strong></dt>
  3046. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP16"></a>: <strong>BFD_RELOC_16C_DISP16</strong></dt>
  3047. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP16_005fC"></a>: <strong>BFD_RELOC_16C_DISP16_C</strong></dt>
  3048. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP24"></a>: <strong>BFD_RELOC_16C_DISP24</strong></dt>
  3049. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP24_005fC"></a>: <strong>BFD_RELOC_16C_DISP24_C</strong></dt>
  3050. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP24a"></a>: <strong>BFD_RELOC_16C_DISP24a</strong></dt>
  3051. <dt><a name="index-BFD_005fRELOC_005f16C_005fDISP24a_005fC"></a>: <strong>BFD_RELOC_16C_DISP24a_C</strong></dt>
  3052. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG04"></a>: <strong>BFD_RELOC_16C_REG04</strong></dt>
  3053. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG04_005fC"></a>: <strong>BFD_RELOC_16C_REG04_C</strong></dt>
  3054. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG04a"></a>: <strong>BFD_RELOC_16C_REG04a</strong></dt>
  3055. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG04a_005fC"></a>: <strong>BFD_RELOC_16C_REG04a_C</strong></dt>
  3056. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG14"></a>: <strong>BFD_RELOC_16C_REG14</strong></dt>
  3057. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG14_005fC"></a>: <strong>BFD_RELOC_16C_REG14_C</strong></dt>
  3058. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG16"></a>: <strong>BFD_RELOC_16C_REG16</strong></dt>
  3059. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG16_005fC"></a>: <strong>BFD_RELOC_16C_REG16_C</strong></dt>
  3060. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG20"></a>: <strong>BFD_RELOC_16C_REG20</strong></dt>
  3061. <dt><a name="index-BFD_005fRELOC_005f16C_005fREG20_005fC"></a>: <strong>BFD_RELOC_16C_REG20_C</strong></dt>
  3062. <dt><a name="index-BFD_005fRELOC_005f16C_005fABS20"></a>: <strong>BFD_RELOC_16C_ABS20</strong></dt>
  3063. <dt><a name="index-BFD_005fRELOC_005f16C_005fABS20_005fC"></a>: <strong>BFD_RELOC_16C_ABS20_C</strong></dt>
  3064. <dt><a name="index-BFD_005fRELOC_005f16C_005fABS24"></a>: <strong>BFD_RELOC_16C_ABS24</strong></dt>
  3065. <dt><a name="index-BFD_005fRELOC_005f16C_005fABS24_005fC"></a>: <strong>BFD_RELOC_16C_ABS24_C</strong></dt>
  3066. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM04"></a>: <strong>BFD_RELOC_16C_IMM04</strong></dt>
  3067. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM04_005fC"></a>: <strong>BFD_RELOC_16C_IMM04_C</strong></dt>
  3068. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM16"></a>: <strong>BFD_RELOC_16C_IMM16</strong></dt>
  3069. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM16_005fC"></a>: <strong>BFD_RELOC_16C_IMM16_C</strong></dt>
  3070. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM20"></a>: <strong>BFD_RELOC_16C_IMM20</strong></dt>
  3071. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM20_005fC"></a>: <strong>BFD_RELOC_16C_IMM20_C</strong></dt>
  3072. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM24"></a>: <strong>BFD_RELOC_16C_IMM24</strong></dt>
  3073. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM24_005fC"></a>: <strong>BFD_RELOC_16C_IMM24_C</strong></dt>
  3074. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM32"></a>: <strong>BFD_RELOC_16C_IMM32</strong></dt>
  3075. <dt><a name="index-BFD_005fRELOC_005f16C_005fIMM32_005fC"></a>: <strong>BFD_RELOC_16C_IMM32_C</strong></dt>
  3076. <dd><p>NS CR16C Relocations.
  3077. </p></dd></dl>
  3078. <dl>
  3079. <dt><a name="index-BFD_005fRELOC_005fCR16_005fNUM8"></a>: <strong>BFD_RELOC_CR16_NUM8</strong></dt>
  3080. <dt><a name="index-BFD_005fRELOC_005fCR16_005fNUM16"></a>: <strong>BFD_RELOC_CR16_NUM16</strong></dt>
  3081. <dt><a name="index-BFD_005fRELOC_005fCR16_005fNUM32"></a>: <strong>BFD_RELOC_CR16_NUM32</strong></dt>
  3082. <dt><a name="index-BFD_005fRELOC_005fCR16_005fNUM32a"></a>: <strong>BFD_RELOC_CR16_NUM32a</strong></dt>
  3083. <dt><a name="index-BFD_005fRELOC_005fCR16_005fREGREL0"></a>: <strong>BFD_RELOC_CR16_REGREL0</strong></dt>
  3084. <dt><a name="index-BFD_005fRELOC_005fCR16_005fREGREL4"></a>: <strong>BFD_RELOC_CR16_REGREL4</strong></dt>
  3085. <dt><a name="index-BFD_005fRELOC_005fCR16_005fREGREL4a"></a>: <strong>BFD_RELOC_CR16_REGREL4a</strong></dt>
  3086. <dt><a name="index-BFD_005fRELOC_005fCR16_005fREGREL14"></a>: <strong>BFD_RELOC_CR16_REGREL14</strong></dt>
  3087. <dt><a name="index-BFD_005fRELOC_005fCR16_005fREGREL14a"></a>: <strong>BFD_RELOC_CR16_REGREL14a</strong></dt>
  3088. <dt><a name="index-BFD_005fRELOC_005fCR16_005fREGREL16"></a>: <strong>BFD_RELOC_CR16_REGREL16</strong></dt>
  3089. <dt><a name="index-BFD_005fRELOC_005fCR16_005fREGREL20"></a>: <strong>BFD_RELOC_CR16_REGREL20</strong></dt>
  3090. <dt><a name="index-BFD_005fRELOC_005fCR16_005fREGREL20a"></a>: <strong>BFD_RELOC_CR16_REGREL20a</strong></dt>
  3091. <dt><a name="index-BFD_005fRELOC_005fCR16_005fABS20"></a>: <strong>BFD_RELOC_CR16_ABS20</strong></dt>
  3092. <dt><a name="index-BFD_005fRELOC_005fCR16_005fABS24"></a>: <strong>BFD_RELOC_CR16_ABS24</strong></dt>
  3093. <dt><a name="index-BFD_005fRELOC_005fCR16_005fIMM4"></a>: <strong>BFD_RELOC_CR16_IMM4</strong></dt>
  3094. <dt><a name="index-BFD_005fRELOC_005fCR16_005fIMM8"></a>: <strong>BFD_RELOC_CR16_IMM8</strong></dt>
  3095. <dt><a name="index-BFD_005fRELOC_005fCR16_005fIMM16"></a>: <strong>BFD_RELOC_CR16_IMM16</strong></dt>
  3096. <dt><a name="index-BFD_005fRELOC_005fCR16_005fIMM20"></a>: <strong>BFD_RELOC_CR16_IMM20</strong></dt>
  3097. <dt><a name="index-BFD_005fRELOC_005fCR16_005fIMM24"></a>: <strong>BFD_RELOC_CR16_IMM24</strong></dt>
  3098. <dt><a name="index-BFD_005fRELOC_005fCR16_005fIMM32"></a>: <strong>BFD_RELOC_CR16_IMM32</strong></dt>
  3099. <dt><a name="index-BFD_005fRELOC_005fCR16_005fIMM32a"></a>: <strong>BFD_RELOC_CR16_IMM32a</strong></dt>
  3100. <dt><a name="index-BFD_005fRELOC_005fCR16_005fDISP4"></a>: <strong>BFD_RELOC_CR16_DISP4</strong></dt>
  3101. <dt><a name="index-BFD_005fRELOC_005fCR16_005fDISP8"></a>: <strong>BFD_RELOC_CR16_DISP8</strong></dt>
  3102. <dt><a name="index-BFD_005fRELOC_005fCR16_005fDISP16"></a>: <strong>BFD_RELOC_CR16_DISP16</strong></dt>
  3103. <dt><a name="index-BFD_005fRELOC_005fCR16_005fDISP20"></a>: <strong>BFD_RELOC_CR16_DISP20</strong></dt>
  3104. <dt><a name="index-BFD_005fRELOC_005fCR16_005fDISP24"></a>: <strong>BFD_RELOC_CR16_DISP24</strong></dt>
  3105. <dt><a name="index-BFD_005fRELOC_005fCR16_005fDISP24a"></a>: <strong>BFD_RELOC_CR16_DISP24a</strong></dt>
  3106. <dt><a name="index-BFD_005fRELOC_005fCR16_005fSWITCH8"></a>: <strong>BFD_RELOC_CR16_SWITCH8</strong></dt>
  3107. <dt><a name="index-BFD_005fRELOC_005fCR16_005fSWITCH16"></a>: <strong>BFD_RELOC_CR16_SWITCH16</strong></dt>
  3108. <dt><a name="index-BFD_005fRELOC_005fCR16_005fSWITCH32"></a>: <strong>BFD_RELOC_CR16_SWITCH32</strong></dt>
  3109. <dt><a name="index-BFD_005fRELOC_005fCR16_005fGOT_005fREGREL20"></a>: <strong>BFD_RELOC_CR16_GOT_REGREL20</strong></dt>
  3110. <dt><a name="index-BFD_005fRELOC_005fCR16_005fGOTC_005fREGREL20"></a>: <strong>BFD_RELOC_CR16_GOTC_REGREL20</strong></dt>
  3111. <dt><a name="index-BFD_005fRELOC_005fCR16_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_CR16_GLOB_DAT</strong></dt>
  3112. <dd><p>NS CR16 Relocations.
  3113. </p></dd></dl>
  3114. <dl>
  3115. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREL4"></a>: <strong>BFD_RELOC_CRX_REL4</strong></dt>
  3116. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREL8"></a>: <strong>BFD_RELOC_CRX_REL8</strong></dt>
  3117. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREL8_005fCMP"></a>: <strong>BFD_RELOC_CRX_REL8_CMP</strong></dt>
  3118. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREL16"></a>: <strong>BFD_RELOC_CRX_REL16</strong></dt>
  3119. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREL24"></a>: <strong>BFD_RELOC_CRX_REL24</strong></dt>
  3120. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREL32"></a>: <strong>BFD_RELOC_CRX_REL32</strong></dt>
  3121. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREGREL12"></a>: <strong>BFD_RELOC_CRX_REGREL12</strong></dt>
  3122. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREGREL22"></a>: <strong>BFD_RELOC_CRX_REGREL22</strong></dt>
  3123. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREGREL28"></a>: <strong>BFD_RELOC_CRX_REGREL28</strong></dt>
  3124. <dt><a name="index-BFD_005fRELOC_005fCRX_005fREGREL32"></a>: <strong>BFD_RELOC_CRX_REGREL32</strong></dt>
  3125. <dt><a name="index-BFD_005fRELOC_005fCRX_005fABS16"></a>: <strong>BFD_RELOC_CRX_ABS16</strong></dt>
  3126. <dt><a name="index-BFD_005fRELOC_005fCRX_005fABS32"></a>: <strong>BFD_RELOC_CRX_ABS32</strong></dt>
  3127. <dt><a name="index-BFD_005fRELOC_005fCRX_005fNUM8"></a>: <strong>BFD_RELOC_CRX_NUM8</strong></dt>
  3128. <dt><a name="index-BFD_005fRELOC_005fCRX_005fNUM16"></a>: <strong>BFD_RELOC_CRX_NUM16</strong></dt>
  3129. <dt><a name="index-BFD_005fRELOC_005fCRX_005fNUM32"></a>: <strong>BFD_RELOC_CRX_NUM32</strong></dt>
  3130. <dt><a name="index-BFD_005fRELOC_005fCRX_005fIMM16"></a>: <strong>BFD_RELOC_CRX_IMM16</strong></dt>
  3131. <dt><a name="index-BFD_005fRELOC_005fCRX_005fIMM32"></a>: <strong>BFD_RELOC_CRX_IMM32</strong></dt>
  3132. <dt><a name="index-BFD_005fRELOC_005fCRX_005fSWITCH8"></a>: <strong>BFD_RELOC_CRX_SWITCH8</strong></dt>
  3133. <dt><a name="index-BFD_005fRELOC_005fCRX_005fSWITCH16"></a>: <strong>BFD_RELOC_CRX_SWITCH16</strong></dt>
  3134. <dt><a name="index-BFD_005fRELOC_005fCRX_005fSWITCH32"></a>: <strong>BFD_RELOC_CRX_SWITCH32</strong></dt>
  3135. <dd><p>NS CRX Relocations.
  3136. </p></dd></dl>
  3137. <dl>
  3138. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fBDISP8"></a>: <strong>BFD_RELOC_CRIS_BDISP8</strong></dt>
  3139. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fUNSIGNED_005f5"></a>: <strong>BFD_RELOC_CRIS_UNSIGNED_5</strong></dt>
  3140. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fSIGNED_005f6"></a>: <strong>BFD_RELOC_CRIS_SIGNED_6</strong></dt>
  3141. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fUNSIGNED_005f6"></a>: <strong>BFD_RELOC_CRIS_UNSIGNED_6</strong></dt>
  3142. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fSIGNED_005f8"></a>: <strong>BFD_RELOC_CRIS_SIGNED_8</strong></dt>
  3143. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fUNSIGNED_005f8"></a>: <strong>BFD_RELOC_CRIS_UNSIGNED_8</strong></dt>
  3144. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fSIGNED_005f16"></a>: <strong>BFD_RELOC_CRIS_SIGNED_16</strong></dt>
  3145. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fUNSIGNED_005f16"></a>: <strong>BFD_RELOC_CRIS_UNSIGNED_16</strong></dt>
  3146. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fLAPCQ_005fOFFSET"></a>: <strong>BFD_RELOC_CRIS_LAPCQ_OFFSET</strong></dt>
  3147. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fUNSIGNED_005f4"></a>: <strong>BFD_RELOC_CRIS_UNSIGNED_4</strong></dt>
  3148. <dd><p>These relocs are only used within the CRIS assembler. They are not
  3149. (at present) written to any object files.
  3150. </p></dd></dl>
  3151. <dl>
  3152. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fCOPY"></a>: <strong>BFD_RELOC_CRIS_COPY</strong></dt>
  3153. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_CRIS_GLOB_DAT</strong></dt>
  3154. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fJUMP_005fSLOT"></a>: <strong>BFD_RELOC_CRIS_JUMP_SLOT</strong></dt>
  3155. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fRELATIVE"></a>: <strong>BFD_RELOC_CRIS_RELATIVE</strong></dt>
  3156. <dd><p>Relocs used in ELF shared libraries for CRIS.
  3157. </p></dd></dl>
  3158. <dl>
  3159. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fGOT"></a>: <strong>BFD_RELOC_CRIS_32_GOT</strong></dt>
  3160. <dd><p>32-bit offset to symbol-entry within GOT.
  3161. </p></dd></dl>
  3162. <dl>
  3163. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f16_005fGOT"></a>: <strong>BFD_RELOC_CRIS_16_GOT</strong></dt>
  3164. <dd><p>16-bit offset to symbol-entry within GOT.
  3165. </p></dd></dl>
  3166. <dl>
  3167. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fGOTPLT"></a>: <strong>BFD_RELOC_CRIS_32_GOTPLT</strong></dt>
  3168. <dd><p>32-bit offset to symbol-entry within GOT, with PLT handling.
  3169. </p></dd></dl>
  3170. <dl>
  3171. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f16_005fGOTPLT"></a>: <strong>BFD_RELOC_CRIS_16_GOTPLT</strong></dt>
  3172. <dd><p>16-bit offset to symbol-entry within GOT, with PLT handling.
  3173. </p></dd></dl>
  3174. <dl>
  3175. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fGOTREL"></a>: <strong>BFD_RELOC_CRIS_32_GOTREL</strong></dt>
  3176. <dd><p>32-bit offset to symbol, relative to GOT.
  3177. </p></dd></dl>
  3178. <dl>
  3179. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fPLT_005fGOTREL"></a>: <strong>BFD_RELOC_CRIS_32_PLT_GOTREL</strong></dt>
  3180. <dd><p>32-bit offset to symbol with PLT entry, relative to GOT.
  3181. </p></dd></dl>
  3182. <dl>
  3183. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_CRIS_32_PLT_PCREL</strong></dt>
  3184. <dd><p>32-bit offset to symbol with PLT entry, relative to this relocation.
  3185. </p></dd></dl>
  3186. <dl>
  3187. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fGOT_005fGD"></a>: <strong>BFD_RELOC_CRIS_32_GOT_GD</strong></dt>
  3188. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f16_005fGOT_005fGD"></a>: <strong>BFD_RELOC_CRIS_16_GOT_GD</strong></dt>
  3189. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fGD"></a>: <strong>BFD_RELOC_CRIS_32_GD</strong></dt>
  3190. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fDTP"></a>: <strong>BFD_RELOC_CRIS_DTP</strong></dt>
  3191. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fDTPREL"></a>: <strong>BFD_RELOC_CRIS_32_DTPREL</strong></dt>
  3192. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f16_005fDTPREL"></a>: <strong>BFD_RELOC_CRIS_16_DTPREL</strong></dt>
  3193. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fGOT_005fTPREL"></a>: <strong>BFD_RELOC_CRIS_32_GOT_TPREL</strong></dt>
  3194. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f16_005fGOT_005fTPREL"></a>: <strong>BFD_RELOC_CRIS_16_GOT_TPREL</strong></dt>
  3195. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fTPREL"></a>: <strong>BFD_RELOC_CRIS_32_TPREL</strong></dt>
  3196. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f16_005fTPREL"></a>: <strong>BFD_RELOC_CRIS_16_TPREL</strong></dt>
  3197. <dt><a name="index-BFD_005fRELOC_005fCRIS_005fDTPMOD"></a>: <strong>BFD_RELOC_CRIS_DTPMOD</strong></dt>
  3198. <dt><a name="index-BFD_005fRELOC_005fCRIS_005f32_005fIE"></a>: <strong>BFD_RELOC_CRIS_32_IE</strong></dt>
  3199. <dd><p>Relocs used in TLS code for CRIS.
  3200. </p></dd></dl>
  3201. <dl>
  3202. <dt><a name="index-BFD_005fRELOC_005f860_005fCOPY"></a>: <strong>BFD_RELOC_860_COPY</strong></dt>
  3203. <dt><a name="index-BFD_005fRELOC_005f860_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_860_GLOB_DAT</strong></dt>
  3204. <dt><a name="index-BFD_005fRELOC_005f860_005fJUMP_005fSLOT"></a>: <strong>BFD_RELOC_860_JUMP_SLOT</strong></dt>
  3205. <dt><a name="index-BFD_005fRELOC_005f860_005fRELATIVE"></a>: <strong>BFD_RELOC_860_RELATIVE</strong></dt>
  3206. <dt><a name="index-BFD_005fRELOC_005f860_005fPC26"></a>: <strong>BFD_RELOC_860_PC26</strong></dt>
  3207. <dt><a name="index-BFD_005fRELOC_005f860_005fPLT26"></a>: <strong>BFD_RELOC_860_PLT26</strong></dt>
  3208. <dt><a name="index-BFD_005fRELOC_005f860_005fPC16"></a>: <strong>BFD_RELOC_860_PC16</strong></dt>
  3209. <dt><a name="index-BFD_005fRELOC_005f860_005fLOW0"></a>: <strong>BFD_RELOC_860_LOW0</strong></dt>
  3210. <dt><a name="index-BFD_005fRELOC_005f860_005fSPLIT0"></a>: <strong>BFD_RELOC_860_SPLIT0</strong></dt>
  3211. <dt><a name="index-BFD_005fRELOC_005f860_005fLOW1"></a>: <strong>BFD_RELOC_860_LOW1</strong></dt>
  3212. <dt><a name="index-BFD_005fRELOC_005f860_005fSPLIT1"></a>: <strong>BFD_RELOC_860_SPLIT1</strong></dt>
  3213. <dt><a name="index-BFD_005fRELOC_005f860_005fLOW2"></a>: <strong>BFD_RELOC_860_LOW2</strong></dt>
  3214. <dt><a name="index-BFD_005fRELOC_005f860_005fSPLIT2"></a>: <strong>BFD_RELOC_860_SPLIT2</strong></dt>
  3215. <dt><a name="index-BFD_005fRELOC_005f860_005fLOW3"></a>: <strong>BFD_RELOC_860_LOW3</strong></dt>
  3216. <dt><a name="index-BFD_005fRELOC_005f860_005fLOGOT0"></a>: <strong>BFD_RELOC_860_LOGOT0</strong></dt>
  3217. <dt><a name="index-BFD_005fRELOC_005f860_005fSPGOT0"></a>: <strong>BFD_RELOC_860_SPGOT0</strong></dt>
  3218. <dt><a name="index-BFD_005fRELOC_005f860_005fLOGOT1"></a>: <strong>BFD_RELOC_860_LOGOT1</strong></dt>
  3219. <dt><a name="index-BFD_005fRELOC_005f860_005fSPGOT1"></a>: <strong>BFD_RELOC_860_SPGOT1</strong></dt>
  3220. <dt><a name="index-BFD_005fRELOC_005f860_005fLOGOTOFF0"></a>: <strong>BFD_RELOC_860_LOGOTOFF0</strong></dt>
  3221. <dt><a name="index-BFD_005fRELOC_005f860_005fSPGOTOFF0"></a>: <strong>BFD_RELOC_860_SPGOTOFF0</strong></dt>
  3222. <dt><a name="index-BFD_005fRELOC_005f860_005fLOGOTOFF1"></a>: <strong>BFD_RELOC_860_LOGOTOFF1</strong></dt>
  3223. <dt><a name="index-BFD_005fRELOC_005f860_005fSPGOTOFF1"></a>: <strong>BFD_RELOC_860_SPGOTOFF1</strong></dt>
  3224. <dt><a name="index-BFD_005fRELOC_005f860_005fLOGOTOFF2"></a>: <strong>BFD_RELOC_860_LOGOTOFF2</strong></dt>
  3225. <dt><a name="index-BFD_005fRELOC_005f860_005fLOGOTOFF3"></a>: <strong>BFD_RELOC_860_LOGOTOFF3</strong></dt>
  3226. <dt><a name="index-BFD_005fRELOC_005f860_005fLOPC"></a>: <strong>BFD_RELOC_860_LOPC</strong></dt>
  3227. <dt><a name="index-BFD_005fRELOC_005f860_005fHIGHADJ"></a>: <strong>BFD_RELOC_860_HIGHADJ</strong></dt>
  3228. <dt><a name="index-BFD_005fRELOC_005f860_005fHAGOT"></a>: <strong>BFD_RELOC_860_HAGOT</strong></dt>
  3229. <dt><a name="index-BFD_005fRELOC_005f860_005fHAGOTOFF"></a>: <strong>BFD_RELOC_860_HAGOTOFF</strong></dt>
  3230. <dt><a name="index-BFD_005fRELOC_005f860_005fHAPC"></a>: <strong>BFD_RELOC_860_HAPC</strong></dt>
  3231. <dt><a name="index-BFD_005fRELOC_005f860_005fHIGH"></a>: <strong>BFD_RELOC_860_HIGH</strong></dt>
  3232. <dt><a name="index-BFD_005fRELOC_005f860_005fHIGOT"></a>: <strong>BFD_RELOC_860_HIGOT</strong></dt>
  3233. <dt><a name="index-BFD_005fRELOC_005f860_005fHIGOTOFF"></a>: <strong>BFD_RELOC_860_HIGOTOFF</strong></dt>
  3234. <dd><p>Intel i860 Relocations.
  3235. </p></dd></dl>
  3236. <dl>
  3237. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fREL_005f26"></a>: <strong>BFD_RELOC_OR1K_REL_26</strong></dt>
  3238. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fGOTPC_005fHI16"></a>: <strong>BFD_RELOC_OR1K_GOTPC_HI16</strong></dt>
  3239. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fGOTPC_005fLO16"></a>: <strong>BFD_RELOC_OR1K_GOTPC_LO16</strong></dt>
  3240. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fGOT16"></a>: <strong>BFD_RELOC_OR1K_GOT16</strong></dt>
  3241. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fPLT26"></a>: <strong>BFD_RELOC_OR1K_PLT26</strong></dt>
  3242. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fGOTOFF_005fHI16"></a>: <strong>BFD_RELOC_OR1K_GOTOFF_HI16</strong></dt>
  3243. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fGOTOFF_005fLO16"></a>: <strong>BFD_RELOC_OR1K_GOTOFF_LO16</strong></dt>
  3244. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fCOPY"></a>: <strong>BFD_RELOC_OR1K_COPY</strong></dt>
  3245. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_OR1K_GLOB_DAT</strong></dt>
  3246. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_OR1K_JMP_SLOT</strong></dt>
  3247. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fRELATIVE"></a>: <strong>BFD_RELOC_OR1K_RELATIVE</strong></dt>
  3248. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fGD_005fHI16"></a>: <strong>BFD_RELOC_OR1K_TLS_GD_HI16</strong></dt>
  3249. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fGD_005fLO16"></a>: <strong>BFD_RELOC_OR1K_TLS_GD_LO16</strong></dt>
  3250. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fLDM_005fHI16"></a>: <strong>BFD_RELOC_OR1K_TLS_LDM_HI16</strong></dt>
  3251. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fLDM_005fLO16"></a>: <strong>BFD_RELOC_OR1K_TLS_LDM_LO16</strong></dt>
  3252. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fLDO_005fHI16"></a>: <strong>BFD_RELOC_OR1K_TLS_LDO_HI16</strong></dt>
  3253. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fLDO_005fLO16"></a>: <strong>BFD_RELOC_OR1K_TLS_LDO_LO16</strong></dt>
  3254. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fIE_005fHI16"></a>: <strong>BFD_RELOC_OR1K_TLS_IE_HI16</strong></dt>
  3255. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fIE_005fLO16"></a>: <strong>BFD_RELOC_OR1K_TLS_IE_LO16</strong></dt>
  3256. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fLE_005fHI16"></a>: <strong>BFD_RELOC_OR1K_TLS_LE_HI16</strong></dt>
  3257. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fLE_005fLO16"></a>: <strong>BFD_RELOC_OR1K_TLS_LE_LO16</strong></dt>
  3258. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fTPOFF"></a>: <strong>BFD_RELOC_OR1K_TLS_TPOFF</strong></dt>
  3259. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fDTPOFF"></a>: <strong>BFD_RELOC_OR1K_TLS_DTPOFF</strong></dt>
  3260. <dt><a name="index-BFD_005fRELOC_005fOR1K_005fTLS_005fDTPMOD"></a>: <strong>BFD_RELOC_OR1K_TLS_DTPMOD</strong></dt>
  3261. <dd><p>OpenRISC 1000 Relocations.
  3262. </p></dd></dl>
  3263. <dl>
  3264. <dt><a name="index-BFD_005fRELOC_005fH8_005fDIR16A8"></a>: <strong>BFD_RELOC_H8_DIR16A8</strong></dt>
  3265. <dt><a name="index-BFD_005fRELOC_005fH8_005fDIR16R8"></a>: <strong>BFD_RELOC_H8_DIR16R8</strong></dt>
  3266. <dt><a name="index-BFD_005fRELOC_005fH8_005fDIR24A8"></a>: <strong>BFD_RELOC_H8_DIR24A8</strong></dt>
  3267. <dt><a name="index-BFD_005fRELOC_005fH8_005fDIR24R8"></a>: <strong>BFD_RELOC_H8_DIR24R8</strong></dt>
  3268. <dt><a name="index-BFD_005fRELOC_005fH8_005fDIR32A16"></a>: <strong>BFD_RELOC_H8_DIR32A16</strong></dt>
  3269. <dt><a name="index-BFD_005fRELOC_005fH8_005fDISP32A16"></a>: <strong>BFD_RELOC_H8_DISP32A16</strong></dt>
  3270. <dd><p>H8 elf Relocations.
  3271. </p></dd></dl>
  3272. <dl>
  3273. <dt><a name="index-BFD_005fRELOC_005fXSTORMY16_005fREL_005f12"></a>: <strong>BFD_RELOC_XSTORMY16_REL_12</strong></dt>
  3274. <dt><a name="index-BFD_005fRELOC_005fXSTORMY16_005f12"></a>: <strong>BFD_RELOC_XSTORMY16_12</strong></dt>
  3275. <dt><a name="index-BFD_005fRELOC_005fXSTORMY16_005f24"></a>: <strong>BFD_RELOC_XSTORMY16_24</strong></dt>
  3276. <dt><a name="index-BFD_005fRELOC_005fXSTORMY16_005fFPTR16"></a>: <strong>BFD_RELOC_XSTORMY16_FPTR16</strong></dt>
  3277. <dd><p>Sony Xstormy16 Relocations.
  3278. </p></dd></dl>
  3279. <dl>
  3280. <dt><a name="index-BFD_005fRELOC_005fRELC"></a>: <strong>BFD_RELOC_RELC</strong></dt>
  3281. <dd><p>Self-describing complex relocations.
  3282. </p></dd></dl>
  3283. <dl>
  3284. <dt><a name="index-BFD_005fRELOC_005fXC16X_005fPAG"></a>: <strong>BFD_RELOC_XC16X_PAG</strong></dt>
  3285. <dt><a name="index-BFD_005fRELOC_005fXC16X_005fPOF"></a>: <strong>BFD_RELOC_XC16X_POF</strong></dt>
  3286. <dt><a name="index-BFD_005fRELOC_005fXC16X_005fSEG"></a>: <strong>BFD_RELOC_XC16X_SEG</strong></dt>
  3287. <dt><a name="index-BFD_005fRELOC_005fXC16X_005fSOF"></a>: <strong>BFD_RELOC_XC16X_SOF</strong></dt>
  3288. <dd><p>Infineon Relocations.
  3289. </p></dd></dl>
  3290. <dl>
  3291. <dt><a name="index-BFD_005fRELOC_005fVAX_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_VAX_GLOB_DAT</strong></dt>
  3292. <dt><a name="index-BFD_005fRELOC_005fVAX_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_VAX_JMP_SLOT</strong></dt>
  3293. <dt><a name="index-BFD_005fRELOC_005fVAX_005fRELATIVE"></a>: <strong>BFD_RELOC_VAX_RELATIVE</strong></dt>
  3294. <dd><p>Relocations used by VAX ELF.
  3295. </p></dd></dl>
  3296. <dl>
  3297. <dt><a name="index-BFD_005fRELOC_005fMT_005fPC16"></a>: <strong>BFD_RELOC_MT_PC16</strong></dt>
  3298. <dd><p>Morpho MT - 16 bit immediate relocation.
  3299. </p></dd></dl>
  3300. <dl>
  3301. <dt><a name="index-BFD_005fRELOC_005fMT_005fHI16"></a>: <strong>BFD_RELOC_MT_HI16</strong></dt>
  3302. <dd><p>Morpho MT - Hi 16 bits of an address.
  3303. </p></dd></dl>
  3304. <dl>
  3305. <dt><a name="index-BFD_005fRELOC_005fMT_005fLO16"></a>: <strong>BFD_RELOC_MT_LO16</strong></dt>
  3306. <dd><p>Morpho MT - Low 16 bits of an address.
  3307. </p></dd></dl>
  3308. <dl>
  3309. <dt><a name="index-BFD_005fRELOC_005fMT_005fGNU_005fVTINHERIT"></a>: <strong>BFD_RELOC_MT_GNU_VTINHERIT</strong></dt>
  3310. <dd><p>Morpho MT - Used to tell the linker which vtable entries are used.
  3311. </p></dd></dl>
  3312. <dl>
  3313. <dt><a name="index-BFD_005fRELOC_005fMT_005fGNU_005fVTENTRY"></a>: <strong>BFD_RELOC_MT_GNU_VTENTRY</strong></dt>
  3314. <dd><p>Morpho MT - Used to tell the linker which vtable entries are used.
  3315. </p></dd></dl>
  3316. <dl>
  3317. <dt><a name="index-BFD_005fRELOC_005fMT_005fPCINSN8"></a>: <strong>BFD_RELOC_MT_PCINSN8</strong></dt>
  3318. <dd><p>Morpho MT - 8 bit immediate relocation.
  3319. </p></dd></dl>
  3320. <dl>
  3321. <dt><a name="index-BFD_005fRELOC_005fMSP430_005f10_005fPCREL"></a>: <strong>BFD_RELOC_MSP430_10_PCREL</strong></dt>
  3322. <dt><a name="index-BFD_005fRELOC_005fMSP430_005f16_005fPCREL"></a>: <strong>BFD_RELOC_MSP430_16_PCREL</strong></dt>
  3323. <dt><a name="index-BFD_005fRELOC_005fMSP430_005f16"></a>: <strong>BFD_RELOC_MSP430_16</strong></dt>
  3324. <dt><a name="index-BFD_005fRELOC_005fMSP430_005f16_005fPCREL_005fBYTE"></a>: <strong>BFD_RELOC_MSP430_16_PCREL_BYTE</strong></dt>
  3325. <dt><a name="index-BFD_005fRELOC_005fMSP430_005f16_005fBYTE"></a>: <strong>BFD_RELOC_MSP430_16_BYTE</strong></dt>
  3326. <dt><a name="index-BFD_005fRELOC_005fMSP430_005f2X_005fPCREL"></a>: <strong>BFD_RELOC_MSP430_2X_PCREL</strong></dt>
  3327. <dt><a name="index-BFD_005fRELOC_005fMSP430_005fRL_005fPCREL"></a>: <strong>BFD_RELOC_MSP430_RL_PCREL</strong></dt>
  3328. <dt><a name="index-BFD_005fRELOC_005fMSP430_005fABS8"></a>: <strong>BFD_RELOC_MSP430_ABS8</strong></dt>
  3329. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fPCR20_005fEXT_005fSRC"></a>: <strong>BFD_RELOC_MSP430X_PCR20_EXT_SRC</strong></dt>
  3330. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fPCR20_005fEXT_005fDST"></a>: <strong>BFD_RELOC_MSP430X_PCR20_EXT_DST</strong></dt>
  3331. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fPCR20_005fEXT_005fODST"></a>: <strong>BFD_RELOC_MSP430X_PCR20_EXT_ODST</strong></dt>
  3332. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fABS20_005fEXT_005fSRC"></a>: <strong>BFD_RELOC_MSP430X_ABS20_EXT_SRC</strong></dt>
  3333. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fABS20_005fEXT_005fDST"></a>: <strong>BFD_RELOC_MSP430X_ABS20_EXT_DST</strong></dt>
  3334. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fABS20_005fEXT_005fODST"></a>: <strong>BFD_RELOC_MSP430X_ABS20_EXT_ODST</strong></dt>
  3335. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fABS20_005fADR_005fSRC"></a>: <strong>BFD_RELOC_MSP430X_ABS20_ADR_SRC</strong></dt>
  3336. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fABS20_005fADR_005fDST"></a>: <strong>BFD_RELOC_MSP430X_ABS20_ADR_DST</strong></dt>
  3337. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fPCR16"></a>: <strong>BFD_RELOC_MSP430X_PCR16</strong></dt>
  3338. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fPCR20_005fCALL"></a>: <strong>BFD_RELOC_MSP430X_PCR20_CALL</strong></dt>
  3339. <dt><a name="index-BFD_005fRELOC_005fMSP430X_005fABS16"></a>: <strong>BFD_RELOC_MSP430X_ABS16</strong></dt>
  3340. <dt><a name="index-BFD_005fRELOC_005fMSP430_005fABS_005fHI16"></a>: <strong>BFD_RELOC_MSP430_ABS_HI16</strong></dt>
  3341. <dt><a name="index-BFD_005fRELOC_005fMSP430_005fPREL31"></a>: <strong>BFD_RELOC_MSP430_PREL31</strong></dt>
  3342. <dt><a name="index-BFD_005fRELOC_005fMSP430_005fSYM_005fDIFF"></a>: <strong>BFD_RELOC_MSP430_SYM_DIFF</strong></dt>
  3343. <dd><p>msp430 specific relocation codes
  3344. </p></dd></dl>
  3345. <dl>
  3346. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fS16"></a>: <strong>BFD_RELOC_NIOS2_S16</strong></dt>
  3347. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fU16"></a>: <strong>BFD_RELOC_NIOS2_U16</strong></dt>
  3348. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fCALL26"></a>: <strong>BFD_RELOC_NIOS2_CALL26</strong></dt>
  3349. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fIMM5"></a>: <strong>BFD_RELOC_NIOS2_IMM5</strong></dt>
  3350. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fCACHE_005fOPX"></a>: <strong>BFD_RELOC_NIOS2_CACHE_OPX</strong></dt>
  3351. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fIMM6"></a>: <strong>BFD_RELOC_NIOS2_IMM6</strong></dt>
  3352. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fIMM8"></a>: <strong>BFD_RELOC_NIOS2_IMM8</strong></dt>
  3353. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fHI16"></a>: <strong>BFD_RELOC_NIOS2_HI16</strong></dt>
  3354. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fLO16"></a>: <strong>BFD_RELOC_NIOS2_LO16</strong></dt>
  3355. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fHIADJ16"></a>: <strong>BFD_RELOC_NIOS2_HIADJ16</strong></dt>
  3356. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fGPREL"></a>: <strong>BFD_RELOC_NIOS2_GPREL</strong></dt>
  3357. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fUJMP"></a>: <strong>BFD_RELOC_NIOS2_UJMP</strong></dt>
  3358. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fCJMP"></a>: <strong>BFD_RELOC_NIOS2_CJMP</strong></dt>
  3359. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fCALLR"></a>: <strong>BFD_RELOC_NIOS2_CALLR</strong></dt>
  3360. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fALIGN"></a>: <strong>BFD_RELOC_NIOS2_ALIGN</strong></dt>
  3361. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fGOT16"></a>: <strong>BFD_RELOC_NIOS2_GOT16</strong></dt>
  3362. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fCALL16"></a>: <strong>BFD_RELOC_NIOS2_CALL16</strong></dt>
  3363. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fGOTOFF_005fLO"></a>: <strong>BFD_RELOC_NIOS2_GOTOFF_LO</strong></dt>
  3364. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fGOTOFF_005fHA"></a>: <strong>BFD_RELOC_NIOS2_GOTOFF_HA</strong></dt>
  3365. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fPCREL_005fLO"></a>: <strong>BFD_RELOC_NIOS2_PCREL_LO</strong></dt>
  3366. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fPCREL_005fHA"></a>: <strong>BFD_RELOC_NIOS2_PCREL_HA</strong></dt>
  3367. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fTLS_005fGD16"></a>: <strong>BFD_RELOC_NIOS2_TLS_GD16</strong></dt>
  3368. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fTLS_005fLDM16"></a>: <strong>BFD_RELOC_NIOS2_TLS_LDM16</strong></dt>
  3369. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fTLS_005fLDO16"></a>: <strong>BFD_RELOC_NIOS2_TLS_LDO16</strong></dt>
  3370. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fTLS_005fIE16"></a>: <strong>BFD_RELOC_NIOS2_TLS_IE16</strong></dt>
  3371. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fTLS_005fLE16"></a>: <strong>BFD_RELOC_NIOS2_TLS_LE16</strong></dt>
  3372. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fTLS_005fDTPMOD"></a>: <strong>BFD_RELOC_NIOS2_TLS_DTPMOD</strong></dt>
  3373. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fTLS_005fDTPREL"></a>: <strong>BFD_RELOC_NIOS2_TLS_DTPREL</strong></dt>
  3374. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fTLS_005fTPREL"></a>: <strong>BFD_RELOC_NIOS2_TLS_TPREL</strong></dt>
  3375. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fCOPY"></a>: <strong>BFD_RELOC_NIOS2_COPY</strong></dt>
  3376. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_NIOS2_GLOB_DAT</strong></dt>
  3377. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fJUMP_005fSLOT"></a>: <strong>BFD_RELOC_NIOS2_JUMP_SLOT</strong></dt>
  3378. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fRELATIVE"></a>: <strong>BFD_RELOC_NIOS2_RELATIVE</strong></dt>
  3379. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fGOTOFF"></a>: <strong>BFD_RELOC_NIOS2_GOTOFF</strong></dt>
  3380. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fCALL26_005fNOAT"></a>: <strong>BFD_RELOC_NIOS2_CALL26_NOAT</strong></dt>
  3381. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fGOT_005fLO"></a>: <strong>BFD_RELOC_NIOS2_GOT_LO</strong></dt>
  3382. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fGOT_005fHA"></a>: <strong>BFD_RELOC_NIOS2_GOT_HA</strong></dt>
  3383. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fCALL_005fLO"></a>: <strong>BFD_RELOC_NIOS2_CALL_LO</strong></dt>
  3384. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fCALL_005fHA"></a>: <strong>BFD_RELOC_NIOS2_CALL_HA</strong></dt>
  3385. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fS12"></a>: <strong>BFD_RELOC_NIOS2_R2_S12</strong></dt>
  3386. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fI10_005f1_005fPCREL"></a>: <strong>BFD_RELOC_NIOS2_R2_I10_1_PCREL</strong></dt>
  3387. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fT1I7_005f1_005fPCREL"></a>: <strong>BFD_RELOC_NIOS2_R2_T1I7_1_PCREL</strong></dt>
  3388. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fT1I7_005f2"></a>: <strong>BFD_RELOC_NIOS2_R2_T1I7_2</strong></dt>
  3389. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fT2I4"></a>: <strong>BFD_RELOC_NIOS2_R2_T2I4</strong></dt>
  3390. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fT2I4_005f1"></a>: <strong>BFD_RELOC_NIOS2_R2_T2I4_1</strong></dt>
  3391. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fT2I4_005f2"></a>: <strong>BFD_RELOC_NIOS2_R2_T2I4_2</strong></dt>
  3392. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fX1I7_005f2"></a>: <strong>BFD_RELOC_NIOS2_R2_X1I7_2</strong></dt>
  3393. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fX2L5"></a>: <strong>BFD_RELOC_NIOS2_R2_X2L5</strong></dt>
  3394. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fF1I5_005f2"></a>: <strong>BFD_RELOC_NIOS2_R2_F1I5_2</strong></dt>
  3395. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fL5I4X1"></a>: <strong>BFD_RELOC_NIOS2_R2_L5I4X1</strong></dt>
  3396. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fT1X1I6"></a>: <strong>BFD_RELOC_NIOS2_R2_T1X1I6</strong></dt>
  3397. <dt><a name="index-BFD_005fRELOC_005fNIOS2_005fR2_005fT1X1I6_005f2"></a>: <strong>BFD_RELOC_NIOS2_R2_T1X1I6_2</strong></dt>
  3398. <dd><p>Relocations used by the Altera Nios II core.
  3399. </p></dd></dl>
  3400. <dl>
  3401. <dt><a name="index-BFD_005fRELOC_005fIQ2000_005fOFFSET_005f16"></a>: <strong>BFD_RELOC_IQ2000_OFFSET_16</strong></dt>
  3402. <dt><a name="index-BFD_005fRELOC_005fIQ2000_005fOFFSET_005f21"></a>: <strong>BFD_RELOC_IQ2000_OFFSET_21</strong></dt>
  3403. <dt><a name="index-BFD_005fRELOC_005fIQ2000_005fUHI16"></a>: <strong>BFD_RELOC_IQ2000_UHI16</strong></dt>
  3404. <dd><p>IQ2000 Relocations.
  3405. </p></dd></dl>
  3406. <dl>
  3407. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fRTLD"></a>: <strong>BFD_RELOC_XTENSA_RTLD</strong></dt>
  3408. <dd><p>Special Xtensa relocation used only by PLT entries in ELF shared
  3409. objects to indicate that the runtime linker should set the value
  3410. to one of its own internal functions or data structures.
  3411. </p></dd></dl>
  3412. <dl>
  3413. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_XTENSA_GLOB_DAT</strong></dt>
  3414. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_XTENSA_JMP_SLOT</strong></dt>
  3415. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fRELATIVE"></a>: <strong>BFD_RELOC_XTENSA_RELATIVE</strong></dt>
  3416. <dd><p>Xtensa relocations for ELF shared objects.
  3417. </p></dd></dl>
  3418. <dl>
  3419. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fPLT"></a>: <strong>BFD_RELOC_XTENSA_PLT</strong></dt>
  3420. <dd><p>Xtensa relocation used in ELF object files for symbols that may require
  3421. PLT entries. Otherwise, this is just a generic 32-bit relocation.
  3422. </p></dd></dl>
  3423. <dl>
  3424. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fDIFF8"></a>: <strong>BFD_RELOC_XTENSA_DIFF8</strong></dt>
  3425. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fDIFF16"></a>: <strong>BFD_RELOC_XTENSA_DIFF16</strong></dt>
  3426. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fDIFF32"></a>: <strong>BFD_RELOC_XTENSA_DIFF32</strong></dt>
  3427. <dd><p>Xtensa relocations to mark the difference of two local symbols.
  3428. These are only needed to support linker relaxation and can be ignored
  3429. when not relaxing. The field is set to the value of the difference
  3430. assuming no relaxation. The relocation encodes the position of the
  3431. first symbol so the linker can determine whether to adjust the field
  3432. value.
  3433. </p></dd></dl>
  3434. <dl>
  3435. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT0_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT0_OP</strong></dt>
  3436. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT1_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT1_OP</strong></dt>
  3437. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT2_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT2_OP</strong></dt>
  3438. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT3_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT3_OP</strong></dt>
  3439. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT4_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT4_OP</strong></dt>
  3440. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT5_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT5_OP</strong></dt>
  3441. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT6_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT6_OP</strong></dt>
  3442. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT7_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT7_OP</strong></dt>
  3443. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT8_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT8_OP</strong></dt>
  3444. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT9_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT9_OP</strong></dt>
  3445. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT10_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT10_OP</strong></dt>
  3446. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT11_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT11_OP</strong></dt>
  3447. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT12_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT12_OP</strong></dt>
  3448. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT13_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT13_OP</strong></dt>
  3449. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT14_005fOP"></a>: <strong>BFD_RELOC_XTENSA_SLOT14_OP</strong></dt>
  3450. <dd><p>Generic Xtensa relocations for instruction operands. Only the slot
  3451. number is encoded in the relocation. The relocation applies to the
  3452. last PC-relative immediate operand, or if there are no PC-relative
  3453. immediates, to the last immediate operand.
  3454. </p></dd></dl>
  3455. <dl>
  3456. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT0_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT0_ALT</strong></dt>
  3457. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT1_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT1_ALT</strong></dt>
  3458. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT2_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT2_ALT</strong></dt>
  3459. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT3_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT3_ALT</strong></dt>
  3460. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT4_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT4_ALT</strong></dt>
  3461. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT5_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT5_ALT</strong></dt>
  3462. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT6_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT6_ALT</strong></dt>
  3463. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT7_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT7_ALT</strong></dt>
  3464. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT8_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT8_ALT</strong></dt>
  3465. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT9_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT9_ALT</strong></dt>
  3466. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT10_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT10_ALT</strong></dt>
  3467. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT11_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT11_ALT</strong></dt>
  3468. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT12_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT12_ALT</strong></dt>
  3469. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT13_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT13_ALT</strong></dt>
  3470. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fSLOT14_005fALT"></a>: <strong>BFD_RELOC_XTENSA_SLOT14_ALT</strong></dt>
  3471. <dd><p>Alternate Xtensa relocations. Only the slot is encoded in the
  3472. relocation. The meaning of these relocations is opcode-specific.
  3473. </p></dd></dl>
  3474. <dl>
  3475. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fOP0"></a>: <strong>BFD_RELOC_XTENSA_OP0</strong></dt>
  3476. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fOP1"></a>: <strong>BFD_RELOC_XTENSA_OP1</strong></dt>
  3477. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fOP2"></a>: <strong>BFD_RELOC_XTENSA_OP2</strong></dt>
  3478. <dd><p>Xtensa relocations for backward compatibility. These have all been
  3479. replaced by BFD_RELOC_XTENSA_SLOT0_OP.
  3480. </p></dd></dl>
  3481. <dl>
  3482. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fASM_005fEXPAND"></a>: <strong>BFD_RELOC_XTENSA_ASM_EXPAND</strong></dt>
  3483. <dd><p>Xtensa relocation to mark that the assembler expanded the
  3484. instructions from an original target. The expansion size is
  3485. encoded in the reloc size.
  3486. </p></dd></dl>
  3487. <dl>
  3488. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fASM_005fSIMPLIFY"></a>: <strong>BFD_RELOC_XTENSA_ASM_SIMPLIFY</strong></dt>
  3489. <dd><p>Xtensa relocation to mark that the linker should simplify
  3490. assembler-expanded instructions. This is commonly used
  3491. internally by the linker after analysis of a
  3492. BFD_RELOC_XTENSA_ASM_EXPAND.
  3493. </p></dd></dl>
  3494. <dl>
  3495. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fTLSDESC_005fFN"></a>: <strong>BFD_RELOC_XTENSA_TLSDESC_FN</strong></dt>
  3496. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fTLSDESC_005fARG"></a>: <strong>BFD_RELOC_XTENSA_TLSDESC_ARG</strong></dt>
  3497. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fTLS_005fDTPOFF"></a>: <strong>BFD_RELOC_XTENSA_TLS_DTPOFF</strong></dt>
  3498. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fTLS_005fTPOFF"></a>: <strong>BFD_RELOC_XTENSA_TLS_TPOFF</strong></dt>
  3499. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fTLS_005fFUNC"></a>: <strong>BFD_RELOC_XTENSA_TLS_FUNC</strong></dt>
  3500. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fTLS_005fARG"></a>: <strong>BFD_RELOC_XTENSA_TLS_ARG</strong></dt>
  3501. <dt><a name="index-BFD_005fRELOC_005fXTENSA_005fTLS_005fCALL"></a>: <strong>BFD_RELOC_XTENSA_TLS_CALL</strong></dt>
  3502. <dd><p>Xtensa TLS relocations.
  3503. </p></dd></dl>
  3504. <dl>
  3505. <dt><a name="index-BFD_005fRELOC_005fZ80_005fDISP8"></a>: <strong>BFD_RELOC_Z80_DISP8</strong></dt>
  3506. <dd><p>8 bit signed offset in (ix+d) or (iy+d).
  3507. </p></dd></dl>
  3508. <dl>
  3509. <dt><a name="index-BFD_005fRELOC_005fZ8K_005fDISP7"></a>: <strong>BFD_RELOC_Z8K_DISP7</strong></dt>
  3510. <dd><p>DJNZ offset.
  3511. </p></dd></dl>
  3512. <dl>
  3513. <dt><a name="index-BFD_005fRELOC_005fZ8K_005fCALLR"></a>: <strong>BFD_RELOC_Z8K_CALLR</strong></dt>
  3514. <dd><p>CALR offset.
  3515. </p></dd></dl>
  3516. <dl>
  3517. <dt><a name="index-BFD_005fRELOC_005fZ8K_005fIMM4L"></a>: <strong>BFD_RELOC_Z8K_IMM4L</strong></dt>
  3518. <dd><p>4 bit value.
  3519. </p></dd></dl>
  3520. <dl>
  3521. <dt><a name="index-BFD_005fRELOC_005fLM32_005fCALL"></a>: <strong>BFD_RELOC_LM32_CALL</strong></dt>
  3522. <dt><a name="index-BFD_005fRELOC_005fLM32_005fBRANCH"></a>: <strong>BFD_RELOC_LM32_BRANCH</strong></dt>
  3523. <dt><a name="index-BFD_005fRELOC_005fLM32_005f16_005fGOT"></a>: <strong>BFD_RELOC_LM32_16_GOT</strong></dt>
  3524. <dt><a name="index-BFD_005fRELOC_005fLM32_005fGOTOFF_005fHI16"></a>: <strong>BFD_RELOC_LM32_GOTOFF_HI16</strong></dt>
  3525. <dt><a name="index-BFD_005fRELOC_005fLM32_005fGOTOFF_005fLO16"></a>: <strong>BFD_RELOC_LM32_GOTOFF_LO16</strong></dt>
  3526. <dt><a name="index-BFD_005fRELOC_005fLM32_005fCOPY"></a>: <strong>BFD_RELOC_LM32_COPY</strong></dt>
  3527. <dt><a name="index-BFD_005fRELOC_005fLM32_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_LM32_GLOB_DAT</strong></dt>
  3528. <dt><a name="index-BFD_005fRELOC_005fLM32_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_LM32_JMP_SLOT</strong></dt>
  3529. <dt><a name="index-BFD_005fRELOC_005fLM32_005fRELATIVE"></a>: <strong>BFD_RELOC_LM32_RELATIVE</strong></dt>
  3530. <dd><p>Lattice Mico32 relocations.
  3531. </p></dd></dl>
  3532. <dl>
  3533. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fSECTDIFF"></a>: <strong>BFD_RELOC_MACH_O_SECTDIFF</strong></dt>
  3534. <dd><p>Difference between two section addreses. Must be followed by a
  3535. BFD_RELOC_MACH_O_PAIR.
  3536. </p></dd></dl>
  3537. <dl>
  3538. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fLOCAL_005fSECTDIFF"></a>: <strong>BFD_RELOC_MACH_O_LOCAL_SECTDIFF</strong></dt>
  3539. <dd><p>Like BFD_RELOC_MACH_O_SECTDIFF but with a local symbol.
  3540. </p></dd></dl>
  3541. <dl>
  3542. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fPAIR"></a>: <strong>BFD_RELOC_MACH_O_PAIR</strong></dt>
  3543. <dd><p>Pair of relocation. Contains the first symbol.
  3544. </p></dd></dl>
  3545. <dl>
  3546. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fSUBTRACTOR32"></a>: <strong>BFD_RELOC_MACH_O_SUBTRACTOR32</strong></dt>
  3547. <dd><p>Symbol will be substracted. Must be followed by a BFD_RELOC_32.
  3548. </p></dd></dl>
  3549. <dl>
  3550. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fSUBTRACTOR64"></a>: <strong>BFD_RELOC_MACH_O_SUBTRACTOR64</strong></dt>
  3551. <dd><p>Symbol will be substracted. Must be followed by a BFD_RELOC_64.
  3552. </p></dd></dl>
  3553. <dl>
  3554. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fX86_005f64_005fBRANCH32"></a>: <strong>BFD_RELOC_MACH_O_X86_64_BRANCH32</strong></dt>
  3555. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fX86_005f64_005fBRANCH8"></a>: <strong>BFD_RELOC_MACH_O_X86_64_BRANCH8</strong></dt>
  3556. <dd><p>PCREL relocations. They are marked as branch to create PLT entry if
  3557. required.
  3558. </p></dd></dl>
  3559. <dl>
  3560. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fX86_005f64_005fGOT"></a>: <strong>BFD_RELOC_MACH_O_X86_64_GOT</strong></dt>
  3561. <dd><p>Used when referencing a GOT entry.
  3562. </p></dd></dl>
  3563. <dl>
  3564. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fX86_005f64_005fGOT_005fLOAD"></a>: <strong>BFD_RELOC_MACH_O_X86_64_GOT_LOAD</strong></dt>
  3565. <dd><p>Used when loading a GOT entry with movq. It is specially marked so that
  3566. the linker could optimize the movq to a leaq if possible.
  3567. </p></dd></dl>
  3568. <dl>
  3569. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fX86_005f64_005fPCREL32_005f1"></a>: <strong>BFD_RELOC_MACH_O_X86_64_PCREL32_1</strong></dt>
  3570. <dd><p>Same as BFD_RELOC_32_PCREL but with an implicit -1 addend.
  3571. </p></dd></dl>
  3572. <dl>
  3573. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fX86_005f64_005fPCREL32_005f2"></a>: <strong>BFD_RELOC_MACH_O_X86_64_PCREL32_2</strong></dt>
  3574. <dd><p>Same as BFD_RELOC_32_PCREL but with an implicit -2 addend.
  3575. </p></dd></dl>
  3576. <dl>
  3577. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fX86_005f64_005fPCREL32_005f4"></a>: <strong>BFD_RELOC_MACH_O_X86_64_PCREL32_4</strong></dt>
  3578. <dd><p>Same as BFD_RELOC_32_PCREL but with an implicit -4 addend.
  3579. </p></dd></dl>
  3580. <dl>
  3581. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fARM64_005fADDEND"></a>: <strong>BFD_RELOC_MACH_O_ARM64_ADDEND</strong></dt>
  3582. <dd><p>Addend for PAGE or PAGEOFF.
  3583. </p></dd></dl>
  3584. <dl>
  3585. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fARM64_005fGOT_005fLOAD_005fPAGE21"></a>: <strong>BFD_RELOC_MACH_O_ARM64_GOT_LOAD_PAGE21</strong></dt>
  3586. <dd><p>Relative offset to page of GOT slot.
  3587. </p></dd></dl>
  3588. <dl>
  3589. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fARM64_005fGOT_005fLOAD_005fPAGEOFF12"></a>: <strong>BFD_RELOC_MACH_O_ARM64_GOT_LOAD_PAGEOFF12</strong></dt>
  3590. <dd><p>Relative offset within page of GOT slot.
  3591. </p></dd></dl>
  3592. <dl>
  3593. <dt><a name="index-BFD_005fRELOC_005fMACH_005fO_005fARM64_005fPOINTER_005fTO_005fGOT"></a>: <strong>BFD_RELOC_MACH_O_ARM64_POINTER_TO_GOT</strong></dt>
  3594. <dd><p>Address of a GOT entry.
  3595. </p></dd></dl>
  3596. <dl>
  3597. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f32_005fLO"></a>: <strong>BFD_RELOC_MICROBLAZE_32_LO</strong></dt>
  3598. <dd><p>This is a 32 bit reloc for the microblaze that stores the
  3599. low 16 bits of a value
  3600. </p></dd></dl>
  3601. <dl>
  3602. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f32_005fLO_005fPCREL"></a>: <strong>BFD_RELOC_MICROBLAZE_32_LO_PCREL</strong></dt>
  3603. <dd><p>This is a 32 bit pc-relative reloc for the microblaze that
  3604. stores the low 16 bits of a value
  3605. </p></dd></dl>
  3606. <dl>
  3607. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f32_005fROSDA"></a>: <strong>BFD_RELOC_MICROBLAZE_32_ROSDA</strong></dt>
  3608. <dd><p>This is a 32 bit reloc for the microblaze that stores a
  3609. value relative to the read-only small data area anchor
  3610. </p></dd></dl>
  3611. <dl>
  3612. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f32_005fRWSDA"></a>: <strong>BFD_RELOC_MICROBLAZE_32_RWSDA</strong></dt>
  3613. <dd><p>This is a 32 bit reloc for the microblaze that stores a
  3614. value relative to the read-write small data area anchor
  3615. </p></dd></dl>
  3616. <dl>
  3617. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f32_005fSYM_005fOP_005fSYM"></a>: <strong>BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM</strong></dt>
  3618. <dd><p>This is a 32 bit reloc for the microblaze to handle
  3619. expressions of the form &quot;Symbol Op Symbol&quot;
  3620. </p></dd></dl>
  3621. <dl>
  3622. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fNONE"></a>: <strong>BFD_RELOC_MICROBLAZE_64_NONE</strong></dt>
  3623. <dd><p>This is a 64 bit reloc that stores the 32 bit pc relative
  3624. value in two words (with an imm instruction). No relocation is
  3625. done here - only used for relaxing
  3626. </p></dd></dl>
  3627. <dl>
  3628. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fGOTPC"></a>: <strong>BFD_RELOC_MICROBLAZE_64_GOTPC</strong></dt>
  3629. <dd><p>This is a 64 bit reloc that stores the 32 bit pc relative
  3630. value in two words (with an imm instruction). The relocation is
  3631. PC-relative GOT offset
  3632. </p></dd></dl>
  3633. <dl>
  3634. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fGOT"></a>: <strong>BFD_RELOC_MICROBLAZE_64_GOT</strong></dt>
  3635. <dd><p>This is a 64 bit reloc that stores the 32 bit pc relative
  3636. value in two words (with an imm instruction). The relocation is
  3637. GOT offset
  3638. </p></dd></dl>
  3639. <dl>
  3640. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fPLT"></a>: <strong>BFD_RELOC_MICROBLAZE_64_PLT</strong></dt>
  3641. <dd><p>This is a 64 bit reloc that stores the 32 bit pc relative
  3642. value in two words (with an imm instruction). The relocation is
  3643. PC-relative offset into PLT
  3644. </p></dd></dl>
  3645. <dl>
  3646. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fGOTOFF"></a>: <strong>BFD_RELOC_MICROBLAZE_64_GOTOFF</strong></dt>
  3647. <dd><p>This is a 64 bit reloc that stores the 32 bit GOT relative
  3648. value in two words (with an imm instruction). The relocation is
  3649. relative offset from _GLOBAL_OFFSET_TABLE_
  3650. </p></dd></dl>
  3651. <dl>
  3652. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f32_005fGOTOFF"></a>: <strong>BFD_RELOC_MICROBLAZE_32_GOTOFF</strong></dt>
  3653. <dd><p>This is a 32 bit reloc that stores the 32 bit GOT relative
  3654. value in a word. The relocation is relative offset from
  3655. </p></dd></dl>
  3656. <dl>
  3657. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005fCOPY"></a>: <strong>BFD_RELOC_MICROBLAZE_COPY</strong></dt>
  3658. <dd><p>This is used to tell the dynamic linker to copy the value out of
  3659. the dynamic object into the runtime process image.
  3660. </p></dd></dl>
  3661. <dl>
  3662. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fTLS"></a>: <strong>BFD_RELOC_MICROBLAZE_64_TLS</strong></dt>
  3663. <dd><p>Unused Reloc
  3664. </p></dd></dl>
  3665. <dl>
  3666. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fTLSGD"></a>: <strong>BFD_RELOC_MICROBLAZE_64_TLSGD</strong></dt>
  3667. <dd><p>This is a 64 bit reloc that stores the 32 bit GOT relative value
  3668. of the GOT TLS GD info entry in two words (with an imm instruction). The
  3669. relocation is GOT offset.
  3670. </p></dd></dl>
  3671. <dl>
  3672. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fTLSLD"></a>: <strong>BFD_RELOC_MICROBLAZE_64_TLSLD</strong></dt>
  3673. <dd><p>This is a 64 bit reloc that stores the 32 bit GOT relative value
  3674. of the GOT TLS LD info entry in two words (with an imm instruction). The
  3675. relocation is GOT offset.
  3676. </p></dd></dl>
  3677. <dl>
  3678. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f32_005fTLSDTPMOD"></a>: <strong>BFD_RELOC_MICROBLAZE_32_TLSDTPMOD</strong></dt>
  3679. <dd><p>This is a 32 bit reloc that stores the Module ID to GOT(n).
  3680. </p></dd></dl>
  3681. <dl>
  3682. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f32_005fTLSDTPREL"></a>: <strong>BFD_RELOC_MICROBLAZE_32_TLSDTPREL</strong></dt>
  3683. <dd><p>This is a 32 bit reloc that stores TLS offset to GOT(n+1).
  3684. </p></dd></dl>
  3685. <dl>
  3686. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fTLSDTPREL"></a>: <strong>BFD_RELOC_MICROBLAZE_64_TLSDTPREL</strong></dt>
  3687. <dd><p>This is a 32 bit reloc for storing TLS offset to two words (uses imm
  3688. instruction)
  3689. </p></dd></dl>
  3690. <dl>
  3691. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fTLSGOTTPREL"></a>: <strong>BFD_RELOC_MICROBLAZE_64_TLSGOTTPREL</strong></dt>
  3692. <dd><p>This is a 64 bit reloc that stores 32-bit thread pointer relative offset
  3693. to two words (uses imm instruction).
  3694. </p></dd></dl>
  3695. <dl>
  3696. <dt><a name="index-BFD_005fRELOC_005fMICROBLAZE_005f64_005fTLSTPREL"></a>: <strong>BFD_RELOC_MICROBLAZE_64_TLSTPREL</strong></dt>
  3697. <dd><p>This is a 64 bit reloc that stores 32-bit thread pointer relative offset
  3698. to two words (uses imm instruction).
  3699. </p></dd></dl>
  3700. <dl>
  3701. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fRELOC_005fSTART"></a>: <strong>BFD_RELOC_AARCH64_RELOC_START</strong></dt>
  3702. <dd><p>AArch64 pseudo relocation code to mark the start of the AArch64
  3703. relocation enumerators. N.B. the order of the enumerators is
  3704. important as several tables in the AArch64 bfd backend are indexed
  3705. by these enumerators; make sure they are all synced.
  3706. </p></dd></dl>
  3707. <dl>
  3708. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fNULL"></a>: <strong>BFD_RELOC_AARCH64_NULL</strong></dt>
  3709. <dd><p>Deprecated AArch64 null relocation code.
  3710. </p></dd></dl>
  3711. <dl>
  3712. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fNONE"></a>: <strong>BFD_RELOC_AARCH64_NONE</strong></dt>
  3713. <dd><p>AArch64 null relocation code.
  3714. </p></dd></dl>
  3715. <dl>
  3716. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005f64"></a>: <strong>BFD_RELOC_AARCH64_64</strong></dt>
  3717. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005f32"></a>: <strong>BFD_RELOC_AARCH64_32</strong></dt>
  3718. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005f16"></a>: <strong>BFD_RELOC_AARCH64_16</strong></dt>
  3719. <dd><p>Basic absolute relocations of N bits. These are equivalent to
  3720. BFD_RELOC_N and they were added to assist the indexing of the howto
  3721. table.
  3722. </p></dd></dl>
  3723. <dl>
  3724. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005f64_005fPCREL"></a>: <strong>BFD_RELOC_AARCH64_64_PCREL</strong></dt>
  3725. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005f32_005fPCREL"></a>: <strong>BFD_RELOC_AARCH64_32_PCREL</strong></dt>
  3726. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005f16_005fPCREL"></a>: <strong>BFD_RELOC_AARCH64_16_PCREL</strong></dt>
  3727. <dd><p>PC-relative relocations. These are equivalent to BFD_RELOC_N_PCREL
  3728. and they were added to assist the indexing of the howto table.
  3729. </p></dd></dl>
  3730. <dl>
  3731. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG0"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G0</strong></dt>
  3732. <dd><p>AArch64 MOV[NZK] instruction with most significant bits 0 to 15
  3733. of an unsigned address/value.
  3734. </p></dd></dl>
  3735. <dl>
  3736. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG0_005fNC"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G0_NC</strong></dt>
  3737. <dd><p>AArch64 MOV[NZK] instruction with less significant bits 0 to 15 of
  3738. an address/value. No overflow checking.
  3739. </p></dd></dl>
  3740. <dl>
  3741. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG1"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G1</strong></dt>
  3742. <dd><p>AArch64 MOV[NZK] instruction with most significant bits 16 to 31
  3743. of an unsigned address/value.
  3744. </p></dd></dl>
  3745. <dl>
  3746. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG1_005fNC"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G1_NC</strong></dt>
  3747. <dd><p>AArch64 MOV[NZK] instruction with less significant bits 16 to 31
  3748. of an address/value. No overflow checking.
  3749. </p></dd></dl>
  3750. <dl>
  3751. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG2"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G2</strong></dt>
  3752. <dd><p>AArch64 MOV[NZK] instruction with most significant bits 32 to 47
  3753. of an unsigned address/value.
  3754. </p></dd></dl>
  3755. <dl>
  3756. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG2_005fNC"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G2_NC</strong></dt>
  3757. <dd><p>AArch64 MOV[NZK] instruction with less significant bits 32 to 47
  3758. of an address/value. No overflow checking.
  3759. </p></dd></dl>
  3760. <dl>
  3761. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG3"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G3</strong></dt>
  3762. <dd><p>AArch64 MOV[NZK] instruction with most signficant bits 48 to 64
  3763. of a signed or unsigned address/value.
  3764. </p></dd></dl>
  3765. <dl>
  3766. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG0_005fS"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G0_S</strong></dt>
  3767. <dd><p>AArch64 MOV[NZ] instruction with most significant bits 0 to 15
  3768. of a signed value. Changes instruction to MOVZ or MOVN depending on the
  3769. value&rsquo;s sign.
  3770. </p></dd></dl>
  3771. <dl>
  3772. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG1_005fS"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G1_S</strong></dt>
  3773. <dd><p>AArch64 MOV[NZ] instruction with most significant bits 16 to 31
  3774. of a signed value. Changes instruction to MOVZ or MOVN depending on the
  3775. value&rsquo;s sign.
  3776. </p></dd></dl>
  3777. <dl>
  3778. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fG2_005fS"></a>: <strong>BFD_RELOC_AARCH64_MOVW_G2_S</strong></dt>
  3779. <dd><p>AArch64 MOV[NZ] instruction with most significant bits 32 to 47
  3780. of a signed value. Changes instruction to MOVZ or MOVN depending on the
  3781. value&rsquo;s sign.
  3782. </p></dd></dl>
  3783. <dl>
  3784. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLD_005fLO19_005fPCREL"></a>: <strong>BFD_RELOC_AARCH64_LD_LO19_PCREL</strong></dt>
  3785. <dd><p>AArch64 Load Literal instruction, holding a 19 bit pc-relative word
  3786. offset. The lowest two bits must be zero and are not stored in the
  3787. instruction, giving a 21 bit signed byte offset.
  3788. </p></dd></dl>
  3789. <dl>
  3790. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fADR_005fLO21_005fPCREL"></a>: <strong>BFD_RELOC_AARCH64_ADR_LO21_PCREL</strong></dt>
  3791. <dd><p>AArch64 ADR instruction, holding a simple 21 bit pc-relative byte offset.
  3792. </p></dd></dl>
  3793. <dl>
  3794. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fADR_005fHI21_005fPCREL"></a>: <strong>BFD_RELOC_AARCH64_ADR_HI21_PCREL</strong></dt>
  3795. <dd><p>AArch64 ADRP instruction, with bits 12 to 32 of a pc-relative page
  3796. offset, giving a 4KB aligned page base address.
  3797. </p></dd></dl>
  3798. <dl>
  3799. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fADR_005fHI21_005fNC_005fPCREL"></a>: <strong>BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL</strong></dt>
  3800. <dd><p>AArch64 ADRP instruction, with bits 12 to 32 of a pc-relative page
  3801. offset, giving a 4KB aligned page base address, but with no overflow
  3802. checking.
  3803. </p></dd></dl>
  3804. <dl>
  3805. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fADD_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_ADD_LO12</strong></dt>
  3806. <dd><p>AArch64 ADD immediate instruction, holding bits 0 to 11 of the address.
  3807. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
  3808. </p></dd></dl>
  3809. <dl>
  3810. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLDST8_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_LDST8_LO12</strong></dt>
  3811. <dd><p>AArch64 8-bit load/store instruction, holding bits 0 to 11 of the
  3812. address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
  3813. </p></dd></dl>
  3814. <dl>
  3815. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTSTBR14"></a>: <strong>BFD_RELOC_AARCH64_TSTBR14</strong></dt>
  3816. <dd><p>AArch64 14 bit pc-relative test bit and branch.
  3817. The lowest two bits must be zero and are not stored in the instruction,
  3818. giving a 16 bit signed byte offset.
  3819. </p></dd></dl>
  3820. <dl>
  3821. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fBRANCH19"></a>: <strong>BFD_RELOC_AARCH64_BRANCH19</strong></dt>
  3822. <dd><p>AArch64 19 bit pc-relative conditional branch and compare &amp; branch.
  3823. The lowest two bits must be zero and are not stored in the instruction,
  3824. giving a 21 bit signed byte offset.
  3825. </p></dd></dl>
  3826. <dl>
  3827. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fJUMP26"></a>: <strong>BFD_RELOC_AARCH64_JUMP26</strong></dt>
  3828. <dd><p>AArch64 26 bit pc-relative unconditional branch.
  3829. The lowest two bits must be zero and are not stored in the instruction,
  3830. giving a 28 bit signed byte offset.
  3831. </p></dd></dl>
  3832. <dl>
  3833. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fCALL26"></a>: <strong>BFD_RELOC_AARCH64_CALL26</strong></dt>
  3834. <dd><p>AArch64 26 bit pc-relative unconditional branch and link.
  3835. The lowest two bits must be zero and are not stored in the instruction,
  3836. giving a 28 bit signed byte offset.
  3837. </p></dd></dl>
  3838. <dl>
  3839. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLDST16_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_LDST16_LO12</strong></dt>
  3840. <dd><p>AArch64 16-bit load/store instruction, holding bits 0 to 11 of the
  3841. address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
  3842. </p></dd></dl>
  3843. <dl>
  3844. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLDST32_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_LDST32_LO12</strong></dt>
  3845. <dd><p>AArch64 32-bit load/store instruction, holding bits 0 to 11 of the
  3846. address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
  3847. </p></dd></dl>
  3848. <dl>
  3849. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLDST64_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_LDST64_LO12</strong></dt>
  3850. <dd><p>AArch64 64-bit load/store instruction, holding bits 0 to 11 of the
  3851. address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
  3852. </p></dd></dl>
  3853. <dl>
  3854. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLDST128_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_LDST128_LO12</strong></dt>
  3855. <dd><p>AArch64 128-bit load/store instruction, holding bits 0 to 11 of the
  3856. address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
  3857. </p></dd></dl>
  3858. <dl>
  3859. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fGOT_005fLD_005fPREL19"></a>: <strong>BFD_RELOC_AARCH64_GOT_LD_PREL19</strong></dt>
  3860. <dd><p>AArch64 Load Literal instruction, holding a 19 bit PC relative word
  3861. offset of the global offset table entry for a symbol. The lowest two
  3862. bits must be zero and are not stored in the instruction, giving a 21
  3863. bit signed byte offset. This relocation type requires signed overflow
  3864. checking.
  3865. </p></dd></dl>
  3866. <dl>
  3867. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fADR_005fGOT_005fPAGE"></a>: <strong>BFD_RELOC_AARCH64_ADR_GOT_PAGE</strong></dt>
  3868. <dd><p>Get to the page base of the global offset table entry for a symbol as
  3869. part of an ADRP instruction using a 21 bit PC relative value.Used in
  3870. conjunction with BFD_RELOC_AARCH64_LD64_GOT_LO12_NC.
  3871. </p></dd></dl>
  3872. <dl>
  3873. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLD64_005fGOT_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_LD64_GOT_LO12_NC</strong></dt>
  3874. <dd><p>Unsigned 12 bit byte offset for 64 bit load/store from the page of
  3875. the GOT entry for this symbol. Used in conjunction with
  3876. BFD_RELOC_AARCH64_ADR_GOTPAGE. Valid in LP64 ABI only.
  3877. </p></dd></dl>
  3878. <dl>
  3879. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLD32_005fGOT_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_LD32_GOT_LO12_NC</strong></dt>
  3880. <dd><p>Unsigned 12 bit byte offset for 32 bit load/store from the page of
  3881. the GOT entry for this symbol. Used in conjunction with
  3882. BFD_RELOC_AARCH64_ADR_GOTPAGE. Valid in ILP32 ABI only.
  3883. </p></dd></dl>
  3884. <dl>
  3885. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fGOTOFF_005fG0_005fNC"></a>: <strong>BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC</strong></dt>
  3886. <dd><p>Unsigned 16 bit byte offset for 64 bit load/store from the GOT entry
  3887. for this symbol. Valid in LP64 ABI only.
  3888. </p></dd></dl>
  3889. <dl>
  3890. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fMOVW_005fGOTOFF_005fG1"></a>: <strong>BFD_RELOC_AARCH64_MOVW_GOTOFF_G1</strong></dt>
  3891. <dd><p>Unsigned 16 bit byte higher offset for 64 bit load/store from the GOT entry
  3892. for this symbol. Valid in LP64 ABI only.
  3893. </p></dd></dl>
  3894. <dl>
  3895. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLD64_005fGOTOFF_005fLO15"></a>: <strong>BFD_RELOC_AARCH64_LD64_GOTOFF_LO15</strong></dt>
  3896. <dd><p>Unsigned 15 bit byte offset for 64 bit load/store from the page of
  3897. the GOT entry for this symbol. Valid in LP64 ABI only.
  3898. </p></dd></dl>
  3899. <dl>
  3900. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLD32_005fGOTPAGE_005fLO14"></a>: <strong>BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14</strong></dt>
  3901. <dd><p>Scaled 14 bit byte offset to the page base of the global offset table.
  3902. </p></dd></dl>
  3903. <dl>
  3904. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLD64_005fGOTPAGE_005fLO15"></a>: <strong>BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15</strong></dt>
  3905. <dd><p>Scaled 15 bit byte offset to the page base of the global offset table.
  3906. </p></dd></dl>
  3907. <dl>
  3908. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSGD_005fADR_005fPAGE21"></a>: <strong>BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21</strong></dt>
  3909. <dd><p>Get to the page base of the global offset table entry for a symbols
  3910. tls_index structure as part of an adrp instruction using a 21 bit PC
  3911. relative value. Used in conjunction with
  3912. BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC.
  3913. </p></dd></dl>
  3914. <dl>
  3915. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSGD_005fADR_005fPREL21"></a>: <strong>BFD_RELOC_AARCH64_TLSGD_ADR_PREL21</strong></dt>
  3916. <dd><p>AArch64 TLS General Dynamic
  3917. </p></dd></dl>
  3918. <dl>
  3919. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSGD_005fADD_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC</strong></dt>
  3920. <dd><p>Unsigned 12 bit byte offset to global offset table entry for a symbols
  3921. tls_index structure. Used in conjunction with
  3922. BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21.
  3923. </p></dd></dl>
  3924. <dl>
  3925. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSGD_005fMOVW_005fG0_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC</strong></dt>
  3926. <dd><p>AArch64 TLS General Dynamic relocation.
  3927. </p></dd></dl>
  3928. <dl>
  3929. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSGD_005fMOVW_005fG1"></a>: <strong>BFD_RELOC_AARCH64_TLSGD_MOVW_G1</strong></dt>
  3930. <dd><p>AArch64 TLS General Dynamic relocation.
  3931. </p></dd></dl>
  3932. <dl>
  3933. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSIE_005fADR_005fGOTTPREL_005fPAGE21"></a>: <strong>BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21</strong></dt>
  3934. <dd><p>AArch64 TLS INITIAL EXEC relocation.
  3935. </p></dd></dl>
  3936. <dl>
  3937. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSIE_005fLD64_005fGOTTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC</strong></dt>
  3938. <dd><p>AArch64 TLS INITIAL EXEC relocation.
  3939. </p></dd></dl>
  3940. <dl>
  3941. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSIE_005fLD32_005fGOTTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC</strong></dt>
  3942. <dd><p>AArch64 TLS INITIAL EXEC relocation.
  3943. </p></dd></dl>
  3944. <dl>
  3945. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSIE_005fLD_005fGOTTPREL_005fPREL19"></a>: <strong>BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19</strong></dt>
  3946. <dd><p>AArch64 TLS INITIAL EXEC relocation.
  3947. </p></dd></dl>
  3948. <dl>
  3949. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSIE_005fMOVW_005fGOTTPREL_005fG0_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC</strong></dt>
  3950. <dd><p>AArch64 TLS INITIAL EXEC relocation.
  3951. </p></dd></dl>
  3952. <dl>
  3953. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSIE_005fMOVW_005fGOTTPREL_005fG1"></a>: <strong>BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1</strong></dt>
  3954. <dd><p>AArch64 TLS INITIAL EXEC relocation.
  3955. </p></dd></dl>
  3956. <dl>
  3957. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fADD_005fDTPREL_005fHI12"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12</strong></dt>
  3958. <dd><p>bit[23:12] of byte offset to module TLS base address.
  3959. </p></dd></dl>
  3960. <dl>
  3961. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fADD_005fDTPREL_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12</strong></dt>
  3962. <dd><p>Unsigned 12 bit byte offset to module TLS base address.
  3963. </p></dd></dl>
  3964. <dl>
  3965. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fADD_005fDTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC</strong></dt>
  3966. <dd><p>No overflow check version of BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12.
  3967. </p></dd></dl>
  3968. <dl>
  3969. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fADD_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC</strong></dt>
  3970. <dd><p>Unsigned 12 bit byte offset to global offset table entry for a symbols
  3971. tls_index structure. Used in conjunction with
  3972. BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21.
  3973. </p></dd></dl>
  3974. <dl>
  3975. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fADR_005fPAGE21"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21</strong></dt>
  3976. <dd><p>GOT entry page address for AArch64 TLS Local Dynamic, used with ADRP
  3977. instruction.
  3978. </p></dd></dl>
  3979. <dl>
  3980. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fADR_005fPREL21"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_ADR_PREL21</strong></dt>
  3981. <dd><p>GOT entry address for AArch64 TLS Local Dynamic, used with ADR instruction.
  3982. </p></dd></dl>
  3983. <dl>
  3984. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST16_005fDTPREL_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12</strong></dt>
  3985. <dd><p>bit[11:1] of byte offset to module TLS base address, encoded in ldst
  3986. instructions.
  3987. </p></dd></dl>
  3988. <dl>
  3989. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST16_005fDTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC</strong></dt>
  3990. <dd><p>Similar as BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12, but no overflow check.
  3991. </p></dd></dl>
  3992. <dl>
  3993. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST32_005fDTPREL_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12</strong></dt>
  3994. <dd><p>bit[11:2] of byte offset to module TLS base address, encoded in ldst
  3995. instructions.
  3996. </p></dd></dl>
  3997. <dl>
  3998. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST32_005fDTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC</strong></dt>
  3999. <dd><p>Similar as BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12, but no overflow check.
  4000. </p></dd></dl>
  4001. <dl>
  4002. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST64_005fDTPREL_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12</strong></dt>
  4003. <dd><p>bit[11:3] of byte offset to module TLS base address, encoded in ldst
  4004. instructions.
  4005. </p></dd></dl>
  4006. <dl>
  4007. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST64_005fDTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC</strong></dt>
  4008. <dd><p>Similar as BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12, but no overflow check.
  4009. </p></dd></dl>
  4010. <dl>
  4011. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST8_005fDTPREL_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12</strong></dt>
  4012. <dd><p>bit[11:0] of byte offset to module TLS base address, encoded in ldst
  4013. instructions.
  4014. </p></dd></dl>
  4015. <dl>
  4016. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST8_005fDTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC</strong></dt>
  4017. <dd><p>Similar as BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12, but no overflow check.
  4018. </p></dd></dl>
  4019. <dl>
  4020. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fMOVW_005fDTPREL_005fG0"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0</strong></dt>
  4021. <dd><p>bit[15:0] of byte offset to module TLS base address.
  4022. </p></dd></dl>
  4023. <dl>
  4024. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fMOVW_005fDTPREL_005fG0_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC</strong></dt>
  4025. <dd><p>No overflow check version of BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0
  4026. </p></dd></dl>
  4027. <dl>
  4028. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fMOVW_005fDTPREL_005fG1"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1</strong></dt>
  4029. <dd><p>bit[31:16] of byte offset to module TLS base address.
  4030. </p></dd></dl>
  4031. <dl>
  4032. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fMOVW_005fDTPREL_005fG1_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC</strong></dt>
  4033. <dd><p>No overflow check version of BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1
  4034. </p></dd></dl>
  4035. <dl>
  4036. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fMOVW_005fDTPREL_005fG2"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2</strong></dt>
  4037. <dd><p>bit[47:32] of byte offset to module TLS base address.
  4038. </p></dd></dl>
  4039. <dl>
  4040. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLE_005fMOVW_005fTPREL_005fG2"></a>: <strong>BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2</strong></dt>
  4041. <dd><p>AArch64 TLS LOCAL EXEC relocation.
  4042. </p></dd></dl>
  4043. <dl>
  4044. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLE_005fMOVW_005fTPREL_005fG1"></a>: <strong>BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1</strong></dt>
  4045. <dd><p>AArch64 TLS LOCAL EXEC relocation.
  4046. </p></dd></dl>
  4047. <dl>
  4048. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLE_005fMOVW_005fTPREL_005fG1_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC</strong></dt>
  4049. <dd><p>AArch64 TLS LOCAL EXEC relocation.
  4050. </p></dd></dl>
  4051. <dl>
  4052. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLE_005fMOVW_005fTPREL_005fG0"></a>: <strong>BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0</strong></dt>
  4053. <dd><p>AArch64 TLS LOCAL EXEC relocation.
  4054. </p></dd></dl>
  4055. <dl>
  4056. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLE_005fMOVW_005fTPREL_005fG0_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC</strong></dt>
  4057. <dd><p>AArch64 TLS LOCAL EXEC relocation.
  4058. </p></dd></dl>
  4059. <dl>
  4060. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLE_005fADD_005fTPREL_005fHI12"></a>: <strong>BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12</strong></dt>
  4061. <dd><p>AArch64 TLS LOCAL EXEC relocation.
  4062. </p></dd></dl>
  4063. <dl>
  4064. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLE_005fADD_005fTPREL_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12</strong></dt>
  4065. <dd><p>AArch64 TLS LOCAL EXEC relocation.
  4066. </p></dd></dl>
  4067. <dl>
  4068. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLE_005fADD_005fTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC</strong></dt>
  4069. <dd><p>AArch64 TLS LOCAL EXEC relocation.
  4070. </p></dd></dl>
  4071. <dl>
  4072. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fLD_005fPREL19"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_LD_PREL19</strong></dt>
  4073. <dd><p>AArch64 TLS DESC relocation.
  4074. </p></dd></dl>
  4075. <dl>
  4076. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fADR_005fPREL21"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21</strong></dt>
  4077. <dd><p>AArch64 TLS DESC relocation.
  4078. </p></dd></dl>
  4079. <dl>
  4080. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fADR_005fPAGE21"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21</strong></dt>
  4081. <dd><p>AArch64 TLS DESC relocation.
  4082. </p></dd></dl>
  4083. <dl>
  4084. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fLD64_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC</strong></dt>
  4085. <dd><p>AArch64 TLS DESC relocation.
  4086. </p></dd></dl>
  4087. <dl>
  4088. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fLD32_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC</strong></dt>
  4089. <dd><p>AArch64 TLS DESC relocation.
  4090. </p></dd></dl>
  4091. <dl>
  4092. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fADD_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC</strong></dt>
  4093. <dd><p>AArch64 TLS DESC relocation.
  4094. </p></dd></dl>
  4095. <dl>
  4096. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fOFF_005fG1"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_OFF_G1</strong></dt>
  4097. <dd><p>AArch64 TLS DESC relocation.
  4098. </p></dd></dl>
  4099. <dl>
  4100. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fOFF_005fG0_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC</strong></dt>
  4101. <dd><p>AArch64 TLS DESC relocation.
  4102. </p></dd></dl>
  4103. <dl>
  4104. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fLDR"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_LDR</strong></dt>
  4105. <dd><p>AArch64 TLS DESC relocation.
  4106. </p></dd></dl>
  4107. <dl>
  4108. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fADD"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_ADD</strong></dt>
  4109. <dd><p>AArch64 TLS DESC relocation.
  4110. </p></dd></dl>
  4111. <dl>
  4112. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fCALL"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_CALL</strong></dt>
  4113. <dd><p>AArch64 TLS DESC relocation.
  4114. </p></dd></dl>
  4115. <dl>
  4116. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fCOPY"></a>: <strong>BFD_RELOC_AARCH64_COPY</strong></dt>
  4117. <dd><p>AArch64 TLS relocation.
  4118. </p></dd></dl>
  4119. <dl>
  4120. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_AARCH64_GLOB_DAT</strong></dt>
  4121. <dd><p>AArch64 TLS relocation.
  4122. </p></dd></dl>
  4123. <dl>
  4124. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fJUMP_005fSLOT"></a>: <strong>BFD_RELOC_AARCH64_JUMP_SLOT</strong></dt>
  4125. <dd><p>AArch64 TLS relocation.
  4126. </p></dd></dl>
  4127. <dl>
  4128. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fRELATIVE"></a>: <strong>BFD_RELOC_AARCH64_RELATIVE</strong></dt>
  4129. <dd><p>AArch64 TLS relocation.
  4130. </p></dd></dl>
  4131. <dl>
  4132. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLS_005fDTPMOD"></a>: <strong>BFD_RELOC_AARCH64_TLS_DTPMOD</strong></dt>
  4133. <dd><p>AArch64 TLS relocation.
  4134. </p></dd></dl>
  4135. <dl>
  4136. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLS_005fDTPREL"></a>: <strong>BFD_RELOC_AARCH64_TLS_DTPREL</strong></dt>
  4137. <dd><p>AArch64 TLS relocation.
  4138. </p></dd></dl>
  4139. <dl>
  4140. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLS_005fTPREL"></a>: <strong>BFD_RELOC_AARCH64_TLS_TPREL</strong></dt>
  4141. <dd><p>AArch64 TLS relocation.
  4142. </p></dd></dl>
  4143. <dl>
  4144. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC</strong></dt>
  4145. <dd><p>AArch64 TLS relocation.
  4146. </p></dd></dl>
  4147. <dl>
  4148. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fIRELATIVE"></a>: <strong>BFD_RELOC_AARCH64_IRELATIVE</strong></dt>
  4149. <dd><p>AArch64 support for STT_GNU_IFUNC.
  4150. </p></dd></dl>
  4151. <dl>
  4152. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fRELOC_005fEND"></a>: <strong>BFD_RELOC_AARCH64_RELOC_END</strong></dt>
  4153. <dd><p>AArch64 pseudo relocation code to mark the end of the AArch64
  4154. relocation enumerators that have direct mapping to ELF reloc codes.
  4155. There are a few more enumerators after this one; those are mainly
  4156. used by the AArch64 assembler for the internal fixup or to select
  4157. one of the above enumerators.
  4158. </p></dd></dl>
  4159. <dl>
  4160. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fGAS_005fINTERNAL_005fFIXUP"></a>: <strong>BFD_RELOC_AARCH64_GAS_INTERNAL_FIXUP</strong></dt>
  4161. <dd><p>AArch64 pseudo relocation code to be used internally by the AArch64
  4162. assembler and not (currently) written to any object files.
  4163. </p></dd></dl>
  4164. <dl>
  4165. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLDST_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_LDST_LO12</strong></dt>
  4166. <dd><p>AArch64 unspecified load/store instruction, holding bits 0 to 11 of the
  4167. address. Used in conjunction with BFD_RELOC_AARCH64_ADR_HI21_PCREL.
  4168. </p></dd></dl>
  4169. <dl>
  4170. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST_005fDTPREL_005fLO12"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12</strong></dt>
  4171. <dd><p>AArch64 pseudo relocation code for TLS local dynamic mode. It&rsquo;s to be
  4172. used internally by the AArch64 assembler and not (currently) written to
  4173. any object files.
  4174. </p></dd></dl>
  4175. <dl>
  4176. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSLD_005fLDST_005fDTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12_NC</strong></dt>
  4177. <dd><p>Similar as BFD_RELOC_AARCH64_TLSLD_LDST_DTPREL_LO12, but no overflow check.
  4178. </p></dd></dl>
  4179. <dl>
  4180. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fLD_005fGOT_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_LD_GOT_LO12_NC</strong></dt>
  4181. <dd><p>AArch64 pseudo relocation code to be used internally by the AArch64
  4182. assembler and not (currently) written to any object files.
  4183. </p></dd></dl>
  4184. <dl>
  4185. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSIE_005fLD_005fGOTTPREL_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_LO12_NC</strong></dt>
  4186. <dd><p>AArch64 pseudo relocation code to be used internally by the AArch64
  4187. assembler and not (currently) written to any object files.
  4188. </p></dd></dl>
  4189. <dl>
  4190. <dt><a name="index-BFD_005fRELOC_005fAARCH64_005fTLSDESC_005fLD_005fLO12_005fNC"></a>: <strong>BFD_RELOC_AARCH64_TLSDESC_LD_LO12_NC</strong></dt>
  4191. <dd><p>AArch64 pseudo relocation code to be used internally by the AArch64
  4192. assembler and not (currently) written to any object files.
  4193. </p></dd></dl>
  4194. <dl>
  4195. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fCOPY"></a>: <strong>BFD_RELOC_TILEPRO_COPY</strong></dt>
  4196. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_TILEPRO_GLOB_DAT</strong></dt>
  4197. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_TILEPRO_JMP_SLOT</strong></dt>
  4198. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fRELATIVE"></a>: <strong>BFD_RELOC_TILEPRO_RELATIVE</strong></dt>
  4199. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fBROFF_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_BROFF_X1</strong></dt>
  4200. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fJOFFLONG_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_JOFFLONG_X1</strong></dt>
  4201. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fJOFFLONG_005fX1_005fPLT"></a>: <strong>BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT</strong></dt>
  4202. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM8_005fX0"></a>: <strong>BFD_RELOC_TILEPRO_IMM8_X0</strong></dt>
  4203. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM8_005fY0"></a>: <strong>BFD_RELOC_TILEPRO_IMM8_Y0</strong></dt>
  4204. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM8_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_IMM8_X1</strong></dt>
  4205. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM8_005fY1"></a>: <strong>BFD_RELOC_TILEPRO_IMM8_Y1</strong></dt>
  4206. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fDEST_005fIMM8_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_DEST_IMM8_X1</strong></dt>
  4207. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fMT_005fIMM15_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_MT_IMM15_X1</strong></dt>
  4208. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fMF_005fIMM15_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_MF_IMM15_X1</strong></dt>
  4209. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0</strong></dt>
  4210. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1</strong></dt>
  4211. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_LO</strong></dt>
  4212. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_LO</strong></dt>
  4213. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_HI</strong></dt>
  4214. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_HI</strong></dt>
  4215. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_HA</strong></dt>
  4216. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_HA</strong></dt>
  4217. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fPCREL"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_PCREL</strong></dt>
  4218. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fPCREL"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_PCREL</strong></dt>
  4219. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fLO_005fPCREL"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL</strong></dt>
  4220. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fLO_005fPCREL"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL</strong></dt>
  4221. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fHI_005fPCREL"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL</strong></dt>
  4222. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fHI_005fPCREL"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL</strong></dt>
  4223. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fHA_005fPCREL"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL</strong></dt>
  4224. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fHA_005fPCREL"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL</strong></dt>
  4225. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fGOT"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_GOT</strong></dt>
  4226. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fGOT"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_GOT</strong></dt>
  4227. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fGOT_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO</strong></dt>
  4228. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fGOT_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO</strong></dt>
  4229. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fGOT_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI</strong></dt>
  4230. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fGOT_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI</strong></dt>
  4231. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fGOT_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA</strong></dt>
  4232. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fGOT_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA</strong></dt>
  4233. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fMMSTART_005fX0"></a>: <strong>BFD_RELOC_TILEPRO_MMSTART_X0</strong></dt>
  4234. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fMMEND_005fX0"></a>: <strong>BFD_RELOC_TILEPRO_MMEND_X0</strong></dt>
  4235. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fMMSTART_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_MMSTART_X1</strong></dt>
  4236. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fMMEND_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_MMEND_X1</strong></dt>
  4237. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fSHAMT_005fX0"></a>: <strong>BFD_RELOC_TILEPRO_SHAMT_X0</strong></dt>
  4238. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fSHAMT_005fX1"></a>: <strong>BFD_RELOC_TILEPRO_SHAMT_X1</strong></dt>
  4239. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fSHAMT_005fY0"></a>: <strong>BFD_RELOC_TILEPRO_SHAMT_Y0</strong></dt>
  4240. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fSHAMT_005fY1"></a>: <strong>BFD_RELOC_TILEPRO_SHAMT_Y1</strong></dt>
  4241. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fTLS_005fGD_005fCALL"></a>: <strong>BFD_RELOC_TILEPRO_TLS_GD_CALL</strong></dt>
  4242. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM8_005fX0_005fTLS_005fGD_005fADD"></a>: <strong>BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD</strong></dt>
  4243. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM8_005fX1_005fTLS_005fGD_005fADD"></a>: <strong>BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD</strong></dt>
  4244. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM8_005fY0_005fTLS_005fGD_005fADD"></a>: <strong>BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD</strong></dt>
  4245. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM8_005fY1_005fTLS_005fGD_005fADD"></a>: <strong>BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD</strong></dt>
  4246. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fTLS_005fIE_005fLOAD"></a>: <strong>BFD_RELOC_TILEPRO_TLS_IE_LOAD</strong></dt>
  4247. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fGD"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD</strong></dt>
  4248. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fGD"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD</strong></dt>
  4249. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fGD_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO</strong></dt>
  4250. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fGD_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO</strong></dt>
  4251. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fGD_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI</strong></dt>
  4252. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fGD_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI</strong></dt>
  4253. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fGD_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA</strong></dt>
  4254. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fGD_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA</strong></dt>
  4255. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fIE"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE</strong></dt>
  4256. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fIE"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE</strong></dt>
  4257. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fIE_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO</strong></dt>
  4258. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fIE_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO</strong></dt>
  4259. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fIE_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI</strong></dt>
  4260. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fIE_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI</strong></dt>
  4261. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fIE_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA</strong></dt>
  4262. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fIE_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA</strong></dt>
  4263. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fTLS_005fDTPMOD32"></a>: <strong>BFD_RELOC_TILEPRO_TLS_DTPMOD32</strong></dt>
  4264. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fTLS_005fDTPOFF32"></a>: <strong>BFD_RELOC_TILEPRO_TLS_DTPOFF32</strong></dt>
  4265. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fTLS_005fTPOFF32"></a>: <strong>BFD_RELOC_TILEPRO_TLS_TPOFF32</strong></dt>
  4266. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fLE"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE</strong></dt>
  4267. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fLE"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE</strong></dt>
  4268. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fLE_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO</strong></dt>
  4269. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fLE_005fLO"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO</strong></dt>
  4270. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fLE_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI</strong></dt>
  4271. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fLE_005fHI"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI</strong></dt>
  4272. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX0_005fTLS_005fLE_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA</strong></dt>
  4273. <dt><a name="index-BFD_005fRELOC_005fTILEPRO_005fIMM16_005fX1_005fTLS_005fLE_005fHA"></a>: <strong>BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA</strong></dt>
  4274. <dd><p>Tilera TILEPro Relocations.
  4275. </p></dd></dl>
  4276. <dl>
  4277. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fHW0"></a>: <strong>BFD_RELOC_TILEGX_HW0</strong></dt>
  4278. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fHW1"></a>: <strong>BFD_RELOC_TILEGX_HW1</strong></dt>
  4279. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fHW2"></a>: <strong>BFD_RELOC_TILEGX_HW2</strong></dt>
  4280. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fHW3"></a>: <strong>BFD_RELOC_TILEGX_HW3</strong></dt>
  4281. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fHW0_005fLAST"></a>: <strong>BFD_RELOC_TILEGX_HW0_LAST</strong></dt>
  4282. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fHW1_005fLAST"></a>: <strong>BFD_RELOC_TILEGX_HW1_LAST</strong></dt>
  4283. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fHW2_005fLAST"></a>: <strong>BFD_RELOC_TILEGX_HW2_LAST</strong></dt>
  4284. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fCOPY"></a>: <strong>BFD_RELOC_TILEGX_COPY</strong></dt>
  4285. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fGLOB_005fDAT"></a>: <strong>BFD_RELOC_TILEGX_GLOB_DAT</strong></dt>
  4286. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fJMP_005fSLOT"></a>: <strong>BFD_RELOC_TILEGX_JMP_SLOT</strong></dt>
  4287. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fRELATIVE"></a>: <strong>BFD_RELOC_TILEGX_RELATIVE</strong></dt>
  4288. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fBROFF_005fX1"></a>: <strong>BFD_RELOC_TILEGX_BROFF_X1</strong></dt>
  4289. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fJUMPOFF_005fX1"></a>: <strong>BFD_RELOC_TILEGX_JUMPOFF_X1</strong></dt>
  4290. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fJUMPOFF_005fX1_005fPLT"></a>: <strong>BFD_RELOC_TILEGX_JUMPOFF_X1_PLT</strong></dt>
  4291. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fX0"></a>: <strong>BFD_RELOC_TILEGX_IMM8_X0</strong></dt>
  4292. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fY0"></a>: <strong>BFD_RELOC_TILEGX_IMM8_Y0</strong></dt>
  4293. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fX1"></a>: <strong>BFD_RELOC_TILEGX_IMM8_X1</strong></dt>
  4294. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fY1"></a>: <strong>BFD_RELOC_TILEGX_IMM8_Y1</strong></dt>
  4295. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fDEST_005fIMM8_005fX1"></a>: <strong>BFD_RELOC_TILEGX_DEST_IMM8_X1</strong></dt>
  4296. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fMT_005fIMM14_005fX1"></a>: <strong>BFD_RELOC_TILEGX_MT_IMM14_X1</strong></dt>
  4297. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fMF_005fIMM14_005fX1"></a>: <strong>BFD_RELOC_TILEGX_MF_IMM14_X1</strong></dt>
  4298. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fMMSTART_005fX0"></a>: <strong>BFD_RELOC_TILEGX_MMSTART_X0</strong></dt>
  4299. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fMMEND_005fX0"></a>: <strong>BFD_RELOC_TILEGX_MMEND_X0</strong></dt>
  4300. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fSHAMT_005fX0"></a>: <strong>BFD_RELOC_TILEGX_SHAMT_X0</strong></dt>
  4301. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fSHAMT_005fX1"></a>: <strong>BFD_RELOC_TILEGX_SHAMT_X1</strong></dt>
  4302. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fSHAMT_005fY0"></a>: <strong>BFD_RELOC_TILEGX_SHAMT_Y0</strong></dt>
  4303. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fSHAMT_005fY1"></a>: <strong>BFD_RELOC_TILEGX_SHAMT_Y1</strong></dt>
  4304. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0</strong></dt>
  4305. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0</strong></dt>
  4306. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1</strong></dt>
  4307. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1</strong></dt>
  4308. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW2"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW2</strong></dt>
  4309. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW2"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW2</strong></dt>
  4310. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW3"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW3</strong></dt>
  4311. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW3"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW3</strong></dt>
  4312. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fLAST"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST</strong></dt>
  4313. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fLAST"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST</strong></dt>
  4314. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1_005fLAST"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST</strong></dt>
  4315. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1_005fLAST"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST</strong></dt>
  4316. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW2_005fLAST"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST</strong></dt>
  4317. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW2_005fLAST"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST</strong></dt>
  4318. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL</strong></dt>
  4319. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL</strong></dt>
  4320. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL</strong></dt>
  4321. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL</strong></dt>
  4322. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW2_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL</strong></dt>
  4323. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW2_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL</strong></dt>
  4324. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW3_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL</strong></dt>
  4325. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW3_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL</strong></dt>
  4326. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fLAST_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL</strong></dt>
  4327. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fLAST_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL</strong></dt>
  4328. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1_005fLAST_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL</strong></dt>
  4329. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1_005fLAST_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL</strong></dt>
  4330. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW2_005fLAST_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL</strong></dt>
  4331. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW2_005fLAST_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL</strong></dt>
  4332. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fGOT"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_GOT</strong></dt>
  4333. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fGOT"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_GOT</strong></dt>
  4334. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_PLT_PCREL</strong></dt>
  4335. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_PLT_PCREL</strong></dt>
  4336. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1_PLT_PCREL</strong></dt>
  4337. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1_PLT_PCREL</strong></dt>
  4338. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW2_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW2_PLT_PCREL</strong></dt>
  4339. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW2_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW2_PLT_PCREL</strong></dt>
  4340. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fLAST_005fGOT"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_GOT</strong></dt>
  4341. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fLAST_005fGOT"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_GOT</strong></dt>
  4342. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1_005fLAST_005fGOT"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_GOT</strong></dt>
  4343. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1_005fLAST_005fGOT"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_GOT</strong></dt>
  4344. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW3_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW3_PLT_PCREL</strong></dt>
  4345. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW3_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW3_PLT_PCREL</strong></dt>
  4346. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fTLS_005fGD"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD</strong></dt>
  4347. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fTLS_005fGD"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD</strong></dt>
  4348. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fTLS_005fLE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE</strong></dt>
  4349. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fTLS_005fLE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE</strong></dt>
  4350. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fLAST_005fTLS_005fLE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE</strong></dt>
  4351. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fLAST_005fTLS_005fLE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE</strong></dt>
  4352. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1_005fLAST_005fTLS_005fLE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE</strong></dt>
  4353. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1_005fLAST_005fTLS_005fLE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE</strong></dt>
  4354. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fLAST_005fTLS_005fGD"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD</strong></dt>
  4355. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fLAST_005fTLS_005fGD"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD</strong></dt>
  4356. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1_005fLAST_005fTLS_005fGD"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD</strong></dt>
  4357. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1_005fLAST_005fTLS_005fGD"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD</strong></dt>
  4358. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fTLS_005fIE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE</strong></dt>
  4359. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fTLS_005fIE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE</strong></dt>
  4360. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fLAST_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL</strong></dt>
  4361. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fLAST_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL</strong></dt>
  4362. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1_005fLAST_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL</strong></dt>
  4363. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1_005fLAST_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL</strong></dt>
  4364. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW2_005fLAST_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL</strong></dt>
  4365. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW2_005fLAST_005fPLT_005fPCREL"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL</strong></dt>
  4366. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW0_005fLAST_005fTLS_005fIE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE</strong></dt>
  4367. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW0_005fLAST_005fTLS_005fIE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE</strong></dt>
  4368. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX0_005fHW1_005fLAST_005fTLS_005fIE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE</strong></dt>
  4369. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM16_005fX1_005fHW1_005fLAST_005fTLS_005fIE"></a>: <strong>BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE</strong></dt>
  4370. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fTLS_005fDTPMOD64"></a>: <strong>BFD_RELOC_TILEGX_TLS_DTPMOD64</strong></dt>
  4371. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fTLS_005fDTPOFF64"></a>: <strong>BFD_RELOC_TILEGX_TLS_DTPOFF64</strong></dt>
  4372. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fTLS_005fTPOFF64"></a>: <strong>BFD_RELOC_TILEGX_TLS_TPOFF64</strong></dt>
  4373. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fTLS_005fDTPMOD32"></a>: <strong>BFD_RELOC_TILEGX_TLS_DTPMOD32</strong></dt>
  4374. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fTLS_005fDTPOFF32"></a>: <strong>BFD_RELOC_TILEGX_TLS_DTPOFF32</strong></dt>
  4375. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fTLS_005fTPOFF32"></a>: <strong>BFD_RELOC_TILEGX_TLS_TPOFF32</strong></dt>
  4376. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fTLS_005fGD_005fCALL"></a>: <strong>BFD_RELOC_TILEGX_TLS_GD_CALL</strong></dt>
  4377. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fX0_005fTLS_005fGD_005fADD"></a>: <strong>BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD</strong></dt>
  4378. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fX1_005fTLS_005fGD_005fADD"></a>: <strong>BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD</strong></dt>
  4379. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fY0_005fTLS_005fGD_005fADD"></a>: <strong>BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD</strong></dt>
  4380. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fY1_005fTLS_005fGD_005fADD"></a>: <strong>BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD</strong></dt>
  4381. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fTLS_005fIE_005fLOAD"></a>: <strong>BFD_RELOC_TILEGX_TLS_IE_LOAD</strong></dt>
  4382. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fX0_005fTLS_005fADD"></a>: <strong>BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD</strong></dt>
  4383. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fX1_005fTLS_005fADD"></a>: <strong>BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD</strong></dt>
  4384. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fY0_005fTLS_005fADD"></a>: <strong>BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD</strong></dt>
  4385. <dt><a name="index-BFD_005fRELOC_005fTILEGX_005fIMM8_005fY1_005fTLS_005fADD"></a>: <strong>BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD</strong></dt>
  4386. <dd><p>Tilera TILE-Gx Relocations.
  4387. </p></dd></dl>
  4388. <dl>
  4389. <dt><a name="index-BFD_005fRELOC_005fEPIPHANY_005fSIMM8"></a>: <strong>BFD_RELOC_EPIPHANY_SIMM8</strong></dt>
  4390. <dd><p>Adapteva EPIPHANY - 8 bit signed pc-relative displacement
  4391. </p></dd></dl>
  4392. <dl>
  4393. <dt><a name="index-BFD_005fRELOC_005fEPIPHANY_005fSIMM24"></a>: <strong>BFD_RELOC_EPIPHANY_SIMM24</strong></dt>
  4394. <dd><p>Adapteva EPIPHANY - 24 bit signed pc-relative displacement
  4395. </p></dd></dl>
  4396. <dl>
  4397. <dt><a name="index-BFD_005fRELOC_005fEPIPHANY_005fHIGH"></a>: <strong>BFD_RELOC_EPIPHANY_HIGH</strong></dt>
  4398. <dd><p>Adapteva EPIPHANY - 16 most-significant bits of absolute address
  4399. </p></dd></dl>
  4400. <dl>
  4401. <dt><a name="index-BFD_005fRELOC_005fEPIPHANY_005fLOW"></a>: <strong>BFD_RELOC_EPIPHANY_LOW</strong></dt>
  4402. <dd><p>Adapteva EPIPHANY - 16 least-significant bits of absolute address
  4403. </p></dd></dl>
  4404. <dl>
  4405. <dt><a name="index-BFD_005fRELOC_005fEPIPHANY_005fSIMM11"></a>: <strong>BFD_RELOC_EPIPHANY_SIMM11</strong></dt>
  4406. <dd><p>Adapteva EPIPHANY - 11 bit signed number - add/sub immediate
  4407. </p></dd></dl>
  4408. <dl>
  4409. <dt><a name="index-BFD_005fRELOC_005fEPIPHANY_005fIMM11"></a>: <strong>BFD_RELOC_EPIPHANY_IMM11</strong></dt>
  4410. <dd><p>Adapteva EPIPHANY - 11 bit sign-magnitude number (ld/st displacement)
  4411. </p></dd></dl>
  4412. <dl>
  4413. <dt><a name="index-BFD_005fRELOC_005fEPIPHANY_005fIMM8"></a>: <strong>BFD_RELOC_EPIPHANY_IMM8</strong></dt>
  4414. <dd><p>Adapteva EPIPHANY - 8 bit immediate for 16 bit mov instruction.
  4415. </p></dd></dl>
  4416. <dl>
  4417. <dt><a name="index-BFD_005fRELOC_005fVISIUM_005fHI16"></a>: <strong>BFD_RELOC_VISIUM_HI16</strong></dt>
  4418. <dt><a name="index-BFD_005fRELOC_005fVISIUM_005fLO16"></a>: <strong>BFD_RELOC_VISIUM_LO16</strong></dt>
  4419. <dt><a name="index-BFD_005fRELOC_005fVISIUM_005fIM16"></a>: <strong>BFD_RELOC_VISIUM_IM16</strong></dt>
  4420. <dt><a name="index-BFD_005fRELOC_005fVISIUM_005fREL16"></a>: <strong>BFD_RELOC_VISIUM_REL16</strong></dt>
  4421. <dt><a name="index-BFD_005fRELOC_005fVISIUM_005fHI16_005fPCREL"></a>: <strong>BFD_RELOC_VISIUM_HI16_PCREL</strong></dt>
  4422. <dt><a name="index-BFD_005fRELOC_005fVISIUM_005fLO16_005fPCREL"></a>: <strong>BFD_RELOC_VISIUM_LO16_PCREL</strong></dt>
  4423. <dt><a name="index-BFD_005fRELOC_005fVISIUM_005fIM16_005fPCREL"></a>: <strong>BFD_RELOC_VISIUM_IM16_PCREL</strong></dt>
  4424. <dd><p>Visium Relocations.
  4425. </p></dd></dl>
  4426. <div class="example">
  4427. <pre class="example">
  4428. typedef enum bfd_reloc_code_real bfd_reloc_code_real_type;
  4429. </pre></div>
  4430. <a name="index-bfd_005freloc_005ftype_005flookup"></a>
  4431. <a name="bfd_005freloc_005ftype_005flookup"></a>
  4432. <h4 class="subsubsection">2.10.2.2 <code>bfd_reloc_type_lookup</code></h4>
  4433. <p><strong>Synopsis</strong>
  4434. </p><div class="example">
  4435. <pre class="example">reloc_howto_type *bfd_reloc_type_lookup
  4436. (bfd *abfd, bfd_reloc_code_real_type code);
  4437. reloc_howto_type *bfd_reloc_name_lookup
  4438. (bfd *abfd, const char *reloc_name);
  4439. </pre></div>
  4440. <p><strong>Description</strong><br>
  4441. Return a pointer to a howto structure which, when
  4442. invoked, will perform the relocation <var>code</var> on data from the
  4443. architecture noted.
  4444. </p>
  4445. <a name="index-bfd_005fdefault_005freloc_005ftype_005flookup"></a>
  4446. <a name="bfd_005fdefault_005freloc_005ftype_005flookup"></a>
  4447. <h4 class="subsubsection">2.10.2.3 <code>bfd_default_reloc_type_lookup</code></h4>
  4448. <p><strong>Synopsis</strong>
  4449. </p><div class="example">
  4450. <pre class="example">reloc_howto_type *bfd_default_reloc_type_lookup
  4451. (bfd *abfd, bfd_reloc_code_real_type code);
  4452. </pre></div>
  4453. <p><strong>Description</strong><br>
  4454. Provides a default relocation lookup routine for any architecture.
  4455. </p>
  4456. <a name="index-bfd_005fget_005freloc_005fcode_005fname"></a>
  4457. <a name="bfd_005fget_005freloc_005fcode_005fname"></a>
  4458. <h4 class="subsubsection">2.10.2.4 <code>bfd_get_reloc_code_name</code></h4>
  4459. <p><strong>Synopsis</strong>
  4460. </p><div class="example">
  4461. <pre class="example">const char *bfd_get_reloc_code_name (bfd_reloc_code_real_type code);
  4462. </pre></div>
  4463. <p><strong>Description</strong><br>
  4464. Provides a printable name for the supplied relocation code.
  4465. Useful mainly for printing error messages.
  4466. </p>
  4467. <a name="index-bfd_005fgeneric_005frelax_005fsection"></a>
  4468. <a name="bfd_005fgeneric_005frelax_005fsection"></a>
  4469. <h4 class="subsubsection">2.10.2.5 <code>bfd_generic_relax_section</code></h4>
  4470. <p><strong>Synopsis</strong>
  4471. </p><div class="example">
  4472. <pre class="example">bfd_boolean bfd_generic_relax_section
  4473. (bfd *abfd,
  4474. asection *section,
  4475. struct bfd_link_info *,
  4476. bfd_boolean *);
  4477. </pre></div>
  4478. <p><strong>Description</strong><br>
  4479. Provides default handling for relaxing for back ends which
  4480. don&rsquo;t do relaxing.
  4481. </p>
  4482. <a name="index-bfd_005fgeneric_005fgc_005fsections"></a>
  4483. <a name="bfd_005fgeneric_005fgc_005fsections"></a>
  4484. <h4 class="subsubsection">2.10.2.6 <code>bfd_generic_gc_sections</code></h4>
  4485. <p><strong>Synopsis</strong>
  4486. </p><div class="example">
  4487. <pre class="example">bfd_boolean bfd_generic_gc_sections
  4488. (bfd *, struct bfd_link_info *);
  4489. </pre></div>
  4490. <p><strong>Description</strong><br>
  4491. Provides default handling for relaxing for back ends which
  4492. don&rsquo;t do section gc &ndash; i.e., does nothing.
  4493. </p>
  4494. <a name="index-bfd_005fgeneric_005flookup_005fsection_005fflags"></a>
  4495. <a name="bfd_005fgeneric_005flookup_005fsection_005fflags"></a>
  4496. <h4 class="subsubsection">2.10.2.7 <code>bfd_generic_lookup_section_flags</code></h4>
  4497. <p><strong>Synopsis</strong>
  4498. </p><div class="example">
  4499. <pre class="example">bfd_boolean bfd_generic_lookup_section_flags
  4500. (struct bfd_link_info *, struct flag_info *, asection *);
  4501. </pre></div>
  4502. <p><strong>Description</strong><br>
  4503. Provides default handling for section flags lookup
  4504. &ndash; i.e., does nothing.
  4505. Returns FALSE if the section should be omitted, otherwise TRUE.
  4506. </p>
  4507. <a name="index-bfd_005fgeneric_005fmerge_005fsections"></a>
  4508. <a name="bfd_005fgeneric_005fmerge_005fsections"></a>
  4509. <h4 class="subsubsection">2.10.2.8 <code>bfd_generic_merge_sections</code></h4>
  4510. <p><strong>Synopsis</strong>
  4511. </p><div class="example">
  4512. <pre class="example">bfd_boolean bfd_generic_merge_sections
  4513. (bfd *, struct bfd_link_info *);
  4514. </pre></div>
  4515. <p><strong>Description</strong><br>
  4516. Provides default handling for SEC_MERGE section merging for back ends
  4517. which don&rsquo;t have SEC_MERGE support &ndash; i.e., does nothing.
  4518. </p>
  4519. <a name="index-bfd_005fgeneric_005fget_005frelocated_005fsection_005fcontents"></a>
  4520. <a name="bfd_005fgeneric_005fget_005frelocated_005fsection_005fcontents"></a>
  4521. <h4 class="subsubsection">2.10.2.9 <code>bfd_generic_get_relocated_section_contents</code></h4>
  4522. <p><strong>Synopsis</strong>
  4523. </p><div class="example">
  4524. <pre class="example">bfd_byte *bfd_generic_get_relocated_section_contents
  4525. (bfd *abfd,
  4526. struct bfd_link_info *link_info,
  4527. struct bfd_link_order *link_order,
  4528. bfd_byte *data,
  4529. bfd_boolean relocatable,
  4530. asymbol **symbols);
  4531. </pre></div>
  4532. <p><strong>Description</strong><br>
  4533. Provides default handling of relocation effort for back ends
  4534. which can&rsquo;t be bothered to do it efficiently.
  4535. </p>
  4536. <hr>
  4537. <div class="header">
  4538. <p>
  4539. Previous: <a href="typedef-arelent.html#typedef-arelent" accesskey="p" rel="prev">typedef arelent</a>, Up: <a href="Relocations.html#Relocations" accesskey="u" rel="up">Relocations</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="BFD-Index.html#BFD-Index" title="Index" rel="index">Index</a>]</p>
  4540. </div>
  4541. </body>
  4542. </html>