ChangeLog-2017 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419
  1. 2017-12-28 Jim Wilson <jimw@sifive.com>
  2. * testsuite/gas/riscv/priv-reg.d, testsuite/gas/riscv/priv-reg.s: New.
  3. 2017-12-20 Jim Wilson <jimw@sifive.com>
  4. * config/tc-riscv.c (risc_ip) <o>: Add comment.
  5. * testsuite/gas/riscv/c-nonzero-imm.d,
  6. * testsuite/gas/riscv/c-nonzero-imm.l,
  7. * testsuite/gas/riscv/c-nonzero-imm.s,
  8. * testsuite/gas/riscv/c-nonzero-reg.d,
  9. * testsuite/gas/riscv/c-nonzero-reg.l,
  10. * testsuite/gas/riscv/c-nonzero-reg.s,
  11. * testsuite/gas/riscv/c-zero-imm-64.d,
  12. * testsuite/gas/riscv/c-zero-imm-64.s,
  13. * testsuite/gas/riscv/c-zero-imm.d, testsuite/gas/riscv/c-zero-imm.s,
  14. * testsuite/gas/riscv/c-zero-reg.d,
  15. * testsuite/gas/riscv/c-zero-reg.s: New.
  16. 2017-12-19 Tamar Christina <tamar.christina@arm.com>
  17. PR 22559
  18. * config/tc-aarch64.c (vectype_to_qualifier): Support AARCH64_OPND_QLF_S_4B.
  19. * gas/testsuite/gas/aarch64/dotproduct.d: Update disassembly.
  20. 2017-12-19 Tamar Christina <tamar.christina@arm.com>
  21. PR 22529
  22. * config/tc-aarch64.c (vectype_to_qualifier): Support AARCH64_OPND_QLF_V_4B.
  23. * gas/testsuite/gas/aarch64/pr22529.s: New.
  24. * gas/testsuite/gas/aarch64/pr22529.d: New.
  25. * gas/testsuite/gas/aarch64/pr22529.l: New.
  26. 2017-12-18 Nick Clifton <nickc@redhat.com>
  27. PR 22493
  28. * config/tc-arm.c (encode_ldmstm): Do not use A2 encoding of the
  29. PUSH insn when pushing the stack pointer.
  30. 2017-12-18 Jan Beulich <jbeulich@suse.com>
  31. * config/tc-i386.c (regymm, regzmm): Delete.
  32. (operand_type_register_match). Extend comment. Also handle some
  33. memory operands here. Extend to cover .regsimd.
  34. (build_vex_prefix): Derive vector_length from actual operand
  35. size.
  36. (process_operands, build_modrm_byte): Use .regsimd.
  37. 2017-12-18 Jan Beulich <jbeulich@suse.com>
  38. * config/tc-i386.c (match_simd_size): New.
  39. (match_mem_size): Use it.
  40. (operand_size_match): Likewise. Split .reg and .acc checks.
  41. (pi, check_VecOperands, match_template, check_byte_reg,
  42. check_long_reg, check_qword_reg, build_modrm_byte,
  43. parse_real_register): Replace .regxmm, .regymm, and .regzmm
  44. checks.
  45. (md_assemble): Qualify .acc check with .xmmword one.
  46. (bad_implicit_operand): Delete.
  47. (process_operands): Replace .firstxmm0 checks with .acc plus
  48. .xmmword ones. Drop now pointless assertions. Convert .acc to
  49. .regsimd.
  50. * config/tc-i386-intel.c (i386_intel_simplify_register): Replace
  51. .regxmm, .regymm, and .regzmm checks.
  52. * testsuite/gas/i386/x86-64-specific-reg.l: Adjust expectations.
  53. 2017-12-18 Jan Beulich <jbeulich@suse.com>
  54. * config/tc-i386.c (operand_type_check): Extend comment.
  55. (match_reg_size): Also check .tbyte.
  56. (match_mem_size): No longer check .tbyte here.
  57. (md_assemble): Drop .floatacc check.
  58. (check_byte_reg): Drop .floatreg and .floatacc checks.
  59. (process_operands, parse_real_register): Replace .floatreg
  60. check.
  61. 2017-12-18 Jan Beulich <jbeulich@suse.com>
  62. * config/tc-i386.c (operand_type_check, pi): Switch .reg<N> to
  63. just .reg.
  64. (operand_size_match): Qualify .anysize check with .reg one.
  65. Extend .acc check to also cover .reg.
  66. (operand_type_register_match): Drop m0 and m1 parameters. Switch
  67. .reg<N> to .byte/.word/.dword/.qword. Drop .acc special
  68. handling.
  69. (md_assemble): Expand .reg8 checks to .reg plus .bytes ones.
  70. (optimize_imm, process_suffix, check_byte_reg, check_long_reg,
  71. check_qword_reg, check_word_reg): Expand .reg<N> checks to .reg
  72. plus size ones.
  73. (match_template): Drop arguments from calls to
  74. operand_type_register_match().
  75. (build_modrm_byte, i386_addressing_mode, i386_index_check,
  76. parse_real_register): Replace .reg<N> checks.
  77. * config/tc-i386-intel.c (i386_intel_simplify,
  78. i386_intel_operand): Switch .reg16 to .word.
  79. 2017-12-17 H.J. Lu <hongjiu.lu@intel.com>
  80. PR gas/22623
  81. * gas/config/tc-i386.c (output_insn): Check pseudo prefix
  82. without instruction.
  83. * testsuite/gas/i386/i386.exp: Run inval-pseudo.
  84. * testsuite/gas/i386/inval-pseudo.l: New file.
  85. * testsuite/gas/i386/inval-pseudo.s: Likewise.
  86. 2017-12-15 Jan Beulich <jbeulich@suse.com>
  87. * config/tc-i386.c (match_template): Add missing ! to
  88. reg{x,y,z}mm checks in q- and l-suffix handling.
  89. 2017-12-15 Jan Beulich <jbeulich@suse.com>
  90. * config/tc-i386.c (build_modrm_byte): Add missing ! to reg64
  91. check leading to abort().
  92. 2017-12-14 Nick Clifton <nickc@redhat.com>
  93. * config/tc-m32c.c: Update address of FSF in copyright notice.
  94. * config/tc-m32c.h: Likewise.
  95. * config/tc-mt.c: Likewise.
  96. * config/tc-mt.h: Likewise.
  97. * config/tc-visium.c: Likewise.
  98. * config/tc-visium.h: Likewise.
  99. * testsuite/gas/rx/explode: Likewise.
  100. 2017-12-13 Jim Wilson <jimw@sifive.com>
  101. PR 22599
  102. * testsuite/gas/riscv/fsxxi.d, testsuite/gas/riscv/fsxxi.s: New.
  103. 2017-12-13 Dimitar Dimitrov <dimitar@dinux.eu>
  104. * testsuite/gas/pru/extern.s: New test for print of U16_PMEMM
  105. relocation.
  106. * testsuite/gas/pru/extern.d: New test driver.
  107. 2017-12-12 Alan Modra <amodra@gmail.com>
  108. PR 21118
  109. * config/tc-ppc.c (md_assemble): Don't mask register number.
  110. 2017-12-07 Max Filippov <jcmvbkbc@gmail.com>
  111. * config/tc-xtensa.c (xg_order_trampoline_chain): Replace
  112. xg_order_trampoline_chain_entry call with check for
  113. canonicalized symbol equality and offset equality.
  114. 2017-12-04 Alan Modra <amodra@gmail.com>
  115. PR 22544
  116. * doc/as.texinfo (8byte): Correct.
  117. 2017-12-04 Alan Modra <amodra@gmail.com>
  118. * testsuite/gas/ppc/ppc.exp: Don't exclude VLE tests when little-endian.
  119. * testsuite/gas/ppc/efs.d: Add -mbig to assembler options.
  120. * testsuite/gas/ppc/efs2.d: Likewise.
  121. * testsuite/gas/ppc/lsp-checks.d: Likewise.
  122. * testsuite/gas/ppc/lsp.d: Likewise.
  123. * testsuite/gas/ppc/spe.d: Likewise.
  124. * testsuite/gas/ppc/spe2-checks.d: Likewise.
  125. * testsuite/gas/ppc/spe2.d: Likewise.
  126. * testsuite/gas/ppc/spe_ambiguous.d: Likewise.
  127. * testsuite/gas/ppc/vle-mult-ld-st-insns.d: Likewise.
  128. * testsuite/gas/ppc/vle-reloc.d: Likewise.
  129. * testsuite/gas/ppc/vle-simple-1.d: Likewise.
  130. * testsuite/gas/ppc/vle-simple-2.d: Likewise.
  131. * testsuite/gas/ppc/vle-simple-3.d: Likewise.
  132. * testsuite/gas/ppc/vle-simple-4.d: Likewise.
  133. * testsuite/gas/ppc/vle-simple-5.d: Likewise.
  134. * testsuite/gas/ppc/vle-simple-6.d: Likewise.
  135. * testsuite/gas/ppc/vle.d: Likewise.
  136. 2017-12-03 Jim Wilson <jimw@sifive.com>
  137. * doc/c-riscv.texi (RISC-V-Directives): Move @section immediately after
  138. @node.
  139. 2017-12-01 Palmer Dabbelt <palmer@sifive.com>
  140. Jim Wilson <jimw@sifive.com>
  141. * doc/as.texinfo (RISC-V): Alphabetize RISC-V entries. Change
  142. RISC-V-Opts to RISC-V-Options. Delete redundant space. Add -fpic
  143. and related options to option list.
  144. * doc/c-riscv.texi: (RISC-V-Options): Renamed from RISC-V-Opts.
  145. (RISC-V Options): Renamed from Options. Add missing period.
  146. (-fpic): Also mention -fPIC.
  147. (RISC-V Directives): New node.
  148. 2017-12-01 Peter Bergner <bergner@vnet.ibm.com>
  149. * config/tc-ppc.c (last_insn): Update type.
  150. (insn_validate) <omask, mask>: Likewise.
  151. (ppc_setup_opcodes) <mask, right_bit>: Likewise.
  152. <PRINT_OPCODE_TABLE>: Update types and printf format specifiers.
  153. (ppc_insert_operand): Update return and argument types and remove
  154. unneeded type casts.
  155. <min, max, right, tmp>: Update type.
  156. (md_assemble): Remove unneeded type casts.
  157. <insn, val, tmp_insn>: Update type.
  158. 2017-11-29 Jan Beulich <jbeulich@suse.com>
  159. * config/tc-i386.c (enum i386_error): Remove try_vector_disp8.
  160. (mode_from_disp_size, build_modrm_byte, build_modrm_byte,
  161. disp_size): Remove reference to .vec_disp8.
  162. (output_disp): Likewise. Unconditionally use i.memshift.
  163. (fits_in_vec_disp8): Rename to fits_in_disp8.
  164. (type_names): Remove OPERAND_TYPE_VEC_DISP8 entry.
  165. (optimize_disp): Use fits_in_disp8.
  166. (check_VecOperands): Re-work (simplify) .disp8memshift
  167. conditional handling.
  168. 2017-11-29 Jan Beulich <jbeulich@suse.com>
  169. PR gas/21874
  170. * config/tc-i386-intel.c (i386_intel_simplify): Chain together
  171. multiple segment override expressions.
  172. (i386_intel_operand): Issue diagnostic for redundant segment
  173. overrides.
  174. * testsuite/gas/i386/intelok.e: New.
  175. * testsuite/gas/i386/intelok.d: Reference intelok.e.
  176. * testsuite/gas/i386/inval-seg.s: Add redundant override checks.
  177. * testsuite/gas/i386/inval-seg.l: Adjust expectations.
  178. 2017-11-29 Jim Wilson <jimw@sifive.com>
  179. Palmer Dabbelt <palmer@sifive.com>
  180. * config/tc-riscv.c (riscv_frag_align_code): New local insn_alignment.
  181. Early return if bytes less than or equal to insn_alignment.
  182. * testsuite/gas/riscv/align-1.l: New.
  183. * testsuite/gas/riscv/align-1.s: New.
  184. * testsuite/gas/riscv/riscv.exp: Use run_dump_tests. Use run_list_test
  185. for align-1.
  186. PR gas/22464
  187. * doc/c-i386.texi (-n): Clarify docs.
  188. 2017-11-29 Renlin Li <renlin.li@arm.com>
  189. * config/tc-aarch64.c (reg_names): Fix IP1 register alias typo.
  190. * testsuite/gas/aarch64/register_aliases.s: Add IP0 and IP1 tests.
  191. * testsuite/gas/aarch64/register_aliases.d: Update.
  192. 2017-11-29 Stefan Stroe <stroestefan@gmail.com>
  193. * po/Make-in (datadir): Define as @datadir@.
  194. (localedir): Define as @localedir@.
  195. (gnulocaledir, gettextsrcdir): Use @datarootdir@.
  196. 2017-11-29 Nick Clifton <nickc@redhat.com>
  197. PR 22492
  198. * config/obj-elf.c (obj_elf_version): Use record_alignment rather
  199. than bfd_set_section_alignment.
  200. 2017-11-27 Andrew Waterman <andrew@sifive.com>
  201. Palmer Dabbelt <palmer@sifive.com>
  202. Jim Wilson <jimw@sifive.com>
  203. * config/tc-riscv.c (riscv_handle_implicit_zero_offset): New.
  204. (riscv_ip): Cases 'k', 'l', 'm', 'n', 'M', 'N', add call to
  205. riscv_handle_implicit_zero_offset. At label load_store, replace
  206. existing code with call to riscv_handle_implicit_zero_offset.
  207. * testsuite/gas/riscv/c-ld.d, testsuite/gas/riscv/c-ld.s: New.
  208. * testsuite/gas/riscv/c-lw.d, testsuite/gas/riscv/c-lw.s: New.
  209. * testsuite/gas/riscv/riscv.exp: Run new tests.
  210. 2017-11-27 Max Filippov <jcmvbkbc@gmail.com>
  211. * config/tc-xtensa.c (find_trampoline_seg): Add static variable
  212. that caches the result of the most recent search.
  213. 2017-11-27 Max Filippov <jcmvbkbc@gmail.com>
  214. * config/tc-xtensa.c (trampoline_chain_entry, trampoline_chain)
  215. (trampoline_chain_index): New structures.
  216. (trampoline_index): Add chain_index field.
  217. (xg_order_trampoline_chain_entry, xg_sort_trampoline_chain)
  218. (xg_find_chain_entry, xg_get_best_chain_entry)
  219. (xg_order_trampoline_chain, xg_get_trampoline_chain)
  220. (xg_find_best_eq_target, xg_add_location_to_chain)
  221. (xg_create_trampoline_chain, xg_get_single_symbol_slot): New
  222. functions.
  223. (xg_relax_fixups): Call xg_find_best_eq_target to adjust jump
  224. target to point to an existing jump. Call
  225. xg_create_trampoline_chain to create new jump target. Call
  226. xg_add_location_to_chain to add newly created trampoline jump
  227. to the corresponding chain.
  228. (add_jump_to_trampoline): Extract loop searching for a single
  229. slot with a symbol into a separate function, replace that code
  230. with a call to that function.
  231. (relax_frag_immed): Call xg_find_best_eq_target to adjust jump
  232. target to point to an existing jump.
  233. * testsuite/gas/xtensa/all.exp: Add trampoline-2 test.
  234. * testsuite/gas/xtensa/trampoline.d: Adjust absolute addresses
  235. as many duplicate trampoline chains are now coalesced.
  236. * testsuite/gas/xtensa/trampoline.s: Add _nop so that objdump
  237. stays in sync with instruction stream.
  238. * testsuite/gas/xtensa/trampoline-2.l: New test result file.
  239. * testsuite/gas/xtensa/trampoline-2.s: New test source file.
  240. 2017-11-27 Max Filippov <jcmvbkbc@gmail.com>
  241. * config/tc-xtensa.c (search_trampolines, get_best_trampoline):
  242. Remove definitions.
  243. (xg_find_best_trampoline_for_tinsn): New function.
  244. (relax_frag_immed): Replace call to get_best_trampoline with a
  245. call to xg_find_best_trampoline_for_tinsn.
  246. * testsuite/gas/xtensa/trampoline.d: Adjust absolute addresses
  247. as the placement of trampolines for relaxed branches has been
  248. changed.
  249. 2017-11-27 Max Filippov <jcmvbkbc@gmail.com>
  250. * config/tc-xtensa.c (trampoline_index): New structure.
  251. (trampoline_seg): Replace trampoline list with trampoline index.
  252. (xg_find_trampoline, xg_add_trampoline_to_index)
  253. (xg_remove_trampoline_from_index, xg_add_trampoline_to_seg)
  254. (xg_is_trampoline_frag_full, xg_get_fulcrum)
  255. (xg_find_best_trampoline, xg_relax_fixup, xg_relax_fixups)
  256. (xg_is_relaxable_fixup): New functions.
  257. (J_MARGIN): New macro.
  258. (xtensa_create_trampoline_frag): Use xg_add_trampoline_to_seg
  259. instead of open-coded addition to the linked list.
  260. (dump_trampolines): Iterate through the trampoline_seg::index.
  261. (cached_fixupS, cached_fixup, fixup_cacheS, fixup_cache)
  262. (fixup_order, xtensa_make_cached_fixup)
  263. (xtensa_realloc_fixup_cache, xtensa_cache_relaxable_fixups)
  264. (xtensa_find_first_cached_fixup, xtensa_delete_cached_fixup)
  265. (xtensa_add_cached_fixup, check_and_update_trampolines): Remove
  266. definitions.
  267. (xg_relax_trampoline): Extract logic into separate functions,
  268. replace body with a call to xg_relax_fixups.
  269. (search_trampolines): Replace search in linked list with search
  270. in index. Change data type of address-tracking variables from
  271. int to offsetT. Replace abs with labs.
  272. (xg_append_jump): Finish the trampoline frag if it's full.
  273. (add_jump_to_trampoline): Remove trampoline frag from the index
  274. if the frag is full.
  275. * config/tc-xtensa.h (xtensa_frag_type): Remove next_trampoline.
  276. * testsuite/gas/xtensa/trampoline.d: Adjust absolute addresses
  277. as the placement of trampolines has slightly changed.
  278. * testsuite/gas/xtensa/trampoline.s: Add _nop so that objdump
  279. stays in sync with instruction stream.
  280. 2017-11-27 Max Filippov <jcmvbkbc@gmail.com>
  281. * config/tc-xtensa.c (init_trampoline_frag): Replace pointer to
  282. struct trampoline_frag parameter with pointer to fragS.
  283. (xg_append_jump): Remove jump_around parameter.
  284. (struct trampoline_frag): Remove.
  285. (struct trampoline_seg): Change type of trampoline_list from
  286. struct trampoline_frag to fragS.
  287. (xtensa_create_trampoline_frag): Don't allocate struct
  288. trampoline_frag. Initialize new fragS::tc_frag_data fields.
  289. (dump_trampolines, xg_relax_trampoline, search_trampolines)
  290. (get_best_trampoline, init_trampoline_frag)
  291. (add_jump_to_trampoline, relax_frag_immed): Replace pointer to
  292. struct trampoline_frag with a pointer to fragS.
  293. (xg_append_jump): Remove jump_around parameter, use
  294. fragS::tc_frag_data.jump_around_fix instead.
  295. (xg_relax_trampoline, init_trampoline_frag)
  296. (add_jump_to_trampoline): Don't pass jump_around parameter to
  297. xg_append_jump.
  298. * config/tc-xtensa.h (struct xtensa_frag_type): Add new fields:
  299. needs_jump_around, next_trampoline and jump_around_fix.
  300. 2017-11-27 Max Filippov <jcmvbkbc@gmail.com>
  301. * config/tc-xtensa.c (find_trampoline_seg): Move above the first
  302. use.
  303. (xtensa_create_trampoline_frag): Replace trampoline seg search
  304. code with a call to find_trampoline_seg.
  305. 2017-11-27 Max Filippov <jcmvbkbc@gmail.com>
  306. * config/tc-xtensa.c (xg_append_jump): New function.
  307. (xg_relax_trampoline, init_trampoline_frag)
  308. (add_jump_to_trampoline): Replace trampoline jump assembling
  309. code with a call to xg_append_jump.
  310. 2017-11-27 Max Filippov <jcmvbkbc@gmail.com>
  311. * config/tc-xtensa.c (xg_relax_trampoline): New function.
  312. (xtensa_relax_frag): Replace trampoline relaxation code with a
  313. call to xg_relax_trampoline.
  314. 2017-11-27 Nick Clifton <nickc@redhat.com>
  315. PR 22492
  316. * config/obj-elf.c (obj_elf_version): Set the alignment of the
  317. .note section.
  318. 2017-11-26 H.J. Lu <hongjiu.lu@intel.com>
  319. * testsuite/gas/i386/sse-noavx.s: Add tests for fisttps and
  320. fisttpl.
  321. * testsuite/gas/i386/x86-64-sse-noavx.s: Likewise.
  322. * testsuite/gas/i386/ilp32/x86-64-sse-noavx.d: Updated.
  323. * testsuite/gas/i386/sse-noavx.d: Likewise.
  324. * testsuite/gas/i386/x86-64-sse-noavx.d: Likewise.
  325. 2017-11-24 Jim Wilson <jimw@sifive.com>
  326. * write.h (FAKE_LABEL_CHAR): Expand comment.
  327. 2017-11-24 Jan Beulich <jbeulich@suse.com>
  328. * config/tc-i386.c (check_VecOperations): Check register type
  329. for masking. Quote the actual register name in the respective
  330. diagnostic. Check {z} wasn't specified on its own.
  331. * testsuite/gas/i386/inval-avx512f.s,
  332. testsuite/gas/i386/x86-64-inval-avx512f.s: Add further bad
  333. masking tests.
  334. * testsuite/gas/i386/inval-avx512f.l,
  335. testsuite/gas/i386/x86-64-inval-avx512f.l: Adjust expectations.
  336. 2017-11-24 Jan Beulich <jbeulich@suse.com>
  337. * testsuite/gas/i386/intel.d, testsuite/gas/i386/opcode.d,
  338. testsuite/gas/i386/opcode-suffix.d, testsuite/gas/i386/sse3.d,
  339. testsuite/gas/i386/sse-noavx.d, testsuite/gas/i386/x86-64-sse3.d,
  340. testsuite/gas/i386/x86-64-sse-noavx.d,
  341. testsuite/gas/i386/ilp32/x86-64-sse3.d,
  342. testsuite/gas/i386/ilp32/x86-64-sse-noavx.d: Adjust expectations.
  343. 2017-11-23 Jim Wilson <jimw@sifive.com>
  344. * testsuite/gas/all/err-fakelabel.s (dg-error): Also accept fatal error
  345. string.
  346. * as.c (INITIALIZING_EMULS): Define.
  347. * config/obj-multi.h (FAKE_LABEL_NAME): When INITIALIZING_EMULS set,
  348. don't define it.
  349. 2017-11-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  350. * testsuite/gas/i386/avx512f_vaes-intel.d: Regenerate.
  351. * testsuite/gas/i386/avx512f_vaes.d: Likewise.
  352. * testsuite/gas/i386/avx512f_vaes-wig1-intel.d: Likewise.
  353. * testsuite/gas/i386/avx512f_vaes-wig1.d: Likewise.
  354. * testsuite/gas/i386/avx512vl_vaes-intel.d: Likewise.
  355. * testsuite/gas/i386/avx512vl_vaes.d: Likewise.
  356. * testsuite/gas/i386/x86-64-avx512f_vaes.s: Add instructions with
  357. disp8*N.
  358. * testsuite/gas/i386/x86-64-avx512f_vaes-intel.d: Regenerate.
  359. * testsuite/gas/i386/x86-64-avx512f_vaes.d: Likewise.
  360. * testsuite/gas/i386/x86-64-avx512f_vaes-wig.s: Add instructions with
  361. disp8*N.
  362. * testsuite/gas/i386/x86-64-avx512f_vaes-wig1-intel.d: Regenerate.
  363. * testsuite/gas/i386/x86-64-avx512f_vaes-wig1.d: Likewise.
  364. * testsuite/gas/i386/x86-64-avx512vl_vaes-intel.d: Regenerate.
  365. * testsuite/gas/i386/x86-64-avx512vl_vaes.d: Likewise.
  366. * testsuite/gas/i386/x86-64-avx512vl_vaes-wig.s: Add instructions with
  367. disp8*N.
  368. * testsuite/gas/i386/x86-64-avx512vl_vaes-wig1-intel.d: Regenerate.
  369. * testsuite/gas/i386/x86-64-avx512vl_vaes-wig1.d: Regenerate.
  370. 2017-11-23 Jan Beulich <jbeulich@suse.com>
  371. * tc-i386.c (check_VecOperands): Don't clear .disp16.
  372. * testsuite/gas/i386/avx512f.s: Add 16-bit addressing tests.
  373. * testsuite/gas/i386/avx512f.d,
  374. testsuite/gas/i386/avx512f-intel.d: Adjust expectations.
  375. 2017-11-23 Jan Beulich <jbeulich@suse.com>
  376. PR gas/22441
  377. * config/tc-i386.c (build_modrm_byte): Add address override
  378. prefix checks alongside 64-bit mode ones.
  379. * testsuite/gas/i386/reloc64.s: Add 32-bit signed/unsigned
  380. relocation cases.
  381. * testsuite/gas/i386/reloc64.d: Adjust expectations.
  382. 2017-11-23 Jan Beulich <jbeulich@suse.com>
  383. * config/tc-i386.c (build_modrm_byte): Drop VSIB handling from
  384. code also setting fake_zero_displacement.
  385. 2017-11-23 Jan Beulich <jbeulich@suse.com>
  386. * testsuite/gas/i386/arch-4.s: Correct ud1 and ud2b. Add ud0.
  387. * testsuite/gas/i386/intel.s: Test ud2 instead of ud2b.
  388. * testsuite/gas/i386/opcode.s: Likewise.
  389. * testsuite/gas/i386/arch-4.d, testsuite/gas/i386/intel.d,
  390. testsuite/gas/i386/opcode.d, testsuite/gas/i386/opcode-intel.d,
  391. testsuite/gas/i386/opcode-suffix.d: Adjust expectations.
  392. 2017-11-23 Jan Beulich <jbeulich@suse.com>
  393. * config/tc-i386-intel.c (i386_intel_operand): Don't call
  394. as_bad() if a prior error was already reported.
  395. * testsuite/gas/i386/inval-avx512f.l,
  396. testsuite/gas/i386/x86-64-inval-avx512f.l: Adjust expectations.
  397. 2017-11-22 Jim Wilson <jimw@sifive.com>
  398. * as.c: Include write.h.
  399. (common_emul_init): Use FAKE_LABEL_NAME.
  400. * ecoff.c (add_file, ecoff_directive_end, ecoff_directive_loc):
  401. Likewise.
  402. (ecoff_build_symbols): Use FAKE_LABEL_CHAR.
  403. * expr.c (get_symbol_name): Use FAKE_LABEL_CHAR. Accept only if
  404. input_from_string is TRUE.
  405. * read.c (input_from_string): New.
  406. (read_symbol_name): Use FAKE_LABEL_CHAR. Accept only if
  407. input_from_string is TRUE.
  408. (temp_ilp): Set input_from_string to TRUE.
  409. (restore_ilp): Set input_from_string to FALSE.
  410. * read.h (input_from_string): Declare.
  411. * symbols.c: Include write.h
  412. (S_IS_LOCAL): Check for FAKE_LABEL_CHAR.
  413. (symbol_relc_make_sym): Fix comment refering to default fake label
  414. string.
  415. * write.h (FAKE_LABEL_CHAR): New.
  416. * config/tc-riscv.h (FAKE_LABEL_CHAR): Define.
  417. * testsuite/gas/all/err-fakelabel.s: New.
  418. * doc/as.texinfo (.align): Change some to most for text nop fill.
  419. (.balign, .p2align): Likewise.
  420. 2017-11-22 Thomas Preud'homme <thomas.preudhomme@arm.com>
  421. * config/tc-arm.c (arm_reg_type): Comment on the link with
  422. reg_expected_msgs.
  423. (reg_expected_msgs): Initialize using array designators with
  424. arm_reg_type index.
  425. 2017-11-22 Claudiu Zissulescu <claziss@synopsys.com>
  426. * testsuite/gas/arc/hregs-err.s: New test.
  427. 2017-11-21 H.J. Lu <hongjiu.lu@intel.com>
  428. PR gas/22464
  429. * testsuite/gas/i386/align-1.s: New file.
  430. * testsuite/gas/i386/align-1a.d: Likewise.
  431. * testsuite/gas/i386/align-1b.d: Likewise.
  432. * testsuite/gas/i386/i386.exp: Run align-1a and align-1b.
  433. 2017-11-21 Claudiu Zissulescu <claziss@synopsys.com>
  434. * testsuite/gas/arc/b.d : Update test.
  435. * testsuite/gas/arc/bl.d: Likewise.
  436. * testsuite/gas/arc/jli-1.d: Likewise.
  437. * testsuite/gas/arc/lp.d: Likewise.
  438. * testsuite/gas/arc/pcl-relocs.d: Likewise.
  439. * testsuite/gas/arc/pcrel-relocs.d: Likewise.
  440. * testsuite/gas/arc/pic-relocs.d: Likewise.
  441. * testsuite/gas/arc/plt-relocs.d: Likewise.
  442. * testsuite/gas/arc/pseudos.d: Likewise.
  443. * testsuite/gas/arc/relax-avoid2.d: Likewise.
  444. * testsuite/gas/arc/relax-avoid3.d: Likewise.
  445. * testsuite/gas/arc/relax-b.d: Likewise.
  446. * testsuite/gas/arc/tls-relocs.d: Likewise.
  447. * testsuite/gas/arc/relax-add01.d: Likewise.
  448. * testsuite/gas/arc/relax-add04.d: Likewise.
  449. * testsuite/gas/arc/relax-ld01.d: Likewise.
  450. * testsuite/gas/arc/relax-sub01.d: Likewise.
  451. * testsuite/gas/arc/relax-sub02.d: Likewise.
  452. * testsuite/gas/arc/relax-sub04.d: Likewise.
  453. * testsuite/gas/arc/pcl-print.s: New file.
  454. * testsuite/gas/arc/pcl-print.d: Likewise.
  455. * testsuite/gas/arc/nps400-12.d: Likewise.
  456. 2017-11-21 Alan Modra <amodra@gmail.com>
  457. * config/tc-xtensa.c (finish_vinsn): Avoid multiple ngettext calls
  458. in error message.
  459. 2017-11-20 Alan Modra <amodra@gmail.com>
  460. * testsuite/gas/i386/x86-64-reg-bad.l: Accept trailing padding.
  461. 2017-11-16 Tamar Christina <tamar.christina@arm.com>
  462. * config/tc-aarch64.c (fp16fml): New.
  463. * doc/c-aarch64.texi (fp16fml): New.
  464. * testsuite/gas/aarch64/armv8_2-a-crypto-fp16.d (fp16): Make fp16fml.
  465. * testsuite/gas/aarch64/armv8_3-a-crypto-fp16.d (fp16): Make fp16fml.
  466. 2017-11-16 Tamar Christina <tamar.christina@arm.com>
  467. * opcodes/aarch64-tbl.h
  468. (aarch64_feature_crypto): Add ARCH64_FEATURE_SIMD and AARCH64_FEATURE_FP.
  469. (aarch64_feature_crypto_v8_2, aarch64_feature_sm4): Likewise.
  470. (aarch64_feature_sha3): Likewise.
  471. 2017-11-16 Tamar Christina <tamar.christina@arm.com>
  472. * doc/c-aarch64.texi (armv8.4-a, sha2, sha3, sm4): New.
  473. (dotprod): Update default note.
  474. 2017-11-16 Tamar Christina <tamar.christina@arm.com>
  475. * testsuite/gas/aarch64/armv8_4-a-illegal.d: New.
  476. * testsuite/gas/aarch64/armv8_4-a-illegal.l: New.
  477. * testsuite/gas/aarch64/armv8_4-a-illegal.s: New.
  478. * testsuite/gas/aarch64/armv8_4-a.d: New.
  479. * testsuite/gas/aarch64/armv8_4-a.s: New.
  480. * testsuite/gas/aarch64/armv8_2-a-crypto-fp16.s: New.
  481. * testsuite/gas/aarch64/armv8_2-a-crypto-fp16.d: New.
  482. * testsuite/gas/aarch64/armv8_3-a-crypto-fp16.d: New.
  483. * testsuite/gas/aarch64/armv8_4-a-crypto-fp16.d: New.
  484. * testsuite/gas/aarch64/armv8_2-a-crypto-fp16-illegal.s: New.
  485. * testsuite/gas/aarch64/armv8_2-a-crypto-fp16-illegal.l: New.
  486. * testsuite/gas/aarch64/armv8_2-a-crypto-fp16-illegal.d: New.
  487. 2017-11-16 Jan Beulich <jbeulich@suse.com>
  488. * testsuite/gas/i386/noextreg.s: Add tests with register index
  489. bit 3 set.
  490. * testsuite/gas/i386/noextreg.d: Adjust expectations.
  491. 2017-11-16 Jan Beulich <jbeulich@suse.com>
  492. * config/tc-i386.c (process_suffix): Ignore .no_qsuf outside of
  493. 64-bit mode.
  494. * testsuite/gas/i386/ptwrite.s: Add test for memory operand
  495. without DWORD PTR.
  496. * testsuite/gas/i386/ptwrite.d,
  497. testsuite/gas/i386/ptwrite-intel.d: Adjust expectations.
  498. 2017-11-15 H.J. Lu <hongjiu.lu@intel.com>
  499. * testsuite/gas/i386/noextreg.s: Replace .code64/.code32 and
  500. 64-bit instructions with .byte. Remove ELF directive.
  501. 2017-11-15 Tamar Christina <tamar.christina@arm.com>
  502. * config/tc-arm.c (arm_ext_fp16_fml, fp16fml): New.
  503. (do_neon_fmac_maybe_scalar_long): Use arm_ext_fp16_fml.
  504. * doc/c-arm.texi (fp16, fp16fml): New.
  505. * testsuite/gas/arm/armv8_2-a-fp16.d (fp16): Make fp16fml.
  506. * testsuite/gas/arm/armv8_3-a-fp16.d (fp16): Make fp16fml.
  507. * testsuite/gas/arm/armv8_2-a-fp16-illegal.d (fp16): Make fp16fml.
  508. * testsuite/gas/arm/armv8_2-a-fp16-thumb2.d (fp16): Make fp16fml.
  509. 2017-11-15 Nick Clifton <nickc@redhat.com>
  510. PR 15152
  511. * testsuite/gas/avr/large-debug-line-table.d: Update expected
  512. output.
  513. * testsuite/gas/elf/dwarf2-11.d: Likewise.
  514. * testsuite/gas/elf/dwarf2-12.d: Likewise.
  515. * testsuite/gas/elf/dwarf2-13.d: Likewise.
  516. * testsuite/gas/elf/dwarf2-14.d: Likewise.
  517. * testsuite/gas/elf/dwarf2-15.d: Likewise.
  518. * testsuite/gas/elf/dwarf2-16.d: Likewise.
  519. * testsuite/gas/elf/dwarf2-17.d: Likewise.
  520. * testsuite/gas/elf/dwarf2-18.d: Likewise.
  521. * testsuite/gas/elf/dwarf2-5.d: Likewise.
  522. * testsuite/gas/elf/dwarf2-6.d: Likewise.
  523. * testsuite/gas/elf/dwarf2-7.d: Likewise.
  524. 2017-11-15 Jan Beulich <jbeulich@suse.com>
  525. * testsuite/gas/i386/noextreg.s: Add tests for VEX-encoded GPR
  526. insns with VEX.W set.
  527. * testsuite/gas/i386/noextreg.d: Adjust expectations.
  528. 2017-11-15 Jan Beulich <jbeulich@suse.com>
  529. * testsuite/gas/i386/noextreg.{s,d}: New.
  530. * testsuite/gas/i386/i386.exp: Run new test.
  531. 2017-11-15 Jan Beulich <jbeulich@suse.com>
  532. * testsuite/gas/i386/x86-64-reg.s: Add extended byte reg tests.
  533. * testsuite/gas/i386/x86-64-reg.d,
  534. testsuite/gas/i386/x86-64-reg-intel.d,
  535. testsuite/gas/i386/ilp32/x86-64-reg.d,
  536. testsuite/gas/i386/ilp32/x86-64-reg-intel.d: Adjust
  537. expectations.
  538. * testsuite/gas/i386/x86-64-reg-bad.{s,l}: New.
  539. * testsuite/gas/i386/i386.exp: Run new test.
  540. 2017-11-14 Jim Wilson <jimw@sifive.com>
  541. * testsuite/gas/lns/lns.exp (lns-common-1): Add riscv*-*-* to alt list.
  542. 2017-11-14 Jan Beulich <jbeulich@suse.com>
  543. * testsuite/gas/i386/x86-64-xop.d, testsuite/gas/i386/xop.d,
  544. testsuite/gas/i386/xop32reg.d: Adjust expectations.
  545. 2017-11-14 Jan Beulich <jbeulich@suse.com>
  546. * testsuite/gas/i386/avx512bw.s: Add vpcmp* pseudo tests.
  547. * testsuite/gas/i386/avx512bw_vl.s: Likewise.
  548. * testsuite/gas/i386/avx512bw.d, testsuite/gas/i386/avx512bw-intel.d,
  549. testsuite/gas/i386/avx512bw_vl.d,
  550. testsuite/gas/i386/avx512bw_vl-intel.d: Adjust expectations.
  551. 2017-11-14 Jan Beulich <jbeulich@suse.com>
  552. * testsuite/gas/i386/string-ok.s: Add a few more valid patterns.
  553. Move bogus tests ...
  554. * testsuite/gas/i386/string-bad.s: ... here.
  555. * testsuite/gas/i386/string-bad.l: Adjust expectations.
  556. * testsuite/gas/i386/string-ok.d: Likewise.
  557. * testsuite/gas/i386/string-ok.e: Likewise.
  558. 2017-11-13 Jan Beulich <jbeulich@suse.com>
  559. * config/tc-aarch64.c (R_Z_BHSDQ_VZP): Rename to ...
  560. (R_Z_SP_BHSDQ_VZP): ... and include both stack pointer variants.
  561. 2017-11-13 Jan Beulich <jbeulich@suse.com>
  562. * testsuite/gas/ia64/group-1.d: Adjust expectations.
  563. * testsuite/gas/ia64/group-2.d: Likewise.
  564. * testsuite/gas/ia64/xdata.d: Likewise.
  565. 2017-11-13 Jan Beulich <jbeulich@suse.com>
  566. * config/tc-i386.c (process_suffix): Treat .shiftcount just like
  567. .inoutportreg.
  568. * testsuite/gas/i386/inval.s: Add ambiguous shift/rotate cases.
  569. * testsuite/gas/i386/inval.l: Adjust expectations.
  570. 2017-11-13 Jan Beulich <jbeulich@suse.com>
  571. * config/tc-i386-intel.c (i386_intel_simplify_register): Also
  572. recognize RegRiz/RegEiz as index-only registers.
  573. * testsuite/gas/i386/intel.s: Add tests exercising base/index
  574. swapping.
  575. * testsuite/gas/i386/intel.d: Adjust expectations.
  576. 2017-11-13 Jan Beulich <jbeulich@suse.com>
  577. * config/tc-i386.c (i386_index_check): Break out ...
  578. (i386_addressing_mode): ... this new function.
  579. * config/tc-i386-intel.c (i386_intel_operand): Do base/index
  580. swapping and the setting of .baseindex earlier. Call
  581. i386_addressing_mode.
  582. * testsuite/gas/i386/x86-64-inval.s: Add out of range
  583. displacement case.
  584. * testsuite/gas/i386/x86-64-inval.l: Adjust expectations.
  585. 2017-11-09 Jim Wilson <jimw@sifive.com>
  586. * testsuite/gas/elf/dwarf2-10.l: Accept optional line number in error.
  587. 2017-11-06 Tamar Christina <tamar.christina@arm.com>
  588. * gas/testsuite/gas/aarch64/dotproduct_armv8_4.s: New.
  589. * gas/testsuite/gas/aarch64/dotproduct_armv8_4.d: New.
  590. 2017-11-09 Tamar Christina <tamar.christina@arm.com>
  591. * gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.d: New.
  592. * gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.l: New.
  593. * gas/testsuite/gas/aarch64/armv8_4-a-registers-illegal.s: New.
  594. * gas/testsuite/gas/aarch64/armv8_4-a-registers.d: New.
  595. * gas/testsuite/gas/aarch64/armv8_4-a-registers.s: New.
  596. 2017-11-09 Tamar Christina <tamar.christina@arm.com>
  597. * config/tc-aarch64.c (process_omitted_operand):
  598. Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2
  599. and AARCH64_OPND_IMM_2.
  600. (parse_operands): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
  601. AARCH64_OPND_IMM_2, AARCH64_OPND_MASK
  602. and AARCH64_OPND_ADDR_OFFSET.
  603. 2017-11-09 Tamar Christina <tamar.christina@arm.com>
  604. * config/tc-aarch64.c (aarch64_arch_option_table): Add armv8.4-a.
  605. (aarch64_features): Add SM4 and SHA3.
  606. 2017-11-08 Tamar Christina <tamar.christina@arm.com>
  607. * config/tc-aarch64.c
  608. (aarch64_features): Include AES and SHA2 in CRYPTO.
  609. Add SHA2 and AES.
  610. 2017-11-08 Jiong Wang <jiong.wang@arm.com>
  611. Tamar Christina <tamar.christina@arm.com>
  612. * config/tc-arm.c (arm_extensions):
  613. (arm_archs): New entry for "armv8.4-a".
  614. Add FPU_ARCH_DOTPROD_NEON_VFP_ARMV8.
  615. (arm_ext_v8_2): New variable.
  616. (enum arm_reg_type): New enumeration REG_TYPE_NSD.
  617. (reg_expected_msgs): New entry for REG_TYPE_NSD.
  618. (parse_typed_reg_or_scalar): Handle REG_TYPE_NSD.
  619. (parse_scalar): Support REG_TYPE_VFS.
  620. (enum operand_parse_code): New enumerations OP_RNSD and OP_RNSD_RNSC.
  621. (parse_operands): Handle OP_RNSD and OP_RNSD_RNSC.
  622. (NEON_SHAPE_DEF): New entries for DHH and DHS.
  623. (neon_scalar_for_fmac_fp16_long): New function to generate Rm encoding
  624. for new FP16 instructions in ARMv8.2-A.
  625. (do_neon_fmac_maybe_scalar_long): New function to encode new FP16
  626. instructions in ARMv8.2-A.
  627. (do_neon_vfmal): Wrapper function for vfmal.
  628. (do_neon_vfmsl): Wrapper function for vfmsl.
  629. (insns): New entries for vfmal and vfmsl.
  630. * doc/c-arm.texi (-march): Document "armv8.4-a".
  631. * testsuite/gas/arm/dotprod-mandatory.d: New test.
  632. * testsuite/gas/arm/armv8_2-a-fp16.s: New test source.
  633. * testsuite/gas/arm/armv8_2-a-fp16-illegal.s: New test source.
  634. * testsuite/gas/arm/armv8_2-a-fp16.d: New test.
  635. * testsuite/gas/arm/armv8_3-a-fp16.d: New test.
  636. * testsuite/gas/arm/armv8_4-a-fp16.d: New test.
  637. * testsuite/gas/arm/armv8_2-a-fp16-thumb2.d: New test.
  638. * testsuite/gas/arm/armv8_2-a-fp16-illegal.d: New test.
  639. * testsuite/gas/arm/armv8_2-a-fp16-illegal.l: New error file.
  640. 2017-11-08 Alan Modra <amodra@gmail.com>
  641. * config/tc-xtensa.c (finish_vinsn): Properly pluralize error message.
  642. 2017-11-07 Jim Wilson <jimw@sifive.com>
  643. * config/tc-riscv.c (append_insn): Call frag_wane and frag_new at
  644. end for linker optimizable relocs.
  645. * testsuite/gas/riscv/eh-relocs.d: New.
  646. * testsuite/gas/riscv/eh-relocs.s: New.
  647. * testsuite/gas/riscv/riscv.exp: Run eh-relocs test.
  648. 2017-11-07 Palmer Dabbelt <palmer@dabbelt.com>
  649. * testsuite/gas/riscv/satp.d: New test.
  650. testsuite/gas/riscv/satp.s: Likewise.
  651. testsuite/gas/riscv/riscv.exp: Likewise.
  652. config/tc-riscv.c (md_begin): Handle CSR aliases.
  653. 2017-11-07 Tamar Christina <tamar.christina@arm.com>
  654. * config/tc-arm.c (arm_cpus):
  655. Change FPU_ARCH_CRYPTO_NEON_VFP_ARMV8
  656. into FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_DOTPROD.
  657. 2017-11-07 Alan Modra <amodra@gmail.com>
  658. * read.c (assemble_one, s_bundle_unlock): Formatting.
  659. Consistently add comma and "bytes" to error message.
  660. * testsuite/gas/i386/bundle-bad.l: Adjust to suit.
  661. 2017-11-07 Alan Modra <amodra@gmail.com>
  662. * testsuite/gas/arm/got_prel.d,
  663. * testsuite/gas/elf/dwarf2-1.d,
  664. * testsuite/gas/elf/dwarf2-2.d,
  665. * testsuite/gas/elf/dwarf2-3.d,
  666. * testsuite/gas/elf/dwarf2-5.d,
  667. * testsuite/gas/elf/dwarf2-6.d,
  668. * testsuite/gas/i386/debug1.d,
  669. * testsuite/gas/i386/dw2-compress-1.d,
  670. * testsuite/gas/i386/dw2-compress-3a.d,
  671. * testsuite/gas/i386/dw2-compress-3b.d,
  672. * testsuite/gas/i386/dw2-compressed-1.d,
  673. * testsuite/gas/i386/dw2-compressed-3a.d,
  674. * testsuite/gas/i386/dw2-compressed-3b.d,
  675. * testsuite/gas/i386/ilp32/x86-64-localpic.d,
  676. * testsuite/gas/i386/localpic.d,
  677. * testsuite/gas/i386/x86-64-localpic.d,
  678. * testsuite/gas/ia64/pr13167.d,
  679. * testsuite/gas/mips/loc-swap-2.d,
  680. * testsuite/gas/mips/loc-swap.d,
  681. * testsuite/gas/mips/micromips@loc-swap-2.d,
  682. * testsuite/gas/mips/micromips@loc-swap.d,
  683. * testsuite/gas/mips/mips16-dwarf2-n32.d,
  684. * testsuite/gas/mips/mips16-dwarf2.d,
  685. * testsuite/gas/mips/mips16@loc-swap-2.d,
  686. * testsuite/gas/mips/mips16@loc-swap.d,
  687. * testsuite/gas/mips/mips16e@loc-swap.d,
  688. * testsuite/gas/mmix/bspec-1.d,
  689. * testsuite/gas/mmix/bspec-2.d,
  690. * testsuite/gas/tic6x/unwind-1.d,
  691. * testsuite/gas/tic6x/unwind-2.d,
  692. * testsuite/gas/tic6x/unwind-3.d: Update for pluralization
  693. fixes.
  694. 2017-11-07 Alan Modra <amodra@gmail.com>
  695. * as.c (main): Properly pluralize messages.
  696. * frags.c (frag_grow): Likewise.
  697. * read.c (emit_expr_with_reloc, emit_expr_fix): Likewise.
  698. (parse_bitfield_cons): Likewise.
  699. * write.c (fixup_segment, compress_debug, write_contents): Likewise.
  700. (relax_segment): Likewise.
  701. * config/tc-arm.c (s_arm_elf_cons): Likewise.
  702. * config/tc-cr16.c (l_cons): Likewise.
  703. * config/tc-i370.c (i370_elf_cons): Likewise.
  704. * config/tc-m68k.c (m68k_elf_cons): Likewise.
  705. * config/tc-msp430.c (msp430_operands): Likewise.
  706. * config/tc-s390.c (s390_elf_cons, s390_literals): Likewise.
  707. * config/tc-mcore.c (md_apply_fix): Likewise.
  708. * config/tc-tic54x.c (md_assemble): Likewise.
  709. * config/tc-xtensa.c (xtensa_elf_cons): Likewise.
  710. (xg_expand_assembly_insn): Likewise.
  711. * config/xtensa-relax.c (build_transition): Likewise.
  712. 2017-11-07 Alan Modra <amodra@gmail.com>
  713. * asintl.h (textdomain, bindtextdomain): Use safer "do nothing".
  714. (ngettext, dngettext, dcngettext): Define when !ENABLE_NLS.
  715. 2017-11-03 Siddhesh Poyarekar <siddhesh.poyarekar@linaro.org>
  716. Jim Wilson <jim.wilson@linaro.org>
  717. * config/tc-aarch64.c (aarch64_cpus): Add saphira.
  718. * doc/c-aarch64.texi: Likewise.
  719. 2017-11-02 Thomas Preud'homme <thomas.preudhomme@arm.com>
  720. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-1.d: Add
  721. --disassembler-options=force-thumb to objdump options.
  722. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-2.d: Likewise.
  723. 2017-11-01 James Bowman <james.bowman@ftdichip.com>
  724. * config/tc-ft32.c (md_assemble): Add relaxation reloc
  725. BFD_RELOC_FT32_RELAX.
  726. (md_longopts): Add "norelax" and "no-relax".
  727. (md_apply_fix): Add reloc BFD_RELOC_FT32_DIFF32.
  728. (relaxable_section, ft32_validate_fix_sub, ft32_force_relocation,
  729. ft32_allow_local_subtract): New function.
  730. * config/tc-ft32.h: Remove unused MD_PCREL_FROM_SECTION.
  731. * testsuite/gas/ft32/insnsc.s: New test exercising all FT32B
  732. shortcodes.
  733. * testsuite/gas/ft32/insnsc.d: New driver file.
  734. * testsuite/gas/all/gas.exp: Update.
  735. * testsuite/gas/ft32/ft32.exp: Run the new test.
  736. * testsuite/gas/ft32/insn.d: Update.
  737. * testsuite/gas/elf/dwarf2-11.d: Update.
  738. * testsuite/gas/elf/dwarf2-12.d: Update.
  739. * testsuite/gas/elf/dwarf2-13.d: Update.
  740. * testsuite/gas/elf/dwarf2-14.d: Update.
  741. * testsuite/gas/elf/dwarf2-15.d: Update.
  742. * testsuite/gas/elf/dwarf2-16.d: Update.
  743. * testsuite/gas/elf/dwarf2-17.d: Update.
  744. * testsuite/gas/elf/dwarf2-18.d: Update.
  745. * testsuite/gas/elf/dwarf2-3.d: Update.
  746. * testsuite/gas/elf/dwarf2-5.d: Update.
  747. * testsuite/gas/elf/dwarf2-7.d: Update.
  748. 2017-11-01 Thomas Preud'homme <thomas.preudhomme@arm.com>
  749. * config/tc-arm.c (arm_ext_v2): Define to ARM_EXT_V2 feature bit.
  750. * testsuite/gas/arm/copro.s: Split into
  751. * testsuite/gas/arm/copro-arm_v2plus-thumb_v6t2plus.s: This while
  752. changing it to unified syntax and
  753. * testsuite/gas/arm/copro-arm_v5plus-thumb_v6t2plus.s: this and ...
  754. * testsuite/gas/arm/copro-arm_v5teplus-thumb_v6t2plus.s: This and ...
  755. * testsuite/gas/arm/copro-arm_v6plus-thumb_v6t2plus.s: This.
  756. * testsuite/gas/arm/copro.d: Split into ...
  757. * testsuite/gas/arm/copro-arm_v2plus-arm_v2.d: This but target ARMv2
  758. and ...
  759. * testsuite/gas/arm/copro-arm_v5plus-arm_v5.d: this but target ARMv5
  760. and ...
  761. * testsuite/gas/arm/copro-arm_v5teplus-arm_v5te.d: This but target
  762. ARMv5TE and ...
  763. * testsuite/gas/arm/copro-arm_v6plus-arm_v6.d: This but target ARMv6.
  764. * testsuite/gas/arm/copro-arm_v2plus-arm_v1.d: New testcase.
  765. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-1.d: New testcase.
  766. * testsuite/gas/arm/copro-arm_v2plus-thumb_v6t2plus-unavail.l: Expected
  767. errors for the above two testcases.
  768. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-1.d: New testcase.
  769. * testsuite/gas/arm/copro-arm_v5plus-arm_v4.d: New testcase.
  770. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-2.d: New testcase.
  771. * testsuite/gas/arm/copro-arm_v5plus-thumb_v6t2plus-unavail.l:
  772. Expected errors for the above two testcases.
  773. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-2.d: New testcase.
  774. * testsuite/gas/arm/copro-arm_v5teplus-arm_v5.d: New testcase.
  775. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-3.d: New testcase.
  776. * testsuite/gas/arm/copro-arm_v5teplus-thumb_v6t2plus-unavail.l:
  777. Expected errors for the above two testcases.
  778. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-3.d: New testcase.
  779. * testsuite/gas/arm/copro-arm_v6plus-arm_v5te.d: New testcase.
  780. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v4t-4.d: New testcase.
  781. * testsuite/gas/arm/copro-arm_v6plus-thumb_v6t2plus-unavail.l:
  782. Expected errors for the above two testcases.
  783. * testsuite/gas/arm/copro-thumb_v6t2plus-thumb_v6t2-4.d: New testcase.
  784. 2017-10-26 H.J. Lu <hongjiu.lu@intel.com>
  785. PR gas/22352
  786. * config/tc-i386.c (check_VecOperands): Also check XMM register
  787. for invalid register in AVX512 gathers.
  788. * testsuite/gas/i386/vgather-check.s: Add tests for AVX512
  789. gathers with XMM register.
  790. * testsuite/gas/i386/x86-64-vgather-check.s: Likewise.
  791. * testsuite/gas/i386/vgather-check-error.l: Updated.
  792. * testsuite/gas/i386/vgather-check-none.d: Likewise.
  793. * testsuite/gas/i386/vgather-check-warn.d: Likewise.
  794. * testsuite/gas/i386/vgather-check-warn.e: Likewise.
  795. * testsuite/gas/i386/vgather-check.d: Likewise.
  796. * testsuite/gas/i386/x86-64-vgather-check-error.l: Likewise.
  797. * testsuite/gas/i386/x86-64-vgather-check-none.d: Likewise.
  798. * testsuite/gas/i386/x86-64-vgather-check-warn.d: Likewise.
  799. * testsuite/gas/i386/x86-64-vgather-check-warn.e: Likewise.
  800. * testsuite/gas/i386/x86-64-vgather-check.d: Likewise.
  801. 2017-10-26 Hans-Peter Nilsson <hp@bitrange.com>
  802. * testsuite/gas/all/fill-1.s: Use L2 rather than .L2.
  803. 2017-10-25 Alan Modra <amodra@gmail.com>
  804. PR 22348
  805. * config/tc-crx.c (instruction, output_opcode): Make static.
  806. (relocatable, ins_parse, cur_arg_num): Likewise.
  807. (parse_insn): Adjust for renamed opcodes globals.
  808. (check_range): Likewise
  809. 2017-10-25 Alan Modra <amodra@gmail.com>
  810. * testsuite/gas/all/fill-1.d: Exclude tic4x and tic54x.
  811. * testsuite/gas/all/fill-1.s: Use L1 rather than .L1.
  812. 2017-10-24 Andrew Waterman <andrew@sifive.com>
  813. * testsuite/gas/riscv/c-addi16sp-fail.d: New test.
  814. * testsuite/gas/riscv/c-addi16sp-fail.l: Likewise.
  815. * testsuite/gas/riscv/c-addi16sp-fail.s: Likewise.
  816. * testsuite/gas/riscv/c-addi4spn-fail.d: Likewise.
  817. * testsuite/gas/riscv/c-addi4spn-fail.l: Likewise.
  818. * testsuite/gas/riscv/c-addi4spn-fail.s: Likewise.
  819. * testsuite/gas/riscv/riscv.exp: Add new tests.
  820. 2017-10-24 Andrew Waterman <andrew@sifive.com>
  821. * testsuite/gas/riscv/c-lui-fail.d: New testcase.
  822. * gas/testsuite/gas/riscv/c-lui-fail.l: Likewise.
  823. * gas/testsuite/gas/riscv/c-lui-fail.s: Likewise.
  824. * gas/testsuite/gas/riscv/riscv.exp: Likewise.
  825. 2017-10-24 H.J. Lu <hongjiu.lu@intel.com>
  826. * config/tc-i386.c (md_pseudo_table): Add .code64 directive
  827. only if BFD64 is defined.
  828. * testsuite/gas/i386/code64-inval.l: New file.
  829. * gas/testsuite/gas/i386/code64-inval.s: Likewise.
  830. * gas/testsuite/gas/i386/code64.d: Likewise.
  831. * gas/testsuite/gas/i386/code64.s: Likewise.
  832. * testsuite/gas/i386/i386.exp: Run mixed-mode-reloc32,
  833. att-regs, intel-regs, intel-expr and string-ok tests only if
  834. assembler supports x86-64. Run code64 and code64-inval.
  835. 2017-10-23 Palmer Dabbelt <palmer@dabbelt.com>
  836. * config/tc-riscv.c (riscv_frag_align_code): Align code by 4
  837. bytes on non-RVC systems.
  838. 2017-10-23 Maciej W. Rozycki <macro@imgtec.com>
  839. * config/tc-mips.c (mips_elf_final_processing): Don't set
  840. EF_MIPS_ABI2 in `e_flags'.
  841. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  842. * config/tc-i386.c (cpu_arch): Add .avx512_bitalg.
  843. (cpu_noarch): noavx512_bitalg.
  844. * doc/c-i386.texi: Document .avx512_bitalg, noavx512_bitalg.
  845. * testsuite/gas/i386/i386.exp: Add AVX512_BITALG tests.
  846. * testsuite/gas/i386/avx512f_bitalg-intel.d: New test.
  847. * testsuite/gas/i386/avx512f_bitalg.d: Likewise.
  848. * testsuite/gas/i386/avx512f_bitalg.s: Likewise.
  849. * testsuite/gas/i386/avx512vl_bitalg-intel.d: Likewise.
  850. * testsuite/gas/i386/avx512vl_bitalg.d: Likewise.
  851. * testsuite/gas/i386/avx512vl_bitalg.s: Likewise.
  852. * testsuite/gas/i386/x86-64-avx512f_bitalg-intel.d: Likewise.
  853. * testsuite/gas/i386/x86-64-avx512f_bitalg.d: Likewise.
  854. * testsuite/gas/i386/x86-64-avx512f_bitalg.s: Likewise.
  855. * testsuite/gas/i386/x86-64-avx512vl_bitalg-intel.d: Likewise.
  856. * testsuite/gas/i386/x86-64-avx512vl_bitalg.d: Likewise.
  857. * testsuite/gas/i386/x86-64-avx512vl_bitalg.s: Likewise.
  858. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  859. * config/tc-i386.c (cpu_arch): Add .avx512_vnni.
  860. (cpu_noarch): Add noavx512_vnni.
  861. * doc/c-i386.texi: Document .avx512_vnni.
  862. * testsuite/gas/i386/i386.exp: Add AVX512_VNNI tests.
  863. * testsuite/gas/i386/avx512vnni-intel.d: New test.
  864. * testsuite/gas/i386/avx512vnni.d: Likewise.
  865. * testsuite/gas/i386/avx512vnni.s: Likewise.
  866. * testsuite/gas/i386/avx512vnni_vl-intel.d: Likewise.
  867. * testsuite/gas/i386/avx512vnni_vl.d: Likewise.
  868. * testsuite/gas/i386/avx512vnni_vl.s: Likewise.
  869. * testsuite/gas/i386/x86-64-avx512vnni-intel.d: Likewise.
  870. * testsuite/gas/i386/x86-64-avx512vnni.d: Likewise.
  871. * testsuite/gas/i386/x86-64-avx512vnni.s: Likewise.
  872. * testsuite/gas/i386/x86-64-avx512vnni_vl-intel.d: Likewise.
  873. * testsuite/gas/i386/x86-64-avx512vnni_vl.d: Likewise.
  874. * testsuite/gas/i386/x86-64-avx512vnni_vl.s: Likewise.
  875. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  876. * config/tc-i386.c (cpu_arch): Add VPCLMULQDQ.
  877. * doc/c-i386.texi: Document VPCLMULQDQ.
  878. * testsuite/gas/i386/i386.exp: Run VPCLMULQDQ tests.
  879. * testsuite/gas/i386/avx512f_vpclmulqdq-intel.d: New test.
  880. * testsuite/gas/i386/avx512f_vpclmulqdq-wig.s: Ditto.
  881. * testsuite/gas/i386/avx512f_vpclmulqdq-wig1-intel.d: Ditto.
  882. * testsuite/gas/i386/avx512f_vpclmulqdq-wig1.d: Ditto.
  883. * testsuite/gas/i386/avx512f_vpclmulqdq.d: Ditto.
  884. * testsuite/gas/i386/avx512f_vpclmulqdq.s: Ditto.
  885. * testsuite/gas/i386/avx512vl_vpclmulqdq-intel.d: Ditto.
  886. * testsuite/gas/i386/avx512vl_vpclmulqdq-wig.s: Ditto.
  887. * testsuite/gas/i386/avx512vl_vpclmulqdq-wig1-intel.d: Ditto.
  888. * testsuite/gas/i386/avx512vl_vpclmulqdq-wig1.d: Ditto.
  889. * testsuite/gas/i386/avx512vl_vpclmulqdq.d: Ditto.
  890. * testsuite/gas/i386/avx512vl_vpclmulqdq.s: Ditto.
  891. * testsuite/gas/i386/vpclmulqdq-intel.d: Ditto.
  892. * testsuite/gas/i386/vpclmulqdq.d: Ditto.
  893. * testsuite/gas/i386/vpclmulqdq.s: Ditto.
  894. * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq-intel.d: Ditto.
  895. * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq-wig.s: Ditto.
  896. * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq-wig1-intel.d: Ditto.
  897. * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq-wig1.d: Ditto.
  898. * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq.d: Ditto.
  899. * testsuite/gas/i386/x86-64-avx512f_vpclmulqdq.s: Ditto.
  900. * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq-intel.d: Ditto.
  901. * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq-wig.s: Ditto.
  902. * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq-wig1-intel.d: Ditto.
  903. * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq-wig1.d: Ditto.
  904. * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq.d: Ditto.
  905. * testsuite/gas/i386/x86-64-avx512vl_vpclmulqdq.s: Ditto.
  906. * testsuite/gas/i386/x86-64-vpclmulqdq-intel.d: Ditto.
  907. * testsuite/gas/i386/x86-64-vpclmulqdq.d: Ditto.
  908. * testsuite/gas/i386/x86-64-vpclmulqdq.s: Ditto.
  909. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  910. * config/tc-i386.c (cpu_arch): Add VAES.
  911. * doc/c-i386.texi: Document VAES.
  912. * testsuite/gas/i386/i386.exp: Run VAES tests.
  913. * testsuite/gas/i386/avx512f_vaes-intel.d: New test.
  914. * testsuite/gas/i386/avx512f_vaes-wig.s: Ditto.
  915. * testsuite/gas/i386/avx512f_vaes-wig1-intel.d: Ditto.
  916. * testsuite/gas/i386/avx512f_vaes-wig1.d: Ditto.
  917. * testsuite/gas/i386/avx512f_vaes.d: Ditto.
  918. * testsuite/gas/i386/avx512f_vaes.s: Ditto.
  919. * testsuite/gas/i386/avx512vl_vaes-intel.d: Ditto.
  920. * testsuite/gas/i386/avx512vl_vaes-wig.s: Ditto.
  921. * testsuite/gas/i386/avx512vl_vaes-wig1-intel.d: Ditto.
  922. * testsuite/gas/i386/avx512vl_vaes-wig1.d: Ditto.
  923. * testsuite/gas/i386/avx512vl_vaes.d: Ditto.
  924. * testsuite/gas/i386/avx512vl_vaes.s: Ditto.
  925. * testsuite/gas/i386/vaes-intel.d: Ditto.
  926. * testsuite/gas/i386/vaes.d: Ditto.
  927. * testsuite/gas/i386/vaes.s: Ditto.
  928. * testsuite/gas/i386/x86-64-avx512f_vaes-intel.d: Ditto.
  929. * testsuite/gas/i386/x86-64-avx512f_vaes-wig.s: Ditto.
  930. * testsuite/gas/i386/x86-64-avx512f_vaes-wig1-intel.d: Ditto.
  931. * testsuite/gas/i386/x86-64-avx512f_vaes-wig1.d: Ditto.
  932. * testsuite/gas/i386/x86-64-avx512f_vaes.d: Ditto.
  933. * testsuite/gas/i386/x86-64-avx512f_vaes.s: Ditto.
  934. * testsuite/gas/i386/x86-64-avx512vl_vaes-intel.d: Ditto.
  935. * testsuite/gas/i386/x86-64-avx512vl_vaes-wig.s: Ditto.
  936. * testsuite/gas/i386/x86-64-avx512vl_vaes-wig1-intel.d: Ditto.
  937. * testsuite/gas/i386/x86-64-avx512vl_vaes-wig1.d: Ditto.
  938. * testsuite/gas/i386/x86-64-avx512vl_vaes.d: Ditto.
  939. * testsuite/gas/i386/x86-64-avx512vl_vaes.s: Ditto.
  940. * testsuite/gas/i386/x86-64-vaes-intel.d: Ditto.
  941. * testsuite/gas/i386/x86-64-vaes.d: Ditto.
  942. * testsuite/gas/i386/x86-64-vaes.s: Ditto.
  943. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  944. * config/tc-i386.c (cpu_arch): Add .gfni.
  945. * doc/c-i386.texi: Document .gfni.
  946. * testsuite/gas/i386/i386.exp: Add GFNI tests.
  947. * testsuite/gas/i386/avx.s: New GFNI test.
  948. * testsuite/gas/i386/x86-64-avx.s: Likewise.
  949. * testsuite/gas/i386/avx.d: Adjust.
  950. * testsuite/gas/i386/avx-intel.d: Likewise
  951. * testsuite/gas/i386/ilp32/x86-64-avx-intel.d: Likewise.
  952. * testsuite/gas/i386/ilp32/x86-64-avx.d: Likewise.
  953. * testsuite/gas/i386/avx512f_gfni-intel.d: New test.
  954. * testsuite/gas/i386/avx512f_gfni.d: Likewise.
  955. * testsuite/gas/i386/avx512f_gfni.s: Likewise.
  956. * testsuite/gas/i386/avx512vl_gfni-intel.d: Likewise.
  957. * testsuite/gas/i386/avx512vl_gfni.d: Likewise.
  958. * testsuite/gas/i386/avx512vl_gfni.s: Likewise.
  959. * testsuite/gas/i386/gfni-intel.d: Likewise.
  960. * testsuite/gas/i386/gfni.d: Likewise.
  961. * testsuite/gas/i386/gfni.s: Likewise.
  962. * testsuite/gas/i386/x86-64-avx512f_gfni-intel.d: Likewise.
  963. * testsuite/gas/i386/x86-64-avx512f_gfni.d: Likewise.
  964. * testsuite/gas/i386/x86-64-avx512f_gfni.s: Likewise.
  965. * testsuite/gas/i386/x86-64-avx512vl_gfni-intel.d: Likewise.
  966. * testsuite/gas/i386/x86-64-avx512vl_gfni.d: Likewise.
  967. * testsuite/gas/i386/x86-64-avx512vl_gfni.s: Likewise.
  968. * testsuite/gas/i386/x86-64-avx_gfni-intel.d: Likewise.
  969. * testsuite/gas/i386/x86-64-avx_gfni.d: Likewise.
  970. * testsuite/gas/i386/x86-64-avx_gfni.s: Likewise.
  971. * testsuite/gas/i386/x86-64-gfni-intel.d: Likewise.
  972. * testsuite/gas/i386/x86-64-gfni.d: Likewise.
  973. * testsuite/gas/i386/x86-64-gfni.s: Likewise.
  974. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  975. * config/tc-i386.c (cpu_arch): Add .avx512_vbmi2.
  976. (cpu_noarch): noavx512_vbmi2.
  977. * doc/c-i386.texi: Document .avx512_vbmi2, noavx512_vbmi2.
  978. * testsuite/gas/i386/i386.exp: Add AVX512_VBMI2 tests.
  979. * testsuite/gas/i386/avx512vbmi2-intel.d: New test.
  980. * testsuite/gas/i386/avx512vbmi2.d: Likewise.
  981. * testsuite/gas/i386/avx512vbmi2.s: Likewise.
  982. * testsuite/gas/i386/avx512vbmi2_vl-intel.d: Likewise.
  983. * testsuite/gas/i386/avx512vbmi2_vl.d: Likewise.
  984. * testsuite/gas/i386/avx512vbmi2_vl.s: Likewise.
  985. * testsuite/gas/i386/x86-64-avx512vbmi2-intel.d: Likewise.
  986. * testsuite/gas/i386/x86-64-avx512vbmi2.d: Likewise.
  987. * testsuite/gas/i386/x86-64-avx512vbmi2.s: Likewise.
  988. * testsuite/gas/i386/x86-64-avx512vbmi2_vl-intel.d: Likewise.
  989. * testsuite/gas/i386/x86-64-avx512vbmi2_vl.d: Likewise.
  990. * testsuite/gas/i386/x86-64-avx512vbmi2_vl.s: Likewise.
  991. 2017-10-22 Hans-Peter Nilsson <hp@axis.com>
  992. PR gas/22304
  993. * testsuite/gas/cris/range-err-1.s: Remove quotes left from last edit.
  994. 2017-10-20 Nick Clifton <nickc@redhat.com>
  995. PR 22324
  996. * read.c (s_rept): Use size_t type for count parameter.
  997. (do_repeat): Change type of count parameter to size_t.
  998. Issue an error is the count parameter is negative.
  999. (do_repeat_with_expression): Likewise.
  1000. * read.h: Update prototypes for do_repeat and
  1001. do_repeat_with_expression.
  1002. * doc/as.texinfo (Rept): Document that a zero count is allowed but
  1003. negative counts are not.
  1004. * config/tc-rx.c (rx_rept): Use size_t type for count parameter.
  1005. * config/tc-tic54x.c (tic54x_loop): Cast count parameter to size_t
  1006. type.
  1007. * testsuite/gas/macros/end.s: Add a test using a negative repeat
  1008. count.
  1009. * testsuite/gas/macros/end.l: Add expected error message.
  1010. 2017-10-19 Palmer Dabbelt <palmer@dabbelt.com>
  1011. * config/tc-riscv.c (md_apply_fix): Mark
  1012. BFD_RELOC_RISCV_PCREL_HI20 as relaxable when relaxations are
  1013. enabled.
  1014. 2017-10-19 Nick Clifton <nickc@redhat.com>
  1015. PR 21621
  1016. * config/tc-avr.h (struct avr_frag_data): Add prev_opcode field.
  1017. (TC_FRAG_INIT): Define.
  1018. (avr_frag_init): Add prototype.
  1019. * config/tc-avr.c (avr_frag_init): New function.
  1020. (avr_operands): Replace static local 'prev' variable with
  1021. prev_opcode field in current frag.
  1022. * testsuite/gas/avr/pr21621.s: New test source file.
  1023. * testsuite/gas/avr/pr21621.d: New test driver file.
  1024. * testsuite/gas/avr/pr21621.s: New test error output file.
  1025. 2017-10-19 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
  1026. * testsuite/gas/all/fill-1.s: Use normal labels. Change .text to
  1027. .data. Pick different values. Use .dc.w instead of .word.
  1028. * testsuite/gas/all/fill-1.d: New objdump output check.
  1029. * testsuite/gas/all/gas.exp: Use run_dump_test to execute fill-1
  1030. testcase.
  1031. 2017-10-18 Palmer Dabbelt <palmer@dabbelt.com>
  1032. * testsuite/gas/all/align.d: Mark as unsupported on RISC-V.
  1033. testsuite/gas/all/relax.d: Likewise.
  1034. testsuite/gas/all/sleb128-2.d: Likewise.
  1035. testsuite/gas/all/sleb128-4.d: Likewise.
  1036. testsuite/gas/all/sleb128-5.d: Likewise.
  1037. testsuite/gas/all/sleb128-7.d: Likewise.
  1038. testsuite/gas/elf/section11.d: Likewise.
  1039. testsuite/gas/all/gas.exp (diff1.s): Likewise.
  1040. 2017-10-18 Nick Clifton <nickc@redhat.com>
  1041. PR gas/22304
  1042. * testsuite/gas/cris/range-err-1.s: Remove spurious xfails.
  1043. * testsuite/gas/cris/cris.exp: Expect the shexpr-1 test to pass.
  1044. 2017-10-18 Nick Clifton <nickc@redhat.com>
  1045. * po/sv.po: Updated Swedish translation.
  1046. 2017-10-16 Sandra Loosemore <sandra@codesourcery.com>
  1047. Henry Wong <henry@stuffedcow.net>
  1048. * config/tc-nios2.c (nios2_translate_pseudo_insn): Check for
  1049. correct number of arguments.
  1050. (md_assemble): Handle failure of nios2_translate_pseudo_insn.
  1051. * testsuite/gas/nios2/illegal_pseudoinst.l: New file.
  1052. * testsuite/gas/nios2/illegal_pseudoinst.s: New file.
  1053. * testsuite/gas/nios2/nios2.exp: Add illegal_pseudoinst test.
  1054. 2017-10-12 James Bowman <james.bowman@ftdichip.com>
  1055. * config/tc-ft32.c (md_assemble): Replace FT32_FLD_K8 with
  1056. K15.
  1057. (md_apply_fix, tc_gen_reloc): Add BFD_RELOC_FT32_15.
  1058. 2017-10-11 Nick Clifton <nickc@redhat.com>
  1059. PR 21977
  1060. * listing.c (listing_newline): Use the name of the current
  1061. physical input file, rather than the current logical input file,
  1062. unless including high level source in the listing.
  1063. * input-scrub.c (as_where_physical): New function. Returns the
  1064. name of the current physical input file.
  1065. * as.h: Add prototype for as_where_physical.
  1066. 2017-10-09 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
  1067. * testsuite/gas/s390/zarch-arch12.d (prno, tpei, irbm): New
  1068. instructions added.
  1069. * testsuite/gas/s390/zarch-arch12.s: Likewise.
  1070. * testsuite/gas/s390/zarch-z13.d: Rename ppno to prno.
  1071. 2017-10-09 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
  1072. * testsuite/gas/all/fill-1.s: Replace nop with .word 42
  1073. 2017-10-09 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
  1074. * read.c (s_fill): Invoke expression instead of
  1075. get_known_segmented_expression.
  1076. * testsuite/gas/all/fill-1.s: New testcase.
  1077. * testsuite/gas/all/gas.exp: Run fill-1 testcase
  1078. 2017-10-05 Nick Clifton <nickc@redhat.com>
  1079. PR 22133
  1080. * config/tc-msp430.c (parse_exp): Skip an 'h' suffix to constant
  1081. expressions.
  1082. (msp430_srcoperand): Check that the entire text was parsed by
  1083. parse_exp.
  1084. (msp430_operands): Likewise.
  1085. * testsuite/gas/msp430/pr22133.s: New test file.
  1086. * testsuite/gas/msp430/pr22133.d: New test driver.
  1087. * testsuite/gas/msp430/pr22133.s: Expected error output.
  1088. * testsuite/gas/msp430/msp430.exp: Run the new test.
  1089. 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
  1090. PR gas/21167
  1091. * testsuite/gas/elf/elf.exp: Run group3.
  1092. * testsuite/gas/elf/group3.d: New file.
  1093. * testsuite/gas/elf/group3.s: Likewise.
  1094. 2017-10-05 Alan Modra <amodra@gmail.com>
  1095. PR 21167
  1096. * config/obj-elf.c (struct group_list): Delete elt_count.
  1097. (groups): New static.
  1098. (build_group_lists): Don't count elements.
  1099. (elf_adjust_symtab): Use "groups" rather than auto "list". Set up
  1100. pointer from group member to SHT_GROUP section. Don't size
  1101. SHT_GROUP section or clean up here..
  1102. (elf_frob_file_after_relocs): ..do so here instead.
  1103. * testsuite/gas/arc/jli-1.d,
  1104. * testsuite/gas/elf/groupautob.d,
  1105. * testsuite/gas/mips/compact-eh-eb-2.d,
  1106. * testsuite/gas/mips/compact-eh-eb-5.d,
  1107. * testsuite/gas/mips/compact-eh-el-2.d,
  1108. * testsuite/gas/mips/compact-eh-el-5.d: Adjust.
  1109. 2017-10-01 Alexander Fedotov <alfedotov@gmail.com>
  1110. * testsuite/gas/ppc/vle-mult-ld-st-insns.s: New file: Tests the
  1111. support for the VLE multiple load/store instructions.
  1112. * testsuite/gas/ppc/vle-mult-ld-st-insns.d: New file: Test
  1113. driver.
  1114. * testsuite/gas/ppc/ppc.exp: Run it.
  1115. 2017-09-27 Nick Clifton <nickc@redhat.com>
  1116. PR 22179
  1117. * testsuite/gas/riscv/fmv.x.s: New file: Tests the support for the
  1118. renamed fmv.x.s and fmv.s.x instructions.
  1119. * testsuite/gas/riscv/fmv.x.d: New file: Test driver.
  1120. 2017-09-21 Maciej W. Rozycki <macro@imgtec.com>
  1121. * testsuite/gas/mips/elf_mach_5900.d: New test.
  1122. * testsuite/gas/mips/mips.exp: Run it.
  1123. 2017-09-21 James Cowgill <James.Cowgill@imgtec.com>
  1124. PR gas/21762
  1125. * config/tc-mips.c (s_mips_stab): Insert call to
  1126. file_mips_check_options.
  1127. * testsuite/gas/mips/micromips@stabs-symbol-type.d: New test.
  1128. * testsuite/gas/mips/mips.exp: Run the new tests.
  1129. * testsuite/gas/mips/mips16@stabs-symbol-type.d: New test.
  1130. * testsuite/gas/mips/stabs-symbol-type.d: New test.
  1131. * testsuite/gas/mips/stabs-symbol-type.s: New test source.
  1132. 2017-09-21 Alan Modra <amodra@gmail.com>
  1133. * config/tc-ppc.h (EH_FRAME_ALIGNMENT): Define.
  1134. 2017-09-14 Alan Modra <amodra@gmail.com>
  1135. PR 22127
  1136. * write.c (resolve_reloc_expr_symbols): Don't segfault when
  1137. sec has been set to NULL.
  1138. 2017-09-09 H.J. Lu <hongjiu.lu@intel.com>
  1139. * config/tc-i386.c (NOTRACK_PREFIX): Removed.
  1140. (REX_PREFIX): Updated.
  1141. (MAX_PREFIXES): Likewise.
  1142. (parse_insn): Remove restriction on NOTRACK prefix position.
  1143. * testsuite/gas/i386/notrack.s: Add tests with NOTRACK prefix
  1144. before other prefixes.
  1145. * testsuite/gas/i386/x86-64-notrack.s: Likewise.
  1146. * testsuite/gas/i386/notrackbad.s: Remove tests with NOTRACK
  1147. prefix before other prefixes.
  1148. * testsuite/gas/i386/x86-64-notrackbad.s: Likewise.
  1149. * testsuite/gas/i386/notrack-intel.d: Updated.
  1150. * testsuite/gas/i386/notrack.d: Likewise.
  1151. * testsuite/gas/i386/notrackbad.l: Likewise.
  1152. * testsuite/gas/i386/x86-64-notrack-intel.d: Likewise.
  1153. * testsuite/gas/i386/x86-64-notrack.d: Likewise.
  1154. * testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
  1155. 2017-09-07 Palmer Dabbelt <palmer@dabbelt.com>
  1156. * config/tc-riscv.c (riscv_frag_align_code): Emit the entire
  1157. alignment sequence inside R_RISCV_ALIGN.
  1158. 2017-09-05 Alexander Fedotov <alexander.fedotov@nxp.com>
  1159. Edmar Wienskoski <edmar.wienskoski@nxp.com
  1160. * config/tc-ppc.c (md_parse_option): Handle "mno-vle" flag.
  1161. (ppc_elf_section_letter): New function.
  1162. * config/tc-ppc.h (md_elf_section_letter): New.
  1163. * testsuite/gas/elf/section10.d: Adjust for VLE.
  1164. 2017-09-01 Tamar Christina <tamar.christina@arm.com>
  1165. * config/tc-aarch64.c (aarch64_cpus): Enable DOTPROD for
  1166. cortex-a55 and cortx-a75.
  1167. 2017-08-30 Maciej W. Rozycki <macro@imgtec.com>
  1168. * testsuite/gas/mips/branch-addend-micromips.d: New test.
  1169. * testsuite/gas/mips/branch-addend-micromips-n32.d: New test.
  1170. * testsuite/gas/mips/branch-addend-micromips-n64.d: New test.
  1171. * testsuite/gas/mips/branch-addend-micromips.s: New test source.
  1172. * testsuite/gas/mips/mips.exp: Run the new tests.
  1173. 2017-08-30 Maciej W. Rozycki <macro@imgtec.com>
  1174. * config/tc-mips.c (md_convert_frag): Respect
  1175. `mips_ignore_branch_isa'.
  1176. * testsuite/gas/mips/branch-local-5.d: New test.
  1177. * testsuite/gas/mips/branch-local-n32-5.d: New test.
  1178. * testsuite/gas/mips/branch-local-n64-5.d: New test.
  1179. * testsuite/gas/mips/branch-local-6.d: New test.
  1180. * testsuite/gas/mips/branch-local-n32-6.d: New test.
  1181. * testsuite/gas/mips/branch-local-n64-6.d: New test.
  1182. * testsuite/gas/mips/branch-local-7.d: New test.
  1183. * testsuite/gas/mips/branch-local-n32-7.d: New test.
  1184. * testsuite/gas/mips/branch-local-n64-7.d: New test.
  1185. * testsuite/gas/mips/branch-local-ignore-5.d: New test.
  1186. * testsuite/gas/mips/branch-local-ignore-n32-5.d: New test.
  1187. * testsuite/gas/mips/branch-local-ignore-n64-5.d: New test.
  1188. * testsuite/gas/mips/branch-local-ignore-6.d: New test.
  1189. * testsuite/gas/mips/branch-local-ignore-n32-6.d: New test.
  1190. * testsuite/gas/mips/branch-local-ignore-n64-6.d: New test.
  1191. * testsuite/gas/mips/branch-local-5.l: New stderr output.
  1192. * testsuite/gas/mips/branch-local-6.l: New stderr output.
  1193. * testsuite/gas/mips/branch-local-5.s: New test source.
  1194. * testsuite/gas/mips/branch-local-6.s: New test source.
  1195. * testsuite/gas/mips/branch-local-7.s: New test source.
  1196. * testsuite/gas/mips/mips.exp: Run the new tests.
  1197. 2017-08-30 Maciej W. Rozycki <macro@imgtec.com>
  1198. * testsuite/gas/mips/branch-local-n32-2.d: Use `branch-local-2.l'
  1199. for `error-output'.
  1200. * testsuite/gas/mips/branch-local-n64-2.d: Likewise.
  1201. * testsuite/gas/mips/branch-local-n32-3.d: Use `branch-local-3.l'
  1202. for `error-output'.
  1203. * testsuite/gas/mips/branch-local-n64-3.d: Likewise.
  1204. * testsuite/gas/mips/branch-local-n32-2.l: Remove file.
  1205. * testsuite/gas/mips/branch-local-n64-2.l: Remove file.
  1206. * testsuite/gas/mips/branch-local-n32-3.l: Remove file.
  1207. * testsuite/gas/mips/branch-local-n64-3.l: Remove file.
  1208. 2017-08-29 Jozef Lawrynowicz <jozef.l@somniumtech.com>
  1209. * config/tc-msp430.c (md_parse_option): Define high data and high
  1210. bss symbols if -mdata-region is passed.
  1211. Define -mdata-region open.
  1212. * doc/c-msp430.texi: Document -mdata-region.
  1213. * testsuite/gas/msp430/high-data-bss-sym.d: New test.
  1214. * testsuite/gas/msp430/high-data-bss-sym.s: New.
  1215. * testsuite/gas/msp430/msp430.exp: Add -mdata-region tests.
  1216. 2017-08-23 Alexander Fedotov <alexander.fedotov@nxp.com>
  1217. Edmar Wienskoski <edmar.wienskoski@nxp.com
  1218. * config/tc-ppc.c:
  1219. (md_parse_option): Add mspe2 switch.
  1220. (md_show_usage): Document -mspe2.
  1221. (ppc_setup_opcodes): Handle spe2_opcodes.
  1222. * doc/as.texinfo: Document -mspe2.
  1223. * doc/c-ppc.texi: Likewise.
  1224. * testsuite/gas/ppc/efs.d: New file.
  1225. * testsuite/gas/ppc/efs.s: Likewise.
  1226. * testsuite/gas/ppc/efs2.d: Likewise.
  1227. * testsuite/gas/ppc/efs2.s: Likewise.
  1228. * testsuite/gas/ppc/ppc.exp: Run new tests.
  1229. * testsuite/gas/ppc/spe.d: New file.
  1230. * testsuite/gas/ppc/spe.s: Likewise.
  1231. * testsuite/gas/ppc/spe2-checks.d: Likewise.
  1232. * testsuite/gas/ppc/spe2-checks.l: Likewise.
  1233. * testsuite/gas/ppc/spe2-checks.s: Likewise.
  1234. * testsuite/gas/ppc/spe2.d: Likewise.
  1235. * testsuite/gas/ppc/spe2.s: Likewise.
  1236. * testsuite/gas/ppc/spe_ambiguous.d: Likewise.
  1237. * testsuite/gas/ppc/spe_ambiguous.s: Likewise.
  1238. 2017-08-23 James Clarke <jrtc27@jrtc27.com>
  1239. * config/tc-sparc.c (tc_gen_reloc): Convert BFD_RELOC_8/16/32/64
  1240. into the corresponding BFD_RELOC_8/16/32/64_PCREL relocation
  1241. when requested.
  1242. * config/tc-sparc.h (DIFF_EXPR_OK): Define to enable PC-relative
  1243. diff relocations.
  1244. (TC_FORCE_RELOCATION_SUB_LOCAL): Define to ensure only supported
  1245. relocations are made PC-relative.
  1246. (CFI_DIFF_EXPR_OK): Define to 0 to force BFD_RELOC_32_PCREL to
  1247. be used directly, since otherwise BFD_RELOC_SPARC_UA32 will be
  1248. used for .eh_frame which cannot in general be converted to a
  1249. BFD_RELOC_32_PCREL due to alignment requirements.
  1250. 2017-08-22 Alan Modra <amodra@gmail.com>
  1251. * testsuite/gas/ppc/lsp-checks.d: Assemble with -a32.
  1252. * testsuite/gas/ppc/lsp.d: Likewise.
  1253. 2017-08-21 Alexander Fedotov <alexander.fedotov@nxp.com>
  1254. Edmar Wienskoski <edmar.wienskoski@nxp.com
  1255. * testsuite/gas/ppc/lsp-checks.d,
  1256. * testsuite/gas/ppc/lsp-checks.l,
  1257. * testsuite/gas/ppc/lsp-checks.s: New test.
  1258. * testsuite/gas/ppc/lsp.d,
  1259. * testsuite/gas/ppc/lsp.s: New test.
  1260. * testsuite/gas/ppc/ppc.exp: Run new tests.
  1261. 2017-08-15 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
  1262. * config/tc-aarch64.c (REGDEF_ALIAS): Define
  1263. (reg_names): Update for ip0, ip1, fp, lr to use REGDEF_ALIAS
  1264. * doc/c-aarch64.texi: Update documentation on .req.
  1265. * testsuite/gas/diagnostic.s: Update
  1266. * testsuite/gas/diagnostic.l: Likewise
  1267. * testsuite/gas/register_aliases.s: New file.
  1268. * testsuite/gas/register_aliases.d: New file.
  1269. 2017-08-11 H.J. Lu <hongjiu.lu@intel.com>
  1270. PR gas/21667
  1271. * read.c (pseudo_set): Update error message for alias of common
  1272. symbol.
  1273. * write.c (write_object_file): Disallow both local and global
  1274. aliases of common symbol.
  1275. * testsuite/gas/elf/common5a.d: New file.
  1276. * testsuite/gas/elf/common5a.l: Likewise.
  1277. * testsuite/gas/elf/common5a.s: Likewise.
  1278. * testsuite/gas/elf/common5b.d: Likewise.
  1279. * testsuite/gas/elf/common5b.l: Likewise.
  1280. * testsuite/gas/elf/common5b.s: Likewise.
  1281. * testsuite/gas/elf/common5c.d: Likewise.
  1282. * testsuite/gas/elf/common5c.s: Likewise.
  1283. * testsuite/gas/elf/common5d.d: Likewise.
  1284. * testsuite/gas/elf/common5d.s: Likewise.
  1285. * testsuite/gas/elf/elf.exp: Run common5a, common5b, common5c
  1286. and common5d.
  1287. 2017-08-10 Nick Clifton <nickc@redhat.com>
  1288. PR gas/21939
  1289. * config/obj-macho.c (obj_mach_o_set_indirect_symbols): Increase
  1290. size of indirect_syms array so that it is large enough to hold
  1291. every symbol if necessary.
  1292. 2017-08-09 Jiong Wang <jiong.wang@arm.com>
  1293. * config/tc-arm.c (do_crc32_1): Remove warning on REG_SP for thumb_mode.
  1294. * testsuite/gas/arm/crc32-armv8-a-bad.d: Update exepcted result.
  1295. * testsuite/gas/arm/crc32-armv8-r-bad.d: Likewise.
  1296. * testsuite/gas/arm/crc32-armv8-a.d: Likewise.
  1297. * testsuite/gas/arm/crc32-armv8-r.d: Likewise.
  1298. * testsuite/gas/arm/crc32-armv8-ar-bad.s: Update test case.
  1299. * testsuite/gas/arm/crc32-armv8-ar.s: Likewise.
  1300. * testsuite/gas/arm/crc32-bad.l: Update expected error message.
  1301. 2017-08-02 Nick Clifton <nickc@redhat.com>
  1302. * testsuite/gas/all/gas.exp: Add am33 to the skip lists of tests
  1303. passed over by the mn10300 target.
  1304. * testsuite/gas/elf/elf.exp: Likewise.
  1305. * testsuite/gas/elf/dwarf2-11.d: Correct skip of am33 target.
  1306. * testsuite/gas/elf/dwarf2-12.d: Likewise.
  1307. * testsuite/gas/elf/dwarf2-13.d: Likewise.
  1308. * testsuite/gas/elf/dwarf2-14.d: Likewise.
  1309. * testsuite/gas/elf/dwarf2-15.d: Likewise.
  1310. * testsuite/gas/elf/dwarf2-16.d: Likewise.
  1311. * testsuite/gas/elf/dwarf2-17.d: Likewise.
  1312. * testsuite/gas/elf/dwarf2-18.d: Likewise.
  1313. * testsuite/gas/elf/dwarf2-5.d: Likewise.
  1314. * testsuite/gas/elf/dwarf2-6.d: Likewise.
  1315. * testsuite/gas/elf/dwarf2-7.d: Likewise.
  1316. 2017-07-31 John David Anglin <danglin@gcc.gnu.org>
  1317. * config/tc-hppa.c (pa_ip): Clear `d' bit in branch on bit instructions
  1318. with a double-word condition and a fixed bit position greater than 31.
  1319. 2017-07-28 Andrew Waterman <andrew@sifive.com>
  1320. * config/tc-riscv.c (riscv_set_arch): Handle the Q subset like
  1321. all other subsets.
  1322. Obviate use-after-free.
  1323. 2017-07-25 Nick Clifton <nickc@redhat.com>
  1324. PR 21739
  1325. * testsuite/gas/arc/add_s-err.s: Update expected error message.
  1326. 2017-07-24 Nick Clifton <nickc@redhat.com>
  1327. PR 21809
  1328. * config/tc-aarch64.c (aarch64_init_frag): Do not set a mapping
  1329. state for frags in debug sections.
  1330. * config/tc-arm.c (arm_init_frag): Likewise.
  1331. 2017-07-24 Hans-Peter Nilsson <hp@bitrange.com>
  1332. * dwarf2dbg.c (dwarf2dbg_final_check): Rename local variable exp
  1333. from expr.
  1334. 2017-07-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
  1335. * config/tc-s390.c (s390_parse_cpu): Add z14 as alternate CPU
  1336. name.
  1337. * doc/as.texinfo: Add z14 to CPU string list.
  1338. * doc/c-s390.texi: Likewise.
  1339. 2017-07-21 Alexandre Oliva <aoliva@redhat.com>
  1340. * dwarf2dbg.c (unused): Check offset of next in struct line_entry.
  1341. (current): Initialize view.
  1342. (force_reset_view, view_assert_failed): New variables.
  1343. (reverse_line_entry_list): New function.
  1344. (set_or_check_view): Likewise.
  1345. (dwarf2_gen_line_info_1): Call it.
  1346. (dwarf2_where): Set view to NULL.
  1347. (dwarf2_emit_insn): Return early when called before first file.
  1348. (dwarf2_directive_loc): Add view support. Emit insn
  1349. immediately when view option is given.
  1350. (process_entries): Avoid set_address to reset view when a known
  1351. address change already implies the view reset.
  1352. (dwarf2dbg_final_check): New function.
  1353. * dwarf2dbg.h (struct dwarf2_line_info): Add view.
  1354. (dwarf2dbg_final_check): Declare.
  1355. * read.c (s_leb128): Parse expression as deferred.
  1356. * write.c (write_object_file): Check pending view asserts.
  1357. (cvt_frag_to_fill): Complain about undefined leb128 operand.
  1358. * doc/as.texinfo (.loc): Document view support.
  1359. * NEWS: Mention the new feature.
  1360. * testsuite/gas/all/gas.exp: Run sleb128-9.
  1361. * testsuite/gas/all/sleb128-9.d: New.
  1362. * testsuite/gas/all/sleb128-9.l: New.
  1363. * testsuite/gas/all/sleb128-9.s: New.
  1364. * testsuite/gas/elf/dwarf2-1.d: Add nonzero views.
  1365. * testsuite/gas/elf/dwarf2-2.d: Likewise.
  1366. * testsuite/gas/elf/dwarf2-5.d: New.
  1367. * testsuite/gas/elf/dwarf2-5.s: New.
  1368. * testsuite/gas/elf/dwarf2-6.d: New.
  1369. * testsuite/gas/elf/dwarf2-6.s: New.
  1370. * testsuite/gas/elf/dwarf2-7.d: New.
  1371. * testsuite/gas/elf/dwarf2-7.s: New.
  1372. * testsuite/gas/elf/dwarf2-8.d: New.
  1373. * testsuite/gas/elf/dwarf2-8.l: New.
  1374. * testsuite/gas/elf/dwarf2-8.s: New.
  1375. * testsuite/gas/elf/dwarf2-9.d: New.
  1376. * testsuite/gas/elf/dwarf2-9.l: New.
  1377. * testsuite/gas/elf/dwarf2-9.s: New.
  1378. * testsuite/gas/elf/dwarf2-10.d: New.
  1379. * testsuite/gas/elf/dwarf2-10.l: New.
  1380. * testsuite/gas/elf/dwarf2-10.s: New.
  1381. * testsuite/gas/elf/dwarf2-11.d: New.
  1382. * testsuite/gas/elf/dwarf2-11.s: New.
  1383. * testsuite/gas/elf/dwarf2-12.d: New.
  1384. * testsuite/gas/elf/dwarf2-12.s: New.
  1385. * testsuite/gas/elf/dwarf2-13.d: New.
  1386. * testsuite/gas/elf/dwarf2-13.s: New.
  1387. * testsuite/gas/elf/dwarf2-14.d: New.
  1388. * testsuite/gas/elf/dwarf2-14.s: New.
  1389. * testsuite/gas/elf/dwarf2-15.d: New.
  1390. * testsuite/gas/elf/dwarf2-15.s: New.
  1391. * testsuite/gas/elf/dwarf2-16.d: New.
  1392. * testsuite/gas/elf/dwarf2-16.s: New.
  1393. * testsuite/gas/elf/dwarf2-17.d: New.
  1394. * testsuite/gas/elf/dwarf2-17.s: New.
  1395. * testsuite/gas/elf/dwarf2-18.d: New.
  1396. * testsuite/gas/elf/dwarf2-18.s: New.
  1397. * testsuite/gas/elf/elf.exp: Run dwarf2-5..18 tests.
  1398. * testsuite/gas/i386/dw2-compress-1.d: Add nonzero views.
  1399. * testsuite/gas/i386/dw2-compressed-1.d: Likewise.
  1400. * testsuite/gas/i386/ilp32/lns/lns-duplicate.d: Likewise.
  1401. * testsuite/gas/lns/lns-big-delta.d: Likewise.
  1402. * testsuite/gas/lns/lns-duplicate.d: Likewise.
  1403. * testsuite/gas/mips/loc-swap-2.d: Likewise.
  1404. * testsuite/gas/mips/loc-swap-3.d: Likewise.
  1405. * testsuite/gas/mips/loc-swap.d: Likewise.
  1406. * testsuite/gas/mips/micromips@loc-swap-2.d: Likewise.
  1407. * testsuite/gas/mips/micromips@loc-swap.d: Likewise.
  1408. * testsuite/gas/mips/mips16@loc-swap-2.d: Likewise.
  1409. * testsuite/gas/mips/mips16@loc-swap.d: Likewise.
  1410. * testsuite/gas/mips/mips16e@loc-swap.d: Likewise.
  1411. 2017-07-19 Claudiu Zissulescu <claziss@synopsys.com>
  1412. * testsuite/gas/arc/jli-1.d: New file.
  1413. * testsuite/gas/arc/jli-1.s: Likewise.
  1414. * testsuite/gas/arc/taux.d: Update for jli_base.
  1415. 2017-07-19 Tristan Gingold <gingold@adacore.com>
  1416. * as.c (start_sbrk): Remove.
  1417. (main): Remove assignment.
  1418. (dump_statistics): Remove display of data size.
  1419. 2017-07-19 Tristan Gingold <gingold@adacore.com>
  1420. * testsuite/gas/pe/seh-x64-err-2.s: New test.
  1421. * testsuite/gas/pe/seh-x64-err-2.l: New stderr output.
  1422. * testsuite/gas/pe/pe.exp: Add test.
  1423. * config/obj-coff-seh.c (obj_coff_seh_do_final): Don't try to end
  1424. seh part.
  1425. 2017-07-18 Nick Clifton <nickc@redhat.com>
  1426. PR 21775
  1427. * config/tc-arm.c: Fix spelling typos.
  1428. * config/tc-mips.c: Likewise.
  1429. * config/tc-msp430.c: Likewise.
  1430. * config/tc-sh64.c: Likewise.
  1431. * config/tc-tic4x.c: Likewise.
  1432. * ecoff.c: Likewise.
  1433. * testsuite/gas/arm/ldr-bad.l: Likewise.
  1434. * testsuite/gas/arm/ldr-t-bad.l: Likewise.
  1435. * testsuite/gas/tic54x/opcodes.s: Likewise.
  1436. * testsuite/gas/msp340/errata_warns.l: Likewise.
  1437. 2017-07-18 Nick Clifton <nickc@redhat.com>
  1438. * po/uk.po: Updated Ukranian translation.
  1439. 2017-07-17 Georg-Johann Lay <avr@gjlay.de>
  1440. PR 21472
  1441. * config/tc-avr.c (mcu_types): Add entries for: attiny212,
  1442. attiny214, attiny412, attiny414, attiny814, attiny1614,
  1443. attiny1616, attiny1617, attiny3214, attiny3216, attiny3217.
  1444. (md_show_usage): Adjust doc for "avrxmega3".
  1445. * doc/c-avr.texi (AVR options) [-mmcu=]: Adjust doc for avrxmega3.
  1446. Add MCUs: attiny212, attiny214, attiny412, attiny414, attiny416,
  1447. attiny417, attiny814, attiny816, attiny817, attiny1614,
  1448. attiny1616, attiny1617, attiny3214, attiny3216, attiny3217.
  1449. 2017-07-13 Jim Wilson <jim.wilson@linaro.org>
  1450. * config/tc-arch64.c (aarch64_cpus): Add AARCH64_FEATURE_RDMA to
  1451. falkor and qdf24xx entries.
  1452. 2017-07-12 Alan Modra <amodra@gmail.com>
  1453. * po/es.po: Update from translationproject.org/latest/gas/.
  1454. * po/fi.po: Likewise.
  1455. * po/fr.po: Likewise.
  1456. * po/id.po: Likewise.
  1457. * po/ja.po: Likewise.
  1458. * po/ru.po: Likewise.
  1459. * po/sv.po: Likewise.
  1460. * po/tr.po: Likewise.
  1461. * po/uk.po: Likewise.
  1462. * po/zh_CN.po: Likewise.
  1463. 2017-07-12 Nick Clifton <nickc@redhat.com>
  1464. Fix compile time warnings using gcc 7.1.1.
  1465. * config/tc-pru.c (md_assemble): Add continue statement after
  1466. handling 'E' operand character.
  1467. * config/tc-v850.c (md_assemble): Initialise the 'insn' variable.
  1468. 2017-07-05 James Greenhalgh <james.greenhalgh@arm.com>
  1469. * config/tc-arm.c (arm_cpus): Add Cortex-A55 and Cortex-A75.
  1470. * doc/c-arm.texi (-mcpu): Document Cortex-A55 and Cortex-A75.
  1471. 2017-07-05 Borislav Petkov <bp@suse.de>
  1472. * testsuite/gas/i386/opcode.s: Add tests for ModRM.reg == 6 variants.
  1473. * testsuite/gas/i386/opcode.d: ditto.
  1474. * testsuite/gas/i386/x86-64-opcode.s: Add x86_64 variants too.
  1475. * testsuite/gas/i386/x86-64-opcode.d: ditto.
  1476. 2017-07-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
  1477. * config/tc-arm.c (arm_regs): Add MVFR2.
  1478. (do_vmrs): Constraint for MVFR2 and armv8.
  1479. (do_vmsr): Likewise.
  1480. * testsuite/gas/arm/armv8-a+fp.d: Update.
  1481. * testsuite/gas/arm/armv8-ar+fp.s: Likewise.
  1482. * testsuite/gas/arm/armv8-r+fp.d: Likewise.
  1483. * testsuite/gas/arm/vfp-bad.s: Likewise.
  1484. * testsuite/gas/arm/vfp-bad.l: Likewise.
  1485. 2017-07-04 Tristan Gingold <gingold@adacore.com>
  1486. * configure: Regenerate.
  1487. 2017-07-04 Tristan Gingold <gingold@adacore.com>
  1488. * NEWS: Add marker for 2.29.
  1489. 2017-07-03 Alan Modra <amodra@gmail.com>
  1490. * testsuite/gas/elf/symver.d: Don't run on hppa64-hpux.
  1491. 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
  1492. * config/tc-mips.c (md_convert_frag): Use a switch on the
  1493. microMIPS relaxation type rather than a chain of conditionals.
  1494. 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
  1495. * config/tc-mips.c (md_convert_frag): Rewrite `fix_new_exp'
  1496. calls in terms of `fix_new'.
  1497. 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
  1498. * config/tc-mips.c (md_convert_frag): Don't make a helper
  1499. expression symbol for `fix_new_exp' called with a non-zero
  1500. offset.
  1501. * testsuite/gas/mips/relax-offset.d: New test.
  1502. * testsuite/gas/mips/mips1@relax-offset.d: New test.
  1503. * testsuite/gas/mips/r3000@relax-offset.d: New test.
  1504. * testsuite/gas/mips/r3900@relax-offset.d: New test.
  1505. * testsuite/gas/mips/micromips@relax-offset.d: New test.
  1506. * testsuite/gas/mips/relax-offset.l: New stderr output.
  1507. * testsuite/gas/mips/relax-offset.s: New test source.
  1508. * testsuite/gas/mips/mips.exp: Run the new tests.
  1509. 2017-06-30 Georg-Johann Lay <avr@gjlay.de>
  1510. PR gas/21683
  1511. * doc/c-avr.texi (AVR Options) <-mgcc-isr>: Document it.
  1512. (AVR Pseudo Instructions): New node.
  1513. * config/tc-avr.h (md_pre_output_hook): Define to avr_pre_output_hook.
  1514. (md_undefined_symbol): Define to avr_undefined_symbol.
  1515. (avr_pre_output_hook, avr_undefined_symbol): New protos.
  1516. * config/tc-avr.c (struc-symbol.h): Include it.
  1517. (ISR_CHUNK_Done, ISR_CHUNK_Prologue, ISR_CHUNK_Epilogue): New enums.
  1518. (avr_isr, avr_gccisr_opcode)
  1519. (avr_no_sreg_hash, avr_no_sreg): New static variables.
  1520. (avr_opt_s) <have_gccisr>: Add field.
  1521. (avr_opt): Add initializer for have_gccisr.
  1522. (enum options) <OPTION_HAVE_GCCISR>: Add enum.
  1523. (md_longopts) <"mgcc-isr">: Add entry.
  1524. (md_show_usage): Document -mgcc-isr.
  1525. (md_parse_option) [OPTION_HAVE_GCCISR]: Handle it.
  1526. (md_undefined_symbol): Remove.
  1527. (avr_undefined_symbol, avr_pre_output_hook): New fuctions.
  1528. (md_begin) <avr_no_sreg_hash, avr_gccisr_opcode>: Initialize them.
  1529. (avr_operand) <pregno>: Add argument and set *pregno if function
  1530. is called for a register constraint.
  1531. [N]: Handle constraint.
  1532. (avr_operands) <avr_operand>: Pass 5th parameter to calls.
  1533. [avr_opt.have_gccisr]: Call avr_update_gccisr. Call
  1534. avr_gccisr_operands instead of avr_operands.
  1535. (avr_update_gccisr, avr_emit_insn, avr_patch_gccisr_frag)
  1536. (avr_gccisr_operands, avr_check_gccisr_done): New static functions.
  1537. * testsuite/gas/avr/gccisr-01.d: New test.
  1538. * testsuite/gas/avr/gccisr-01.s: New test.
  1539. * testsuite/gas/avr/gccisr-02.d: New test.
  1540. * testsuite/gas/avr/gccisr-02.s: New test.
  1541. * testsuite/gas/avr/gccisr-03.d: New test.
  1542. * testsuite/gas/avr/gccisr-03.s: New test.
  1543. 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
  1544. * config/tc-mips.c (match_float_constant): Update description.
  1545. (match_operand): Likewise.
  1546. 2017-06-30 Andrew Bennett <andrew.bennett@imgtec.com>
  1547. Maciej W. Rozycki <macro@imgtec.com>
  1548. * config/tc-mips.c (mips_ases): Add microMIPS XPA support.
  1549. * testsuite/gas/mips/micromips@xpa.d: New test.
  1550. * testsuite/gas/mips/mips.exp: Run the new test. Enable
  1551. `xpa-virt-err' test for `micromips'.
  1552. 2017-06-30 Andrew Bennett <andrew.bennett@imgtec.com>
  1553. Maciej W. Rozycki <macro@imgtec.com>
  1554. * testsuite/gas/mips/micromips@r5.d: New test.
  1555. * testsuite/gas/mips/mips.exp: Run the new test.
  1556. 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
  1557. Andrew Bennett <andrew.bennett@imgtec.com>
  1558. * config/tc-mips.c (mips_set_ase): Handle the ASE_XPA_VIRT flag.
  1559. * testsuite/gas/mips/xpa.d: Remove `xpa' from `-M' in `objdump'
  1560. flags. Add `-mvirt' to `as' flags.
  1561. * testsuite/gas/mips/xpa-err.d: New test.
  1562. * testsuite/gas/mips/xpa-virt-err.d: New test.
  1563. * testsuite/gas/mips/xpa-err.l: New stderr output.
  1564. * testsuite/gas/mips/xpa-virt-err.l: New stderr output.
  1565. * testsuite/gas/mips/xpa-err.s: New test source.
  1566. * testsuite/gas/mips/xpa-virt-err.s: New test source.
  1567. * testsuite/gas/mips/mips.exp: Run the new tests.
  1568. 2017-06-29 Maciej W. Rozycki <macro@imgtec.com>
  1569. * testsuite/gas/mips/mips16e2@mips16e2-mt-sub.d: Adjust for the
  1570. ASE_MIPS16E2_MT flag disassembler fix.
  1571. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e2-mt-sub.d:
  1572. Likewise.
  1573. 2017-06-29 Maciej W. Rozycki <macro@imgtec.com>
  1574. * config/tc-mips.c (mips_set_ase): Clear the ASE_MIPS16E2_MT
  1575. flag before recalculating.
  1576. * testsuite/gas/mips/mips16e2-mt-err.d: New test.
  1577. * testsuite/gas/mips/mips16e2-mt-err.l: New stderr output.
  1578. * testsuite/gas/mips/mips16e2-mt-err.s: New test source.
  1579. * testsuite/gas/mips/mips.exp: Run the new test.
  1580. 2017-06-28 Tamar Christina <tamar.christina@arm.com>
  1581. * config/tc-aarch64.c (aarch64_reg_parse_32_64): Accept 4B.
  1582. (aarch64_features): Added dotprod.
  1583. * doc/c-aarch64.texi: Added dotprod.
  1584. * testsuite/gas/aarch64/dotproduct.d: New.
  1585. * testsuite/gas/aarch64/dotproduct.s: New.
  1586. 2017-06-28 Jiong Wang <jiong.wang@arm.com>
  1587. * config/tc-arm.c (fpu_neon_ext_dotprod): New variable.
  1588. (neon_scalar_for_mul): Improve comments.
  1589. (do_neon_dotproduct): New function to encode Dot Product instructions.
  1590. (do_neon_dotproduct_s): Wrapper function for signed Dot Product
  1591. instructions.
  1592. (do_neon_dotproduct_u): Wrapper function for unsigned Dot Product
  1593. instructions.
  1594. (insns): New entries for vsdot and vudot.
  1595. (arm_extensions): New entry for "dotprod".
  1596. * doc/c-arm.texi: Document new "dotprod" extension.
  1597. * testsuite/gas/arm/dotprod.s: New test source.
  1598. * testsuite/gas/arm/dotprod-illegal.s: New test source.
  1599. * testsuite/gas/arm/dotprod.d: New test.
  1600. * testsuite/gas/arm/dotprod-thumb2.d: New test.
  1601. * testsuite/gas/arm/dotprod-illegal.d: New test.
  1602. * testsuite/gas/arm/dotprod-legacy-arch.d: New test.
  1603. * testsuite/gas/arm/dotprod-illegal.l: New error file.
  1604. * testsuite/gas/arm/dotprod-legacy-arch.l: New error file.
  1605. 2017-06-28 Maciej W. Rozycki <macro@imgtec.com>
  1606. * testsuite/gas/mips/elf_mach_interaptiv-mr2.d: New test.
  1607. * testsuite/gas/mips/save-err.d: New test.
  1608. * testsuite/gas/mips/save-sub.d: New test.
  1609. * testsuite/gas/mips/interaptiv-mr2@save.d: New test.
  1610. * testsuite/gas/mips/mips1@save-sub.d: New test.
  1611. * testsuite/gas/mips/mips2@save-sub.d: New test.
  1612. * testsuite/gas/mips/mips3@save-sub.d: New test.
  1613. * testsuite/gas/mips/mips4@save-sub.d: New test.
  1614. * testsuite/gas/mips/mips5@save-sub.d: New test.
  1615. * testsuite/gas/mips/mips32@save-sub.d: New test.
  1616. * testsuite/gas/mips/mips64@save-sub.d: New test.
  1617. * testsuite/gas/mips/mips16@save-sub.d: New test.
  1618. * testsuite/gas/mips/mips16e@save-sub.d: New test.
  1619. * testsuite/gas/mips/r3000@save-sub.d: New test.
  1620. * testsuite/gas/mips/r3900@save-sub.d: New test.
  1621. * testsuite/gas/mips/r4000@save-sub.d: New test.
  1622. * testsuite/gas/mips/vr5400@save-sub.d: New test.
  1623. * testsuite/gas/mips/interaptiv-mr2@save-sub.d: New test.
  1624. * testsuite/gas/mips/sb1@save-sub.d: New test.
  1625. * testsuite/gas/mips/octeon2@save-sub.d: New test.
  1626. * testsuite/gas/mips/octeon3@save-sub.d: New test.
  1627. * testsuite/gas/mips/xlr@save-sub.d: New test.
  1628. * testsuite/gas/mips/r5900@save-sub.d: New test.
  1629. * testsuite/gas/mips/mips16e2-copy.d: New test.
  1630. * testsuite/gas/mips/mips16e2-copy-err.d: New test.
  1631. * testsuite/gas/mips/save.d: Remove `MIPS16e' from the `name'
  1632. option. Adjust for trailing padding change.
  1633. * testsuite/gas/mips/mips16e2-copy-err.l: New stderr output.
  1634. * testsuite/gas/mips/save-sub.s: New test source.
  1635. * testsuite/gas/mips/mips16e2-copy.s: New test source.
  1636. * testsuite/gas/mips/mips16e2-copy-err.s: New test source.
  1637. * testsuite/gas/mips/save.s: Update description, change trailing
  1638. padding and remove trailing white space.
  1639. * testsuite/gas/mips/mips.exp: Expand `save' and `save-err'
  1640. tests across the regular MIPS interAptiv MR2 architecture. Run
  1641. the new tests.
  1642. 2017-06-28 Maciej W. Rozycki <macro@imgtec.com>
  1643. * testsuite/gas/mips/mips.exp (interaptiv-mr2): New architecture.
  1644. (mips16e2-interaptiv-mr2): Likewise.
  1645. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro.d: New
  1646. test.
  1647. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-t.d:
  1648. New test.
  1649. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-e.d:
  1650. New test.
  1651. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-t.d:
  1652. New test.
  1653. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-e.d:
  1654. New test.
  1655. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64.d: New
  1656. test.
  1657. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-sub.d: New
  1658. test.
  1659. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-sub.d: New
  1660. test.
  1661. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64-sub.d:
  1662. New test.
  1663. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e2-mt-sub.d:
  1664. New test.
  1665. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-asmacro.d:
  1666. New test.
  1667. * testsuite/gas/mips/interaptiv-mr2@mcu.d: New test.
  1668. * testsuite/gas/mips/interaptiv-mr2@isa-override-1.d: New test.
  1669. * testsuite/gas/mips/interaptiv-mr2@isa-override-2.d: New test.
  1670. * testsuite/gas/mips/attr-gnu-4-5.d: Ignore any number of ASE
  1671. flag lines present rather than just one.
  1672. * testsuite/gas/mips/attr-gnu-4-6.d: Likewise.
  1673. * testsuite/gas/mips/attr-gnu-4-7.d: Likewise.
  1674. * testsuite/gas/mips/attr-none-o32-fp64-nooddspreg.d: Likewise.
  1675. * testsuite/gas/mips/attr-none-o32-fp64.d: Likewise.
  1676. * testsuite/gas/mips/attr-none-o32-fpxx.d: Likewise.
  1677. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro.l: New
  1678. stderr output.
  1679. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-t.l:
  1680. New stderr output.
  1681. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-macro-e.l:
  1682. New stderr output.
  1683. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-t.l:
  1684. New stderr output.
  1685. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-insn-e.l:
  1686. New stderr output.
  1687. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16-sub.l: New
  1688. stderr output.
  1689. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-sub.l: New
  1690. stderr output.
  1691. * testsuite/gas/mips/mips16e2-interaptiv-mr2@mips16e-64-sub.l:
  1692. New stderr output.
  1693. * testsuite/gas/mips/interaptiv-mr2@isa-override-1.l: New stderr
  1694. output.
  1695. * testsuite/gas/mips/interaptiv-mr2@isa-override-2.l: New stderr
  1696. output.
  1697. 2017-06-28 Maciej W. Rozycki <macro@imgtec.com>
  1698. Matthew Fortune <matthew.fortune@imgtec.com>
  1699. * config/tc-mips.c (validate_mips_insn): Handle
  1700. OP_SAVE_RESTORE_LIST specially.
  1701. (mips_encode_save_restore, mips16_encode_save_restore): New
  1702. functions.
  1703. (match_save_restore_list_operand): Factor out SAVE/RESTORE
  1704. operand insertion into the instruction word or halfword to these
  1705. new functions.
  1706. (mips_cpu_info_table): Add "interaptiv-mr2" entry.
  1707. * doc/c-mips.texi (MIPS Options): Add `interaptiv-mr2' to the
  1708. `-march=' argument list.
  1709. 2017-06-27 Maciej W. Rozycki <macro@imgtec.com>
  1710. * testsuite/gas/mips/mips16e-save.d: Rename to...
  1711. * testsuite/gas/mips/save.d: ... this.
  1712. * testsuite/gas/mips/mips16e-save-err.d: Update the
  1713. `error-output' option and rename to...
  1714. * testsuite/gas/mips/save-err.d: ... this.
  1715. * testsuite/gas/mips/mips16e-save-err.l: Rename to...
  1716. * testsuite/gas/mips/save-err.l: ... this.
  1717. * testsuite/gas/mips/mips16e-save.s: Rename to...
  1718. * testsuite/gas/mips/save.s: ... this.
  1719. * testsuite/gas/mips/mips16e-save-err.s: Rename to...
  1720. * testsuite/gas/mips/save-err.s: ... this.
  1721. * testsuite/gas/mips/mips.exp: Rename `mips16e-save' and
  1722. `mips16e-save-err' invocations to `save' and `save-err'
  1723. respectively and reorder these tests away from MIPS16 tests.
  1724. 2017-06-27 Maciej W. Rozycki <macro@imgtec.com>
  1725. * testsuite/gas/mips/mips16e-save.d: Remove `-mmips:isa32
  1726. -mmips:16' from `objdump' flags and `-march=mips32 -mips16' from
  1727. `as' flags.
  1728. * testsuite/gas/mips/mips16e-save-err.d: Remove `-march=mips32'
  1729. from `as' flags.
  1730. * testsuite/gas/mips/mips16e-save.s: Remove the `.set mips16'
  1731. pseudo-op.
  1732. * testsuite/gas/mips/mips16e-save-err.s: Likewise.
  1733. * testsuite/gas/mips/mips.exp: Run SAVE/RESTORE tests across all
  1734. MIPS16e architectures.
  1735. 2017-06-27 Maciej W. Rozycki <macro@imgtec.com>
  1736. * testsuite/gas/mips/mips16e-save-err.d: New test.
  1737. * gas/testsuite/gas/mips/mips.exp: Fold `mips16e-save-err' list
  1738. test into the new test.
  1739. 2017-06-27 Maciej W. Rozycki <macro@imgtec.com>
  1740. * testsuite/gas/mips/mips16e-save.d: Capitalize the `name'
  1741. option.
  1742. 2017-06-26 Kuan-Lin Chen <rufus@andestech.com>
  1743. * config/tc-riscv.c (md_apply_fix) [BFD_RELOC_32]: Convert to a
  1744. R_RISCV_32_PCREL relocation.
  1745. 2017-06-26 H.J. Lu <hongjiu.lu@intel.com>
  1746. PR gas/21661
  1747. * config/obj-elf.c (obj_elf_symver): Don't allow .symver with
  1748. common symbol.
  1749. (elf_frob_symbol): Likewise.
  1750. * testsuite/gas/elf/elf.exp: Run pr21661.
  1751. * testsuite/gas/elf/pr21661.d: New file.
  1752. * testsuite/gas/elf/pr21661.s: Likewise.
  1753. 2017-06-26 Nick Clifton <nickc@redhat.com>
  1754. * config/tc-arm.c (fpu_any): Only define for ELF based targets.
  1755. 2017-06-26 Claudiu Zissulescu <claziss@synopsys.com>
  1756. * /config/tc-arc.c (is_br_jmp_insn_p): Update macro with known
  1757. instructions to be accounted as jumps.
  1758. (assemble_insn): Check for limms into the delay slots. Emit an
  1759. error if so.
  1760. * testsuite/gas/arc/asm-errors-3.d: New file.
  1761. * testsuite/gas/arc/asm-errors-3.err: Likewise.
  1762. * testsuite/gas/arc/asm-errors-3.s: Likewise.
  1763. 2017-06-26 Thomas Preud'homme <thomas.preudhomme@arm.com>
  1764. * NEWS: Mention support of ARM Cortex-R52 processor.
  1765. * config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-R52 processor.
  1766. * doc/c-arm.texi: Mention support for -mcpu=cortex-r52.
  1767. 2017-06-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
  1768. * NEWS: Mention support for ARMv8-R architecture.
  1769. * config/tc-arm.c (arm_archs): Add entry for ARMv8-R.
  1770. (arm_extensions): Restrict pan, ras and rdma extension to
  1771. ARMv8-A and make crypto, fp and simd extensions available to
  1772. ARMv8-R.
  1773. (cpu_arch_ver): Add entry for ARMv8-R.
  1774. (aeabi_set_public_attributes): Update gas_assert for Tag_DIV_use
  1775. logic.
  1776. * testsuite/gas/arm/armv8-a+fp.s: Rename into ...
  1777. * testsuite/gas/arm/armv8-ar+fp.s: This. Remove .arch directive.
  1778. * testsuite/gas/arm/armv8-a+fp.d: Specify source to assemble and
  1779. architecture to assemble for.
  1780. * testsuite/gas/arm/armv8-r+fp.d: New.
  1781. * testsuite/gas/arm/armv8-a+simd.s: Rename into ...
  1782. * testsuite/gas/arm/armv8-ar+simd.s: This. Remove .arch directive.
  1783. * testsuite/gas/arm/armv8-a+simd.d: Specify source to assemble and
  1784. architecture to assemble for.
  1785. * testsuite/gas/arm/armv8-r+simd.d: New.
  1786. * testsuite/gas/arm/armv8-a-bad.s: Rename into ...
  1787. * testsuite/gas/arm/armv8-ar-bad.s: This. Remove .arch directive.
  1788. * testsuite/gas/arm/armv8-a-bad.l: Rename into ...
  1789. * testsuite/gas/arm/armv8-ar-bad.l: This. Decrement line number by 1.
  1790. * testsuite/gas/arm/armv8-a-bad.d: Specify source to assemble,
  1791. architecture to assemble for and adjust error output file.
  1792. * testsuite/gas/arm/armv8-r-bad.d: New.
  1793. * testsuite/gas/arm/armv8-a-barrier.s: Rename into ...
  1794. * testsuite/gas/arm/armv8-ar-barrier.s: This.
  1795. * testsuite/gas/arm/armv8-a-barrier-arm.d: Adjust source.
  1796. * testsuite/gas/arm/armv8-a-barrier-thumb.d: Likewise.
  1797. * testsuite/gas/arm/armv8-r-barrier-arm.d: New.
  1798. * testsuite/gas/arm/armv8-r-barrier-thumb.d: New.
  1799. * testsuite/gas/arm/armv8-a-it-bad.s: Rename into ...
  1800. * testsuite/gas/arm/armv8-ar-it-bad.s: This. Remove .arch directive.
  1801. * testsuite/gas/arm/armv8-a-it-bad.l: Rename into ...
  1802. * testsuite/gas/arm/armv8-ar-it-bad.l: This. Decrement line number
  1803. by 1.
  1804. * testsuite/gas/arm/armv8-a-it-bad.d: Specify source to assemble,
  1805. architecture to assemble for and adjust error output file.
  1806. * testsuite/gas/arm/armv8-r-it-bad.d: New.
  1807. * testsuite/gas/arm/armv8-a.s: Rename into ...
  1808. * testsuite/gas/arm/armv8-ar.s: This. Remove .arch directive.
  1809. * testsuite/gas/arm/armv8-a.d: Specify source to assemble and
  1810. architecture to assemble for.
  1811. * testsuite/gas/arm/armv8-r.d: New.
  1812. * testsuite/gas/arm/attr-march-armv8-r+crypto.d: New.
  1813. * testsuite/gas/arm/attr-march-armv8-r+fp.d: New.
  1814. * testsuite/gas/arm/attr-march-armv8-r+simd.d: New.
  1815. * testsuite/gas/arm/attr-march-armv8-r.d: New.
  1816. * testsuite/gas/arm/crc32.s: Rename into ...
  1817. * testsuite/gas/arm/crc32-armv8-ar.s: This.
  1818. * testsuite/gas/arm/crc32.d: Rename into ...
  1819. * testsuite/gas/arm/crc32-armv8-a.d: This. Specify source to assemble.
  1820. * testsuite/gas/arm/crc32-armv8-r.d: New.
  1821. * testsuite/gas/arm/crc32-bad.s: Rename into ...
  1822. * testsuite/gas/arm/crc32-armv8-ar-bad.s: This.
  1823. * testsuite/gas/arm/crc32-bad.d: Rename into ...
  1824. * testsuite/gas/arm/crc32-armv8-a-bad.d: This. Specify source to
  1825. assemble.
  1826. * testsuite/gas/arm/crc32-armv8-r-bad.d: New.
  1827. * testsuite/gas/arm/mask_1.s: Rename into ...
  1828. * testsuite/gas/arm/mask_1-armv8-ar.s: This.
  1829. * testsuite/gas/arm/mask_1.d: Rename into ...
  1830. * testsuite/gas/arm/mask_1-armv8-a.d: This. Specify source to
  1831. assemble.
  1832. * testsuite/gas/arm/mask_1-armv8-r.d: new.
  1833. 2017-06-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
  1834. * config/tc-arm.c (arm_ext_v6m): Delete.
  1835. (arm_ext_v7m): Delete.
  1836. (arm_ext_m): Remove ARM_EXT_OS from the set of feature defined M
  1837. profile.
  1838. (arm_arch_v6m_only): Delete.
  1839. (do_t_swi): Remove special case for ARMv6S-M.
  1840. (md_assemble): Display error message previously in do_t_swi when
  1841. SVC is not available.
  1842. (insns): Guard swi and svc by arm_ext_os for Thumb mode.
  1843. (aeabi_set_public_attributes): Remove special case for ARMv6S-M.
  1844. 2017-05-11 Andrew Waterman <andrew@sifive.com>
  1845. * config/tc-riscv.c (riscv_ip): Changes as_warn to as_bad for improper
  1846. shift amounts.
  1847. 2017-06-22 Nick Clifton <nickc@redhat.com>
  1848. * config/tc-arm.c (arm_ext_v7m): Add ATTRIBUTE_UNUSED.
  1849. 2017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
  1850. * config/tc-arm.c (fpu_any): Defined from FPU_ANY.
  1851. (cpu_arch_ver): Add all architectures and sort by release date.
  1852. (have_ext_for_needed_feat_p): New.
  1853. (get_aeabi_cpu_arch_from_fset): New.
  1854. (aeabi_set_public_attributes): Call above function to determine
  1855. Tag_CPU_arch and Tag_CPU_arch_profile values. Adapt Tag_ARM_ISA_use
  1856. and Tag_THUMB_ISA_use selection logic to check absence of feature bit
  1857. accordingly.
  1858. * testsuite/gas/arm/attr-march-armv1.d: Fix expected Tag_CPU_arch build
  1859. attribute value.
  1860. * testsuite/gas/arm/attr-march-armv2.d: Likewise.
  1861. * testsuite/gas/arm/attr-march-armv2a.d: Likewise.
  1862. * testsuite/gas/arm/attr-march-armv2s.d: Likewise.
  1863. * testsuite/gas/arm/attr-march-armv3.d: Likewise.
  1864. * testsuite/gas/arm/attr-march-armv3m.d: Likewise.
  1865. * testsuite/gas/arm/pr12198-2.d: Likewise.
  1866. 2017-06-21 H.J. Lu <hongjiu.lu@intel.com>
  1867. * testsuite/gas/i386/cet-intel.d: Updated.
  1868. * testsuite/gas/i386/cet.d: Likewise.
  1869. * testsuite/gas/i386/x86-64-cet-intel.d: Likewise.
  1870. * testsuite/gas/i386/x86-64-cet.d: Likewise.
  1871. * testsuite/gas/i386/cet.s: Update incsspd and setssbsy tests.
  1872. * testsuite/gas/i386/x86-64-cet.s: Likewise.
  1873. 2017-06-21 H.J. Lu <hongjiu.lu@intel.com>
  1874. * testsuite/gas/i386/cet-intel.d: Updated.
  1875. * testsuite/gas/i386/cet.d: Likewise.
  1876. * testsuite/gas/i386/x86-64-cet-intel.d: Likewise.
  1877. * testsuite/gas/i386/x86-64-cet.d: Likewise.
  1878. * testsuite/gas/i386/cet.s: Replace savessp with saveprevssp.
  1879. * testsuite/gas/i386/x86-64-cet.s: Likewise.
  1880. 2017-06-21 H.J. Lu <hongjiu.lu@intel.com>
  1881. * config/tc-i386.c (md_assemble): Update NOTRACK prefix check.
  1882. * testsuite/gas/i386/notrack-intel.d: Updated.
  1883. * testsuite/gas/i386/notrack.d: Likewise.
  1884. * testsuite/gas/i386/notrackbad.l: Likewise.
  1885. * testsuite/gas/i386/x86-64-notrack-intel.d: Likewise.
  1886. * testsuite/gas/i386/x86-64-notrack.d: Likewise.
  1887. * testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
  1888. * testsuite/gas/i386/notrack.s: Add NOTRACK prefix tests with
  1889. memory indirect branch.
  1890. * testsuite/gas/i386/x86-64-notrack.s: Likewise.
  1891. * testsuite/gas/i386/notrackbad.s: Remove memory indirect branch
  1892. with NOTRACK prefix.
  1893. * testsuite/gas/i386/x86-64-notrackbad.s: Likewise.
  1894. 2017-06-20 Thomas Preud'homme <thomas.preudhomme@arm.com>
  1895. * config/tc-arm.c (arm_extensions): New duplicate idiv entry to enable
  1896. Thumb division for ARMv7 architecture.
  1897. (arm_parse_extension): Document expected behavior for duplicate
  1898. entries.
  1899. (s_arm_arch_extension): Likewise.
  1900. * testsuite/gas/arm/forbid-armv7-idiv-ext.d: New test.
  1901. * testsuite/gas/arm/forbid-armv7-idiv-ext.l: New expected output for
  1902. above test.
  1903. 2017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
  1904. * config/tc-arm.c (aeabi_set_public_attributes): Populate flags from
  1905. feature bits used or selected_cpu depending on whether a CPU was
  1906. selected by the user.
  1907. 2017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
  1908. * config/tc-arm.c (aeabi_set_public_attributes): Test *mcpu_ext_opt to
  1909. decide whether to set Tag_DSP_extension build attribute value. Remove
  1910. now useless arm_arch variable.
  1911. 2017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
  1912. * config/tc-arm.c (dyn_mcpu_ext_opt): New static variable.
  1913. (dyn_march_ext_opt): Likewise.
  1914. (md_begin): Copy extension feature bits alongside architecture ones.
  1915. Merge extensions feature bits in selected_cpu and cpu_variant if there
  1916. is some.
  1917. (arm_parse_extension): Pass architecture and extension feature bits in
  1918. separate parameters, with architecture bits being read only. Update
  1919. **opt_p directly rather than *ext_set and initialize it if needed.
  1920. (arm_parse_cpu): Stop merging architecture and extension feature bits
  1921. and instead use mcpu_cpu_opt and dyn_mcpu_ext_opt to memorize them
  1922. respectively. Adapt to change in parameters of arm_parse_extension.
  1923. (arm_parse_arch): Adapt to change in parameters of arm_parse_extension.
  1924. (aeabi_set_attribute_string): Make function static.
  1925. (arm_md_post_relax): New function.
  1926. (s_arm_cpu): Stop merging architecture and extension feature bits and
  1927. instead use mcpu_cpu_opt and dyn_mcpu_ext_opt to memorize them
  1928. respectively. Merge extension feature bits in cpu_variant
  1929. if there is any.
  1930. (s_arm_arch): Reset extension feature bit. Set selected_cpu from
  1931. *mcpu_cpu_opt and cpu_variant from selected_cpu and *mfpu_opt for
  1932. consistency with s_arm_cpu.
  1933. (s_arm_arch_extension): Update *dyn_mcpu_ext_opt rather than
  1934. selected_cpu, allocating it before hand if needed. Set selected_cpu
  1935. from it and then cpu_variant.
  1936. (s_arm_fpu): Merge *mcpu_ext_opt feature bits if any in cpu_variant.
  1937. * config/tc-arm.h (md_post_relax_hook): Set to arm_md_post_relax.
  1938. (aeabi_set_public_attributes): Delete external declaration.
  1939. (arm_md_post_relax): Declare externally.
  1940. 2017-06-21 Thomas Preud'homme <thomas.preudhomme@arm.com>
  1941. * config/tc-arm.c (struct arm_cpu_option_table): New ext field.
  1942. (ARM_CPU_OPT): Add parameter to set new ext field and reorder canonical
  1943. name field just after the name field.
  1944. (arm_cpus): Move extension feature bit from value field to ext field,
  1945. reorder parameter according to changes in ARM_CPU_OPT and reindent.
  1946. (arm_parse_cpu): Point mcpu_cpu_opt to a bitfield merging the value and
  1947. ext field from the selected arm_cpus entry.
  1948. (s_arm_cpu): Likewise.
  1949. 2017-06-21 James Greenhalgh <james.greenhalgh@arm.com>
  1950. * config/tc-aarch64.c (aarch64_cpus): Add cortex-a55 and cortex-a75.
  1951. * doc/c-aarch64.texi (-mcpu): Document cortex-a55 and cortex-a75.
  1952. 2017-06-15 H.J. Lu <hongjiu.lu@intel.com>
  1953. PR binutils/21594
  1954. * testsuite/gas/i386/mpx.s: Add 2 tests with invalid bnd
  1955. register.
  1956. * testsuite/gas/i386/x86-64-mpx.s: Likewise.
  1957. * testsuite/gas/i386/mpx.d: Updated.
  1958. * testsuite/gas/i386/x86-64-mpx.d: Likewise.
  1959. 2017-06-14 Max Filippov <jcmvbkbc@gmail.com>
  1960. * config/tc-xtensa.c (density_supported, xtensa_fetch_width,
  1961. absolute_literals_supported): Leave definitions uninitialized.
  1962. (directive_state): Leave entries for directive_density and
  1963. directive_absolute_literals initialized to false.
  1964. (xg_init_global_config, xtensa_init): New functions.
  1965. * config/tc-xtensa.h (TARGET_BYTES_BIG_ENDIAN): Define as 0.
  1966. (HOST_SPECIAL_INIT): New definition.
  1967. (xtensa_init): New declaration.
  1968. 2017-06-07 Michael Collison <michael.collison@arm.com>
  1969. * config/tc-aarch64.c (reg_entry_reg_names): Add IP0,
  1970. IP1, FP, and LR as register aliases of register 16, 17, 29
  1971. and 30 respectively.
  1972. * testsuite/gas/aarch64/diagnostic.l: Remove diagnostic
  1973. prohibiting register 'lr' which is now an alias.
  1974. * testsuite/gas/aarch64/diagnostic.s: Remove instruction
  1975. utilizing register 'lr' which is now an alias.
  1976. 2017-06-06 Jiong Wang <jiong.wang@arm.com>
  1977. * config/tc-arm.c (reject_bad_reg): Allow REG_SP on ARMv8-A.
  1978. (parse_operands): Allow REG_SP for OP_oRRnpcsp and OP_RRnpcsp on
  1979. ARMv8-A.
  1980. (do_co_reg): Allow REG_SP for Rd on ARMv8-A.
  1981. (do_t_add_sub): Likewise.
  1982. (do_t_mov_cmp): Likewise.
  1983. (do_t_tb): Likewise.
  1984. * testsuite/gas/arm/ld-sp-warn.l: Delete the warning on REG_SP as Rt for
  1985. ldrsb.
  1986. * testsuite/gas/arm/sp-pc-validations-bad-t-v8a.d: New test.
  1987. * testsuite/gas/arm/sp-pc-validations-bad-t-v8a.l: New test.
  1988. * testsuite/gas/arm/sp-pc-validations-bad-t.d: Specifies -march=armv7-a.
  1989. * testsuite/gas/arm/sp-pc-validations-bad-t.s: Remove ".arch armv7-a".
  1990. * testsuite/gas/arm/sp-usage-thumb2-relax-on-v7.d: New test.
  1991. * testsuite/gas/arm/sp-usage-thumb2-relax-on-v7.l: New test.
  1992. * testsuite/gas/arm/sp-usage-thumb2-relax-on-v8.d: New test.
  1993. * testsuite/gas/arm/sp-usage-thumb2-relax.s: New test.
  1994. * testsuite/gas/arm/strex-bad-t.d: Specifies -march=armv7-a.
  1995. 2017-06-05 Jim Wilson <jim.wilson@linaro.org>
  1996. * config/tc-arm.c (arm_cpus): Delete falkor and qdf24xx entries.
  1997. * doc/c-arm.texi (-mcpu): Likewise.
  1998. 2017-05-30 Anton Kolesov <anton.kolesov@synopsys.com>
  1999. * config/tc-arc.c (cpu_types): Include arc-cpu.def
  2000. 2017-05-23 H.J. Lu <hongjiu.lu@intel.com>
  2001. * gas/testsuite/gas/i386/notrackbad.l: Updated for non-ELF
  2002. targets.
  2003. * gas/testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
  2004. 2017-05-23 Claudiu Zissulescu <claziss@synopsys.com>
  2005. * config/tc-arc.c (md_apply_fix): Use as_bad_where.
  2006. (assemble_insn): Use as_bad.
  2007. 2017-05-22 H.J. Lu <hongjiu.lu@intel.com>
  2008. * config/tc-i386.c (REX_PREFIX): Changed to 7.
  2009. (NOTRACK_PREFIX): New.
  2010. (MAX_PREFIXES): Changed to 8.
  2011. (_i386_insn): Add notrack_prefix.
  2012. (PREFIX_GROUP): Add PREFIX_DS.
  2013. (add_prefix): Return PREFIX_DS for DS_PREFIX_OPCODE.
  2014. (md_assemble): Check if NOTRACK prefix is supported.
  2015. (parse_insn): Set notrack_prefix and issue an error for
  2016. other prefixes after NOTRACK prefix.
  2017. * testsuite/gas/i386/i386.exp: Run tests for NOTRACK prefix.
  2018. * testsuite/gas/i386/notrack-intel.d: New file.
  2019. * testsuite/gas/i386/notrack.d: Likewise.
  2020. * testsuite/gas/i386/notrack.s: Likewise.
  2021. * testsuite/gas/i386/notrackbad.l: Likewise.
  2022. * testsuite/gas/i386/notrackbad.s: Likewise.
  2023. * testsuite/gas/i386/x86-64-notrack-intel.d: Likewise.
  2024. * testsuite/gas/i386/x86-64-notrack.d: Likewise.
  2025. * testsuite/gas/i386/x86-64-notrack.s: Likewise.
  2026. * testsuite/gas/i386/x86-64-notrackbad.l: Likewise.
  2027. * testsuite/gas/i386/x86-64-notrackbad.s: Likewise.
  2028. 2017-05-22 Jiong Wang <jiong.wang@arm.com>
  2029. * configure.tgt: Set "arch" to "aarch64" if ${cpu} equals "aarch64".
  2030. Recognize the new triplet name aarch64*-linux-gnu_ilp32.
  2031. * configure.ac: Output DEFAULT_ARCH macro for AArch64.
  2032. * configure: Regenerate.
  2033. * config/tc-aarch64.h (aarch64_after_parse_args): New declaration.
  2034. (md_after_parse_args): New define.
  2035. * config/tc-aarch64.c (aarch64_abi_type): New enumeration
  2036. AARCH64_ABI_NONE.
  2037. (DEFAULT_ARCH): New define.
  2038. (aarch64_abi): Set default value to AARCH64_ABI_NONE.
  2039. (aarch64_after_parse_args): New function.
  2040. 2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
  2041. * config/tc-sparc.c (sparc_arch_table): Entries for `sparc6',
  2042. `v9m8' and `v8plusm8'.
  2043. (sparc_md_end): Handle SPARC_OPCODE_ARCH_M8.
  2044. (get_hwcap_name): Support the M8 hardware capabilities.
  2045. (sparc_ip): Handle new operand types.
  2046. * doc/c-sparc.texi (Sparc-Opts): Document -Av9m8, -Av8plusm8 and
  2047. -Asparc6, and the corresponding -xarch aliases.
  2048. * testsuite/gas/sparc/sparc6.s: New file.
  2049. * testsuite/gas/sparc/sparc6.d: Likewise.
  2050. * testsuite/gas/sparc/sparc6-diag.s: Likewise.
  2051. * testsuite/gas/sparc/sparc6-diag.l: Likewise.
  2052. * testsuite/gas/sparc/fpcmpshl.s: Likewise.
  2053. * testsuite/gas/sparc/fpcmpshl.d: Likewise.
  2054. * testsuite/gas/sparc/fpcmpshl-diag.s: Likewise.
  2055. * testsuite/gas/sparc/fpcmpshl-diag.l: Likewise.
  2056. * testsuite/gas/sparc/ldm-stm.s: Likewise.
  2057. * testsuite/gas/sparc/ldm-stm.d: Likewise.
  2058. * testsuite/gas/sparc/ldm-stm-diag.s: Likewise.
  2059. * testsuite/gas/sparc/ldm-stm-diag.l: Likewise.
  2060. * testsuite/gas/sparc/ldmf-stmf.s: Likewise.
  2061. * testsuite/gas/sparc/ldmf-stmf.d: Likewise.
  2062. * testsuite/gas/sparc/ldmf-stmf-diag.s: Likewise.
  2063. * testsuite/gas/sparc/ldmf-stmf-diag.l: Likewise.
  2064. * testsuite/gas/sparc/on.s: Likewise.
  2065. * testsuite/gas/sparc/on.d: Likewise.
  2066. * testsuite/gas/sparc/on-diag.s: Likewise.
  2067. * testsuite/gas/sparc/on-diag.l: Likewise.
  2068. * testsuite/gas/sparc/rle.s: Likewise.
  2069. * testsuite/gas/sparc/rle.d: Likewise.
  2070. * testsuite/gas/sparc/sparc.exp (gas_64_check): Run new tests.
  2071. * testsuite/gas/sparc/rdasr.s: Add test for RDENTROPY.
  2072. * testsuite/gas/sparc/rdasr.d: Likewise.
  2073. 2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
  2074. * testsuite/gas/sparc/call-relax.d: Support 32-bit targets.
  2075. * testsuite/gas/sparc/sparc.exp (gas_64_check): Use -64 to
  2076. run asi-bump-warn.
  2077. 2017-05-19 Georg-Johann Lay <avr@gjlay.de>
  2078. PR ld/21472
  2079. * config/tc-avr.c (mcu_types): Add entries for: attiny416,
  2080. attiny417, attiny816, attiny817.
  2081. 2017-05-18 Alan Modra <amodra@gmail.com>
  2082. * config/tc-aarch64.c: Don't compare booleans against TRUE or FALSE.
  2083. * config/tc-hppa.c: Likewise.
  2084. * config/tc-mips.c: Likewise.
  2085. * config/tc-score7.c: Likewise.
  2086. 2017-05-16 Alan Modra <amodra@gmail.com>
  2087. * write.c (GENERIC_FORCE_RELOCATION_LOCAL): Define.
  2088. (TC_FORCE_RELOCATION_LOCAL): Use it.
  2089. (GENERIC_FORCE_RELOCATION_SUB_SAME): Define.
  2090. (TC_FORCE_RELOCATION_SUB_SAME): Use it.
  2091. * config/tc-arm.h (TC_FORCE_RELOCATION_LOCAL,
  2092. TC_FORCE_RELOCATION_SUB_SAME): Use GENERIC defines.
  2093. * config/tc-aarch64.h: Similarly.
  2094. * config/tc-avr.h: Similarly.
  2095. * config/tc-cris.h: Similarly.
  2096. * config/tc-i386.h: Similarly.
  2097. * config/tc-i960.h: Similarly.
  2098. * config/tc-ia64.h: Similarly.
  2099. * config/tc-microblaze.h: Similarly.
  2100. * config/tc-mips.h: Similarly.
  2101. * config/tc-msp430.h: Similarly.
  2102. * config/tc-nds32.h: Similarly.
  2103. * config/tc-pru.h: Similarly.
  2104. * config/tc-riscv.h: Similarly.
  2105. * config/tc-rl78.h: Similarly.
  2106. * config/tc-s390.h: Similarly.
  2107. * config/tc-sh.h: Similarly.
  2108. * config/tc-sh64.h: Similarly.
  2109. * config/tc-sparc.h: Similarly.
  2110. * config/tc-xtensa.h: Similarly.
  2111. * config/tc-mn10300.h: Similarly.
  2112. (GENERIC_FORCE_RELOCATION_LOCAL): Define.
  2113. * config/tc-msp430.c (msp430_force_relocation_local): Modify to
  2114. be addition to rather than replacement of standard
  2115. TC_FORCE_RELOCATION_LOCAL.
  2116. 2017-05-15 Nick Clifton <nickc@redhat.com>
  2117. PR gas/21458
  2118. * config/tc-arm.c (do_adr): If the ADR involves a thumb function
  2119. symbol, ensure that the T bit will be set.
  2120. (do_adrl): Likewise.
  2121. (do_t_adr): Likewise.
  2122. * testsuite/gas/arm/pr21458.s: New test.
  2123. * testsuite/gas/arm/pr21458.d: New test driver.
  2124. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2125. * testsuite/gas/mips/mips16-pcrel-1.d: Remove `-mips3' from `as'
  2126. flags.
  2127. * testsuite/gas/mips/mips16-pcrel-pic-1.d: Likewise.
  2128. * testsuite/gas/mips/mips16-pcrel-n32-0.d: Likewise.
  2129. * testsuite/gas/mips/mips16-pcrel-n32-1.d: Likewise.
  2130. * testsuite/gas/mips/mips16-pcrel-n64-0.d: Likewise.
  2131. * testsuite/gas/mips/mips16-pcrel-n64-1.d: Likewise.
  2132. * testsuite/gas/mips/mips16-pcrel-n64-sym32-0.d: Likewise.
  2133. * testsuite/gas/mips/mips16-pcrel-n64-sym32-1.d: Likewise.
  2134. * testsuite/gas/mips/mips16-pcrel-reloc-4.d: Likewise.
  2135. * testsuite/gas/mips/mips16-pcrel-reloc-5.d: Likewise.
  2136. * testsuite/gas/mips/mips16-pcrel-reloc-6.d: Likewise.
  2137. * testsuite/gas/mips/mips16-pcrel-reloc-7.d: Likewise.
  2138. * testsuite/gas/mips/mips16-pcrel-addend-4.d: Likewise.
  2139. * testsuite/gas/mips/mips16-pcrel-addend-5.d: Likewise.
  2140. * testsuite/gas/mips/mips16-pcrel-addend-6.d: Likewise.
  2141. * testsuite/gas/mips/mips16-pcrel-addend-7.d: Likewise.
  2142. * testsuite/gas/mips/mips16-pcrel-addend-9.d: Likewise.
  2143. * testsuite/gas/mips/mips16-pcrel-addend-pic-9.d: Likewise.
  2144. * testsuite/gas/mips/mips16-pcrel-addend-n32-8.d: Likewise.
  2145. * testsuite/gas/mips/mips16-pcrel-addend-n32-9.d: Likewise.
  2146. * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-8.d:
  2147. Likewise.
  2148. * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-9.d:
  2149. Likewise.
  2150. * testsuite/gas/mips/mips16-pcrel-addend-n64-8.d: Likewise.
  2151. * testsuite/gas/mips/mips16-pcrel-addend-n64-9.d: Likewise.
  2152. * testsuite/gas/mips/mips16-pcrel-absolute-2.d: Likewise.
  2153. * testsuite/gas/mips/mips16-pcrel-absolute-3.d: Likewise.
  2154. * testsuite/gas/mips/mips16-pcrel-absolute-6.d: Likewise.
  2155. * testsuite/gas/mips/mips16-pcrel-absolute-7.d: Likewise.
  2156. * testsuite/gas/mips/mips16-pcrel-absolute-pic-6.d: Likewise.
  2157. * testsuite/gas/mips/mips16-pcrel-absolute-n32-4.d: Likewise.
  2158. * testsuite/gas/mips/mips16-pcrel-absolute-n32-6.d: Likewise.
  2159. * testsuite/gas/mips/mips16-pcrel-absolute-n64-4.d: Likewise.
  2160. * testsuite/gas/mips/mips16-pcrel-absolute-n64-6.d: Likewise.
  2161. * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-4.d:
  2162. Likewise.
  2163. * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-6.d:
  2164. Likewise.
  2165. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-4.d:
  2166. Likewise.
  2167. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-6.d:
  2168. Likewise.
  2169. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-4.d:
  2170. Likewise.
  2171. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-6.d:
  2172. Likewise.
  2173. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-4.d:
  2174. Likewise.
  2175. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-6.d:
  2176. Likewise.
  2177. * testsuite/gas/mips/mips16e2@mips16-pcrel-0.d: New test.
  2178. * testsuite/gas/mips/mips16e2@mips16-pcrel-1.d: New test.
  2179. * testsuite/gas/mips/mips16e2@mips16-pcrel-2.d: New test.
  2180. * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-0.d: New test.
  2181. * testsuite/gas/mips/mips16e2@mips16-pcrel-n32-1.d: New test.
  2182. * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-0.d: New
  2183. test.
  2184. * testsuite/gas/mips/mips16e2@mips16-pcrel-n64-sym32-1.d: New
  2185. test.
  2186. * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-0.d: New test.
  2187. * testsuite/gas/mips/mips16e2@mips16-pcrel-delay-1.d: New test.
  2188. * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-2.d: New test.
  2189. * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-3.d: New test.
  2190. * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-6.d: New test.
  2191. * testsuite/gas/mips/mips16e2@mips16-pcrel-reloc-7.d: New test.
  2192. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-2.d: New test.
  2193. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-3.d: New test.
  2194. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-6.d: New test.
  2195. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-7.d: New test.
  2196. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-8.d: New test.
  2197. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-9.d: New test.
  2198. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n32-8.d: New
  2199. test.
  2200. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n32-9.d: New
  2201. test.
  2202. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n64-sym32-8.d:
  2203. New test.
  2204. * testsuite/gas/mips/mips16e2@mips16-pcrel-addend-n64-sym32-9.d:
  2205. New test.
  2206. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute.d: New test.
  2207. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-1.d: New
  2208. test.
  2209. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-2.d: New
  2210. test.
  2211. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-3.d: New
  2212. test.
  2213. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-4.d: New
  2214. test.
  2215. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-5.d: New
  2216. test.
  2217. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-6.d: New
  2218. test.
  2219. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-7.d: New
  2220. test.
  2221. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-4.d: New
  2222. test.
  2223. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-6.d: New
  2224. test.
  2225. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n32-4.d: New
  2226. test.
  2227. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n32-6.d: New
  2228. test.
  2229. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n64-sym32-4.d:
  2230. New test.
  2231. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-n64-sym32-6.d:
  2232. New test.
  2233. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n32-4.d:
  2234. New test.
  2235. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n32-6.d:
  2236. New test.
  2237. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n64-sym32-4.d:
  2238. New test.
  2239. * testsuite/gas/mips/mips16e2@mips16-pcrel-absolute-pic-n64-sym32-6.d:
  2240. New test.
  2241. * testsuite/gas/mips/mips16-pcrel-1.l: Adjust line numbers.
  2242. * testsuite/gas/mips/mips16-pcrel-1.s: Adjust for alignment
  2243. preservation between MIPS16 and MIPS16e2 code.
  2244. * testsuite/gas/mips/mips.exp: Run MIPS16 relaxation tests over
  2245. all MIPS16 architectures.
  2246. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2247. * testsuite/gas/mips/mips16e2.d: New test.
  2248. * testsuite/gas/mips/mips16e2-mt.d: New test.
  2249. * testsuite/gas/mips/mips16e2-sub.d: New test.
  2250. * testsuite/gas/mips/mips16e2@mips16e2-sub.d: New test.
  2251. * testsuite/gas/mips/mips16e2-mt-sub.d: New test.
  2252. * testsuite/gas/mips/mips16e2@mips16e2-mt-sub.d: New test.
  2253. * testsuite/gas/mips/mips16e2-hilo.d: New test.
  2254. * testsuite/gas/mips/mips16e2-hilo-n32.d: New test.
  2255. * testsuite/gas/mips/mips16e2-reloc-error.d: New test.
  2256. * testsuite/gas/mips/mips16e2-imm-error.d: New test.
  2257. * testsuite/gas/mips/elf_ase_mips16e2.d: New test.
  2258. * testsuite/gas/mips/elf_ase_mips16e2-2.d: New test.
  2259. * testsuite/gas/mips/elf-rel9-mips16e2.d: New test.
  2260. * testsuite/gas/mips/mips16e2-lui.d: New test.
  2261. * testsuite/gas/mips/mips16e2@mips32r2-sync.d: New test.
  2262. * testsuite/gas/mips/mips16e2@mips32r2-sync-1.d: New test.
  2263. * testsuite/gas/mips/mips16e2@lui-2.d: New test.
  2264. * testsuite/gas/mips/mips16e2-reloc-error.l: New stderr output.
  2265. * testsuite/gas/mips/mips16e2-imm-error.l: New stderr output.
  2266. * testsuite/gas/mips/mips16e2@lui-2.l: New stderr output.
  2267. * testsuite/gas/mips/mips16e2.s: New test source.
  2268. * testsuite/gas/mips/mips16e2-mt.s: New test source.
  2269. * testsuite/gas/mips/mips16e2-sub.s: New test source.
  2270. * testsuite/gas/mips/mips16e2-mt-sub.s: New test source.
  2271. * testsuite/gas/mips/mips16e2-hilo.s: New test source.
  2272. * testsuite/gas/mips/mips16e2-reloc-error.s: New test source.
  2273. * testsuite/gas/mips/mips16e2-imm-error.s: New test source.
  2274. * testsuite/gas/mips/elf-rel9-mips16e2.s: New test source.
  2275. * testsuite/gas/mips/mips16e2-lui.s: New test source.
  2276. * testsuite/gas/mips/mips.exp: Expand `mips32r2-sync',
  2277. `mips32r2-sync-1', `lui-1' and `lui-2' tests across MIPS16e2
  2278. architectures. Run the new tests.
  2279. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2280. * testsuite/gas/mips/mips.exp (run_dump_test_arch): Add
  2281. `mips16e2@' prefix.
  2282. (run_list_test_arch): Likewise.
  2283. (mips16e2-32, mips16e2-64): New architectures.
  2284. * testsuite/gas/mips/mips16e2-32@mips16-macro.d: New test.
  2285. * testsuite/gas/mips/mips16e2-32@mips16-macro-t.d: New test.
  2286. * testsuite/gas/mips/mips16e2-32@mips16-macro-e.d: New test.
  2287. * testsuite/gas/mips/mips16e2-32@mips16-insn-t.d: New test.
  2288. * testsuite/gas/mips/mips16e2-32@mips16-insn-e.d: New test.
  2289. * testsuite/gas/mips/mips16e2-32@mips16e-64.d: New test.
  2290. * testsuite/gas/mips/mips16e2-32@mips16-sub.d: New test.
  2291. * testsuite/gas/mips/mips16e2-32@mips16e-64-sub.d: New test.
  2292. * testsuite/gas/mips/mips16e2@relax-swap3.d: New test.
  2293. * testsuite/gas/mips/mips16-32@mips16-asmacro.d: Remove `source'
  2294. tag. Add `-I$srcdir/$subdir' to `as' flags.
  2295. * testsuite/gas/mips/mips16-64@mips16-asmacro.d: Likewise.
  2296. * testsuite/gas/mips/mips16e2-32@mips16-macro.l: New stderr
  2297. output.
  2298. * testsuite/gas/mips/mips16e2-32@mips16-macro-t.l: New stderr
  2299. output.
  2300. * testsuite/gas/mips/mips16e2-32@mips16-macro-e.l: New stderr
  2301. output.
  2302. * testsuite/gas/mips/mips16e2-32@mips16-insn-t.l: New stderr
  2303. output.
  2304. * testsuite/gas/mips/mips16e2-32@mips16-insn-e.l: New stderr
  2305. output.
  2306. * testsuite/gas/mips/mips16-sub.s: Add `.set nomips16e2'.
  2307. * testsuite/gas/mips/mips16e-sub.s: Likewise.
  2308. * testsuite/gas/mips/mips16e-64-sub.s: Likewise.
  2309. * testsuite/gas/mips/mips16-asmacro.s: Remove `.set mips32'.
  2310. * testsuite/gas/mips/mips16-32@mips16-asmacro.s: New test
  2311. source.
  2312. * testsuite/gas/mips/mips16-64@mips16-asmacro.s: New test
  2313. source.
  2314. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2315. Matthew Fortune <matthew.fortune@imgtec.com>
  2316. Andrew Bennett <andrew.bennett@imgtec.com>
  2317. * config/tc-mips.c (RELAX_MIPS16_ENCODE): Add `e2' flag.
  2318. (RELAX_MIPS16_E2): New macro.
  2319. (RELAX_MIPS16_PIC, RELAX_MIPS16_SYM32, RELAX_MIPS16_NOMACRO)
  2320. (RELAX_MIPS16_USER_SMALL, RELAX_MIPS16_USER_EXT)
  2321. (RELAX_MIPS16_DSLOT, RELAX_MIPS16_JAL_DSLOT)
  2322. (RELAX_MIPS16_EXTENDED, RELAX_MIPS16_MARK_EXTENDED)
  2323. (RELAX_MIPS16_CLEAR_EXTENDED, RELAX_MIPS16_ALWAYS_EXTENDED)
  2324. (RELAX_MIPS16_MARK_ALWAYS_EXTENDED)
  2325. (RELAX_MIPS16_CLEAR_ALWAYS_EXTENDED, RELAX_MIPS16_MACRO)
  2326. (RELAX_MIPS16_MARK_MACRO, RELAX_MIPS16_CLEAR_MACRO): Shift bits.
  2327. (mips16_immed_extend): New prototype.
  2328. (options): Add OPTION_MIPS16E2 and OPTION_NO_MIPS16E2 enum
  2329. values.
  2330. (md_longopts): Add "mmips16e2" and "mno-mips16e2" options.
  2331. (mips_ases): Add "mips16e2" entry.
  2332. (mips_set_ase): Handle MIPS16e2 ASE.
  2333. (insn_insert_operand): Explicitly handle immediates with MIPS16
  2334. instructions that require 32-bit encoding.
  2335. (is_opcode_valid_16): Pass enabled ASE bitmask on to
  2336. `opcode_is_member'.
  2337. (validate_mips_insn): Explicitly handle immediates with MIPS16
  2338. instructions that require 32-bit encoding.
  2339. (operand_reg_mask) <OP_REG28>: Add handler.
  2340. (match_reg28_operand): New function.
  2341. (match_operand) <OP_REG28>: Add handler.
  2342. (append_insn): Pass ASE_MIPS16E2 setting to RELAX_MIPS16_ENCODE.
  2343. (match_mips16_insn): Handle MIPS16 instructions that require
  2344. 32-bit encoding and `V' and `u' operand codes.
  2345. (mips16_ip): Allow any characters except from `.' in opcodes.
  2346. (mips16_immed_extend): Handle 9-bit immediates. Do not shuffle
  2347. immediates whose width is not one of these listed.
  2348. (md_estimate_size_before_relax): Handle MIPS16e2 relaxation.
  2349. (mips_relax_frag): Likewise.
  2350. (md_convert_frag): Likewise.
  2351. (mips_convert_ase_flags): Handle MIPS16e2 ASE.
  2352. * doc/as.texinfo (Target MIPS options): Add `-mmips16e2' and
  2353. `-mno-mips16e2' options.
  2354. (-mmips16e2, -mno-mips16e2): New options.
  2355. * doc/c-mips.texi (MIPS Options): Add `-mmips16e2' and
  2356. `-mno-mips16e2' options.
  2357. (MIPS ASE Instruction Generation Overrides): Add `.set mips16e2'
  2358. and `.set nomips16e2'.
  2359. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2360. * config/tc-mips.c (match_int_operand): Call
  2361. `match_out_of_range' before returning failure for 0x8000-0xffff
  2362. values conditionally allowed.
  2363. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2364. * config/tc-mips.c (match_int_operand): Call
  2365. `match_not_constant' before returning failure for a non-constant
  2366. 16-bit immediate conditionally allowed.
  2367. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2368. * config/tc-mips.c (match_const_int): Call `match_out_of_range'
  2369. rather than `match_not_constant' for unrelocated operands
  2370. retrieved as an `O_big' expression.
  2371. (match_int_operand): Call `match_out_of_range' for relocatable
  2372. operands retrieved as an `O_big' expression.
  2373. (match_mips16_insn): Call `match_out_of_range' for relaxable
  2374. operands retrieved as an `O_big' expression.
  2375. * testsuite/gas/mips/addiu-error.d: New test.
  2376. * testsuite/gas/mips/mips16@addiu-error.d: New test.
  2377. * testsuite/gas/mips/micromips@addiu-error.d: New test.
  2378. * testsuite/gas/mips/break-error.d: New test.
  2379. * testsuite/gas/mips/lui-1.l: Adjust error message.
  2380. * testsuite/gas/mips/addiu-error.l: New stderr output.
  2381. * testsuite/gas/mips/mips16@addiu-error.l: New stderr output.
  2382. * testsuite/gas/mips/micromips@addiu-error.l: New stderr output.
  2383. * testsuite/gas/mips/break-error.l: New stderr output.
  2384. * testsuite/gas/mips/addiu-error.s: New test source.
  2385. * testsuite/gas/mips/break-error.s: New test source.
  2386. * testsuite/gas/mips/mips.exp: Run the new tests.
  2387. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2388. * config/tc-mips.c (match_mips16_insn): Remove the explicit
  2389. OT_INTEGER check before the `match_expression' call.
  2390. * testsuite/gas/mips/mips16-insn-e.l: Adjust messages.
  2391. * testsuite/gas/mips/mips16-32@mips16-insn-e.l: Likewise.
  2392. * testsuite/gas/mips/mips16-64@mips16-insn-e.l: Likewise.
  2393. * testsuite/gas/mips/mips16e-32@mips16-insn-e.l: Likewise.
  2394. * testsuite/gas/mips/mips16-reg-error.d: New test.
  2395. * testsuite/gas/mips/mips16-reg-error.l: New stderr output.
  2396. * testsuite/gas/mips/mips16-reg-error.s: New test source.
  2397. * testsuite/gas/mips/mips.exp: Run the new test.
  2398. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2399. * config/tc-mips.c (match_mips16_insn): Call
  2400. `match_not_constant' for a disallowed relocation operation.
  2401. * testsuite/gas/mips/mips16-reloc-error.d: New test.
  2402. * testsuite/gas/mips/mips16-reloc-error.l: New stderr output.
  2403. * testsuite/gas/mips/mips16-reloc-error.s: New test source.
  2404. * testsuite/gas/mips/mips.exp: Run the new test.
  2405. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2406. * testsuite/gas/mips/lui-1.d: New test.
  2407. * testsuite/gas/mips/lui-2.d: New test.
  2408. * gas/testsuite/gas/mips/mips.exp: Fold corresponding list tests
  2409. into the new tests.
  2410. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2411. * config/tc-mips.c (match_const_int): Update description.
  2412. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  2413. * doc/as.texinfo (-mips16, -no-mips16): Refer to `.module
  2414. mips16' rather than `.set mips16'.
  2415. (-mmicromips, -mno-micromips): Refer to `.module micromips' and
  2416. `.module nomicromips' rather than `.set micromips' and `.set
  2417. nomicromips'.
  2418. (-msmartmips, -mno-smartmips): Refer to `.module smartmips'
  2419. rather than `.set smartmips'.
  2420. * doc/c-mips.texi (MIPS Options): Refer to `.module mips16',
  2421. `.module micromips', `.module nomicromips' and `.module
  2422. smartmips' rather than `.set mips16', `.set micromips', `.set
  2423. nomicromips' and `.set smartmips' respectively.
  2424. 2017-05-12 Maciej W. Rozycki <macro@imgtec.com>
  2425. Matthew Fortune <matthew.fortune@imgtec.com>
  2426. * config/tc-mips.c (mips_percent_op): Add "%gprel".
  2427. (mips16_percent_op): Add "%gp_rel".
  2428. * testsuite/gas/mips/elf-rel8.s:: Add `%gprel' forms.
  2429. * testsuite/gas/mips/elf-rel8-mips16.s: Add `%gp_rel' forms.
  2430. * testsuite/gas/mips/elf-rel8.d: Adjust accordingly.
  2431. * testsuite/gas/mips/elf-rel8-mips16.d: Likewise.
  2432. 2017-05-12 Maciej W. Rozycki <macro@imgtec.com>
  2433. * testsuite/gas/mips/mips16.d: Adjust BREAK disassembly.
  2434. * testsuite/gas/mips/mips16-64@mips16.d: Likewise.
  2435. * testsuite/gas/mips/mips16-64.d: Likewise.
  2436. * testsuite/gas/mips/mips16-64@mips16-64.d: Likewise.
  2437. * testsuite/gas/mips/mips16-macro.d: Likewise.
  2438. * testsuite/gas/mips/mips16-64@mips16-macro.d: Likewise.
  2439. * testsuite/gas/mips/mips16-sub.d: Likewise.
  2440. * testsuite/gas/mips/mips16-32@mips16-sub.d: Likewise.
  2441. 2017-05-11 Maciej W. Rozycki <macro@imgtec.com>
  2442. * testsuite/gas/mips/mips32r2-sync-1.d: New test.
  2443. * testsuite/gas/mips/micromips@mips32r2-sync-1.d: New test.
  2444. * testsuite/gas/mips/mips.exp: Run the new tests.
  2445. 2017-05-10 Maciej W. Rozycki <macro@imgtec.com>
  2446. * testsuite/gas/mips/isa-override-2.d: New test.
  2447. * testsuite/gas/mips/mips1@isa-override-2.d: New test.
  2448. * testsuite/gas/mips/r3000@isa-override-2.d: New test.
  2449. * testsuite/gas/mips/r3900@isa-override-2.d: New test.
  2450. * testsuite/gas/mips/mips2@isa-override-2.d: New test.
  2451. * testsuite/gas/mips/mips32@isa-override-2.d: New test.
  2452. * testsuite/gas/mips/mips32r2@isa-override-2.d: New test.
  2453. * testsuite/gas/mips/mips32r3@isa-override-2.d: New test.
  2454. * testsuite/gas/mips/mips32r5@isa-override-2.d: New test.
  2455. * testsuite/gas/mips/mips32r6@isa-override-2.d: New test.
  2456. * testsuite/gas/mips/octeon3@isa-override-2.d: New test.
  2457. * testsuite/gas/mips/r3000@isa-override-2.l: Remove list test.
  2458. * testsuite/gas/mips/mips1@isa-override-2.s: Remove test source.
  2459. * testsuite/gas/mips/r3000@isa-override-2.s: Remove test source.
  2460. * testsuite/gas/mips/r3900@isa-override-2.s: Remove test source.
  2461. * testsuite/gas/mips/mips2@isa-override-2.s: Remove test source.
  2462. * testsuite/gas/mips/mips32@isa-override-2.s: Remove test
  2463. source.
  2464. * testsuite/gas/mips/mips32r2@isa-override-2.s: Remove test
  2465. source.
  2466. * testsuite/gas/mips/mips32r3@isa-override-2.s: Remove test
  2467. source.
  2468. * testsuite/gas/mips/mips32r5@isa-override-2.s: Remove test
  2469. source.
  2470. * testsuite/gas/mips/mips32r6@isa-override-2.s: Remove test
  2471. source.
  2472. * testsuite/gas/mips/octeon3@isa-override-2.s: Remove test
  2473. source.
  2474. * gas/testsuite/gas/mips/mips.exp: Fold corresponding list tests
  2475. into the new tests.
  2476. 2017-05-10 Maciej W. Rozycki <macro@imgtec.com>
  2477. * testsuite/gas/mips/mips16e-sub.d: Correct test name.
  2478. * testsuite/gas/mips/mips16-32@mips16e-sub.d: Likewise.
  2479. * testsuite/gas/mips/mips16-64@mips16e-sub.d: Likewise.
  2480. * testsuite/gas/mips/mips16e-64-sub.d: Likewise.
  2481. * testsuite/gas/mips/mips16-32@mips16e-64-sub.d: Likewise.
  2482. * testsuite/gas/mips/mips16-64@mips16e-64-sub.d: Likewise.
  2483. * testsuite/gas/mips/mips16e-32@mips16e-64-sub.d: Likewise.
  2484. 2017-05-10 Maciej W. Rozycki <macro@imgtec.com>
  2485. * testsuite/gas/mips/mips16-macro.l: Remove list test.
  2486. 2017-05-10 Maciej W. Rozycki <macro@imgtec.com>
  2487. * testsuite/gas/mips/r3900@ecoff@ld.d: Remove test.
  2488. * testsuite/gas/mips/mips2@ecoff@ld.d: Remove test.
  2489. * testsuite/gas/mips/mips32@ecoff@ld.d: Remove test.
  2490. * testsuite/gas/mips/mips32r2@ecoff@ld.d: Remove test.
  2491. * testsuite/gas/mips/r3900@ecoff@ld-forward.d: Remove test.
  2492. * testsuite/gas/mips/mips2@ecoff@ld-forward.d: Remove test.
  2493. * testsuite/gas/mips/mips32@ecoff@ld-forward.d: Remove test.
  2494. * testsuite/gas/mips/mips32r2@ecoff@ld-forward.d: Remove test.
  2495. * testsuite/gas/mips/mips1@ecoff@sd.d: Remove test.
  2496. * testsuite/gas/mips/r3000@ecoff@sd.d: Remove test.
  2497. * testsuite/gas/mips/r3900@ecoff@sd.d: Remove test.
  2498. * testsuite/gas/mips/mips2@ecoff@sd.d: Remove test.
  2499. * testsuite/gas/mips/mips32@ecoff@sd.d: Remove test.
  2500. * testsuite/gas/mips/mips32r2@ecoff@sd.d: Remove test.
  2501. * testsuite/gas/mips/mips1@ecoff@sd-forward.d: Remove test.
  2502. * testsuite/gas/mips/r3000@ecoff@sd-forward.d: Remove test.
  2503. * testsuite/gas/mips/r3900@ecoff@sd-forward.d: Remove test.
  2504. * testsuite/gas/mips/mips2@ecoff@sd-forward.d: Remove test.
  2505. * testsuite/gas/mips/mips32@ecoff@sd-forward.d: Remove test.
  2506. * testsuite/gas/mips/mips32r2@ecoff@sd-forward.d: Remove test.
  2507. 2017-05-10 Claudiu Zissulescu <claziss@synopsys.com>
  2508. * testsuite/gas/arc/attr-arc600.d: New file.
  2509. * testsuite/gas/arc/attr-arc600_mul32x16.d: Likewise.
  2510. * testsuite/gas/arc/attr-arc600_norm.d: Likewise.
  2511. * testsuite/gas/arc/attr-arc601.d: Likewise.
  2512. * testsuite/gas/arc/attr-arc601_mul32x16.d: Likewise.
  2513. * testsuite/gas/arc/attr-arc601_mul64.d: Likewise.
  2514. * testsuite/gas/arc/attr-arc601_norm.d: Likewise.
  2515. * testsuite/gas/arc/attr-arc700.d: Likewise.
  2516. * testsuite/gas/arc/attr-arcem.d: Likewise.
  2517. * testsuite/gas/arc/attr-archs.d: Likewise.
  2518. * testsuite/gas/arc/attr-autodetect-1.d: Likewise.
  2519. * testsuite/gas/arc/attr-autodetect-1.s: Likewise.
  2520. * testsuite/gas/arc/attr-cpu-a601.d: Likewise.
  2521. * testsuite/gas/arc/attr-cpu-a601.s: Likewise.
  2522. * testsuite/gas/arc/attr-cpu-a700.d: Likewise.
  2523. * testsuite/gas/arc/attr-cpu-a700.s: Likewise.
  2524. * testsuite/gas/arc/attr-cpu-em.d: Likewise.
  2525. * testsuite/gas/arc/attr-cpu-em.s: Likewise.
  2526. * testsuite/gas/arc/attr-cpu-hs.d: Likewise.
  2527. * testsuite/gas/arc/attr-cpu-hs.s: Likewise.
  2528. * testsuite/gas/arc/attr-em.d: Likewise.
  2529. * testsuite/gas/arc/attr-em4.d: Likewise.
  2530. * testsuite/gas/arc/attr-em4_dmips.d: Likewise.
  2531. * testsuite/gas/arc/attr-em4_fpuda.d: Likewise.
  2532. * testsuite/gas/arc/attr-em4_fpus.d: Likewise.
  2533. * testsuite/gas/arc/attr-hs.d: Likewise.
  2534. * testsuite/gas/arc/attr-hs34.d: Likewise.
  2535. * testsuite/gas/arc/attr-hs38.d: Likewise.
  2536. * testsuite/gas/arc/attr-hs38_linux.d: Likewise.
  2537. * testsuite/gas/arc/attr-mul64.d: Likewise.
  2538. * testsuite/gas/arc/attr-name.d: Likewise.
  2539. * testsuite/gas/arc/attr-name.s: Likewise.
  2540. * testsuite/gas/arc/attr-nps400.d: Likewise.
  2541. * testsuite/gas/arc/attr-override-mcpu.d: Likewise.
  2542. * testsuite/gas/arc/attr-override-mcpu.s
  2543. * testsuite/gas/arc/attr-quarkse_em.d: Likewise.
  2544. * testsuite/gas/arc/blank.s: Likewise.
  2545. * testsuite/gas/elf/section2.e-arc: Likewise.
  2546. * testsuite/gas/arc/cpu-pseudop-1.d: Update test.
  2547. * testsuite/gas/arc/cpu-pseudop-2.d: Likewise.
  2548. * testsuite/gas/arc/nps400-0.d: Likewise.
  2549. * testsuite/gas/elf/elf.exp: Set target_machine for ARC.
  2550. * config/tc-arc.c (opcode/arc-attrs.h): Include.
  2551. (ARC_GET_FLAG, ARC_SET_FLAG, streq): Define.
  2552. (arc_attribute): Declare new function.
  2553. (md_pseudo_table): Add arc_attribute.
  2554. (cpu_types): Rename default cpu features.
  2555. (selected_cpu): Set the default OSABI flag.
  2556. (mpy_option): New variable.
  2557. (pic_option): Likewise.
  2558. (sda_option): Likewise.
  2559. (tls_option): Likewise.
  2560. (feature_type, feature_list): Remove.
  2561. (arc_initial_eflag): Likewise.
  2562. (attributes_set_explicitly): New variable.
  2563. (arc_check_feature): Check also for the conflicting features.
  2564. (arc_select_cpu): Refactor assignment of selected_cpu.eflags.
  2565. (arc_option): Remove setting of private flags and architecture.
  2566. (check_cpu_feature): Refactor feature names.
  2567. (autodetect_attributes): New function.
  2568. (assemble_tokens): Use above function.
  2569. (md_parse_option): Refactor feature names.
  2570. (arc_attribute): New function.
  2571. (arc_set_attribute_int): Likewise.
  2572. (arc_set_attribute_string): Likewise.
  2573. (arc_stralloc): Likewise.
  2574. (arc_set_public_attributes): Likewise.
  2575. (arc_md_end): Likewise.
  2576. (arc_copy_symbol_attributes): Likewise.
  2577. (rc_convert_symbolic_attribute): Likewise.
  2578. * config/tc-arc.h (md_end): Define.
  2579. (CONVERT_SYMBOLIC_ATTRIBUTE): Likewise.
  2580. (TC_COPY_SYMBOL_ATTRIBUTES): Likewise.
  2581. * doc/c-arc.texi: Document ARC object attributes.
  2582. 2017-05-03 Maciej W. Rozycki <macro@imgtec.com>
  2583. * config/tc-mips.c (RELAX_MIPS16_ENCODE): Add `pic', `sym32' and
  2584. `nomacro' flags.
  2585. (RELAX_MIPS16_PIC, RELAX_MIPS16_SYM32, RELAX_MIPS16_NOMACRO):
  2586. New macros.
  2587. (RELAX_MIPS16_USER_SMALL, RELAX_MIPS16_USER_EXT)
  2588. (RELAX_MIPS16_DSLOT, RELAX_MIPS16_JAL_DSLOT)
  2589. (RELAX_MIPS16_EXTENDED, RELAX_MIPS16_MARK_EXTENDED)
  2590. (RELAX_MIPS16_CLEAR_EXTENDED, RELAX_MIPS16_ALWAYS_EXTENDED)
  2591. (RELAX_MIPS16_MARK_ALWAYS_EXTENDED)
  2592. (RELAX_MIPS16_CLEAR_ALWAYS_EXTENDED): Shift bits.
  2593. (RELAX_MIPS16_MACRO, RELAX_MIPS16_MARK_MACRO)
  2594. (RELAX_MIPS16_CLEAR_MACRO): New macros.
  2595. (append_insn): Pass `mips_pic', HAVE_32BIT_SYMBOLS and
  2596. `mips_opts.warn_about_macros' settings to RELAX_MIPS16_ENCODE.
  2597. (mips16_macro_frag): New function.
  2598. (md_estimate_size_before_relax): Handle HI16/LO16 relaxation.
  2599. (mips_relax_frag): Likewise.
  2600. (md_convert_frag): Likewise.
  2601. * testsuite/gas/mips/mips16@relax-swap3.d: Remove error output,
  2602. add dump patterns.
  2603. * testsuite/gas/mips/mips16e@relax-swap3.d: New test
  2604. subarchitecture.
  2605. * testsuite/gas/mips/micromips@relax-swap3.d: Remove trailing
  2606. NOP padding.
  2607. * testsuite/gas/mips/mips16-pcrel-reloc-2.d: Remove error
  2608. output, add dump patterns.
  2609. * testsuite/gas/mips/mips16-pcrel-reloc-3.d: Remove error
  2610. output, add dump patterns.
  2611. * testsuite/gas/mips/mips16-pcrel-reloc-6.d: Remove error
  2612. output, add dump patterns.
  2613. * testsuite/gas/mips/mips16-pcrel-reloc-7.d: Remove error
  2614. output, add dump patterns.
  2615. * testsuite/gas/mips/mips16-pcrel-addend-2.d: Remove error
  2616. output, add dump patterns.
  2617. * testsuite/gas/mips/mips16-pcrel-addend-3.d: Remove error
  2618. output, add dump patterns.
  2619. * testsuite/gas/mips/mips16-pcrel-absolute.d: Remove error
  2620. output, add dump patterns.
  2621. * testsuite/gas/mips/mips16-pcrel-absolute-1.d: Remove error
  2622. output, add dump patterns.
  2623. * testsuite/gas/mips/mips16@relax-swap3.l: Remove file.
  2624. * testsuite/gas/mips/mips16-pcrel-reloc-2.l: Remove file.
  2625. * testsuite/gas/mips/mips16-pcrel-reloc-3.l: Remove file.
  2626. * testsuite/gas/mips/mips16-pcrel-reloc-6.l: Remove file.
  2627. * testsuite/gas/mips/mips16-pcrel-reloc-7.l: Remove file.
  2628. * testsuite/gas/mips/mips16-pcrel-addend-2.l: Remove file.
  2629. * testsuite/gas/mips/mips16-pcrel-addend-3.l: Remove file.
  2630. * testsuite/gas/mips/mips16-pcrel-absolute.l: Remove file.
  2631. * testsuite/gas/mips/mips16-pcrel-absolute-1.l: Remove file.
  2632. * testsuite/gas/mips/relax-swap3.s: Adjust trailing padding.
  2633. * testsuite/gas/mips/mips16-pcrel-0.d: New test.
  2634. * testsuite/gas/mips/mips16-pcrel-1.d: New test.
  2635. * testsuite/gas/mips/mips16-pcrel-2.d: New test.
  2636. * testsuite/gas/mips/mips16-pcrel-3.d: New test.
  2637. * testsuite/gas/mips/mips16-pcrel-4.d: New test.
  2638. * testsuite/gas/mips/mips16-pcrel-5.d: New test.
  2639. * testsuite/gas/mips/mips16-pcrel-pic-0.d: New test.
  2640. * testsuite/gas/mips/mips16-pcrel-pic-1.d: New test.
  2641. * testsuite/gas/mips/mips16-pcrel-n32-0.d: New test.
  2642. * testsuite/gas/mips/mips16-pcrel-n32-1.d: New test.
  2643. * testsuite/gas/mips/mips16-pcrel-n64-sym32-0.d: New test.
  2644. * testsuite/gas/mips/mips16-pcrel-n64-sym32-1.d: New test.
  2645. * testsuite/gas/mips/mips16-pcrel-n64-0.d: New test.
  2646. * testsuite/gas/mips/mips16-pcrel-n64-1.d: New test.
  2647. * testsuite/gas/mips/mips16-pcrel-delay-0.d: New test.
  2648. * testsuite/gas/mips/mips16-pcrel-delay-1.d: New test.
  2649. * testsuite/gas/mips/mips16-pcrel-addend-4.d: New test.
  2650. * testsuite/gas/mips/mips16-pcrel-addend-5.d: New test.
  2651. * testsuite/gas/mips/mips16-pcrel-addend-6.d: New test.
  2652. * testsuite/gas/mips/mips16-pcrel-addend-7.d: New test.
  2653. * testsuite/gas/mips/mips16-pcrel-addend-8.d: New test.
  2654. * testsuite/gas/mips/mips16-pcrel-addend-9.d: New test.
  2655. * testsuite/gas/mips/mips16-pcrel-addend-pic-8.d: New test.
  2656. * testsuite/gas/mips/mips16-pcrel-addend-pic-9.d: New test.
  2657. * testsuite/gas/mips/mips16-pcrel-addend-n32-8.d: New test.
  2658. * testsuite/gas/mips/mips16-pcrel-addend-n32-9.d: New test.
  2659. * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-8.d: New test.
  2660. * testsuite/gas/mips/mips16-pcrel-addend-n64-sym32-9.d: New test.
  2661. * testsuite/gas/mips/mips16-pcrel-addend-n64-8.d: New test.
  2662. * testsuite/gas/mips/mips16-pcrel-addend-n64-9.d: New test.
  2663. * testsuite/gas/mips/mips16-pcrel-absolute-2.d: New test.
  2664. * testsuite/gas/mips/mips16-pcrel-absolute-3.d: New test.
  2665. * testsuite/gas/mips/mips16-pcrel-absolute-4.d: New test.
  2666. * testsuite/gas/mips/mips16-pcrel-absolute-5.d: New test.
  2667. * testsuite/gas/mips/mips16-pcrel-absolute-6.d: New test.
  2668. * testsuite/gas/mips/mips16-pcrel-absolute-7.d: New test.
  2669. * testsuite/gas/mips/mips16-pcrel-absolute-pic-4.d: New test.
  2670. * testsuite/gas/mips/mips16-pcrel-absolute-pic-6.d: New test.
  2671. * testsuite/gas/mips/mips16-pcrel-absolute-n32-4.d: New test.
  2672. * testsuite/gas/mips/mips16-pcrel-absolute-n32-6.d: New test.
  2673. * testsuite/gas/mips/mips16-pcrel-absolute-n64-4.d: New test.
  2674. * testsuite/gas/mips/mips16-pcrel-absolute-n64-6.d: New test.
  2675. * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-4.d: New
  2676. test.
  2677. * testsuite/gas/mips/mips16-pcrel-absolute-n64-sym32-6.d: New
  2678. test.
  2679. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-4.d: New
  2680. test.
  2681. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n32-6.d: New
  2682. test.
  2683. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-4.d: New
  2684. test.
  2685. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-6.d: New
  2686. test.
  2687. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-4.d:
  2688. New test.
  2689. * testsuite/gas/mips/mips16-pcrel-absolute-pic-n64-sym32-6.d:
  2690. New test.
  2691. * testsuite/gas/mips/mips16-pcrel-0.l: New stderr output.
  2692. * testsuite/gas/mips/mips16-pcrel-1.l: New stderr output.
  2693. * testsuite/gas/mips/mips16-pcrel-2.l: New stderr output.
  2694. * testsuite/gas/mips/mips16-pcrel-3.l: New stderr output.
  2695. * testsuite/gas/mips/mips16-pcrel-4.l: New stderr output.
  2696. * testsuite/gas/mips/mips16-pcrel-5.l: New stderr output.
  2697. * testsuite/gas/mips/mips16-pcrel-delay-0.l: New stderr output.
  2698. * testsuite/gas/mips/mips16-pcrel-delay-1.l: New stderr output.
  2699. * testsuite/gas/mips/mips16-pcrel-addend-8.l: New stderr output.
  2700. * testsuite/gas/mips/mips16-pcrel-addend-9.l: New stderr output.
  2701. * testsuite/gas/mips/mips16-pcrel-absolute-4.l: New stderr
  2702. output.
  2703. * testsuite/gas/mips/mips16-pcrel-absolute-6.l: New stderr
  2704. output.
  2705. * testsuite/gas/mips/mips16-pcrel-0.s: New test source.
  2706. * testsuite/gas/mips/mips16-pcrel-1.s: New test source.
  2707. * testsuite/gas/mips/mips16-pcrel-2.s: New test source.
  2708. * testsuite/gas/mips/mips16-pcrel-3.s: New test source.
  2709. * testsuite/gas/mips/mips16-pcrel-4.s: New test source.
  2710. * testsuite/gas/mips/mips16-pcrel-5.s: New test source.
  2711. * testsuite/gas/mips/mips16-pcrel-delay-0.s: New test source.
  2712. * testsuite/gas/mips/mips16-pcrel-delay-1.s: New test source.
  2713. * testsuite/gas/mips/mips16-pcrel-addend-4.s: New test source.
  2714. * testsuite/gas/mips/mips16-pcrel-addend-5.s: New test source.
  2715. * testsuite/gas/mips/mips16-pcrel-addend-6.s: New test source.
  2716. * testsuite/gas/mips/mips16-pcrel-addend-7.s: New test source.
  2717. * testsuite/gas/mips/mips16-pcrel-addend-8.s: New test source.
  2718. * testsuite/gas/mips/mips16-pcrel-addend-9.s: New test source.
  2719. * testsuite/gas/mips/mips16-pcrel-absolute-2.s: New test.
  2720. * testsuite/gas/mips/mips16-pcrel-absolute-3.s: New test.
  2721. * testsuite/gas/mips/mips16-pcrel-absolute-4.s: New test.
  2722. * testsuite/gas/mips/mips16-pcrel-absolute-5.s: New test.
  2723. * testsuite/gas/mips/mips16-pcrel-absolute-6.s: New test.
  2724. * testsuite/gas/mips/mips16-pcrel-absolute-7.s: New test.
  2725. * testsuite/gas/mips/mips.exp: Run the new tests.
  2726. 2017-05-03 Nick Clifton <nickc@redhat.com>
  2727. PR gas/20941
  2728. * symbols.c (snapshot_symbol): Handle the case where
  2729. resolve_expression returns a local symbol.
  2730. 2017-05-02 Maciej W. Rozycki <macro@imgtec.com>
  2731. * config/tc-mips.c (append_insn): Call `symbol_append' for any
  2732. expression symbol created for MIPS16 relaxation.
  2733. (match_mips16_insn): Don't encode a constant value as an
  2734. immediate with a PC-relative operand.
  2735. * testsuite/gas/mips/mips16-pcrel-absolute-1.d: New test.
  2736. * testsuite/gas/mips/mips16-branch-absolute-1.d: New test.
  2737. * testsuite/gas/mips/mips16-branch-absolute-2.d: New test.
  2738. * testsuite/gas/mips/mips16-branch-absolute-addend-1.d: New
  2739. test.
  2740. * testsuite/gas/mips/mips16-branch-absolute-n32-1.d: New test.
  2741. * testsuite/gas/mips/mips16-branch-absolute-n32-2.d: New test.
  2742. * testsuite/gas/mips/mips16-branch-absolute-addend-n32-1.d: New
  2743. test.
  2744. * testsuite/gas/mips/mips16-branch-absolute-n64-1.d: New test.
  2745. * testsuite/gas/mips/mips16-branch-absolute-n64-2.d: New test.
  2746. * testsuite/gas/mips/mips16-branch-absolute-addend-n64-1.d: New
  2747. test.
  2748. * testsuite/gas/mips/mips16-pcrel-absolute-1.l: New stderr
  2749. output.
  2750. * testsuite/gas/mips/mips16-pcrel-absolute-1.s: New test source.
  2751. * testsuite/gas/mips/mips16-branch-absolute-1.s: New test
  2752. source.
  2753. * testsuite/gas/mips/mips16-branch-absolute-2.s: New test
  2754. source.
  2755. * testsuite/gas/mips/mips16-branch-absolute-addend-1.s: New test
  2756. source.
  2757. * testsuite/gas/mips/mips.exp: Run the new tests.
  2758. 2017-04-27 Maciej W. Rozycki <macro@imgtec.com>
  2759. * config/tc-mips.c (mips16_pcrel_val): New function, factored
  2760. out from...
  2761. (mips16_extended_frag): ... here.
  2762. (md_convert_frag): Use `mips16_pcrel_val' rather than repeated
  2763. code in MIPS16 relaxation, with `stretch' hardcoded to 0.
  2764. 2017-04-27 Maciej W. Rozycki <macro@imgtec.com>
  2765. * config/tc-mips.c (RELAX_MIPS16_LONG_BRANCH): Rename to...
  2766. (RELAX_MIPS16_ALWAYS_EXTENDED): ... this.
  2767. (RELAX_MIPS16_MARK_LONG_BRANCH): Rename to...
  2768. (RELAX_MIPS16_MARK_ALWAYS_EXTENDED): ... this.
  2769. (RELAX_MIPS16_CLEAR_LONG_BRANCH): Rename to...
  2770. (RELAX_MIPS16_CLEAR_ALWAYS_EXTENDED): ... this.
  2771. (mips16_extended_frag): Adjust accordingly.
  2772. 2017-04-27 Alan Modra <amodra@gmail.com>
  2773. * symbols.c (S_FORCE_RELOC): Separate section and symbol tests.
  2774. 2017-04-26 Maciej W. Rozycki <macro@imgtec.com>
  2775. * config/tc-mips.c (RELAX_ENCODE): Add `PIC' flag.
  2776. (RELAX_PIC): New macro.
  2777. (RELAX_USE_SECOND, RELAX_SECOND_LONGER, RELAX_NOMACRO)
  2778. (RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT)
  2779. (RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND):
  2780. Shift bits.
  2781. (RELAX_BRANCH_ENCODE): Add `pic' flag.
  2782. (RELAX_BRANCH_UNCOND, RELAX_BRANCH_LIKELY, RELAX_BRANCH_LINK)
  2783. (RELAX_BRANCH_TOOFAR): Shift bits.
  2784. (RELAX_BRANCH_PIC): New macro.
  2785. (RELAX_MICROMIPS_ENCODE): Add `pic' flag.
  2786. (RELAX_MICROMIPS_PIC): New macro.
  2787. (RELAX_MICROMIPS_UNCOND, RELAX_MICROMIPS_COMPACT)
  2788. (RELAX_MICROMIPS_LINK, RELAX_MICROMIPS_NODS)
  2789. (RELAX_MICROMIPS_RELAX32): Shift bits.
  2790. (relax_close_frag): Pass `mips_pic' setting to RELAX_ENCODE.
  2791. (append_insn): Pass `mips_pic' setting to RELAX_BRANCH_ENCODE
  2792. and RELAX_MICROMIPS_ENCODE, and record it in `fx_tcbit2' of the
  2793. first fixup created.
  2794. (md_apply_fix) <BFD_RELOC_16_PCREL_S2>: Use `fx_tcbit2' of the
  2795. fixup processed rather than `mips_pic' in choosing to relax an
  2796. out of range branch to a jump.
  2797. (relaxed_branch_length): Use the `pic' flag of the relaxed frag
  2798. rather than `mips_pic'.
  2799. (relaxed_micromips_32bit_branch_length): Likewise.
  2800. (md_estimate_size_before_relax): Likewise.
  2801. (md_convert_frag): Likewise.
  2802. * testsuite/gas/mips/option-pic-relax-0.d: New test.
  2803. * testsuite/gas/mips/option-pic-relax-1.d: New test.
  2804. * testsuite/gas/mips/option-pic-relax-2.d: New test.
  2805. * testsuite/gas/mips/option-pic-relax-3.d: New test.
  2806. * testsuite/gas/mips/option-pic-relax-3a.d: New test.
  2807. * testsuite/gas/mips/option-pic-relax-4.d: New test.
  2808. * testsuite/gas/mips/option-pic-relax-5.d: New test.
  2809. * testsuite/gas/mips/option-pic-relax-2.l: New stderr output.
  2810. * testsuite/gas/mips/option-pic-relax-3.l: New stderr output.
  2811. * testsuite/gas/mips/option-pic-relax-4.l: New stderr output.
  2812. * testsuite/gas/mips/option-pic-relax-5.l: New stderr output.
  2813. * testsuite/gas/mips/option-pic-relax-0.s: New test source.
  2814. * testsuite/gas/mips/option-pic-relax-1.s: New test source.
  2815. * testsuite/gas/mips/option-pic-relax-2.s: New test source.
  2816. * testsuite/gas/mips/option-pic-relax-3.s: New test source.
  2817. * testsuite/gas/mips/option-pic-relax-4.s: New test source.
  2818. * testsuite/gas/mips/option-pic-relax-5.s: New test source.
  2819. * testsuite/gas/mips/mips.exp: Run the new tests.
  2820. 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
  2821. * testsuite/gas/arc/leave_enter.d: Update test.
  2822. * testsuite/gas/arc/leave_enter.s: Likewise.
  2823. 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
  2824. * testsuite/gas/arc/b.d: Update test.
  2825. * testsuite/gas/arc/noargs_hs.d: Likewise.
  2826. 2017-04-25 Maciej W. Rozycki <macro@imgtec.com>
  2827. * config/tc-mips.c (md_convert_frag): Correct
  2828. BFD_RELOC_MIPS16_16_PCREL_S1 fixup size.
  2829. * testsuite/gas/mips/mips16-branch-addend-4.d: New test.
  2830. * testsuite/gas/mips/mips16-branch-addend-5.d: New test.
  2831. * testsuite/gas/mips/mips16-branch-addend-5.l: New stderr
  2832. output.
  2833. * testsuite/gas/mips/mips16-branch-addend-4.s: New test source.
  2834. * testsuite/gas/mips/mips16-branch-addend-5.s: New test source.
  2835. * testsuite/gas/mips/mips.exp: Run the new tests.
  2836. 2017-04-25 Jose E. Marchesi <jose.marchesi@oracle.com>
  2837. PR gas/21407
  2838. * config/tc-sparc.c (md_apply_fix): Do not transform `call'
  2839. instructions into branch instructions in fixups generating
  2840. additional relocations.
  2841. * testsuite/gas/sparc/call-relax.s: New file.
  2842. * testsuite/gas/sparc/call-relax.d: Likewise.
  2843. * testsuite/gas/sparc/call-relax-aout.d: Likewise.
  2844. * testsuite/gas/sparc/sparc.exp: Test call-relax and call-relax-aout.
  2845. 2017-04-24 Thomas Preud'homme <thomas.preudhomme@arm.com>
  2846. * config/tc-arm.c (move_or_literal_pool): Remove code generating MOVS.
  2847. Forbid MOV.W and MOVW if destination is SP or PC.
  2848. * testsuite/gas/arm/thumb2_ldr_immediate_highregs_armv6t2.s: Explain
  2849. expectation of LDR not generating a MOVS for low registers and small
  2850. constants. Add tests of MOVW generation.
  2851. * testsuite/gas/arm/thumb2_ldr_immediate_highregs_armv6t2.d: Update
  2852. expected disassembly.
  2853. 2017-04-22 Alan Modra <amodra@gmail.com>
  2854. * testsuite/gas/ppc/vle.s: Format. Add se_rfgi and e_sc.
  2855. * testsuite/gas/ppc/vle.d: Update.
  2856. 2017-04-21 Nick Clifton <nickc@redhat.com>
  2857. PR binutils/21380
  2858. * testsuite/gas/aarch64/illegal-3.s: New file.
  2859. * testsuite/gas/aarch64/illegal-3.d: New file.
  2860. 2017-04-11 Alan Modra <amodra@gmail.com>
  2861. * config/tc-ppc.c (md_show_usage): Delete mention of -mhtm.
  2862. * testsuite/gas/ppc/htm.d: Pass -mpower8 and -Mpower8.
  2863. 2017-04-10 Max Filippov <jcmvbkbc@gmail.com>
  2864. * config/tc-xtensa.c (xtensa_maybe_create_literal_pool_frag):
  2865. Initialize lps->frag_count with auto_litpool_limit.
  2866. (xg_promote_candidate_litpool): New function.
  2867. (xtensa_move_literals): Extract candidate litpool promotion code
  2868. into separate function. Call it for all possible found
  2869. candidates.
  2870. (xtensa_switch_to_literal_fragment): Drop 'recursive' flag and
  2871. call to xtensa_mark_literal_pool_location that it guards.
  2872. Replace it with call to xtensa_maybe_create_literal_pool_frag.
  2873. Initialize pool_location with created literal pool candidate.
  2874. * testsuite/gas/xtensa/all.exp: Add new tests.
  2875. * testsuite/gas/xtensa/auto-litpools-first1.d: New test results.
  2876. * testsuite/gas/xtensa/auto-litpools-first1.s: New test.
  2877. * testsuite/gas/xtensa/auto-litpools-first2.d: New test results.
  2878. * testsuite/gas/xtensa/auto-litpools-first2.s: New test.
  2879. * testsuite/gas/xtensa/auto-litpools.d: Fix offsets changed due
  2880. to additional jump instruction.
  2881. 2017-04-07 Alan Modra <amodra@gmail.com>
  2882. * testsuite/gas/ppc/altivec2.s: Delete E6500 vector insns.
  2883. * testsuite/gas/ppc/altivec2.d: Adjust to suit.
  2884. 2017-04-07 Alan Modra <amodra@gmail.com>
  2885. * testsuite/gas/elf/section12a.d: Don't expect alignment of 1
  2886. for .mbind.text.
  2887. 2017-04-06 Pip Cet <pipcet@gmail.com>
  2888. * testsuite/gas/wasm32/allinsn.d: Adjust test for disassembler
  2889. changes.
  2890. * testsuite/gas/wasm32/disass.d: New test.
  2891. * testsuite/gas/wasm32/disass.s: New test.
  2892. * testsuite/gas/wasm32/disass-2.d: New test.
  2893. * testsuite/gas/wasm32/disass-2.s: New test.
  2894. * testsuite/gas/wasm32/reloc.d: Adjust test for changed reloc
  2895. names.
  2896. * testsuite/gas/wasm32/reloc.s: Update test for changed assembler
  2897. syntax.
  2898. * testsuite/gas/wasm32/wasm32.exp: Run new tests. Expect allinsn
  2899. test to succeed.
  2900. 2017-04-04 H.J. Lu <hongjiu.lu@intel.com>
  2901. * NEWS: Mention support for ELF SHF_GNU_MBIND.
  2902. * config/obj-elf.c (section_match): New.
  2903. (get_section): Match both sh_info and group name.
  2904. (obj_elf_change_section): Add argument for sh_info. Pass both
  2905. sh_info and group name to get_section. Issue an error for
  2906. SHF_GNU_MBIND section without SHF_ALLOC. Set sh_info.
  2907. (obj_elf_parse_section_letters): Set SHF_GNU_MBIND for 'd'.
  2908. (obj_elf_section): Support SHF_GNU_MBIND section info.
  2909. * config/obj-elf.h (obj_elf_change_section): Add argument for
  2910. sh_info.
  2911. * config/tc-arm.c (start_unwind_section): Pass 0 as sh_info to
  2912. obj_elf_change_section.
  2913. * config/tc-ia64.c (obj_elf_vms_common): Likewise.
  2914. * config/tc-microblaze.c (microblaze_s_data): Likewise.
  2915. (microblaze_s_sdata): Likewise.
  2916. (microblaze_s_rdata): Likewise.
  2917. (microblaze_s_bss): Likewise.
  2918. * config/tc-mips.c (s_change_section): Likewise.
  2919. * config/tc-msp430.c (msp430_profiler): Likewise.
  2920. * config/tc-rx.c (parse_rx_section): Likewise.
  2921. * config/tc-tic6x.c (tic6x_start_unwind_section): Likewise.
  2922. * doc/as.texinfo: Document 'd' for SHF_GNU_MBIND.
  2923. * testsuite/gas/elf/elf.exp: Run section12a, section12b and
  2924. section13.
  2925. * testsuite/gas/elf/section10.d: Updated.
  2926. * testsuite/gas/elf/section10.s: Likewise.
  2927. * testsuite/gas/elf/section12.s: New file.
  2928. * testsuite/gas/elf/section12a.d: Likewise.
  2929. * testsuite/gas/elf/section12b.d: Likewise.
  2930. * testsuite/gas/elf/section13.l: Likewise.
  2931. * testsuite/gas/elf/section13.d: Likewise.
  2932. * testsuite/gas/elf/section13.s: Likewise.
  2933. 2017-04-03 Palmer Dabbelt <palmer@dabbelt.com>
  2934. * config/tc-riscv.c (riscv_clear_subsets): Cast argument to free to
  2935. avoid const warnings.
  2936. 2017-03-30 Palmer Dabbelt <palmer@dabbelt.com>
  2937. * config/tc-riscv.c (riscv_clear_subsets): New function.
  2938. (riscv_add_subset): Call riscv_clear_subsets and riscv_set_rvc to
  2939. clear RVC when it's been previously set.
  2940. 2017-03-31 Nick Clifton <nickc@redhat.com>
  2941. PR gas/21333
  2942. * config/tc-s390.c (tc_s390_fix_adjustable): Allow non pc-relative
  2943. fixups in mergeable sections to be adjusted.
  2944. 2017-03-30 Pip Cet <pipcet@gmail.com>
  2945. * config/tc-wasm32.h: New file: Add WebAssembly assembler target.
  2946. * config/tc-wasm32.c: New file: Add WebAssembly assembler target.
  2947. * Makefile.am: Add WebAssembly assembler target.
  2948. * configure.tgt: Add WebAssembly assembler target.
  2949. * doc/c-wasm32.texi: New file: Start documenting WebAssembly
  2950. assembler.
  2951. * doc/all.texi: Define WASM32.
  2952. * doc/as.texinfo: Add WebAssembly entries.
  2953. * NEWS: Mention the new support.
  2954. * Makefile.in: Regenerate.
  2955. * po/gas.pot: Regenerate.
  2956. * po/POTFILES.in: Regenerate.
  2957. * testsuite/gas/wasm32: New directory.
  2958. * testsuite/gas/wasm32/allinsn.d: New file.
  2959. * testsuite/gas/wasm32/allinsn.s: New file.
  2960. * testsuite/gas/wasm32/illegal.l: New file.
  2961. * testsuite/gas/wasm32/illegal.s: New file.
  2962. * testsuite/gas/wasm32/illegal-2.l: New file.
  2963. * testsuite/gas/wasm32/illegal-2.s: New file.
  2964. * testsuite/gas/wasm32/illegal-3.l: New file.
  2965. * testsuite/gas/wasm32/illegal-3.s: New file.
  2966. * testsuite/gas/wasm32/illegal-4.l: New file.
  2967. * testsuite/gas/wasm32/illegal-4.s: New file.
  2968. * testsuite/gas/wasm32/illegal-5.l: New file.
  2969. * testsuite/gas/wasm32/illegal-5.s: New file.
  2970. * testsuite/gas/wasm32/illegal-6.l: New file.
  2971. * testsuite/gas/wasm32/illegal-6.s: New file.
  2972. * testsuite/gas/wasm32/illegal-7.l: New file.
  2973. * testsuite/gas/wasm32/illegal-7.s: New file.
  2974. * testsuite/gas/wasm32/illegal-8.l: New file.
  2975. * testsuite/gas/wasm32/illegal-8.s: New file.
  2976. * testsuite/gas/wasm32/illegal-9.l: New file.
  2977. * testsuite/gas/wasm32/illegal-9.s: New file.
  2978. * testsuite/gas/wasm32/illegal-10.l: New file.
  2979. * testsuite/gas/wasm32/illegal-10.s: New file.
  2980. * testsuite/gas/wasm32/illegal-11.l: New file.
  2981. * testsuite/gas/wasm32/illegal-11.s: New file.
  2982. * testsuite/gas/wasm32/illegal-12.l: New file.
  2983. * testsuite/gas/wasm32/illegal-12.s: New file.
  2984. * testsuite/gas/wasm32/illegal-13.l: New file.
  2985. * testsuite/gas/wasm32/illegal-13.s: New file.
  2986. * testsuite/gas/wasm32/illegal-14.l: New file.
  2987. * testsuite/gas/wasm32/illegal-14.s: New file.
  2988. * testsuite/gas/wasm32/illegal-15.l: New file.
  2989. * testsuite/gas/wasm32/illegal-15.s: New file.
  2990. * testsuite/gas/wasm32/illegal-16.l: New file.
  2991. * testsuite/gas/wasm32/illegal-16.s: New file.
  2992. * testsuite/gas/wasm32/illegal-17.l: New file.
  2993. * testsuite/gas/wasm32/illegal-17.s: New file.
  2994. * testsuite/gas/wasm32/illegal-18.l: New file.
  2995. * testsuite/gas/wasm32/illegal-18.s: New file.
  2996. * testsuite/gas/wasm32/illegal-19.l: New file.
  2997. * testsuite/gas/wasm32/illegal-19.s: New file.
  2998. * testsuite/gas/wasm32/illegal-20.l: New file.
  2999. * testsuite/gas/wasm32/illegal-20.s: New file.
  3000. * testsuite/gas/wasm32/illegal-21.l: New file.
  3001. * testsuite/gas/wasm32/illegal-21.s: New file.
  3002. * testsuite/gas/wasm32/illegal-22.l: New file.
  3003. * testsuite/gas/wasm32/illegal-22.s: New file.
  3004. * testsuite/gas/wasm32/illegal-24.l: New file.
  3005. * testsuite/gas/wasm32/illegal-24.s: New file.
  3006. * testsuite/gas/wasm32/illegal-25.l: New file.
  3007. * testsuite/gas/wasm32/illegal-25.s: New file.
  3008. * testsuite/gas/wasm32/reloc.d: New file.
  3009. * testsuite/gas/wasm32/reloc.s: New file.
  3010. * testsuite/gas/wasm32/wasm32.exp: New tests for WebAssembly
  3011. architecture.
  3012. 2017-03-29 Alan Modra <amodra@gmail.com>
  3013. * config/tc-ppc.c (md_parse_option): Reject -mraw.
  3014. 2017-03-27 Alan Modra <amodra@gmail.com>
  3015. PR 21303
  3016. * testsuite/gas/ppc/pr21303.d,
  3017. * testsuite/gas/ppc/pr21303.s: New test
  3018. * testsuite/gas/ppc/ppc.exp: Run it.
  3019. 2017-03-27 Rinat Zelig <rinat@mellanox.com>
  3020. * testsuite/gas/arc/nps400-12.s: New file.
  3021. * testsuite/gas/arc/nps400-12.d: New file.
  3022. 2017-03-24 Thomas preud'homme <thomas.preudhomme@arm.com>
  3023. * config/tc-arm.: (md_begin): Set selected_cpu from *mcpu_cpu_opt when
  3024. CPU_DEFAULT is defined.
  3025. 2017-03-21 Palmer Dabbbelt <palmer@dabbelt.com>
  3026. * config/tc-riscv.c (md_show_usage): Remode defuct -m32, -m64,
  3027. -msoft-float, -mhard-float, -mno-rvc, and -mrvc options; and don't
  3028. print an invalid default ISA string.
  3029. * doc/c-riscv.texi (OPTIONS): Add -fpic and -fno-pic options.
  3030. 2017-03-22 Max Filippov <jcmvbkbc@gmail.com>
  3031. * config/tc-xtensa.c (xtensa_relax_frag): Change fx_size of the
  3032. reassigned fixup to size of jump instruction (3) and fx_r_type
  3033. to BFD_RELOC_XTENSA_SLOT0_OP, as there's only one slot.
  3034. (add_jump_to_trampoline): Search
  3035. origfrag->tc_frag_data.slot_symbols for the slot with non-NULL
  3036. symbol and use that slot instead of slot 0.
  3037. 2017-03-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
  3038. * config/tc-s390.c (s390_parse_cpu): Remove S390_INSTR_FLAG_VX2
  3039. from cpu_table. Remove vx2, and novx2 from cpu_flags.
  3040. 2017-03-21 Rinat Zelig <rinat@mellanox.com>
  3041. * testsuite/gas/arc/nps400-11.s: New file.
  3042. * testsuite/gas/arc/nps400-11.d: New file.
  3043. 2017-03-20 Nick Clifton <nickc@redhat.com>
  3044. * doc/as.texinfo (2byte): Note that if no expressions are present
  3045. the directive does nothing. Emphasize that the output is
  3046. unaligned, and that this can have an effect on the relocations
  3047. generated.
  3048. (4byte): Simplify description. Refer back to the 2byte
  3049. description.
  3050. (8byte): Likewise.
  3051. 2017-03-20 Richard Earnshaw <rearnsha@arm.com>
  3052. * config/tc-arm.c (arm_fpus): Note entires that should not be
  3053. documented.
  3054. * doc/c-arm.texi (-mfpu): Add missing FPU entries for neon-vfpv3 and
  3055. neon-fp16. Fix spelling error.
  3056. 2017-03-20 Richard Earnshaw <rearnsha@arm.com>
  3057. * config/tc-arm.c (arm_fpus): Add neon-vfpv3 as an alias for neon.
  3058. 2017-03-16 Rinat Zelig <rinat@mellanox.com>
  3059. * config/tc-arc.c (assemble_insn): Only handle ".t" and ".nt"
  3060. specially for ARCv2.
  3061. 2017-03-14 Kito Cheng <kito.cheng@gmail.com>
  3062. * config/tc-riscv.c (validate_riscv_insn): Add 'o' RVC immediate
  3063. encoding format, which can accept 0-valued immediates.
  3064. (riscv_ip): Likewise.
  3065. 2017-03-15 Nick Clifton <nickc@redhat.com>
  3066. * config/tc-riscv.c (riscv_pre_output_hook): Fix compile time
  3067. warning about discarding a const qualifier.
  3068. 2017-03-02 Kuan-Lin Chen <rufus@andestech.com>
  3069. * config/tc-riscv.h (HWARD2_USE_FIXED_ADVANCE_PC): New define.
  3070. 2017-03-02 Kuan-Lin Chen <rufus@andestech.com>
  3071. * config/tc-riscv.c (md_apply_fix): Set fx_frag and
  3072. fx_next->fx_frag for CFA_advance_loc relocations.
  3073. 2017-03-02 Kuan-Lin Chen <rufus@andestech.com>
  3074. * config/tc-riscv.c (md_apply_fix): Compute the correct offsets
  3075. for CFA relocations.
  3076. 2017-03-13 Nick Clifton <nickc@redhat.com>
  3077. PR binutils/21202
  3078. * config/tc-aarch64.c (reloc_table): Rename
  3079. BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC to
  3080. BFD_RELOC_AARCH64_TLSDESC_LD64_LO12. Rname
  3081. BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC to
  3082. BFD_RELOC_AARCH64_TLSDESC_ADD_LO12.
  3083. (md_apply_fix): Likewise.
  3084. (aarch64_force_relocation): Likewise.
  3085. * testsuite/gas/aarch64/tls.d: Update regexp.
  3086. 2017-03-10 Tobin C. Harding <me@tobin.cc>
  3087. Nick Clifton <nickc@redhat.com>
  3088. * doc/as.texinfo (2byte): Tidy up wording. Add note that
  3089. overlarge values will produce a warning message and be trunacted.
  3090. (4byte): Likewise.
  3091. 2017-03-09 H.J. Lu <hongjiu.lu@intel.com>
  3092. * config/tc-i386.c (_i386_insn): Add dir_encoding and
  3093. vec_encoding. Remove swap_operand and need_vrex.
  3094. (extra_symbol_chars): Add '}'.
  3095. (md_begin): Mark '}' with LEX_BEGIN_NAME. Allow '}' in
  3096. mnemonic.
  3097. (build_vex_prefix): Don't use 2-byte VEX encoding with
  3098. {vex3}. Check dir_encoding and load.
  3099. (parse_insn): Check pseudo prefixes. Set dir_encoding.
  3100. (VEX_check_operands): Likewise.
  3101. (match_template): Check dir_encoding and load.
  3102. (parse_real_register): Set vec_encoding instead of need_vrex.
  3103. (parse_register): Likewise.
  3104. * doc/c-i386.texi: Document {disp8}, {disp32}, {load}, {store},
  3105. {vex2}, {vex3} and {evex}. Remove ".s", ".d8" and ".d32"
  3106. * testsuite/gas/i386/i386.exp: Run pseudos and x86-64-pseudos.
  3107. * testsuite/gas/i386/pseudos.d: New file.
  3108. * testsuite/gas/i386/pseudos.s: Likewise.
  3109. * testsuite/gas/i386/x86-64-pseudos.d: Likewise.
  3110. * testsuite/gas/i386/x86-64-pseudos.s: Likewise.
  3111. 2017-03-08 Peter Bergner <bergner@vnet.ibm.com>
  3112. * testsuite/gas/ppc/altivec2.d (as): Use the -mpower8 option.
  3113. (objdump): Use the -Mpower8 option.
  3114. 2017-03-08 Peter Bergner <bergner@vnet.ibm.com>
  3115. * testsuite/gas/ppc/power9.d <lnia> New test.
  3116. * testsuite/gas/ppc/power9.s: Likewise.
  3117. 2017-03-07 Alan Modra <amodra@gmail.com>
  3118. * doc/as.texinfo (2byte, 4byte, 8byte): Correct @section placement.
  3119. 2017-03-07 Tobin C. Harding <me@tobin.cc>
  3120. Alan Modra <amodra@gmail.com>
  3121. * doc/as.texinfo (2byte, 4byte, 8byte): Document.
  3122. * doc/c-arm.texi (2byte, 4byte, 8byte): Omit if ELF.
  3123. 2017-03-06 H.J. Lu <hongjiu.lu@intel.com>
  3124. * config/tc-i386.c (cpu_arch): Add .cet.
  3125. * doc/c-i386.texi: Document cet.
  3126. * testsuite/gas/i386/cet-intel.d: New file.
  3127. * testsuite/gas/i386/cet.d: Likewise.
  3128. * testsuite/gas/i386/cet.s: Likewise.
  3129. * testsuite/gas/i386/x86-64-cet-intel.d: Likewise.
  3130. * testsuite/gas/i386/x86-64-cet.d: Likewise.
  3131. * testsuite/gas/i386/x86-64-cet.s: Likewise.
  3132. * testsuite/gas/i386/i386.exp: Run Intel CET tests.
  3133. 2017-03-06 H.J. Lu <hongjiu.lu@intel.com>
  3134. * testsuite/gas/i386/x86-64-mpx-inval-2.s: Force a good alignment.
  3135. * testsuite/gas/i386/x86-64-mpx-inval-2.l: Expect [0-9A-F]+.
  3136. 2017-03-06 Alan Modra <amodra@gmail.com>
  3137. * dw2gencfi.c (encoding_size): Return unsigned int.
  3138. (emit_expr_encoded): Assert size matches reloc bitsize.
  3139. (output_fde): Use unsigned for offset_size and addr_size. Set
  3140. addr_size earlier and use in place of constant 4 and uses of
  3141. DWARF2_FDE_RELOC_SIZE. Assert it matches reloc bitsize.
  3142. 2017-03-06 Alan Modra <amodra@gmail.com>
  3143. * dw2gencfi.c: Wrap overlong lines. Add parens for emacs
  3144. auto reformat. Formatting and whitespace fixes.
  3145. 2017-03-05 Mark Wielaard <mark@klomp.org>
  3146. * dwarf2dbg.c (out_debug_abbrev): Use DW_FORM_strp instead of
  3147. DW_FORM_string for DW_AT_name, DW_AT_comp_dir and DW_AT_producer.
  3148. (out_debug_info): Accept symbols to name, comp_dir and producer in
  3149. the .debug_str section and emit those offsets not full strings.
  3150. (out_debug_str): New function that outputs the strings for name,
  3151. comp_dir and producer in .debug_str and generates symbols to those
  3152. strings.
  3153. (out_debug_line): Create a .debug_str section if necessary and call
  3154. out_debug_str before calling out_debug_info.
  3155. * testsuite/gas/aarch64/dwarf.d: Add extra section symbol to expected
  3156. output.
  3157. 2017-03-02 Maciej W. Rozycki <macro@imgtec.com>
  3158. * write.c (relax_segment) <rs_org>: Only bail out if the fixed
  3159. part of the frag has overrun the location requested.
  3160. * testsuite/gas/all/org-1.d: New test.
  3161. * testsuite/gas/all/org-2.d: New test.
  3162. * testsuite/gas/all/org-3.d: New test.
  3163. * testsuite/gas/all/org-4.d: New test.
  3164. * testsuite/gas/all/org-5.d: New test.
  3165. * testsuite/gas/all/org-6.d: New test.
  3166. * testsuite/gas/all/org-1.l: New stderr output.
  3167. * testsuite/gas/all/org-2.l: New stderr output.
  3168. * testsuite/gas/all/org-3.l: New stderr output.
  3169. * testsuite/gas/all/org-1.s: New test source.
  3170. * testsuite/gas/all/org-2.s: New test source.
  3171. * testsuite/gas/all/org-3.s: New test source.
  3172. * testsuite/gas/all/org-4.s: New test source.
  3173. * testsuite/gas/all/org-5.s: New test source.
  3174. * testsuite/gas/all/org-6.s: New test source.
  3175. * testsuite/gas/all/gas.exp: Run the new tests.
  3176. * testsuite/gas/mips/org-1.d: New test.
  3177. * testsuite/gas/mips/org-2.d: New test.
  3178. * testsuite/gas/mips/org-3.d: New test.
  3179. * testsuite/gas/mips/org-4.d: New test.
  3180. * testsuite/gas/mips/org-5.d: New test.
  3181. * testsuite/gas/mips/org-6.d: New test.
  3182. * testsuite/gas/mips/org-7.d: New test.
  3183. * testsuite/gas/mips/org-8.d: New test.
  3184. * testsuite/gas/mips/org-9.d: New test.
  3185. * testsuite/gas/mips/org-10.d: New test.
  3186. * testsuite/gas/mips/org-11.d: New test.
  3187. * testsuite/gas/mips/org-12.d: New test.
  3188. * testsuite/gas/mips/org-1.l: New stderr output.
  3189. * testsuite/gas/mips/org-4.l: New stderr output.
  3190. * testsuite/gas/mips/org-5.l: New stderr output.
  3191. * testsuite/gas/mips/org-6.l: New stderr output.
  3192. * testsuite/gas/mips/org-10.l: New stderr output.
  3193. * testsuite/gas/mips/org-1.s: New test source.
  3194. * testsuite/gas/mips/org-2.s: New test source.
  3195. * testsuite/gas/mips/org-3.s: New test source.
  3196. * testsuite/gas/mips/org-4.s: New test source.
  3197. * testsuite/gas/mips/org-5.s: New test source.
  3198. * testsuite/gas/mips/org-6.s: New test source.
  3199. * testsuite/gas/mips/org-7.s: New test source.
  3200. * testsuite/gas/mips/org-8.s: New test source.
  3201. * testsuite/gas/mips/org-9.s: New test source.
  3202. * testsuite/gas/mips/org-10.s: New test source.
  3203. * testsuite/gas/mips/org-11.s: New test source.
  3204. * testsuite/gas/mips/org-12.s: New test source.
  3205. * testsuite/gas/mips/mips.exp: Run the new tests.
  3206. 2017-03-01 Szabolcs Nagy <szabolcs.nagy@arm.com>
  3207. * doc/c-aarch64.texi (AArch64 Extensions): Document rcpc.
  3208. 2017-02-28 Jan Beulich <jbeulich@suse.com>
  3209. * testsuite/gas/i386/x86-64-avx.s: Add suffixed variants of
  3210. VPCMPESTR{I,M}.
  3211. * testsuite/gas/i386/x86-64-sse2avx.s: Likewise.
  3212. * testsuite/gas/i386/x86-64-sse4_2.s: Add suffixed variants
  3213. of PCMPESTR{I,M}.
  3214. * testsuite/gas/i386/ilp32/x86-64-avx-intel.d: Likewise.
  3215. * testsuite/gas/i386/ilp32/x86-64-avx.d: Likewise.
  3216. * testsuite/gas/i386/ilp32/x86-64-sse2avx.d: Likewise.
  3217. * testsuite/gas/i386/ilp32/x86-64-sse4_2-intel.d: Likewise.
  3218. * testsuite/gas/i386/ilp32/x86-64-sse4_2.d: Likewise.
  3219. * testsuite/gas/i386/x86-64-avx-intel.d: Likewise.
  3220. * testsuite/gas/i386/x86-64-avx.d: Likewise.
  3221. * testsuite/gas/i386/x86-64-sse2avx.d: Likewise.
  3222. * testsuite/gas/i386/x86-64-sse4_2-intel.d: Likewise.
  3223. * testsuite/gas/i386/x86-64-sse4_2.d: Likewise.
  3224. 2017-02-28 Alan Modra <amodra@gmail.com>
  3225. * config/tc-nios2.h (TC_FORCE_RELOCATION_SUB_LOCAL): Define.
  3226. 2017-02-28 Alan Modra <amodra@gmail.com>
  3227. * config/tc-ppc.c (md_assemble): Use BFD_RELOC_PPC_16DX_HA for addpcis.
  3228. (md_apply_fix): Remove fx_subsy check. Move code converting to
  3229. pcrel reloc earlier and handle BFD_RELOC_PPC_16DX_HA. Remove code
  3230. emiiting errors on seeing fx_pcrel set on unexpected relocs, as
  3231. that is done now by the generic code via..
  3232. * config/tc-ppc.h (TC_FORCE_RELOCATION_SUB_LOCAL): ..this. Define.
  3233. (TC_VALIDATE_FIX_SUB): Define.
  3234. 2017-02-28 Maciej W. Rozycki <macro@imgtec.com>
  3235. * testsuite/gas/mips/jalr4.s: Add `jalr $0, $25' instructions.
  3236. * testsuite/gas/mips/jalr4.d: Adjust accordingly. Remove MIPSr6
  3237. encoding patterns.
  3238. * testsuite/gas/mips/jalr4-n64.d: Likewise.
  3239. * testsuite/gas/mips/mipsr6@jalr4.d: New test.
  3240. * testsuite/gas/mips/mipsr6@jalr4-n32.d: New test.
  3241. * testsuite/gas/mips/mipsr6@jalr4-n64.d: New test.
  3242. 2017-02-25 Alan Modra <amodra@gmail.com>
  3243. * testsuite/gas/elf/strtab.s: Don't put directives on first
  3244. column or continuation with labels not in first column.
  3245. 2017-02-24 Richard Sandiford <richard.sandiford@arm.com>
  3246. * doc/c-aarch64.texi: Document that sve implies fp16, simd and compnum.
  3247. * config/tc-aarch64.c (parse_vector_type_for_operand): Allow .q
  3248. to be used with SVE registers.
  3249. (parse_operands): Handle new SVE operands.
  3250. (aarch64_features): Make "sve" require F16 rather than FP. Also
  3251. require COMPNUM.
  3252. * testsuite/gas/aarch64/sve.s: Add tests for new instructions.
  3253. Include compnum tests.
  3254. * testsuite/gas/aarch64/sve.d: Update accordingly.
  3255. * testsuite/gas/aarch64/sve-invalid.s: Add tests for new instructions.
  3256. * testsuite/gas/aarch64/sve-invalid.l: Update accordingly. Also
  3257. update expected output for new FMOV and MOV alternatives.
  3258. 2017-02-24 Richard Sandiford <richard.sandiford@arm.com>
  3259. * doc/c-aarch64.texi: Add a "compnum" entry.
  3260. * config/tc-aarch64.c (aarch64_features): Likewise,
  3261. * testsuite/gas/aarch64/advsimd-compnum.s: New test.
  3262. * testsuite/gas/aarch64/advsimd-compnum.d: Likewise.
  3263. 2017-02-24 Jan Beulich <jbeulich@suse.com>
  3264. * testsuite/gas/i386/opcode.s: Add alternative TEST forms.
  3265. * testsuite/gas/i386/x86-64-opcode.s: Likewise.
  3266. * testsuite/gas/i386/opcode.d: Adjust accordingly.
  3267. * testsuite/gas/i386/opcode-intel.d: Likewise.
  3268. * testsuite/gas/i386/x86-64-opcode.d: Likewise.
  3269. * testsuite/gas/i386/ilp32/x86-64-opcode.d: Likewise.
  3270. 2017-02-24 Sheldon Lobo <sheldon.lobo@oracle.com>
  3271. Test cases for the architecture level aware SPARC ASI work.
  3272. * gas/testsuite/gas/sparc/sparc.exp: 2 new tests
  3273. * gas/testsuite/gas/sparc/asi-bump-warn.s: New test
  3274. * gas/testsuite/gas/sparc/asi-bump-warn.l: Likewise
  3275. * gas/testsuite/gas/sparc/asi-arch-error.s: Likewise
  3276. * gas/testsuite/gas/sparc/asi-arch-error.l: Likewise
  3277. 2017-02-23 Maciej W. Rozycki <macro@imgtec.com>
  3278. * testsuite/gas/mips/jalr4.d: New test.
  3279. * testsuite/gas/mips/jalr4-n32.d: New test.
  3280. * testsuite/gas/mips/jalr4-n64.d: New test.
  3281. * testsuite/gas/mips/jalr4.s: New test source.
  3282. * testsuite/gas/mips/mips.exp: Run the new tests.
  3283. 2017-02-23 Sheldon Lobo <sheldon.lobo@oracle.com>
  3284. Add support for associating SPARC ASIs with an architecture level.
  3285. * config/tc-sparc.c (parse_sparc_asi): New encode SPARC ASIs.
  3286. 2017-02-23 Jan Beulich <jbeulich@suse.com>
  3287. * testsuite/gas/all/err-sizeof.s: Don't use sums or differences
  3288. of symbols as expression.
  3289. 2017-02-23 Jan Beulich <jbeulich@suse.com>
  3290. * gas/testsuite/gas/i386/x86-64-mpx-inval-2.d: Add 32- and 16-
  3291. bit GPR forms of BNDCL, BNDCU, and BNDCN. Add RSP-as-index
  3292. Intel syntax forms of BNDMK, BNDSTX, and BNDLDX.
  3293. * gas/testsuite/gas/i386/x86-64-mpx-inval-2.l: Adjust.
  3294. 2017-02-22 Maciej W. Rozycki <macro@imgtec.com>
  3295. * ecoff.c (ecoff_directive_end) [md_flush_pending_output]: Call
  3296. `md_flush_pending_output'.
  3297. * config/tc-mips.c (s_mips_end) [md_flush_pending_output]: Call
  3298. `md_flush_pending_output' unconditionally.
  3299. * testsuite/gas/mips/debug-label-end-1.d: New test.
  3300. * testsuite/gas/mips/debug-label-end-2.d: New test.
  3301. * testsuite/gas/mips/debug-label-end-3.d: New test.
  3302. * testsuite/gas/mips/debug-label-end.s: New test source.
  3303. * testsuite/gas/mips/mips.exp: Run the new tests.
  3304. 2017-02-22 Hans-Peter Nilsson <hp@axis.com>
  3305. * testsuite/gas/all/err-sizeof.s: Include cris*-*-* in the list of
  3306. targets yielding an error message matching "too complex".
  3307. 2017-02-22 Nick Clifton <nickc@redhat.com>
  3308. * testsuite/gas/arm/vcmp-noprefix-imm.d: Skip for non-ELF targets.
  3309. 2017-02-21 Jan Beulich <jbeulich@suse.com>
  3310. * expr.c (operand): Handle missing operand to .startof.() and
  3311. .sizeof.().
  3312. * testsuite/gas/all/err-sizeof.s: New.
  3313. 2017-02-20 Alan Modra <amodra@gmail.com>
  3314. PR 21118
  3315. * NEWS: Revise powerpc register check.
  3316. * config/tc-ppc.c (ppc_optimize_expr, md_assemble): Make "invalid
  3317. register expression" a warning.
  3318. 2017-02-17 Maciej W. Rozycki <macro@imgtec.com>
  3319. * ecoff.c (ecoff_directive_ent, add_procedure): Handle `.aent'.
  3320. * config/obj-ecoff.c (obj_pseudo_table): Add "aent" entry.
  3321. * config/obj-elf.c (ecoff_debug_pseudo_table): Likewise.
  3322. * testsuite/gas/mips/aent-2.d: New test.
  3323. * testsuite/gas/mips/aent-mdebug.d: New test.
  3324. * testsuite/gas/mips/aent-mdebug-2.d: New test.
  3325. * testsuite/gas/mips/mips.exp: Run the new tests.
  3326. 2017-02-15 Richard Sandiford <richard.sandiford@arm.com>
  3327. * testsuite/gas/aarch64/sve-sysreg.s,
  3328. testsuite/gas/aarch64/sve-sysreg.d,
  3329. testsuite/gas/aarch64/sve-sysreg-invalid.d,
  3330. testsuite/gas/aarch64/sve-sysreg-invalid.l: New tests.
  3331. 2017-02-15 Richard Sandiford <richard.sandiford@arm.com>
  3332. * doc/c-aarch64.texi: Fix sve entry.
  3333. 2017-02-15 Claudiu Zissulescu <claziss@synopsys.com>
  3334. * config/tc-arc.c (md_convert_frag): Remove @pcl relocation
  3335. information from input expression.
  3336. (assemble_insn): Make sure pcrel is correctly set.
  3337. (arc_pcrel_adjust): Compensate for PCL rounding.
  3338. * testsuite/gas/arc/relax-add01.d: New file.
  3339. * testsuite/gas/arc/relax-add01.s: Likewise.
  3340. * testsuite/gas/arc/relax-add02.d: Likewise.
  3341. * testsuite/gas/arc/relax-add02.s: Likewise.
  3342. * testsuite/gas/arc/relax-add03.d: Likewise.
  3343. * testsuite/gas/arc/relax-add03.s: Likewise.
  3344. * testsuite/gas/arc/relax-add04.d: Likewise.
  3345. * testsuite/gas/arc/relax-add04.s: Likewise.
  3346. * testsuite/gas/arc/relax-ld01.d: Likewise.
  3347. * testsuite/gas/arc/relax-ld01.s: Likewise.
  3348. * testsuite/gas/arc/relax-ld02.d: Likewise.
  3349. * testsuite/gas/arc/relax-ld02.s: Likewise.
  3350. * testsuite/gas/arc/relax-mov01.d: Likewise.
  3351. * testsuite/gas/arc/relax-mov01.s: Likewise.
  3352. * testsuite/gas/arc/relax-mov02.d: Likewise.
  3353. * testsuite/gas/arc/relax-mov02.s: Likewise.
  3354. * testsuite/gas/arc/relax-mpy01.d: Likewise.
  3355. * testsuite/gas/arc/relax-mpy01.s: Likewise.
  3356. * testsuite/gas/arc/relax-sub01.d: Likewise.
  3357. * testsuite/gas/arc/relax-sub01.s: Likewise.
  3358. * testsuite/gas/arc/relax-sub02.d: Likewise.
  3359. * testsuite/gas/arc/relax-sub02.s: Likewise.
  3360. * testsuite/gas/arc/relax-sub03.d: Likewise.
  3361. * testsuite/gas/arc/relax-sub03.s: Likewise.
  3362. * testsuite/gas/arc/relax-sub04.d: Likewise.
  3363. * testsuite/gas/arc/relax-sub04.s: Likewise.
  3364. 2017-02-09 Vineet Gupta <vgupta@synopsys.com>
  3365. * testsuite/gas/arc/st.d: Update for 0xe having a name now
  3366. 2017-02-14 Alan Modra <amodra@gmail.com>
  3367. PR 21118
  3368. * NEWS: Mention powerpc register checks.
  3369. * config/tc-ppc.c (struct pd_reg): Make value a short. Add flags.
  3370. (pre_defined_registers): Delete fpscr and pmr entries. Set
  3371. register type in flags.
  3372. (cr_names): Set type in flags.
  3373. (reg_name_search): Return pointer to struct pd_reg rather than value.
  3374. (register_name): Adjust to suit. Set X_md from flags.
  3375. (ppc_parse_name): Likewise.
  3376. (ppc_optimize_expr): New function.
  3377. (md_assemble): Verify expresion reg flags match operand.
  3378. * config/tc-ppc.h (md_optimize_expr): Define.
  3379. (ppc_optimize_expr): Declare.
  3380. 2017-02-14 Alan Modra <amodra@gmail.com>
  3381. * testsuite/gas/ppc/cell.s: Correct invalid registers.
  3382. * testsuite/gas/ppc/vle-simple-1.s: Likewise.
  3383. * testsuite/gas/ppc/vle-simple-2.s: Likewise.
  3384. 2017-02-13 Thomas Preud'homme <thomas.preudhomme@arm.com>
  3385. * config/tc-arm.c (parse_ifimm_zero): Make prefix optional in unified
  3386. syntax.
  3387. * testsuite/gas/arm/vcmp-noprefix-imm.d: New file.
  3388. * testsuite/gas/arm/vcmp-noprefix-imm.s: New file.
  3389. 2017-02-10 Nicholas Piggin <npiggin@gmail.com>
  3390. * testsuite/gas/ppc/power9.d <scv, rfscv>: New tests.
  3391. 2017-02-02 Maciej W. Rozycki <macro@imgtec.com>
  3392. * doc/as.texinfo (Overview): Select MIPS options for man page
  3393. inclusion.
  3394. 2017-01-30 Maciej W. Rozycki <macro@imgtec.com>
  3395. * config/tc-mips.c (mips_ignore_branch_isa): New variable.
  3396. (options): Add OPTION_IGNORE_BRANCH_ISA and
  3397. OPTION_NO_IGNORE_BRANCH_ISA enum values.
  3398. (md_longopts): Add "mignore-branch-isa" and
  3399. "mno-ignore-branch-isa" options.
  3400. (md_parse_option): Handle OPTION_IGNORE_BRANCH_ISA and
  3401. OPTION_NO_IGNORE_BRANCH_ISA.
  3402. (fix_bad_cross_mode_branch_p): Return FALSE if
  3403. `mips_ignore_branch_isa' has been set.
  3404. (md_show_usage): Add `-mignore-branch-isa' and
  3405. `-mno-ignore-branch-isa'.
  3406. * doc/as.texinfo (Target MIPS options): Add
  3407. `-mignore-branch-isa' and `-mno-ignore-branch-isa' options.
  3408. (-mignore-branch-isa, -mno-ignore-branch-isa): New options.
  3409. * doc/c-mips.texi (MIPS Options): Add `-mignore-branch-isa' and
  3410. `-mno-ignore-branch-isa' options.
  3411. * testsuite/gas/mips/branch-local-ignore-2.d: New test.
  3412. * testsuite/gas/mips/branch-local-ignore-3.d: New test.
  3413. * testsuite/gas/mips/branch-local-ignore-n32-2.d: New test.
  3414. * testsuite/gas/mips/branch-local-ignore-n32-3.d: New test.
  3415. * testsuite/gas/mips/branch-local-ignore-n64-2.d: New test.
  3416. * testsuite/gas/mips/branch-local-ignore-n64-3.d: New test.
  3417. * testsuite/gas/mips/mips.exp: Run the new tests.
  3418. 2017-01-30 Maciej W. Rozycki <macro@imgtec.com>
  3419. * testsuite/gas/mips/branch-local-2.d: New test.
  3420. * testsuite/gas/mips/branch-local-3.d: New test.
  3421. * testsuite/gas/mips/branch-local-n32-2.d: New test.
  3422. * testsuite/gas/mips/branch-local-n32-3.d: New test.
  3423. * testsuite/gas/mips/branch-local-n64-2.d: New test.
  3424. * testsuite/gas/mips/branch-local-n64-3.d: New test.
  3425. * testsuite/gas/mips/mips.exp: Fold corresponding list tests
  3426. into the new tests.
  3427. 2017-01-27 Alexis Deruell <alexis.deruelle@gmail.com>
  3428. PR 21056
  3429. * testsuite/gas/tic6x/insns16-parallel.s: New test case.
  3430. * testsuite/gas/tic6x/insns16-parallel.d: New test driver.
  3431. 2017-01-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
  3432. * configure.tgt (aarch64*-*-rtems*): Remove.
  3433. (bfin-*-rtems*): Likewise.
  3434. (h8300-*-rtems*): Likewise.
  3435. (i386-*-rtems*): Likewise.
  3436. (m32c-*-rtems*): Likewise.
  3437. (m32r-*-rtems*): Likewise.
  3438. (m68k-*-rtems*): Likewise.
  3439. (mips-*-rtems*): Likewise.
  3440. (nios2-*-rtems*): Likewise.
  3441. (ppc-*-rtems*): Likewise.
  3442. (sh-*-rtems*): Likewise.
  3443. (sparc64-*-rtems*): Likewise.
  3444. (sparc-*-rtems*): Likewise.
  3445. (*-*-rtems*) Use ELF format.
  3446. 2017-01-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
  3447. * configure.tgt (arm-*-rtems*): Move to (arm-*-eabi*).
  3448. 2017-01-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
  3449. * configure.tgt (sh-*-rtemscoff*): Remove.
  3450. 2017-01-24 Sebastian Huber <sebastian.huber@embedded-brains.de>
  3451. * configure.tgt (riscv*-*-*): Remove em=linux.
  3452. 2017-01-23 Sebastian Rasmussen <sebras@gmail.com>
  3453. PR gas/21072
  3454. * asintl.h: Fix spelling mistakes and typos.
  3455. * atof-generic.c: Likewise.
  3456. * bit_fix.h: Likewise.
  3457. * config/atof-ieee.c: Likewise.
  3458. * config/bfin-defs.h: Likewise.
  3459. * config/bfin-parse.y: Likewise.
  3460. * config/obj-coff-seh.h: Likewise.
  3461. * config/obj-coff.c: Likewise.
  3462. * config/obj-evax.c: Likewise.
  3463. * config/obj-macho.c: Likewise.
  3464. * config/rx-parse.y: Likewise.
  3465. * config/tc-aarch64.c: Likewise.
  3466. * config/tc-alpha.c: Likewise.
  3467. * config/tc-arc.c: Likewise.
  3468. * config/tc-arm.c: Likewise.
  3469. * config/tc-avr.c: Likewise.
  3470. * config/tc-bfin.c: Likewise.
  3471. * config/tc-cr16.c: Likewise.
  3472. * config/tc-cris.c: Likewise.
  3473. * config/tc-crx.c: Likewise.
  3474. * config/tc-d10v.c: Likewise.
  3475. * config/tc-d30v.c: Likewise.
  3476. * config/tc-dlx.c: Likewise.
  3477. * config/tc-epiphany.c: Likewise.
  3478. * config/tc-frv.c: Likewise.
  3479. * config/tc-hppa.c: Likewise.
  3480. * config/tc-i370.c: Likewise.
  3481. * config/tc-i386-intel.c: Likewise.
  3482. * config/tc-i386.c: Likewise.
  3483. * config/tc-i960.c: Likewise.
  3484. * config/tc-ia64.c: Likewise.
  3485. * config/tc-m32r.c: Likewise.
  3486. * config/tc-m68hc11.c: Likewise.
  3487. * config/tc-m68k.c: Likewise.
  3488. * config/tc-mcore.c: Likewise.
  3489. * config/tc-mep.c: Likewise.
  3490. * config/tc-mep.h: Likewise.
  3491. * config/tc-metag.c: Likewise.
  3492. * config/tc-microblaze.c: Likewise.
  3493. * config/tc-mips.c: Likewise.
  3494. * config/tc-mmix.c: Likewise.
  3495. * config/tc-mn10200.c: Likewise.
  3496. * config/tc-mn10300.c: Likewise.
  3497. * config/tc-msp430.c: Likewise.
  3498. * config/tc-msp430.h: Likewise.
  3499. * config/tc-nds32.c: Likewise.
  3500. * config/tc-nds32.h: Likewise.
  3501. * config/tc-nios2.c: Likewise.
  3502. * config/tc-nios2.h: Likewise.
  3503. * config/tc-ns32k.c: Likewise.
  3504. * config/tc-pdp11.c: Likewise.
  3505. * config/tc-ppc.c: Likewise.
  3506. * config/tc-pru.c: Likewise.
  3507. * config/tc-rx.c: Likewise.
  3508. * config/tc-s390.c: Likewise.
  3509. * config/tc-score.c: Likewise.
  3510. * config/tc-score7.c: Likewise.
  3511. * config/tc-sh.c: Likewise.
  3512. * config/tc-sh64.c: Likewise.
  3513. * config/tc-sparc.c: Likewise.
  3514. * config/tc-tic4x.c: Likewise.
  3515. * config/tc-tic54x.c: Likewise.
  3516. * config/tc-v850.c: Likewise.
  3517. * config/tc-vax.c: Likewise.
  3518. * config/tc-visium.c: Likewise.
  3519. * config/tc-xgate.c: Likewise.
  3520. * config/tc-xtensa.c: Likewise.
  3521. * config/tc-z80.c: Likewise.
  3522. * config/tc-z8k.c: Likewise.
  3523. * config/te-vms.c: Likewise.
  3524. * config/xtensa-relax.c: Likewise.
  3525. * doc/as.texinfo: Likewise.
  3526. * doc/c-arm.texi: Likewise.
  3527. * doc/c-hppa.texi: Likewise.
  3528. * doc/c-i370.texi: Likewise.
  3529. * doc/c-i386.texi: Likewise.
  3530. * doc/c-m32r.texi: Likewise.
  3531. * doc/c-m68k.texi: Likewise.
  3532. * doc/c-mmix.texi: Likewise.
  3533. * doc/c-msp430.texi: Likewise.
  3534. * doc/c-nds32.texi: Likewise.
  3535. * doc/c-ns32k.texi: Likewise.
  3536. * doc/c-riscv.texi: Likewise.
  3537. * doc/c-rx.texi: Likewise.
  3538. * doc/c-s390.texi: Likewise.
  3539. * doc/c-tic6x.texi: Likewise.
  3540. * doc/c-tilegx.texi: Likewise.
  3541. * doc/c-tilepro.texi: Likewise.
  3542. * doc/c-v850.texi: Likewise.
  3543. * doc/c-xgate.texi: Likewise.
  3544. * doc/c-xtensa.texi: Likewise.
  3545. * dwarf2dbg.c: Likewise.
  3546. * ecoff.c: Likewise.
  3547. * itbl-ops.c: Likewise.
  3548. * listing.c: Likewise.
  3549. * macro.c: Likewise.
  3550. * po/gas.pot: Likewise.
  3551. * read.c: Likewise.
  3552. * struc-symbol.h: Likewise.
  3553. * symbols.h: Likewise.
  3554. * testsuite/gas/arc/relocs-errors.err: Likewise.
  3555. * write.c: Likewise.
  3556. 2017-01-23 Nick Clifton <nickc@redhat.com>
  3557. * po/sv.po: Updated Swedish translation.
  3558. 2017-01-20 Nick Clifton <nickc@redhat.com>
  3559. * config/tc-i386.c (parse_operands): Check for operand overflow
  3560. before setting the unspecified bit.
  3561. 2017-01-18 Maciej W. Rozycki <macro@imgtec.com>
  3562. PR gas/20649
  3563. * config/tc-mips.c (pic_need_relax): Don't check for linkonce
  3564. symbols, remove the `segtype' parameter.
  3565. (mips_frob_file, md_estimate_size_before_relax): Adjust
  3566. accordingly.
  3567. (s_is_linkonce): Add an explanatory comment.
  3568. * testsuite/gas/mips/comdat-reloc.d: New test.
  3569. * testsuite/gas/mips/comdat-reloc.s: New test source.
  3570. * testsuite/gas/mips/mips.exp: Run the new test.
  3571. 2017-01-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
  3572. * testsuite/gas/arm/armv8_3-a-simd.s: Add vcmla tests.
  3573. * testsuite/gas/arm/armv8_3-a-simd.d: Update.
  3574. 2017-01-18 Bernhard Rosenkranzer <bero@lindev.ch>
  3575. PR 21059
  3576. * config/bfin-lex.l: Support processing with flex 2.6.3.
  3577. * itbl-lex.l: Likewise.
  3578. 2017-01-18 Nathan Sidwell <nathan@acm.org>
  3579. * as.h (gas_assert): Use abort.
  3580. (as_assert): Remove.
  3581. (signal_init): Declare.
  3582. * as.c (main): Call signal_init.
  3583. * messages.c: #include <signal.h>
  3584. (as_assert): Delete.
  3585. (as_abort): Allow NULL FILE.
  3586. (signal_crash): New.
  3587. (signal_init): Register fatal signal handlers.
  3588. * configure.ac: Check for strsignal.
  3589. * config.in: Rebuilt.
  3590. * configure: Rebuilt.
  3591. 2017-01-17 Nick Clifton <nickc@redhat.com>
  3592. * po/sv.po: Updated Swedish translation.
  3593. 2017-01-12 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  3594. * config/tc-i386.c (cpu_arch): Add .avx512_vpopcntdq.
  3595. (cpu_noarch): Add noavx512_vpopcntdq.
  3596. * doc/c-i386.texi: Document avx512_vpopcntdq, noavx512_vpopcntdq.
  3597. * testsuite/gas/i386/i386.exp: Run AVX512_VPOPCNTDQ tests.
  3598. * testsuite/gas/i386/avx512_vpopcntdqd-intel.d: New file.
  3599. * testsuite/gas/i386/avx512_vpopcntdqd.d: Ditto.
  3600. * testsuite/gas/i386/avx512_vpopcntdqd.s: Ditto.
  3601. * testsuite/gas/i386/x86-64-avx512_vpopcntdqd-intel.d: Ditto.
  3602. * testsuite/gas/i386/x86-64-avx512_vpopcntdqd.d: Ditto.
  3603. * testsuite/gas/i386/x86-64-avx512_vpopcntdqd.s: Ditto.
  3604. 2017-01-12 Nick Clifton <nickc@redhat.com>
  3605. * read.c (temp_ilp): New function. Installs a temporary input
  3606. line pointer.
  3607. (restore_ilp): New function. Restores the original input line
  3608. pointer.
  3609. * read.h (temp_ilp): Prototype.
  3610. (restore_ilp): Prototype.
  3611. * stabs.c (dot_func_p): Use bfd_boolean type.
  3612. (generate_asm_file): Use temp_ilp and restore_ilp.
  3613. (stabs_generate_asm_lineno): Likewise.
  3614. (stabs_generate_asm_endfunc): Likewise.
  3615. 2017-01-11 Jeremy Soller <jackpot51@gmail.com>
  3616. * configure.tgt: Add entry for i386-redox.
  3617. 2017-01-10 Nick Clifton <nickc@redhat.com>
  3618. * po/sv.po: Updated Swedish translation.
  3619. 2017-01-10 Tristan Gingold <gingold@adacore.com>
  3620. * testsuite/gas/all/sleb128-8.d: Adjust test.
  3621. * testsuite/gas/all/gas.exp (test_cond): Likewise.
  3622. 2017-01-10 Tristan Gingold <gingold@adacore.com>
  3623. * read.c (emit_leb128_expr): Extended unsigned big number for
  3624. sleb128.
  3625. * testsuite/gas/all/gas.exp (test_cond): Add sleb128-8 test.
  3626. * testsuite/gas/all/sleb128.d: New test.
  3627. * testsuite/gas/all/sleb128.s: New test source.
  3628. 2017-01-09 Andrew Waterman <andrew@sifive.com>
  3629. * config/tc-riscv.c (append_insn): Don't eagerly apply relocations
  3630. against constants.
  3631. (md_apply_fix): Mark relocations against constants as "done."
  3632. 2017-01-09 Andrew Waterman <andrew@sifive.com>
  3633. * config/tc-riscv.c (append_insn): Don't eagerly apply relocations
  3634. against constants.
  3635. (md_apply_fix): Mark relocations against constants as "done."
  3636. 2017-01-09 Palmer Dabbelt <palmer@dabbelt.com>
  3637. Kito Cheng <kito.cheng@gmail.com>
  3638. * emulparams/elf32lriscv-defs.sh (INITIAL_READONLY_SECTIONS):
  3639. Removed.
  3640. (SDATA_START_SYMBOLS): Likewise.
  3641. 2017-01-09 Nick Clifton <nickc@redhat.com>
  3642. * po/sv.po: New Swedish translation.
  3643. * configure.ac (ALL_LINGUAS): Add sv.
  3644. * configure: Regenerate.
  3645. 2017-01-09 Andrew Waterman <andrew@sifive.com>
  3646. * config/tc-riscv.c (relaxed_branch_length): Use the long
  3647. sequence when the target is a weak symbol.
  3648. 2017-01-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
  3649. * config/tc-aarch64.c (aarch64_features): Add rcpc.
  3650. * doc/c-aarch64.texi (AArch64 Extensions): Document rcpc.
  3651. * testsuite/gas/aarch64/ldst-exclusive-armv8_3.d: Rename to ...
  3652. * testsuite/gas/aarch64/ldst-rcpc.d: This.
  3653. * testsuite/gas/aarch64/ldst-exclusive-armv8_3.s: Rename to ...
  3654. * testsuite/gas/aarch64/ldst-rcpc.s: This.
  3655. * testsuite/gas/aarch64/ldst-rcpc-armv8_2.d: New test.
  3656. 2017-01-04 Norm Jacobs <norm.jacobs@oracle.com>
  3657. PR gas/20992
  3658. * configure.tgt: Treat sparcv9 as sparc64.
  3659. 2017-01-03 Kito Cheng <kito.cheng@gmail.com>
  3660. * config/tc-riscv.c (riscv_set_arch): Whitelist the "q" ISA
  3661. extension.
  3662. (riscv_after_parse_args): Set FLOAT_ABI_QUAD when the Q ISA is
  3663. enabled and no other ABI is specified.
  3664. 2017-01-03 Dimitar Dimitrov <dimitar@dinux.eu>
  3665. * config/tc-pru.c (md_number_to_chars): Fix parameter to be
  3666. valueT, as declared in tc.h.
  3667. (md_apply_fix): Fix to work on 32-bit hosts.
  3668. 2017-01-02 Alan Modra <amodra@gmail.com>
  3669. Update year range in copyright notice of all files.
  3670. For older changes see ChangeLog-2016
  3671. Copyright (C) 2017 Free Software Foundation, Inc.
  3672. Copying and distribution of this file, with or without modification,
  3673. are permitted in any medium without royalty provided the copyright
  3674. notice and this notice are preserved.
  3675. Local Variables:
  3676. mode: change-log
  3677. left-margin: 8
  3678. fill-column: 74
  3679. version-control: never
  3680. End: