ChangeLog-2017 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977
  1. 2017-12-20 Jim Wilson <jimw@sifive.com>
  2. * riscv-opc.c (match_c_add_with_hint, match_c_lui_with_hint): New.
  3. (riscv_opcodes) <li>: Delete "d,0" line. Change Cj to Co.
  4. <andi, and, add, addiw, addw, c.addi>: Change Cj to Co.
  5. <add>: Add explanatory comment for 4-operand add instruction.
  6. <c.nop>: Add support for immediate operand.
  7. <c.mv, c.add>: Use match_c_add_with_hint instead of match_c_add.
  8. <c.lui>: Use match_c_lui_with_hint instead of match_c_lui.
  9. <c.li, c.slli>: Use match_opcode instead of match_rd_nonzero.
  10. 2017-12-19 Tamar Christina <tamar.christina@arm.com>
  11. PR gas/22559
  12. * aarch64-asm.c (aarch64_ins_reglane): Change AARCH64_OPND_QLF_S_B to
  13. AARCH64_OPND_QLF_S_4B
  14. * aarch64-dis.c (aarch64_ext_reglane): Change AARCH64_OPND_QLF_S_B to
  15. AARCH64_OPND_QLF_S_4B
  16. * aarch64-opc.c (aarch64_opnd_qualifiers): Add 4b variant.
  17. * aarch64-tbl.h (QL_V2DOT): Change S_B to S_4B.
  18. 2017-12-19 Tamar Christina <tamar.christina@arm.com>
  19. PR gas/22529
  20. * aarch64-opc.c (aarch64_opnd_qualifiers): Add 4b variant.
  21. 2017-12-18 Jan Beulich <jbeulich@suse.com>
  22. * i386-gen.c (operand_type_init): Delete OPERAND_TYPE_REGYMM and
  23. OPERAND_TYPE_REGZMM entries.
  24. * i386-opc.h (enum of opcode modifiers): Extend comment.
  25. i386-opc.tbl (vaddpd, vaddps, vaddsubpd, vaddsubps, vandnpd,
  26. vandnps, vandpd, vandps, vblendpd, vblendps, vblendvpd,
  27. vblendvps, vbroadcastss, vcmpeq_ospd, vcmpeq_osps, vcmpeqpd,
  28. vcmpeqps, vcmpeq_uqpd, vcmpeq_uqps, vcmpeq_uspd, vcmpeq_usps,
  29. vcmpfalse_ospd, vcmpfalse_osps, vcmpfalsepd, vcmpfalseps,
  30. vcmpge_oqpd, vcmpge_oqps, vcmpgepd, vcmpgeps, vcmpgt_oqpd,
  31. vcmpgt_oqps, vcmpgtpd, vcmpgtps, vcmple_oqpd, vcmple_oqps,
  32. vcmplepd, vcmpleps, vcmplt_oqpd, vcmplt_oqps, vcmpltpd,
  33. vcmpltps, vcmpneq_oqpd, vcmpneq_oqps, vcmpneq_ospd,
  34. vcmpneq_osps, vcmpneqpd, vcmpneqps, vcmpneq_uspd, vcmpneq_usps,
  35. vcmpngepd, vcmpngeps, vcmpnge_uqpd, vcmpnge_uqps, vcmpngtpd,
  36. vcmpngtps, vcmpngt_uqpd, vcmpngt_uqps, vcmpnlepd, vcmpnleps,
  37. vcmpnle_uqpd, vcmpnle_uqps, vcmpnltpd, vcmpnltps, vcmpnlt_uqpd,
  38. vcmpnlt_uqps, vcmpordpd, vcmpordps, vcmpord_spd, vcmpord_sps,
  39. vcmppd, vcmpps, vcmptruepd, vcmptrueps, vcmptrue_uspd,
  40. vcmptrue_usps, vcmpunordpd, vcmpunordps, vcmpunord_spd,
  41. vcmpunord_sps, vcvtdq2ps, vcvtpd2dq, vcvtpd2ps, vcvtps2dq,
  42. vcvttpd2dq, vcvttps2dq, vdivpd, vdivps, vdpps, vhaddpd, vhaddps,
  43. vhsubpd, vhsubps, vlddqu, vmaskmovpd, vmaskmovps, vmaxpd,
  44. vmaxps, vminpd, vminps, vmovapd, vmovaps, vmovdqa, vmovdqu,
  45. vmovmskpd, vmovmskps, vmovntdq, vmovntpd, vmovntps, vmovshdup,
  46. vmovsldup, vmovupd, vmovups, vmulpd, vmulps, vorpd, vorps,
  47. vpermilpd, vpermilps, vptest, vrcpps, vroundpd, vroundps,
  48. vrsqrtps, vshufpd, vshufps, vsqrtpd, vsqrtps, vsubpd, vsubps,
  49. vtestpd, vtestps, vunpckhpd, vunpckhps, vunpcklpd, vunpcklps,
  50. vxorpd, vxorps, vpblendd, vpbroadcastb, vpbroadcastd,
  51. vpbroadcastw, vpbroadcastq, vpmaskmovd, vpmaskmovq, vpsllvd,
  52. vpsllvq, vpsravd, vpsravq, vpsrlvd, vpsrlvq): Fold 128- and
  53. 256-bit forms. Use CheckRegSize instead of IgnoreSize where
  54. appropriate. Drop Xmmword and Ymmword from the results where
  55. possible.
  56. * i386-tbl.h: Re-generate.
  57. 2017-12-18 Jan Beulich <jbeulich@suse.com>
  58. * i386-gen.c (operand_type_shorthands): Add RegXMM, RegYMM, and
  59. RegZMM.
  60. (opcode_modifiers): Drop FirstXmm0.
  61. (operand_types): Replace RegXMM, RegYMM, and RegZMM with just
  62. RegSIMD.
  63. * i386-opc.h (enum of opcode modifiers): Drop FirstXmm0.
  64. (struct i386_opcode_modifier): Drop firstxmm0.
  65. (enum of operand types): Replace RegXMM, RegYMM, and RegZMM with
  66. just RegSIMD. Extend comment.
  67. (union i386_operand_type): Replace regxmm, regymm, and regzmm
  68. with just regsimd.
  69. * i386-opc.tbl (blendvpd, blendvps, pblendvb, sha256rnds2): Use
  70. Acc|Xmmword.
  71. * i386-reg.tbl (xmm0): Add Acc.
  72. * i386-init.h, i386-tbl.h: Re-generate.
  73. 2017-12-18 Jan Beulich <jbeulich@suse.com>
  74. * i386-gen.c (operand_type_shorthands): Add FloatAcc and
  75. FloatReg.
  76. (operand_types): Drop FloatAcc and FloatReg.
  77. * i386-opc.h (enum of operand types): Likewise. Extend comment.
  78. (union i386_operand_type): Drop floatacc and floatreg.
  79. * i386-reg.tbl (st, st(0)): Replace FloatAcc by Acc.
  80. * i386-init.h, i386-tbl.h: Re-generate.
  81. 2017-12-18 Jan Beulich <jbeulich@suse.com>
  82. * i386-gen.c (operand_type_shorthands): New.
  83. (opcode_modifiers): Replace Reg<N> with just Reg.
  84. (set_bitfield_from_cpu_flag_init): Rename to
  85. set_bitfield_from_shorthand. Drop value parameter. Process
  86. operand_type_shorthands.
  87. (set_bitfield): Adjust call accordingly.
  88. * i386-opc.h (enum of operand types): Replace Reg<N> with just
  89. Reg.
  90. (union i386_operand_type): Replace reg<N> with just reg.
  91. * i386-opc.tbl (extractps, pextrb, pextrw, pinsrb, pinsrw,
  92. vextractps, vpextrb, vpextrw, vpinsrb, vpinsrw): Split into
  93. separate register and memory forms.
  94. * i386-reg.tbl (al): Drop Byte.
  95. (ax): Drop Word.
  96. (eax): Drop Dword.
  97. (rax): Drop Qword.
  98. * i386-init.h, i386-tbl.h: Re-generate.
  99. 2017-12-15 Dimitar Dimitrov <dimitar@dinux.eu>
  100. * disassemble.c (disassemble_init_for_target): Don't put PRU
  101. between powerpc and rs6000 cases.
  102. 2017-12-15 Jan Beulich <jbeulich@suse.com>
  103. * i386-opc.tbl (adc, add, and, cmp, cmps, in, ins, lods, mov,
  104. movabs, movq, movs, or, out, outs, ptwrite, rcl, rcr, rol, ror,
  105. sal, sar, sbb, scas, scmp, shl, shr, slod, smov, ssca, ssto,
  106. stos, sub, test, xor): Drop CheckRegSize from variants not
  107. allowing for two (or more) register operands.
  108. * i386-tbl.h: Re-generate.
  109. 2017-12-13 Jim Wilson <jimw@sifive.com>
  110. PR 22599
  111. * riscv-opc.c (riscv_opcodes) <fsrmi, fsflagsi>: New.
  112. 2017-12-13 Dimitar Dimitrov <dimitar@dinux.eu>
  113. * disassemble.c: Enable disassembler_needs_relocs for PRU.
  114. 2017-12-11 Petr Pavlu <petr.pavlu@arm.com>
  115. Renlin Li <renlin.li@arm.com>
  116. * aarch64-dis.c (print_insn_aarch64): Move symbol section check ...
  117. (get_sym_code_type): Here.
  118. 2017-12-03 Alan Modra <amodra@gmail.com>
  119. * ppc-opc.c (extract_li20): Rewrite.
  120. 2017-12-01 Peter Bergner <bergner@vnet.ibm.com>
  121. * opcodes/ppc-dis.c (disassemble_init_powerpc): Fix white space.
  122. (operand_value_powerpc): Update return and argument type.
  123. <value, top>: Update type.
  124. (skip_optional_operands): Update argument type.
  125. (lookup_powerpc): Likewise.
  126. (lookup_vle): Likewise.
  127. <table_opcd, table_mask, insn2>: Update type.
  128. (lookup_spe2): Update argument type.
  129. <table_opcd, table_mask, insn2>: Update type.
  130. (print_insn_powerpc) <insn, value>: Update type.
  131. Use PPC_INT_FMT for printing instructions and operands.
  132. * opcodes/ppc-opc.c (insert_arx, extract_arx, insert_ary, extract_ary,
  133. insert_rx, extract_rx, insert_ry, extract_ry, insert_bat, extract_bat,
  134. insert_bba, extract_bba, insert_bdm, extract_bdm, insert_bdp,
  135. extract_bdp, valid_bo_pre_v2, valid_bo_post_v2, valid_bo, insert_bo,
  136. extract_bo, insert_boe, extract_boe, insert_dcmxs, extract_dcmxs,
  137. insert_dxd, extract_dxd, insert_dxdn, extract_dxdn, insert_fxm,
  138. extract_fxm, insert_li20, extract_li20, insert_ls, extract_ls,
  139. insert_esync, extract_esync, insert_mbe, extract_mbe, insert_mb6,
  140. extract_mb6, extract_nb, insert_nbi, insert_nsi, extract_nsi,
  141. insert_ral, extract_ral, insert_ram, extract_ram, insert_raq,
  142. extract_raq, insert_ras, extract_ras, insert_rbs, extract_rbs,
  143. insert_rbx, extract_rbx, insert_sci8, extract_sci8, insert_sci8n,
  144. extract_sci8n, insert_sd4h, extract_sd4h, insert_sd4w, extract_sd4w,
  145. insert_oimm, extract_oimm, insert_sh6, extract_sh6, insert_spr,
  146. extract_spr, insert_sprg, extract_sprg, insert_tbr, extract_tbr,
  147. insert_xt6, extract_xt6, insert_xtq6, extract_xtq6, insert_xa6,
  148. extract_xa6, insert_xb6, extract_xb6, insert_xb6s, extract_xb6s,
  149. insert_xc6, extract_xc6, insert_dm, extract_dm, insert_vlesi,
  150. extract_vlesi, insert_vlensi, extract_vlensi, insert_vleui,
  151. extract_vleui, insert_vleil, extract_vleil, insert_evuimm1_ex0,
  152. extract_evuimm1_ex0, insert_evuimm2_ex0, extract_evuimm2_ex0,
  153. insert_evuimm4_ex0, extract_evuimm4_ex0, insert_evuimm8_ex0,
  154. extract_evuimm8_ex0, insert_evuimm_lt8, extract_evuimm_lt8,
  155. insert_evuimm_lt16, extract_evuimm_lt16, insert_rD_rS_even,
  156. extract_rD_rS_even, insert_off_lsp, extract_off_lsp, insert_off_spe2,
  157. extract_off_spe2, insert_Ddd, extract_Ddd): Update types.
  158. (OP, OPTO, OPL, OPVUP, OPVUPRT, A, AFRALFRC_MASK, B, BD8, BD8IO, BD15,
  159. BD24, BBO, Y_MASK , AT1_MASK, AT2_MASK, BBOCB, C_LK, C, CTX, UCTX,
  160. DX, EVSEL, IA16, I16A, I16L, IM7, LI20, MME, MD, MDS, SC, SC_MASK,
  161. SCI8, SCI8BF, SD4, SE_IM5, SE_R, SE_RR, VX, VX_LSP, VX_RA_CONST,
  162. VX_RB_CONST, VX_SPE_CRFD, VX_SPE2_CLR, VX_SPE2_SPLATB, VX_SPE2_OCTET,
  163. VX_SPE2_DDHH, VX_SPE2_HH, VX_SPE2_EVMAR, VX_SPE2_EVMAR_MASK, VXA,
  164. VXR, VXASH, X, EX, XX2, XX3, XX3RC, XX4, Z, XWRA_MASK, XLRT_MASK,
  165. XRLARB_MASK, XLRAND_MASK, XRTLRA_MASK, XRTLRARB_MASK, XRTARARB_MASK,
  166. XRTBFRARB_MASK, XOPL, XOPL2, XRCL, XRT, XRTRA, XCMP_MASK, XCMPL_MASK,
  167. XTO, XTLB, XSYNC, XEH_MASK, XDSS, XFL, XISEL, XL, XLO, XLYLK, XLOCB,
  168. XMBAR, XO, XOPS, XS, XFXM, XSPR, XUC, XW, APU): Update types in casts.
  169. 2017-11-29 Jan Beulich <jbeulich@suse.com>
  170. * i386-gen.c (active_cpu_flags, active_isstring, enum stage):
  171. New.
  172. (output_cpu_flags): Update active_cpu_flags.
  173. (process_i386_opcode_modifier): Update active_isstring.
  174. (output_operand_type): Rename "macro" parameter to "stage",
  175. changing its type.
  176. (process_i386_operand_type): Likewise. Track presence of
  177. BaseIndex and emit DispN accordingly.
  178. (output_i386_opcode, process_i386_registers,
  179. process_i386_initializers): Adjust calls to
  180. process_i386_operand_type() for its changed parameter type.
  181. * i386-opc.tbl: Drop Disp8, Disp16, Disp32, and Disp32S from
  182. all insns operands having BaseIndex set.
  183. * i386-tbl.h: Re-generate.
  184. 2017-11-29 Jan Beulich <jbeulich@suse.com>
  185. * i386-gen.c (operand_type_init): Remove OPERAND_TYPE_VEC_DISP8
  186. entry.
  187. (operand_types): Remove Vec_Disp8 entry.
  188. * i386-opc.h (Vec_Disp8): Delete.
  189. (union i386_operand_type): Remove vec_disp8.
  190. (i386-opc.tbl): Remove Vec_Disp8.
  191. * i386-init.h, i386-tbl.h: Re-generate.
  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-27 Nick Clifton <nickc@redhat.com>
  197. * po/zh_CN.po: Updated simplified Chinese translation.
  198. 2017-11-24 Jan Beulich <jbeulich@suse.com>
  199. * i386-dis.c (float_mem): Add suffixes to fi* in the "de" and
  200. "df" groups.
  201. 2017-11-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  202. * i386-opc.tbl: Add Disp8MemShift for AVX512 VAES instructions.
  203. * i386-tbl.h: Regenerate.
  204. 2017-11-23 Jan Beulich <jbeulich@suse.com>
  205. * i386-dis.c (OP_E_memory): Also shift the 8-bit immediate in
  206. the 16-bit addressing case.
  207. 2017-11-23 Jan Beulich <jbeulich@suse.com>
  208. * i386-dis.c (dis386_twobyte): Correct ud1. Add ud0.
  209. (twobyte_has_modrm): Set flag for index 0xb9 and 0xff.
  210. * i386-opc.tbl (ud1, ud2b): Add operands.
  211. (ud0): New.
  212. * i386-tbl.h: Re-generate.
  213. 2017-11-22 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  214. * i386-opc.tbl: Remove Vec_Disp8 from vgf2p8mulb.
  215. * i386-tbl.h: Regenerate.
  216. 2017-11-22 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  217. * i386-opc.tbl: Remove Vec_Disp8 from vpcompressb and vpexpandb.
  218. * i386-tbl.h: Regenerate.
  219. 2017-11-22 Claudiu Zissulescu <claziss@synopsys.com>
  220. *arc-opc (insert_rhv2): Check h-regs range.
  221. 2017-11-21 Claudiu Zissulescu <claziss@synopsys.com>
  222. * arc-dis.c (print_insn_arc): Pretty print pc-relative offsets.
  223. * arc-opc.c (SIMM21_A16_5): Make it pc-relative.
  224. 2017-11-16 Tamar Christina <tamar.christina@arm.com>
  225. * aarch64-tbl.h (aarch64_feature_fp_16_v8_2): Require AARCH64_FEATURE_F16_FML
  226. and AARCH64_FEATURE_F16.
  227. 2017-11-16 Tamar Christina <tamar.christina@arm.com>
  228. * aarch64-tbl.h (sha512h, sha512h2, sha512su0, sha512su1, eor3): New.
  229. (rax1, xar, bcax, sm3ss1, sm3tt1a, sm3tt1b, sm3tt2a, sm3tt2b): New.
  230. (sm3partw1, sm3partw2, sm4e, sm4ekey, fmlal, fmlsl): New.
  231. (fmlal2, fmlsl2, cfinv, rmif, setf8, setf16, stlurb): New.
  232. (ldapurb, ldapursb, stlurh, ldapurh, ldapursh, stlur): New.
  233. (ldapur, ldapursw, stlur): New.
  234. * aarch64-dis-2.c: Regenerate.
  235. 2017-11-16 Jan Beulich <jbeulich@suse.com>
  236. (get_valid_dis386): Never flag bad opcode when
  237. vex.register_specifier is beyond 7. Always store all four
  238. bits of it. Move 16-/32-bit override in EVEX handling after
  239. all to be overridden bits have been set.
  240. (OP_VEX): Mask vex.register_specifier outside of 64-bit mode.
  241. Use rex to determine GPR register set.
  242. (OP_EX_VexReg, OP_Vex_2src_1, OP_Vex_2src_2, OP_REG_VexI4,
  243. OP_LWP_E): Mask vex.register_specifier outside of 64-bit mode.
  244. 2017-11-15 Jan Beulich <jbeulich@suse.com>
  245. * i386-dis.c (OP_VEX, OP_LWPCB_E, OP_LWP_E): Use rex to
  246. determine GPR register set.
  247. 2017-11-15 Jan Beulich <jbeulich@suse.com>
  248. * i386-dis.c (VEXI4_Fixup, VexI4): Delete.
  249. (prefix_table, xop_table, vex_len_table): Remove VexI4 uses.
  250. (OP_EX_VexW): Move setting of vex_w_done. Update codep on 2nd
  251. pass.
  252. (OP_REG_VexI4): Drop low 4 bits check.
  253. 2017-11-15 Jan Beulich <jbeulich@suse.com>
  254. * i386-reg.tbl (axl): Remove Acc and Byte.
  255. * i386-tbl.h: Re-generate.
  256. 2017-11-14 Jan Beulich <jbeulich@suse.com>
  257. * i386-dis.c (VPCOM_Fixup, VPCOM, xop_cmp_op): New.
  258. (vex_len_table): Use VPCOM.
  259. 2017-11-14 Jan Beulich <jbeulich@suse.com>
  260. * i386-dis-evex.h (evex_table[EVEX_W_0F3A3E_P_2]): Use VPCMP.
  261. (evex_table[EVEX_W_0F3A3F_P_2]): Likewise.
  262. * i386-opc.tbl (vpcmpeqb, vpcmpgtb, vpcmpeqw, vpcmpgtw, vpcmpuw,
  263. vpcmpw): Move up.
  264. (vpcmpeqb, vpcmpleb, vpcmpltb, vpcmpneqb, vpcmpnleb, vpcmpnltb,
  265. vpcmpequb, vpcmpleub, vpcmpltub, vpcmpnequb, vpcmpnleub,
  266. vpcmpnltub, vpcmpeqw, vpcmplew, vpcmpltw, vpcmpneqw, vpcmpnlew,
  267. vpcmpnltw, vpcmpequw, vpcmpleuw, vpcmpltuw, vpcmpnequw, vpcmpnleuw,
  268. vpcmpnltuw): New.
  269. * i386-tbl.h: Re-generate.
  270. 2017-11-14 Jan Beulich <jbeulich@suse.com>
  271. * i386-opc.tbl (cmps, ins, lods, movs, outs, scas, scmp, slod,
  272. smov, ssca, stos, ssto, xlat): Drop Disp*.
  273. * i386-tbl.h: Re-generate.
  274. 2017-11-13 Jan Beulich <jbeulich@suse.com>
  275. * i386-opc.tbl (fxsave64, fxrstor64, xsave64, xrstor64,
  276. xsaveopt64): Add No_qSuf.
  277. * i386-tbl.h: Re-generate.
  278. 2017-11-09 Tamar Christina <tamar.christina@arm.com>
  279. * aarch64-opc.c (aarch64_sys_regs): Add ARMv8.4-a registers;
  280. dit, vstcr_el2, vsttbr_el2, cnthvs_tval_el2, cnthvs_cval_el2,
  281. cnthvs_ctl_el2, cnthps_tval_el2, cnthps_cval_el2, cnthps_ctl_el2,
  282. sder32_el2, vncr_el2.
  283. (aarch64_sys_reg_supported_p): Likewise.
  284. (aarch64_pstatefields): Add dit register.
  285. (aarch64_pstatefield_supported_p): Likewise.
  286. (aarch64_sys_regs_tlbi): Add vmalle1os, vae1os, aside1os, vaae1os,
  287. vale1os, vaale1os, ipas2e1os, ipas2le1os, vae2os, vale2os, vmalls12e1os,
  288. vae3os, vale3os, alle2os, alle1os, alle3os, rvae1, rvaae1, rvale1,
  289. rvaale1, rvae1is, rvaae1is, rvale1is, rvaale1is, rvae1os, rvaae1os,
  290. rvale1os, rvaale1os, ripas2e1is, ripas2le1is, ripas2e1, ripas2le1,
  291. ripas2e1os, ripas2le1os, rvae2, rvale2, rvae2is, rvale2is, rvae2os,
  292. rvale2os, rvae3, rvale3, rvae3is, rvale3is, rvae3os, rvale3os.
  293. 2017-11-09 Tamar Christina <tamar.christina@arm.com>
  294. * aarch64-tbl.h (QL_SHA512UPT, QL_V2SAME2D, QL_V3SAME2D): New.
  295. (QL_V4SAME16B, QL_V4SAME4S, QL_XAR, QL_SM3TT, QL_V3FML2S): New.
  296. (QL_V3FML4S, QL_V2FML2S, QL_V2FML4S, QL_RMIF, QL_SETF): New.
  297. (QL_STLW, QL_STLX): New.
  298. 2017-11-09 Tamar Christina <tamar.christina@arm.com>
  299. * aarch64-asm.h (ins_addr_offset): New.
  300. * aarch64-asm.c (aarch64_ins_reglane): Add cryptosm3.
  301. (aarch64_ins_addr_offset): New.
  302. * aarch64-asm-2.c: Regenerate.
  303. * aarch64-dis.h (ext_addr_offset): New.
  304. * aarch64-dis.c (aarch64_ext_reglane): Add cryptosm3.
  305. (aarch64_ext_addr_offset): New.
  306. * aarch64-dis-2.c: Regenerate.
  307. * aarch64-opc.h (aarch64_field_kind): Add FLD_imm6_2,
  308. FLD_imm4_2 and FLD_SM3_imm2.
  309. * aarch64-opc.c (fields): Add FLD_imm6_2,
  310. FLD_imm4_2 and FLD_SM3_imm2.
  311. (operand_general_constraint_met_p): Add AARCH64_OPND_ADDR_OFFSET.
  312. (aarch64_print_operand): Add AARCH64_OPND_Va, AARCH64_OPND_SM3_IMM2,
  313. AARCH64_OPND_MASK, AARCH64_OPND_IMM_2 and AARCH64_OPND_ADDR_OFFSET.
  314. * aarch64-opc-2.c (Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2): New.
  315. * aarch64-tbl.h
  316. (aarch64_opcode_table): Add Va, MASK, IMM_2, ADDR_OFFSET, SM3_IMM2.
  317. 2017-11-09 Tamar Christina <tamar.christina@arm.com>
  318. * aarch64-tbl.h
  319. (aarch64_feature_v8_4, aarch64_feature_crypto_v8_2): New.
  320. (aarch64_feature_sm4, aarch64_feature_sha3): New.
  321. (aarch64_feature_fp_16_v8_2): New.
  322. (ARMV8_4, SHA3, SM4, CRYPTO_V8_2, FP_F16_V8_2): New.
  323. (V8_4_INSN, CRYPTO_V8_2_INSN): New.
  324. (SHA3_INSN, SM4_INSN, FP16_V8_2_INSN): New.
  325. 2017-11-08 Tamar Christina <tamar.christina@arm.com>
  326. * aarch64-tbl.h (aarch64_feature_crypto): Add AES and SHA2.
  327. (aarch64_feature_sha2, aarch64_feature_aes): New.
  328. (SHA2, AES): New.
  329. (AES_INSN, SHA2_INSN): New.
  330. (pmull, pmull2, aese, aesd, aesmc, aesimc): Change to AES_INS.
  331. (sha1h, sha1su1, sha256su0, sha1c, sha1p,
  332. sha1m, sha1su0, sha256h, sha256h2, sha256su1):
  333. Change to SHA2_INS.
  334. 2017-11-08 Jiong Wang <jiong.wang@arm.com>
  335. Tamar Christina <tamar.christina@arm.com>
  336. * arm-dis.c (coprocessor_opcodes): New entries for ARMv8.2-A new
  337. FP16 instructions, including vfmal.f16 and vfmsl.f16.
  338. 2017-11-07 Andrew Burgess <andrew.burgess@embecosm.com>
  339. * arc-nps400-tbl.h: Change incorrect use of NONE to MISC.
  340. 2017-11-07 Alan Modra <amodra@gmail.com>
  341. * opintl.h: Formatting, comment fixes.
  342. (gettext, ngettext): Redefine when ENABLE_NLS.
  343. (ngettext, dngettext, dcngettext): Define when !ENABLE_NLS.
  344. (_): Define using gettext.
  345. (textdomain, bindtextdomain): Use safer "do nothing".
  346. 2017-11-03 Claudiu Zissulescu <claziss@synopsys.com>
  347. * arc-dis.c (print_hex): New variable.
  348. (parse_option): Check for hex option.
  349. (print_insn_arc): Use hexadecimal representation for short
  350. immediate values when requested.
  351. (print_arc_disassembler_options): Add hex option to the list.
  352. 2017-11-03 Claudiu Zissulescu <claziss@synopsys.com>
  353. * arc-tbl.h (abss, abssh, adc, adcs, adds, aslacc, asls, aslsacc)
  354. (asrs, asrsr, cbflyhf0r, cbflyhf1r, cmacchfr, cmacchnfr, cmachfr)
  355. (cmachnfr, cmpychfr, cmpychnfr, cmpyhfmr, cmpyhfr, cmpyhnfr, divf)
  356. (dmachbl, dmachbm, dmachf, dmachfr, dmacwhf, dmpyhbl, dmpyhbm)
  357. (dmpyhf, dmpyhfr, dmpyhwf, dmpywhf, dsync, flagacc, getacc, macdf)
  358. (macf, macfr, macwhfl, macwhflr, macwhfm, macwhfmr, macwhkl)
  359. (macwhkul, macwhl, macwhul, mpydf, mpyf, mpyfr, mpywhfl, mpywhflr)
  360. (mpywhfm, mpywhfmr, mpywhkl, mpywhkul, mpywhl, mpywhul, msubdf)
  361. (msubf, msubfr, msubwhfl, msubwhflr, msubwhfm, msubwhfmr, mul64)
  362. (negs, negsh, normacc, qmachf, qmpyh, qmpyhf, rndh, satf, sath)
  363. (sbcs, setacc, sflag, sqrt, sqrtf, subs, swi_s, vabs2h, vabss2h)
  364. (vadd4b, vadds2, vadds2h, vadds4h, vaddsubs, vaddsubs2h)
  365. (vaddsubs4h, valgn2h, vasl2h, vasls2h, vasr2h, vasrs2h, vasrsr2h)
  366. (vext2bhl, vext2bhlf, vext2bhm, vext2bhmf, vlsr2h, vmac2hf)
  367. (vmac2hfr, vmac2hnfr, vmax2h, vmin2h, vmpy2h, vmpy2hf, vmpy2hfr)
  368. (vmpy2hwf, vmsub2hf, vmsub2hfr, vmsub2hnfr, vneg2h, vnegs2h)
  369. (vnorm2h, vpack2hbl, vpack2hblf, vpack2hbm, vpack2hbmf, vpack2hl)
  370. (vpack2hm, vperm, vrep2hl, vrep2hm, vsext2bhl, vsext2bhm, vsub4b)
  371. (vsubadds, vsubadds2h, vsubadds4h, vsubs2, vsubs2h, vsubs4h):
  372. Changed opcodes.
  373. (prealloc, prefetch*): Place them before ld instruction.
  374. * arc-opc.c (skip_this_opcode): Add ARITH class.
  375. 2017-10-25 Alan Modra <amodra@gmail.com>
  376. PR 22348
  377. * cr16-dis.c (cr16_cinvs, instruction, cr16_currInsn): Make static.
  378. (cr16_words, cr16_allWords, processing_argument_number): Likewise.
  379. (imm4flag, size_changed): Likewise.
  380. * crx-dis.c (crx_cinvs, NUMCINVS, instruction, currInsn): Likewise.
  381. (words, allWords, processing_argument_number): Likewise.
  382. (cst4flag, size_changed): Likewise.
  383. * crx-opc.c (crx_cst4_map): Rename from cst4_map.
  384. (crx_cst4_maps): Rename from cst4_maps.
  385. (crx_no_op_insn): Rename from no_op_insn.
  386. 2017-10-24 Andrew Waterman <andrew@sifive.com>
  387. * riscv-opc.c (match_c_addi16sp) : New function.
  388. (match_c_addi4spn): New function.
  389. (match_c_lui): Don't allow 0-immediate encodings.
  390. (riscv_opcodes) <addi>: Use the above functions.
  391. <add>: Likewise.
  392. <c.addi4spn>: Likewise.
  393. <c.addi16sp>: Likewise.
  394. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  395. * i386-init.h: Regenerate
  396. * i386-tbl.h: Likewise
  397. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  398. * i386-dis.c (enum): Add PREFIX_EVEX_0F3854, PREFIX_EVEX_0F388F.
  399. (enum): Add EVEX_W_0F3854_P_2.
  400. * i386-dis-evex.h (evex_table): Updated.
  401. * i386-gen.c (cpu_flag_init): Add CPU_AVX512_BITALG,
  402. CPU_ANY_AVX512_BITALG_FLAGS. Update CPU_ANY_AVX512F_FLAGS.
  403. (cpu_flags): Add CpuAVX512_BITALG.
  404. * i386-opc.h (enum): Add CpuAVX512_BITALG.
  405. (i386_cpu_flags): Add cpuavx512_bitalg..
  406. * i386-opc.tbl: Add Intel AVX512_BITALG instructions.
  407. * i386-init.h: Regenerate.
  408. * i386-tbl.h: Likewise.
  409. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  410. * i386-dis.c (enum): Add PREFIX_EVEX_0F3850, PREFIX_EVEX_0F3851.
  411. * i386-dis-evex.h (evex_table): Updated.
  412. * i386-gen.c (cpu_flag_init): Add CPU_AVX512_VNNI,
  413. CPU_ANY_AVX512_VNNI_FLAGS. Update CPU_ANY_AVX512F_FLAGS.
  414. (cpu_flags): Add CpuAVX512_VNNI.
  415. * i386-opc.h (enum): Add CpuAVX512_VNNI.
  416. (i386_cpu_flags): Add cpuavx512_vnni.
  417. * i386-opc.tbl Add Intel AVX512_VNNI instructions.
  418. * i386-init.h: Regenerate.
  419. * i386-tbl.h: Likewise.
  420. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  421. * i386-dis.c (enum): Add PREFIX_EVEX_0F3A44.
  422. (enum): Remove VEX_LEN_0F3A44_P_2.
  423. (vex_len_table): Ditto.
  424. (enum): Remove VEX_W_0F3A44_P_2.
  425. (vew_w_table): Ditto.
  426. (prefix_table): Adjust instructions (see prefixes above).
  427. * i386-dis-evex.h (evex_table):
  428. Add new instructions (see prefixes above).
  429. * i386-gen.c (cpu_flag_init): Add VPCLMULQDQ.
  430. (bitfield_cpu_flags): Ditto.
  431. * i386-opc.h (enum): Ditto.
  432. (i386_cpu_flags): Ditto.
  433. (CpuUnused): Comment out to avoid zero-width field problem.
  434. * i386-opc.tbl (vpclmulqdq): New instruction.
  435. * i386-init.h: Regenerate.
  436. * i386-tbl.h: Ditto.
  437. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  438. * i386-dis.c (enum): Add PREFIX_EVEX_0F38DC, PREFIX_EVEX_0F38DD,
  439. PREFIX_EVEX_0F38DE, PREFIX_EVEX_0F38DF.
  440. (enum): Remove VEX_LEN_0F38DC_P_2, VEX_LEN_0F38DD_P_2,
  441. VEX_LEN_0F38DE_P_2, VEX_LEN_0F38DF_P_2.
  442. (vex_len_table): Ditto.
  443. (enum): Remove VEX_W_0F38DC_P_2, VEX_W_0F38DD_P_2,
  444. VEX_W_0F38DE_P_2, VEX_W_0F38DF_P_2.
  445. (vew_w_table): Ditto.
  446. (prefix_table): Adjust instructions (see prefixes above).
  447. * i386-dis-evex.h (evex_table):
  448. Add new instructions (see prefixes above).
  449. * i386-gen.c (cpu_flag_init): Add VAES.
  450. (bitfield_cpu_flags): Ditto.
  451. * i386-opc.h (enum): Ditto.
  452. (i386_cpu_flags): Ditto.
  453. * i386-opc.tbl (vaes{enc,dec}{last,}): New instructions.
  454. * i386-init.h: Regenerate.
  455. * i386-tbl.h: Ditto.
  456. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  457. * i386-dis.c (enum): Add PREFIX_0F38CF, PREFIX_0F3ACE, PREFIX_0F3ACF,
  458. PREFIX_VEX_0F38CF, PREFIX_VEX_0F3ACE, PREFIX_VEX_0F3ACF,
  459. PREFIX_EVEX_0F38CF, PREFIX_EVEX_0F3ACE, PREFIX_EVEX_0F3ACF.
  460. (enum): Add VEX_W_0F38CF_P_2, VEX_W_0F3ACE_P_2, VEX_W_0F3ACF_P_2,
  461. EVEX_W_0F3ACE_P_2, EVEX_W_0F3ACF_P_2.
  462. (prefix_table): Updated (see prefixes above).
  463. (three_byte_table): Likewise.
  464. (vex_w_table): Likewise.
  465. * i386-dis-evex.h: Likewise.
  466. * i386-gen.c (cpu_flag_init): Add CPU_GFNI_FLAGS, CpuGFNI.
  467. (cpu_flags): Add CpuGFNI.
  468. * i386-opc.h (enum): Add CpuGFNI.
  469. (i386_cpu_flags): Add cpugfni.
  470. * i386-opc.tbl: Add Intel GFNI instructions.
  471. * i386-init.h: Regenerate.
  472. * i386-tbl.h: Likewise.
  473. 2017-10-23 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  474. * i386-dis.c (enum): Add b_scalar_mode, w_scalar_mode.
  475. Define EXbScalar and EXwScalar for OP_EX.
  476. (enum): Add PREFIX_EVEX_0F3862, PREFIX_EVEX_0F3863,
  477. PREFIX_EVEX_0F3870, PREFIX_EVEX_0F3871, PREFIX_EVEX_0F3872,
  478. PREFIX_EVEX_0F3873, PREFIX_EVEX_0F3A70, PREFIX_EVEX_0F3A71,
  479. PREFIX_EVEX_0F3A72, PREFIX_EVEX_0F3A73.
  480. (enum): Add EVEX_W_0F3862_P_2, EVEX_W_0F3863_P_2,
  481. EVEX_W_0F3870_P_2, EVEX_W_0F3871_P_2, EVEX_W_0F3872_P_2,
  482. EVEX_W_0F3873_P_2, EVEX_W_0F3A70_P_2, EVEX_W_0F3A71_P_2,
  483. EVEX_W_0F3A72_P_2, EVEX_W_0F3A73_P_2.
  484. (intel_operand_size): Handle b_scalar_mode and w_scalar_mode.
  485. (OP_E_memory): Likewise.
  486. * i386-dis-evex.h: Updated.
  487. * i386-gen.c (cpu_flag_init): Add CPU_AVX512_VBMI2,
  488. CPU_ANY_AVX512_VBMI2_FLAGS. Update CPU_ANY_AVX512F_FLAGS.
  489. (cpu_flags): Add CpuAVX512_VBMI2.
  490. * i386-opc.h (enum): Add CpuAVX512_VBMI2.
  491. (i386_cpu_flags): Add cpuavx512_vbmi2.
  492. * i386-opc.tbl: Add Intel AVX512_VBMI2 instructions.
  493. * i386-init.h: Regenerate.
  494. * i386-tbl.h: Likewise.
  495. 2017-10-18 Eric Botcazou <ebotcazou@adacore.com>
  496. * visium-dis.c (disassem_class1) <case 0>: Print the operands.
  497. 2017-10-12 James Bowman <james.bowman@ftdichip.com>
  498. * ft32-dis.c (print_insn_ft32): Replace FT32_FLD_K8 with K15.
  499. * ft32-opc.c (ft32_opc_info): Replace FT32_FLD_K8 with
  500. K15. Add jmpix pattern.
  501. 2017-10-09 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
  502. * s390-opc.txt (prno, tpei, irbm): New instructions added.
  503. 2017-10-09 Heiko Carstens <heiko.carstens@de.ibm.com>
  504. * s390-opc.c (INSTR_SI_RD): New macro.
  505. (INSTR_S_RD): Adjust example instruction.
  506. * s390-opc.txt (lpsw, ssm, ts): Change S_RD instruction format to
  507. SI_RD.
  508. 2017-10-01 Alexander Fedotov <alfedotov@gmail.com>
  509. * ppc-opc.c (vle_opcodes): Add e_lmvsprw, e_lmvgprw,
  510. e_lmvsrrw, e_lmvcsrrw and e_lmvcsrrw as official mnemonics for
  511. VLE multimple load/store instructions. Old e_ldm* variants are
  512. kept as aliases.
  513. Add missing e_lmvmcsrrw and e_stmvmcsrrw.
  514. 2017-09-27 Nick Clifton <nickc@redhat.com>
  515. PR 22179
  516. * riscv-opc.c (riscv_opcodes): Add fmv.x.w and fmv.w.x as the new
  517. names for the fmv.x.s and fmv.s.x instructions respectively.
  518. 2017-09-26 do <do@nerilex.org>
  519. PR 22123
  520. * m68k-opc.c (m68k_opcodes): Allow macw and macl instructions to
  521. be used on CPUs that have emacs support.
  522. 2017-09-21 Sergio Durigan Junior <sergiodj@redhat.com>
  523. * aarch64-opc.c (expand_fp_imm): Initialize 'imm'.
  524. 2017-09-09 Kamil Rytarowski <n54@gmx.com>
  525. * nds32-asm.c: Rename __BIT() to N32_BIT().
  526. * nds32-asm.h: Likewise.
  527. * nds32-dis.c: Likewise.
  528. 2017-09-09 H.J. Lu <hongjiu.lu@intel.com>
  529. * i386-dis.c (last_active_prefix): Removed.
  530. (ckprefix): Don't set last_active_prefix.
  531. (NOTRACK_Fixup): Don't check last_active_prefix.
  532. 2017-08-31 Nick Clifton <nickc@redhat.com>
  533. * po/fr.po: Updated French translation.
  534. 2017-08-31 James Bowman <james.bowman@ftdichip.com>
  535. * ft32-dis.c (print_insn_ft32): Correct display of non-address
  536. fields.
  537. 2017-08-23 Alexander Fedotov <alexander.fedotov@nxp.com>
  538. Edmar Wienskoski <edmar.wienskoski@nxp.com>
  539. * ppc-dis.c (ppc_mopt): Add PPC_OPCODE_SPE2 and
  540. PPC_OPCODE_EFS2 flag to "e200z4" entry.
  541. New entries efs2 and spe2.
  542. Add PPC_OPCODE_SPE2 and PPC_OPCODE_EFS2 flag to "vle" entry.
  543. (SPE2_OPCD_SEGS): New macro.
  544. (spe2_opcd_indices): New.
  545. (disassemble_init_powerpc): Handle SPE2 opcodes.
  546. (lookup_spe2): New function.
  547. (print_insn_powerpc): call lookup_spe2.
  548. * ppc-opc.c (insert_evuimm1_ex0): New function.
  549. (extract_evuimm1_ex0): Likewise.
  550. (insert_evuimm_lt8): Likewise.
  551. (extract_evuimm_lt8): Likewise.
  552. (insert_off_spe2): Likewise.
  553. (extract_off_spe2): Likewise.
  554. (insert_Ddd): Likewise.
  555. (extract_Ddd): Likewise.
  556. (DD): New operand.
  557. (EVUIMM_LT8): Likewise.
  558. (EVUIMM_LT16): Adjust.
  559. (MMMM): New operand.
  560. (EVUIMM_1): Likewise.
  561. (EVUIMM_1_EX0): Likewise.
  562. (EVUIMM_2): Adjust.
  563. (NNN): New operand.
  564. (VX_OFF_SPE2): Likewise.
  565. (BBB): Likewise.
  566. (DDD): Likewise.
  567. (VX_MASK_DDD): New mask.
  568. (HH): New operand.
  569. (VX_RA_CONST): New macro.
  570. (VX_RA_CONST_MASK): Likewise.
  571. (VX_RB_CONST): Likewise.
  572. (VX_RB_CONST_MASK): Likewise.
  573. (VX_OFF_SPE2_MASK): Likewise.
  574. (VX_SPE_CRFD): Likewise.
  575. (VX_SPE_CRFD_MASK VX): Likewise.
  576. (VX_SPE2_CLR): Likewise.
  577. (VX_SPE2_CLR_MASK): Likewise.
  578. (VX_SPE2_SPLATB): Likewise.
  579. (VX_SPE2_SPLATB_MASK): Likewise.
  580. (VX_SPE2_OCTET): Likewise.
  581. (VX_SPE2_OCTET_MASK): Likewise.
  582. (VX_SPE2_DDHH): Likewise.
  583. (VX_SPE2_DDHH_MASK): Likewise.
  584. (VX_SPE2_HH): Likewise.
  585. (VX_SPE2_HH_MASK): Likewise.
  586. (VX_SPE2_EVMAR): Likewise.
  587. (VX_SPE2_EVMAR_MASK): Likewise.
  588. (PPCSPE2): Likewise.
  589. (PPCEFS2): Likewise.
  590. (vle_opcodes): Add EFS2 and some missing SPE opcodes.
  591. (powerpc_macros): Map old SPE instructions have new names
  592. with the same opcodes. Add SPE2 instructions which just are
  593. mapped to SPE2.
  594. (spe2_opcodes): Add SPE2 opcodes.
  595. 2017-08-23 Alan Modra <amodra@gmail.com>
  596. * ppc-opc.c: Formatting and comment fixes. Move insert and
  597. extract functions earlier, deleting forward declarations.
  598. (insert_nbi, insert_raq, insert_rbx): Expand use of RT_MASK and
  599. RA_MASK.
  600. 2017-08-22 Palmer Dabbelt <palmer@dabbelt.com>
  601. * riscv-opc.c (riscv_opcodes): Mark "c.nop" as an alias.
  602. 2017-08-21 Alexander Fedotov <alexander.fedotov@nxp.com>
  603. Edmar Wienskoski <edmar.wienskoski@nxp.com>
  604. * ppc-opc.c (insert_evuimm2_ex0): New function.
  605. (extract_evuimm2_ex0): Likewise.
  606. (insert_evuimm4_ex0): Likewise.
  607. (extract_evuimm4_ex0): Likewise.
  608. (insert_evuimm8_ex0): Likewise.
  609. (extract_evuimm8_ex0): Likewise.
  610. (insert_evuimm_lt16): Likewise.
  611. (extract_evuimm_lt16): Likewise.
  612. (insert_rD_rS_even): Likewise.
  613. (extract_rD_rS_even): Likewise.
  614. (insert_off_lsp): Likewise.
  615. (extract_off_lsp): Likewise.
  616. (RD_EVEN): New operand.
  617. (RS_EVEN): Likewise.
  618. (RSQ): Adjust.
  619. (EVUIMM_LT16): New operand.
  620. (HTM_SI): Adjust.
  621. (EVUIMM_2_EX0): New operand.
  622. (EVUIMM_4): Adjust.
  623. (EVUIMM_4_EX0): New operand.
  624. (EVUIMM_8): Adjust.
  625. (EVUIMM_8_EX0): New operand.
  626. (WS): Adjust.
  627. (VX_OFF): New operand.
  628. (VX_LSP): New macro.
  629. (VX_LSP_MASK): Likewise.
  630. (VX_LSP_OFF_MASK): Likewise.
  631. (PPC_OPCODE_LSP): Likewise.
  632. (vle_opcodes): Add LSP opcodes.
  633. * ppc-dis.c (ppc_mopt): Add PPC_OPCODE_LSP flag to "vle" entry.
  634. 2017-08-09 Jiong Wang <jiong.wang@arm.com>
  635. * arm-dis.c (thumb32_opcodes): Use format 'R' instead of 'S' for
  636. register operands in CRC instructions.
  637. (print_insn_thumb32): Remove "<bitfield>S" support. Updated the
  638. comments.
  639. 2017-08-07 H.J. Lu <hongjiu.lu@intel.com>
  640. * disassemble.c (disassembler): Mark big and mach with
  641. ATTRIBUTE_UNUSED.
  642. 2017-08-07 Maciej W. Rozycki <macro@imgtec.com>
  643. * disassemble.c (disassembler): Remove arch/mach/endian
  644. assertions.
  645. 2017-07-25 Nick Clifton <nickc@redhat.com>
  646. PR 21739
  647. * arc-opc.c (insert_rhv2): Use lower case first letter in error
  648. message.
  649. (insert_r0): Likewise.
  650. (insert_r1): Likewise.
  651. (insert_r2): Likewise.
  652. (insert_r3): Likewise.
  653. (insert_sp): Likewise.
  654. (insert_gp): Likewise.
  655. (insert_pcl): Likewise.
  656. (insert_blink): Likewise.
  657. (insert_ilink1): Likewise.
  658. (insert_ilink2): Likewise.
  659. (insert_ras): Likewise.
  660. (insert_rbs): Likewise.
  661. (insert_rcs): Likewise.
  662. (insert_simm3s): Likewise.
  663. (insert_rrange): Likewise.
  664. (insert_r13el): Likewise.
  665. (insert_fpel): Likewise.
  666. (insert_blinkel): Likewise.
  667. (insert_pclel): Likewise.
  668. (insert_nps_bitop_size_2b): Likewise.
  669. (insert_nps_imm_offset): Likewise.
  670. (insert_nps_imm_entry): Likewise.
  671. (insert_nps_size_16bit): Likewise.
  672. (insert_nps_##NAME##_pos): Likewise.
  673. (insert_nps_##NAME): Likewise.
  674. (insert_nps_bitop_ins_ext): Likewise.
  675. (insert_nps_##NAME): Likewise.
  676. (insert_nps_min_hofs): Likewise.
  677. (insert_nps_##NAME): Likewise.
  678. (insert_nps_rbdouble_64): Likewise.
  679. (insert_nps_misc_imm_offset): Likewise.
  680. * riscv-dis.c (print_riscv_disassembler_options): Fix typo in
  681. option description.
  682. 2017-07-24 Laurent Desnogues <laurent.desnogues@arm.com>
  683. Jiong Wang <jiong.wang@arm.com>
  684. * aarch64-gen.c (print_decision_tree_1): Reverse the index of PATTERN to
  685. correct the print.
  686. * aarch64-dis-2.c: Regenerated.
  687. 2017-07-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
  688. * s390-mkopc.c (main): Enable z14 as CPU string in the opcode
  689. table.
  690. 2017-07-20 Nick Clifton <nickc@redhat.com>
  691. * po/de.po: Updated German translation.
  692. 2017-07-19 Claudiu Zissulescu <claziss@synopsys.com>
  693. * arc-regs.h (sec_stat): New aux register.
  694. (aux_kernel_sp): Likewise.
  695. (aux_sec_u_sp): Likewise.
  696. (aux_sec_k_sp): Likewise.
  697. (sec_vecbase_build): Likewise.
  698. (nsc_table_top): Likewise.
  699. (nsc_table_base): Likewise.
  700. (ersec_stat): Likewise.
  701. (aux_sec_except): Likewise.
  702. 2017-07-19 Claudiu Zissulescu <claziss@synopsys.com>
  703. * arc-opc.c (extract_uimm12_20): New function.
  704. (UIMM12_20): New operand.
  705. (SIMM3_5_S): Adjust.
  706. * arc-tbl.h (sjli): Add new instruction.
  707. 2017-07-19 Claudiu Zissulescu <claziss@synopsys.com>
  708. John Eric Martin <John.Martin@emmicro-us.com>
  709. * arc-opc.c (UIMM10_6_S_JLIOFF): Define.
  710. (UIMM3_23): Adjust accordingly.
  711. * arc-regs.h: Add/correct jli_base register.
  712. * arc-tbl.h (jli_s): Likewise.
  713. 2017-07-18 Nick Clifton <nickc@redhat.com>
  714. PR 21775
  715. * aarch64-opc.c: Fix spelling typos.
  716. * i386-dis.c: Likewise.
  717. 2017-07-14 Ravi Bangoria <ravi.bangoria@linux.vnet.ibm.com>
  718. * dis-buf.c (buffer_read_memory): Change type of end_addr_offset,
  719. max_addr_offset and octets variables to size_t.
  720. 2017-07-12 Alan Modra <amodra@gmail.com>
  721. * po/da.po: Update from translationproject.org/latest/opcodes/.
  722. * po/de.po: Likewise.
  723. * po/es.po: Likewise.
  724. * po/fi.po: Likewise.
  725. * po/fr.po: Likewise.
  726. * po/id.po: Likewise.
  727. * po/it.po: Likewise.
  728. * po/nl.po: Likewise.
  729. * po/pt_BR.po: Likewise.
  730. * po/ro.po: Likewise.
  731. * po/sv.po: Likewise.
  732. * po/tr.po: Likewise.
  733. * po/uk.po: Likewise.
  734. * po/vi.po: Likewise.
  735. * po/zh_CN.po: Likewise.
  736. 2017-07-11 Yao Qi <yao.qi@linaro.org>
  737. Alan Modra <amodra@gmail.com>
  738. * cgen.sh: Mark generated files read-only.
  739. * epiphany-asm.c: Regenerate.
  740. * epiphany-desc.c: Regenerate.
  741. * epiphany-desc.h: Regenerate.
  742. * epiphany-dis.c: Regenerate.
  743. * epiphany-ibld.c: Regenerate.
  744. * epiphany-opc.c: Regenerate.
  745. * epiphany-opc.h: Regenerate.
  746. * fr30-asm.c: Regenerate.
  747. * fr30-desc.c: Regenerate.
  748. * fr30-desc.h: Regenerate.
  749. * fr30-dis.c: Regenerate.
  750. * fr30-ibld.c: Regenerate.
  751. * fr30-opc.c: Regenerate.
  752. * fr30-opc.h: Regenerate.
  753. * frv-asm.c: Regenerate.
  754. * frv-desc.c: Regenerate.
  755. * frv-desc.h: Regenerate.
  756. * frv-dis.c: Regenerate.
  757. * frv-ibld.c: Regenerate.
  758. * frv-opc.c: Regenerate.
  759. * frv-opc.h: Regenerate.
  760. * ip2k-asm.c: Regenerate.
  761. * ip2k-desc.c: Regenerate.
  762. * ip2k-desc.h: Regenerate.
  763. * ip2k-dis.c: Regenerate.
  764. * ip2k-ibld.c: Regenerate.
  765. * ip2k-opc.c: Regenerate.
  766. * ip2k-opc.h: Regenerate.
  767. * iq2000-asm.c: Regenerate.
  768. * iq2000-desc.c: Regenerate.
  769. * iq2000-desc.h: Regenerate.
  770. * iq2000-dis.c: Regenerate.
  771. * iq2000-ibld.c: Regenerate.
  772. * iq2000-opc.c: Regenerate.
  773. * iq2000-opc.h: Regenerate.
  774. * lm32-asm.c: Regenerate.
  775. * lm32-desc.c: Regenerate.
  776. * lm32-desc.h: Regenerate.
  777. * lm32-dis.c: Regenerate.
  778. * lm32-ibld.c: Regenerate.
  779. * lm32-opc.c: Regenerate.
  780. * lm32-opc.h: Regenerate.
  781. * lm32-opinst.c: Regenerate.
  782. * m32c-asm.c: Regenerate.
  783. * m32c-desc.c: Regenerate.
  784. * m32c-desc.h: Regenerate.
  785. * m32c-dis.c: Regenerate.
  786. * m32c-ibld.c: Regenerate.
  787. * m32c-opc.c: Regenerate.
  788. * m32c-opc.h: Regenerate.
  789. * m32r-asm.c: Regenerate.
  790. * m32r-desc.c: Regenerate.
  791. * m32r-desc.h: Regenerate.
  792. * m32r-dis.c: Regenerate.
  793. * m32r-ibld.c: Regenerate.
  794. * m32r-opc.c: Regenerate.
  795. * m32r-opc.h: Regenerate.
  796. * m32r-opinst.c: Regenerate.
  797. * mep-asm.c: Regenerate.
  798. * mep-desc.c: Regenerate.
  799. * mep-desc.h: Regenerate.
  800. * mep-dis.c: Regenerate.
  801. * mep-ibld.c: Regenerate.
  802. * mep-opc.c: Regenerate.
  803. * mep-opc.h: Regenerate.
  804. * mt-asm.c: Regenerate.
  805. * mt-desc.c: Regenerate.
  806. * mt-desc.h: Regenerate.
  807. * mt-dis.c: Regenerate.
  808. * mt-ibld.c: Regenerate.
  809. * mt-opc.c: Regenerate.
  810. * mt-opc.h: Regenerate.
  811. * or1k-asm.c: Regenerate.
  812. * or1k-desc.c: Regenerate.
  813. * or1k-desc.h: Regenerate.
  814. * or1k-dis.c: Regenerate.
  815. * or1k-ibld.c: Regenerate.
  816. * or1k-opc.c: Regenerate.
  817. * or1k-opc.h: Regenerate.
  818. * or1k-opinst.c: Regenerate.
  819. * xc16x-asm.c: Regenerate.
  820. * xc16x-desc.c: Regenerate.
  821. * xc16x-desc.h: Regenerate.
  822. * xc16x-dis.c: Regenerate.
  823. * xc16x-ibld.c: Regenerate.
  824. * xc16x-opc.c: Regenerate.
  825. * xc16x-opc.h: Regenerate.
  826. * xstormy16-asm.c: Regenerate.
  827. * xstormy16-desc.c: Regenerate.
  828. * xstormy16-desc.h: Regenerate.
  829. * xstormy16-dis.c: Regenerate.
  830. * xstormy16-ibld.c: Regenerate.
  831. * xstormy16-opc.c: Regenerate.
  832. * xstormy16-opc.h: Regenerate.
  833. 2017-07-07 Alan Modra <amodra@gmail.com>
  834. * cgen-dis.in: Include disassemble.h, not dis-asm.h.
  835. * m32c-dis.c: Regenerate.
  836. * mep-dis.c: Regenerate.
  837. 2017-07-05 Borislav Petkov <bp@suse.de>
  838. * i386-dis.c: Enable ModRM.reg /6 aliases.
  839. 2017-07-04 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
  840. * opcodes/arm-dis.c: Support MVFR2 in disassembly
  841. with vmrs and vmsr.
  842. 2017-07-04 Tristan Gingold <gingold@adacore.com>
  843. * configure: Regenerate.
  844. 2017-07-03 Tristan Gingold <gingold@adacore.com>
  845. * po/opcodes.pot: Regenerate.
  846. 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
  847. * mips-opc.c (mips_builtin_opcodes): Move "lsa" and "dlsa"
  848. entries to the MSA ASE instruction block.
  849. 2017-06-30 Andrew Bennett <andrew.bennett@imgtec.com>
  850. Maciej W. Rozycki <macro@imgtec.com>
  851. * micromips-opc.c (XPA, XPAVZ): New macros.
  852. (micromips_opcodes): Add "mfhc0", "mfhgc0", "mthc0" and
  853. "mthgc0".
  854. 2017-06-30 Andrew Bennett <andrew.bennett@imgtec.com>
  855. Maciej W. Rozycki <macro@imgtec.com>
  856. * micromips-opc.c (I36): New macro.
  857. (micromips_opcodes): Add "eretnc".
  858. 2017-06-30 Maciej W. Rozycki <macro@imgtec.com>
  859. Andrew Bennett <andrew.bennett@imgtec.com>
  860. * mips-dis.c (mips_calculate_combination_ases): Handle the
  861. ASE_XPA_VIRT flag.
  862. (parse_mips_ase_option): New function.
  863. (parse_mips_dis_option): Factor out ASE option handling to the
  864. new function. Call `mips_calculate_combination_ases'.
  865. * mips-opc.c (XPAVZ): New macro.
  866. (mips_builtin_opcodes): Correct ISA and ASE flags for "mfhc0",
  867. "mfhgc0", "mthc0" and "mthgc0".
  868. 2017-06-29 Maciej W. Rozycki <macro@imgtec.com>
  869. * mips-dis.c (mips_calculate_combination_ases): New function.
  870. (mips_convert_abiflags_ases): Factor out ASE_MIPS16E2_MT
  871. calculation to the new function.
  872. (set_default_mips_dis_options): Call the new function.
  873. 2017-06-29 Anton Kolesov <Anton.Kolesov@synopsys.com>
  874. * arc-dis.c (parse_disassembler_options): Use
  875. FOR_EACH_DISASSEMBLER_OPTION.
  876. 2017-06-29 Anton Kolesov <Anton.Kolesov@synopsys.com>
  877. * arc-dis.c (parse_option): Use disassembler_options_cmp to compare
  878. disassembler option strings.
  879. (parse_cpu_option): Likewise.
  880. 2017-06-28 Tamar Christina <tamar.christina@arm.com>
  881. * aarch64-asm.c (aarch64_ins_reglane): Added 4B dotprod.
  882. * aarch64-dis.c (aarch64_ext_reglane): Likewise.
  883. * aarch64-tbl.h (QL_V3DOT, QL_V2DOT): New.
  884. (aarch64_feature_dotprod, DOT_INSN): New.
  885. (udot, sdot): New.
  886. * aarch64-dis-2.c: Regenerated.
  887. 2017-06-28 Jiong Wang <jiong.wang@arm.com>
  888. * arm-dis.c (coprocessor_opcodes): New entries for vsdot and vudot.
  889. 2017-06-28 Maciej W. Rozycki <macro@imgtec.com>
  890. Matthew Fortune <matthew.fortune@imgtec.com>
  891. Andrew Bennett <andrew.bennett@imgtec.com>
  892. * mips-formats.h (INT_BIAS): New macro.
  893. (INT_ADJ): Redefine in INT_BIAS terms.
  894. * mips-dis.c (mips_arch_choices): Add "interaptiv-mr2" entry.
  895. (mips_print_save_restore): New function.
  896. (print_insn_arg) <OP_SAVE_RESTORE_LIST>: Update comment.
  897. (validate_insn_args) <OP_SAVE_RESTORE_LIST>: Remove `abort'
  898. call.
  899. (print_insn_args): Handle OP_SAVE_RESTORE_LIST.
  900. (print_mips16_insn_arg): Call `mips_print_save_restore' for
  901. OP_SAVE_RESTORE_LIST handling, factored out from here.
  902. * mips-opc.c (decode_mips_operand) <'-'> <'m'>: New case.
  903. (RD_31, RD_SP, WR_SP, MOD_SP, IAMR2): New macros.
  904. (mips_builtin_opcodes): Add "restore" and "save" entries.
  905. * mips16-opc.c (decode_mips16_operand) <'n', 'o'>: New cases.
  906. (IAMR2): New macro.
  907. (mips16_opcodes): Add "copyw" and "ucopyw" entries.
  908. 2017-06-23 Andrew Waterman <andrew@sifive.com>
  909. * riscv-opc.c (riscv_opcodes): Mark I-type SLT instruction as an
  910. alias; do not mark SLTI instruction as an alias.
  911. 2017-06-21 H.J. Lu <hongjiu.lu@intel.com>
  912. * i386-dis.c (RM_0FAE_REG_5): Removed.
  913. (PREFIX_MOD_3_0F01_REG_5_RM_1): Likewise.
  914. (PREFIX_MOD_3_0F01_REG_5_RM_0): New.
  915. (PREFIX_MOD_3_0FAE_REG_5): Likewise.
  916. (prefix_table): Remove PREFIX_MOD_3_0F01_REG_5_RM_1. Add
  917. PREFIX_MOD_3_0F01_REG_5_RM_0.
  918. (prefix_table): Update PREFIX_MOD_0_0FAE_REG_5. Add
  919. PREFIX_MOD_3_0FAE_REG_5.
  920. (mod_table): Update MOD_0FAE_REG_5.
  921. (rm_table): Update RM_0F01_REG_5. Remove RM_0FAE_REG_5.
  922. * i386-opc.tbl: Update incsspd, incsspq and setssbsy.
  923. * i386-tbl.h: Regenerated.
  924. 2017-06-21 H.J. Lu <hongjiu.lu@intel.com>
  925. * i386-dis.c (prefix_table): Replace savessp with saveprevssp.
  926. * i386-opc.tbl: Likewise.
  927. * i386-tbl.h: Regenerated.
  928. 2017-06-21 H.J. Lu <hongjiu.lu@intel.com>
  929. * i386-dis.c (reg_table): Swap indirEv with NOTRACK on "call{&|}"
  930. and "jmp{&|}".
  931. (NOTRACK_Fixup): Support memory indirect branch with NOTRACK
  932. prefix.
  933. 2017-06-19 Nick Clifton <nickc@redhat.com>
  934. PR binutils/21614
  935. * score-dis.c (score_opcodes): Add sentinel.
  936. 2017-06-16 Alan Modra <amodra@gmail.com>
  937. * rx-decode.c: Regenerate.
  938. 2017-06-15 H.J. Lu <hongjiu.lu@intel.com>
  939. PR binutils/21594
  940. * i386-dis.c (OP_E_register): Check valid bnd register.
  941. (OP_G): Likewise.
  942. 2017-06-15 Nick Clifton <nickc@redhat.com>
  943. PR binutils/21595
  944. * aarch64-dis.c (aarch64_ext_ldst_reglist): Check for an out of
  945. range value.
  946. 2017-06-15 Nick Clifton <nickc@redhat.com>
  947. PR binutils/21588
  948. * rl78-decode.opc (OP_BUF_LEN): Define.
  949. (GETBYTE): Check for the index exceeding OP_BUF_LEN.
  950. (rl78_decode_opcode): Use OP_BUF_LEN as the length of the op_buf
  951. array.
  952. * rl78-decode.c: Regenerate.
  953. 2017-06-15 Nick Clifton <nickc@redhat.com>
  954. PR binutils/21586
  955. * bfin-dis.c (gregs): Clip index to prevent overflow.
  956. (regs): Likewise.
  957. (regs_lo): Likewise.
  958. (regs_hi): Likewise.
  959. 2017-06-14 Nick Clifton <nickc@redhat.com>
  960. PR binutils/21576
  961. * score7-dis.c (score_opcodes): Add sentinel.
  962. 2017-06-14 Yao Qi <yao.qi@linaro.org>
  963. * aarch64-dis.c: Include disassemble.h instead of dis-asm.h.
  964. * arm-dis.c: Likewise.
  965. * ia64-dis.c: Likewise.
  966. * mips-dis.c: Likewise.
  967. * spu-dis.c: Likewise.
  968. * disassemble.h (print_insn_aarch64): New declaration, moved from
  969. include/dis-asm.h.
  970. (print_insn_big_arm, print_insn_big_mips): Likewise.
  971. (print_insn_i386, print_insn_ia64): Likewise.
  972. (print_insn_little_arm, print_insn_little_mips): Likewise.
  973. 2017-06-14 Nick Clifton <nickc@redhat.com>
  974. PR binutils/21587
  975. * rx-decode.opc: Include libiberty.h
  976. (GET_SCALE): New macro - validates access to SCALE array.
  977. (GET_PSCALE): New macro - validates access to PSCALE array.
  978. (DIs, SIs, S2Is, rx_disp): Use new macros.
  979. * rx-decode.c: Regenerate.
  980. 2017-07-14 Andre Vieira <andre.simoesdiasvieira@arm.com>
  981. * arm-dis.c (print_insn_arm): Remove bogus entry for bx.
  982. 2017-05-30 Anton Kolesov <anton.kolesov@synopsys.com>
  983. * arc-dis.c (enforced_isa_mask): Declare.
  984. (cpu_types): Likewise.
  985. (parse_cpu_option): New function.
  986. (parse_disassembler_options): Use it.
  987. (print_insn_arc): Use enforced_isa_mask.
  988. (print_arc_disassembler_options): Document new options.
  989. 2017-05-24 Yao Qi <yao.qi@linaro.org>
  990. * alpha-dis.c: Include disassemble.h, don't include
  991. dis-asm.h.
  992. * avr-dis.c, bfin-dis.c, cr16-dis.c: Likewise.
  993. * crx-dis.c, d10v-dis.c, d30v-dis.c: Likewise.
  994. * disassemble.c, dlx-dis.c, epiphany-dis.c: Likewise.
  995. * fr30-dis.c, ft32-dis.c, h8300-dis.c, h8500-dis.c: Likewise.
  996. * hppa-dis.c, i370-dis.c, i386-dis.c: Likewise.
  997. * i860-dis.c, i960-dis.c, ip2k-dis.c: Likewise.
  998. * iq2000-dis.c, lm32-dis.c, m10200-dis.c: Likewise.
  999. * m10300-dis.c, m32r-dis.c, m68hc11-dis.c: Likewise.
  1000. * m68k-dis.c, m88k-dis.c, mcore-dis.c: Likewise.
  1001. * metag-dis.c, microblaze-dis.c, mmix-dis.c: Likewise.
  1002. * moxie-dis.c, msp430-dis.c, mt-dis.c:
  1003. * nds32-dis.c, nios2-dis.c, ns32k-dis.c: Likewise.
  1004. * or1k-dis.c, pdp11-dis.c, pj-dis.c: Likewise.
  1005. * ppc-dis.c, pru-dis.c, riscv-dis.c: Likewise.
  1006. * rl78-dis.c, s390-dis.c, score-dis.c: Likewise.
  1007. * sh-dis.c, sh64-dis.c, tic30-dis.c: Likewise.
  1008. * tic4x-dis.c, tic54x-dis.c, tic6x-dis.c: Likewise.
  1009. * tic80-dis.c, tilegx-dis.c, tilepro-dis.c: Likewise.
  1010. * v850-dis.c, vax-dis.c, visium-dis.c: Likewise.
  1011. * w65-dis.c, wasm32-dis.c, xc16x-dis.c: Likewise.
  1012. * xgate-dis.c, xstormy16-dis.c, xtensa-dis.c: Likewise.
  1013. * z80-dis.c, z8k-dis.c: Likewise.
  1014. * disassemble.h: New file.
  1015. 2017-05-24 Yao Qi <yao.qi@linaro.org>
  1016. * rl78-dis.c (rl78_get_disassembler): If parameter abfd
  1017. is NULL, set cpu to E_FLAG_RL78_ANY_CPU.
  1018. 2017-05-24 Yao Qi <yao.qi@linaro.org>
  1019. * disassemble.c (disassembler): Add arguments a, big and mach.
  1020. Use them.
  1021. 2017-05-22 H.J. Lu <hongjiu.lu@intel.com>
  1022. * i386-dis.c (NOTRACK_Fixup): New.
  1023. (NOTRACK): Likewise.
  1024. (NOTRACK_PREFIX): Likewise.
  1025. (last_active_prefix): Likewise.
  1026. (reg_table): Use NOTRACK on indirect call and jmp.
  1027. (ckprefix): Set last_active_prefix.
  1028. (prefix_name): Return "notrack" for NOTRACK_PREFIX.
  1029. * i386-gen.c (opcode_modifiers): Add NoTrackPrefixOk.
  1030. * i386-opc.h (NoTrackPrefixOk): New.
  1031. (i386_opcode_modifier): Add notrackprefixok.
  1032. * i386-opc.tbl: Add NoTrackPrefixOk to indirect call and jmp.
  1033. Add notrack.
  1034. * i386-tbl.h: Regenerated.
  1035. 2017-05-19 Jose E. Marchesi <jose.marchesi@oracle.com>
  1036. * sparc-dis.c (MASK_V9): Include SPARC_OPCODE_ARCH_M8.
  1037. (X_IMM2): Define.
  1038. (compute_arch_mask): Handle bfd_mach_sparc_v8plusm8 and
  1039. bfd_mach_sparc_v9m8.
  1040. (print_insn_sparc): Handle new operand types.
  1041. * sparc-opc.c (MASK_M8): Define.
  1042. (v6): Add MASK_M8.
  1043. (v6notlet): Likewise.
  1044. (v7): Likewise.
  1045. (v8): Likewise.
  1046. (v9): Likewise.
  1047. (v9a): Likewise.
  1048. (v9b): Likewise.
  1049. (v9c): Likewise.
  1050. (v9d): Likewise.
  1051. (v9e): Likewise.
  1052. (v9v): Likewise.
  1053. (v9m): Likewise.
  1054. (v9andleon): Likewise.
  1055. (m8): Define.
  1056. (HWS_VM8): Define.
  1057. (HWS2_VM8): Likewise.
  1058. (sparc_opcode_archs): Add entry for "m8".
  1059. (sparc_opcodes): Add OSA2017 and M8 instructions
  1060. dictunpack, fpcmp{ule,ugt,eq,ne,de,ur}{8,16,32}shl,
  1061. fpx{ll,ra,rl}64x,
  1062. ldm{sh,uh,sw,uw,x,ux}, ldm{sh,uh,sw,uw,x,ux}a, ldmf{s,d},
  1063. ldmf{s,d}a, on{add,sub,mul,div}, rdentropy, revbitsb,
  1064. revbytes{h,w,x}, rle_burst, rle_length, sha3, stm{h,w,x},
  1065. stm{h,w,x}a, stmf{s,d}, stmf{s,d}a.
  1066. (asi_table): New M8 ASIs ASI_CORE_COMMIT_COUNT,
  1067. ASI_CORE_SELECT_COUNT, ASI_ARF_ECC_REG, ASI_ITLB_PROBE, ASI_DSFAR,
  1068. ASI_DTLB_PROBE_PRIMARY, ASI_DTLB_PROBE_REAL,
  1069. ASI_CORE_SELECT_COMMIT_NHT.
  1070. 2017-05-18 Alan Modra <amodra@gmail.com>
  1071. * aarch64-asm.c: Don't compare boolean values against TRUE or FALSE.
  1072. * aarch64-dis.c: Likewise.
  1073. * aarch64-gen.c: Likewise.
  1074. * aarch64-opc.c: Likewise.
  1075. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  1076. Matthew Fortune <matthew.fortune@imgtec.com>
  1077. * mips-dis.c (mips_arch_choices): Add ASE_MIPS16E2 and
  1078. ASE_MIPS16E2_MT flags to the unnamed MIPS16 entry.
  1079. (mips_convert_abiflags_ases): Handle the AFL_ASE_MIPS16E2 flag.
  1080. (print_insn_arg) <OP_REG28>: Add handler.
  1081. (validate_insn_args) <OP_REG28>: Handle.
  1082. (print_mips16_insn_arg): Handle MIPS16 instructions that require
  1083. 32-bit encoding and 9-bit immediates.
  1084. (print_insn_mips16): Handle MIPS16 instructions that require
  1085. 32-bit encoding and MFC0/MTC0 operand decoding.
  1086. * mips16-opc.c (decode_mips16_operand) <'>', '9', 'G', 'N', 'O'>
  1087. <'Q', 'T', 'b', 'c', 'd', 'r', 'u'>: Add handlers.
  1088. (RD_C0, WR_C0, E2, E2MT): New macros.
  1089. (mips16_opcodes): Add entries for MIPS16e2 instructions:
  1090. GP-relative "addiu" and its "addu" spelling, "andi", "cache",
  1091. "di", "ehb", "ei", "ext", "ins", GP-relative "lb", "lbu", "lh",
  1092. "lhu", and "lw" instructions, "ll", "lui", "lwl", "lwr", "mfc0",
  1093. "movn", "movtn", "movtz", "movz", "mtc0", "ori", "pause",
  1094. "pref", "rdhwr", "sc", GP-relative "sb", "sh" and "sw"
  1095. instructions, "swl", "swr", "sync" and its "sync_acquire",
  1096. "sync_mb", "sync_release", "sync_rmb" and "sync_wmb" aliases,
  1097. "xori", "dmt", "dvpe", "emt" and "evpe". Add split
  1098. regular/extended entries for original MIPS16 ISA revision
  1099. instructions whose extended forms are subdecoded in the MIPS16e2
  1100. ISA revision: "li", "sll" and "srl".
  1101. 2017-05-15 Maciej W. Rozycki <macro@imgtec.com>
  1102. * mips-dis.c (print_insn_args) <default>: Remove an MT ASE
  1103. reference in CP0 move operand decoding.
  1104. 2017-05-12 Maciej W. Rozycki <macro@imgtec.com>
  1105. * mips16-opc.c (decode_mips16_operand) <'6'>: Switch the operand
  1106. type to hexadecimal.
  1107. (mips16_opcodes): Add operandless "break" and "sdbbp" entries.
  1108. 2017-05-11 Maciej W. Rozycki <macro@imgtec.com>
  1109. * mips-opc.c (mips_builtin_opcodes): Mark "synciobdma", "syncs",
  1110. "syncw", "syncws", "sync_acquire", "sync_mb", "sync_release",
  1111. "sync_rmb" and "sync_wmb" as aliases.
  1112. * micromips-opc.c (micromips_opcodes): Mark "sync_acquire",
  1113. "sync_mb", "sync_release", "sync_rmb" and "sync_wmb" as aliases.
  1114. 2017-05-10 Claudiu Zissulescu <claziss@synopsys.com>
  1115. * arc-dis.c (parse_option): Update quarkse_em option..
  1116. * arc-ext-tbl.h (dsp_fp_flt2i, dsp_fp_i2flt): Change subclass to
  1117. QUARKSE1.
  1118. (dsp_fp_div, dsp_fp_cmp): Change subclass to QUARKSE2.
  1119. 2017-05-03 Kito Cheng <kito.cheng@gmail.com>
  1120. * riscv-dis.c (print_insn_args): Handle 'Co' operands.
  1121. 2017-05-01 Michael Clark <michaeljclark@mac.com>
  1122. * riscv-opc.c (riscv_opcodes) <call>: Use RA not T1 as a temporary
  1123. register.
  1124. 2017-05-02 Maciej W. Rozycki <macro@imgtec.com>
  1125. * mips-dis.c (print_insn_arg): Only clear the ISA bit for jumps
  1126. and branches and not synthetic data instructions.
  1127. 2017-05-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
  1128. * arm-dis.c (print_insn_thumb32): Fix value_in_comment.
  1129. 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
  1130. * arc-dis.c (print_insn_arc): Smartly print enter/leave mnemonics.
  1131. * arc-opc.c (insert_r13el): New function.
  1132. (R13_EL): Define.
  1133. * arc-tbl.h: Add new enter/leave variants.
  1134. 2017-04-25 Claudiu Zissulescu <claziss@synopsys.com>
  1135. * arc-tbl.h: Reorder NOP entry to be before MOV instructions.
  1136. 2017-04-25 Maciej W. Rozycki <macro@imgtec.com>
  1137. * mips-dis.c (print_mips_disassembler_options): Add
  1138. `no-aliases'.
  1139. 2017-04-25 Maciej W. Rozycki <macro@imgtec.com>
  1140. * mips16-opc.c (AL): New macro.
  1141. (mips16_opcodes): Mark "nop", "la", "dla", and synthetic forms
  1142. of "ld" and "lw" as aliases.
  1143. 2017-04-24 Tamar Christina <tamar.christina@arm.com>
  1144. * aarch64-opc.c (aarch64_logical_immediate_p): Update DEBUG_TRACE
  1145. arguments.
  1146. 2017-04-22 Alexander Fedotov <alfedotov@gmail.com>
  1147. Alan Modra <amodra@gmail.com>
  1148. * ppc-opc.c (ELEV): Define.
  1149. (vle_opcodes): Add se_rfgi and e_sc.
  1150. (powerpc_opcodes): Enable lbdx, lhdx, lwdx, stbdx, sthdx, stwdx
  1151. for E200Z4.
  1152. 2017-04-21 Jose E. Marchesi <jose.marchesi@oracle.com>
  1153. * sparc-opc.c (sparc_opcodes): Mark RETT instructions as v6notv9.
  1154. 2017-04-21 Nick Clifton <nickc@redhat.com>
  1155. PR binutils/21380
  1156. * aarch64-tbl.h (aarch64_opcode_table): Fix masks for LD1R, LD2R,
  1157. LD3R and LD4R.
  1158. 2017-04-13 Alan Modra <amodra@gmail.com>
  1159. * epiphany-desc.c: Regenerate.
  1160. * fr30-desc.c: Regenerate.
  1161. * frv-desc.c: Regenerate.
  1162. * ip2k-desc.c: Regenerate.
  1163. * iq2000-desc.c: Regenerate.
  1164. * lm32-desc.c: Regenerate.
  1165. * m32c-desc.c: Regenerate.
  1166. * m32r-desc.c: Regenerate.
  1167. * mep-desc.c: Regenerate.
  1168. * mt-desc.c: Regenerate.
  1169. * or1k-desc.c: Regenerate.
  1170. * xc16x-desc.c: Regenerate.
  1171. * xstormy16-desc.c: Regenerate.
  1172. 2017-04-11 Alan Modra <amodra@gmail.com>
  1173. * ppc-dis.c (ppc_opts): Remove PPC_OPCODE_ALTIVEC2,
  1174. PPC_OPCODE_VSX3, PPC_OPCODE_HTM and "htm". Formatting. Set
  1175. PPC_OPCODE_TMR for e6500.
  1176. * ppc-opc.c (PPCVEC2): Define as PPC_OPCODE_POWER8|PPC_OPCODE_E6500.
  1177. (PPCVEC3): Define as PPC_OPCODE_POWER9.
  1178. (PPCVSX2): Define as PPC_OPCODE_POWER8.
  1179. (PPCVSX3): Define as PPC_OPCODE_POWER9.
  1180. (PPCHTM): Define as PPC_OPCODE_POWER8.
  1181. (powerpc_opcodes <mftmr, mttmr>): Remove now unnecessary E6500.
  1182. 2017-04-10 Alan Modra <amodra@gmail.com>
  1183. * ppc-dis.c (ppc_opts <476>): Remove PPC_OPCODE_440.
  1184. * ppc-opc.c (MULHW): Add PPC_OPCODE_476.
  1185. (powerpc_opcodes): Adjust PPC440, PPC464 and PPC476 insns to suit
  1186. removal of PPC_OPCODE_440 from ppc476 cpu selection bits.
  1187. 2017-04-09 Pip Cet <pipcet@gmail.com>
  1188. * wasm32-dis.c (print_insn_wasm32): Avoid DECIMAL_DIG, specify
  1189. appropriate floating-point precision directly.
  1190. 2017-04-07 Alan Modra <amodra@gmail.com>
  1191. * ppc-opc.c (powerpc_opcodes <mviwsplt, mvidsplt, lvexbx, lvepxl,
  1192. lvexhx, lvepx, lvexwx, stvexbx, stvexhx, stvexwx, lvtrx, lvtlx,
  1193. lvswx, stvfrx, stvflx, stvswx, lvsm, stvepxl, lvtrxl, stvepx,
  1194. lvtlxl, lvswxl, stvfrxl, stvflxl, stvswxl>): Enable E6500 only
  1195. vector instructions with E6500 not PPCVEC2.
  1196. 2017-04-06 Pip Cet <pipcet@gmail.com>
  1197. * Makefile.am: Add wasm32-dis.c.
  1198. * configure.ac: Add wasm32-dis.c to wasm32 target.
  1199. * disassemble.c: Add wasm32 disassembler code.
  1200. * wasm32-dis.c: New file.
  1201. * Makefile.in: Regenerate.
  1202. * configure: Regenerate.
  1203. * po/POTFILES.in: Regenerate.
  1204. * po/opcodes.pot: Regenerate.
  1205. 2017-04-05 Pedro Alves <palves@redhat.com>
  1206. * arc-dis.c (parse_option, parse_disassembler_options): Constify.
  1207. * arm-dis.c (parse_arm_disassembler_options): Constify.
  1208. * ppc-dis.c (powerpc_init_dialect): Constify local.
  1209. * vax-dis.c (parse_disassembler_options): Constify.
  1210. 2017-04-03 Palmer Dabbelt <palmer@dabbelt.com>
  1211. * riscv-dis.c (riscv_disassemble_insn): Change "_gp" to
  1212. RISCV_GP_SYMBOL.
  1213. 2017-03-30 Pip Cet <pipcet@gmail.com>
  1214. * configure.ac: Add (empty) bfd_wasm32_arch target.
  1215. * configure: Regenerate
  1216. * po/opcodes.pot: Regenerate.
  1217. 2017-03-29 Sheldon Lobo <sheldon.lobo@oracle.com>
  1218. Add support for missing SPARC ASIs from UA2005, UA2007, OSA2011, &
  1219. OSA2015.
  1220. * opcodes/sparc-opc.c (asi_table): New ASIs.
  1221. 2017-03-29 Alan Modra <amodra@gmail.com>
  1222. * ppc-dis.c (ppc_opts): Set PPC_OPCODE_PPC for "any" flags. Add
  1223. "raw" option.
  1224. (lookup_powerpc): Don't special case -1 dialect. Handle
  1225. PPC_OPCODE_RAW.
  1226. (print_insn_powerpc): Mask out PPC_OPCODE_ANY on first
  1227. lookup_powerpc call, pass it on second.
  1228. 2017-03-27 Alan Modra <amodra@gmail.com>
  1229. PR 21303
  1230. * ppc-dis.c (struct ppc_mopt): Comment.
  1231. (ppc_opts <e200z4>): Move PPC_OPCODE_VLE from .sticky to .cpu.
  1232. 2017-03-27 Rinat Zelig <rinat@mellanox.com>
  1233. * arc-nps400-tbl.h: Add Ultra Ip and Miscellaneous instructions format.
  1234. * arc-opc.c: Add defines. e.g. F_NJ, F_NM , F_NO_T, F_NPS_SR,
  1235. F_NPS_M, F_NPS_CORE, F_NPS_ALL.
  1236. (insert_nps_misc_imm_offset): New function.
  1237. (extract_nps_misc imm_offset): New function.
  1238. (arc_num_flag_operands): Add F_NJ, F_NM, F_NO_T.
  1239. (arc_flag_special_cases): Add F_NJ, F_NM, F_NO_T.
  1240. 2017-03-21 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
  1241. * s390-mkopc.c (main): Remove vx2 check.
  1242. * s390-opc.txt: Remove vx2 instruction flags.
  1243. 2017-03-21 Rinat Zelig <rinat@mellanox.com>
  1244. * arc-nps400-tbl.h: Add cp32/cp16 instructions format.
  1245. * arc-opc.c: Add F_NPS_NA, NPS_DMA_IMM_ENTRY, NPS_DMA_IMM_OFFSET.
  1246. (insert_nps_imm_offset): New function.
  1247. (extract_nps_imm_offset): New function.
  1248. (insert_nps_imm_entry): New function.
  1249. (extract_nps_imm_entry): New function.
  1250. 2017-03-17 Alan Modra <amodra@gmail.com>
  1251. PR 21248
  1252. * ppc-opc.c (powerpc_opcodes): Enable mfivor32, mfivor33,
  1253. mtivor32, and mtivor33 for e6500. Move mfibatl and mfibatu after
  1254. those spr mnemonics they alias. Similarly for mtibatl, mtibatu.
  1255. 2017-03-14 Kito Cheng <kito.cheng@gmail.com>
  1256. * riscv-opc.c (riscv_opcodes> <c.li>: Use the 'o' immediate encoding.
  1257. <c.andi>: Likewise.
  1258. <c.addiw> Likewise.
  1259. 2017-03-14 Kito Cheng <kito.cheng@gmail.com>
  1260. * riscv-opc.c (riscv_opcodes) <c.addi>: Use match_opcode.
  1261. 2017-03-13 Andrew Waterman <andrew@sifive.com>
  1262. * riscv-opc.c (riscv_opcodes) <srli/C>: Use match_opcode.
  1263. <srl> Likewise.
  1264. <srai> Likewise.
  1265. <sra> Likewise.
  1266. 2017-03-09 H.J. Lu <hongjiu.lu@intel.com>
  1267. * i386-gen.c (opcode_modifiers): Replace S with Load.
  1268. * i386-opc.h (S): Removed.
  1269. (Load): New.
  1270. (i386_opcode_modifier): Replace s with load.
  1271. * i386-opc.tbl: Add {disp8}, {disp32}, {swap}, {vex2}, {vex3}
  1272. and {evex}. Replace S with Load.
  1273. * i386-tbl.h: Regenerated.
  1274. 2017-03-09 H.J. Lu <hongjiu.lu@intel.com>
  1275. * i386-opc.tbl: Use CpuCET on rdsspq.
  1276. * i386-tbl.h: Regenerated.
  1277. 2017-03-08 Peter Bergner <bergner@vnet.ibm.com>
  1278. * ppc-dis.c (ppc_opts) <altivec>: Do not use PPC_OPCODE_ALTIVEC2;
  1279. <vsx>: Do not use PPC_OPCODE_VSX3;
  1280. 2017-03-08 Peter Bergner <bergner@vnet.ibm.com>
  1281. * ppc-opc.c (powerpc_opcodes) <lnia>: New extended mnemonic.
  1282. 2017-03-06 H.J. Lu <hongjiu.lu@intel.com>
  1283. * i386-dis.c (REG_0F1E_MOD_3): New enum.
  1284. (MOD_0F1E_PREFIX_1): Likewise.
  1285. (MOD_0F38F5_PREFIX_2): Likewise.
  1286. (MOD_0F38F6_PREFIX_0): Likewise.
  1287. (RM_0F1E_MOD_3_REG_7): Likewise.
  1288. (PREFIX_MOD_0_0F01_REG_5): Likewise.
  1289. (PREFIX_MOD_3_0F01_REG_5_RM_1): Likewise.
  1290. (PREFIX_MOD_3_0F01_REG_5_RM_2): Likewise.
  1291. (PREFIX_0F1E): Likewise.
  1292. (PREFIX_MOD_0_0FAE_REG_5): Likewise.
  1293. (PREFIX_0F38F5): Likewise.
  1294. (dis386_twobyte): Use PREFIX_0F1E.
  1295. (reg_table): Add REG_0F1E_MOD_3.
  1296. (prefix_table): Add PREFIX_MOD_0_0F01_REG_5,
  1297. PREFIX_MOD_3_0F01_REG_5_RM_1, PREFIX_MOD_3_0F01_REG_5_RM_2,
  1298. PREFIX_0F1E, PREFIX_MOD_0_0FAE_REG_5 and PREFIX_0F38F5. Update
  1299. PREFIX_0FAE_REG_6 and PREFIX_0F38F6.
  1300. (three_byte_table): Use PREFIX_0F38F5.
  1301. (mod_table): Use PREFIX_MOD_0_0F01_REG_5, PREFIX_MOD_0_0FAE_REG_5.
  1302. Add MOD_0F1E_PREFIX_1, MOD_0F38F5_PREFIX_2, MOD_0F38F6_PREFIX_0.
  1303. (rm_table): Add MOD_0F38F5_PREFIX_2, MOD_0F38F6_PREFIX_0,
  1304. RM_0F1E_MOD_3_REG_7. Use PREFIX_MOD_3_0F01_REG_5_RM_1 and
  1305. PREFIX_MOD_3_0F01_REG_5_RM_2.
  1306. * i386-gen.c (cpu_flag_init): Add CPU_CET_FLAGS.
  1307. (cpu_flags): Add CpuCET.
  1308. * i386-opc.h (CpuCET): New enum.
  1309. (CpuUnused): Commented out.
  1310. (i386_cpu_flags): Add cpucet.
  1311. * i386-opc.tbl: Add Intel CET instructions.
  1312. * i386-init.h: Regenerated.
  1313. * i386-tbl.h: Likewise.
  1314. 2017-03-06 Alan Modra <amodra@gmail.com>
  1315. PR 21124
  1316. * ppc-opc.c (extract_esync, extract_ls, extract_ral, extract_ram)
  1317. (extract_raq, extract_ras, extract_rbx): New functions.
  1318. (powerpc_operands): Use opposite corresponding insert function.
  1319. (Q_MASK): Define.
  1320. (powerpc_opcodes): Apply Q_MASK to all quad insns with even
  1321. register restriction.
  1322. 2017-02-28 Peter Bergner <bergner@vnet.ibm.com>
  1323. * disassemble.c Include "safe-ctype.h".
  1324. (disassemble_init_for_target): Handle s390 init.
  1325. (remove_whitespace_and_extra_commas): New function.
  1326. (disassembler_options_cmp): Likewise.
  1327. * arm-dis.c: Include "libiberty.h".
  1328. (NUM_ELEM): Delete.
  1329. (regnames): Use long disassembler style names.
  1330. Add force-thumb and no-force-thumb options.
  1331. (NUM_ARM_REGNAMES): Rename from this...
  1332. (NUM_ARM_OPTIONS): ...to this. Use ARRAY_SIZE.
  1333. (get_arm_regname_num_options): Delete.
  1334. (set_arm_regname_option): Likewise.
  1335. (get_arm_regnames): Likewise.
  1336. (parse_disassembler_options): Likewise.
  1337. (parse_arm_disassembler_option): Rename from this...
  1338. (parse_arm_disassembler_options): ...to this. Make static.
  1339. Use new FOR_EACH_DISASSEMBLER_OPTION macro to scan over options.
  1340. (print_insn): Use parse_arm_disassembler_options.
  1341. (disassembler_options_arm): New function.
  1342. (print_arm_disassembler_options): Handle updated regnames.
  1343. * ppc-dis.c: Include "libiberty.h".
  1344. (ppc_opts): Add "32" and "64" entries.
  1345. (ppc_parse_cpu): Use ARRAY_SIZE and disassembler_options_cmp.
  1346. (powerpc_init_dialect): Add break to switch statement.
  1347. Use new FOR_EACH_DISASSEMBLER_OPTION macro.
  1348. (disassembler_options_powerpc): New function.
  1349. (print_ppc_disassembler_options): Use ARRAY_SIZE.
  1350. Remove printing of "32" and "64".
  1351. * s390-dis.c: Include "libiberty.h".
  1352. (init_flag): Remove unneeded variable.
  1353. (struct s390_options_t): New structure type.
  1354. (options): New structure.
  1355. (init_disasm): Rename from this...
  1356. (disassemble_init_s390): ...to this. Add initializations for
  1357. current_arch_mask and option_use_insn_len_bits_p. Remove init_flag.
  1358. (print_insn_s390): Delete call to init_disasm.
  1359. (disassembler_options_s390): New function.
  1360. (print_s390_disassembler_options): Print using information from
  1361. struct 'options'.
  1362. * po/opcodes.pot: Regenerate.
  1363. 2017-02-28 Jan Beulich <jbeulich@suse.com>
  1364. * i386-dis.c (PCMPESTR_Fixup): New.
  1365. (VEX_W_0F3A60_P_2, VEX_W_0F3A61_P_2): Delete.
  1366. (prefix_table): Use PCMPESTR_Fixup.
  1367. (vex_len_table): Make VPCMPESTR{I,M} entries leaf ones and use
  1368. PCMPESTR_Fixup.
  1369. (vex_w_table): Delete VPCMPESTR{I,M} entries.
  1370. * i386-opc.tbl (pcmpestri, pcmpestrm, vpcmpestri, vpcmpestrm):
  1371. Split 64-bit and non-64-bit variants.
  1372. * opcodes/i386-tbl.h: Re-generate.
  1373. 2017-02-24 Richard Sandiford <richard.sandiford@arm.com>
  1374. * aarch64-tbl.h (OP_SVE_HMH, OP_SVE_VMU_HSD, OP_SVE_VMVU_HSD)
  1375. (OP_SVE_VMVV_HSD, OP_SVE_VMVVU_HSD, OP_SVE_VM_HSD, OP_SVE_VUVV_HSD)
  1376. (OP_SVE_VUV_HSD, OP_SVE_VU_HSD, OP_SVE_VVVU_H, OP_SVE_VVVU_S)
  1377. (OP_SVE_VVVU_HSD, OP_SVE_VVV_D, OP_SVE_VVV_D_H, OP_SVE_VVV_H)
  1378. (OP_SVE_VVV_HSD, OP_SVE_VVV_S, OP_SVE_VVV_S_B, OP_SVE_VVV_SD_BH)
  1379. (OP_SVE_VV_BHSDQ, OP_SVE_VV_HSD, OP_SVE_VZVV_HSD, OP_SVE_VZV_HSD)
  1380. (OP_SVE_V_HSD): New macros.
  1381. (OP_SVE_VMU_SD, OP_SVE_VMVU_SD, OP_SVE_VM_SD, OP_SVE_VUVV_SD)
  1382. (OP_SVE_VU_SD, OP_SVE_VVVU_SD, OP_SVE_VVV_SD, OP_SVE_VZVV_SD)
  1383. (OP_SVE_VZV_SD, OP_SVE_V_SD): Delete.
  1384. (aarch64_opcode_table): Add new SVE instructions.
  1385. (aarch64_opcode_table): Use imm_rotate{1,2} instead of imm_rotate
  1386. for rotation operands. Add new SVE operands.
  1387. * aarch64-asm.h (ins_sve_addr_ri_s4): New inserter.
  1388. (ins_sve_quad_index): Likewise.
  1389. (ins_imm_rotate): Split into...
  1390. (ins_imm_rotate1, ins_imm_rotate2): ...these two inserters.
  1391. * aarch64-asm.c (aarch64_ins_imm_rotate): Split into...
  1392. (aarch64_ins_imm_rotate1, aarch64_ins_imm_rotate2): ...these two
  1393. functions.
  1394. (aarch64_ins_sve_addr_ri_s4): New function.
  1395. (aarch64_ins_sve_quad_index): Likewise.
  1396. (do_misc_encoding): Handle "MOV Zn.Q, Qm".
  1397. * aarch64-asm-2.c: Regenerate.
  1398. * aarch64-dis.h (ext_sve_addr_ri_s4): New extractor.
  1399. (ext_sve_quad_index): Likewise.
  1400. (ext_imm_rotate): Split into...
  1401. (ext_imm_rotate1, ext_imm_rotate2): ...these two extractors.
  1402. * aarch64-dis.c (aarch64_ext_imm_rotate): Split into...
  1403. (aarch64_ext_imm_rotate1, aarch64_ext_imm_rotate2): ...these two
  1404. functions.
  1405. (aarch64_ext_sve_addr_ri_s4): New function.
  1406. (aarch64_ext_sve_quad_index): Likewise.
  1407. (aarch64_ext_sve_index): Allow quad indices.
  1408. (do_misc_decoding): Likewise.
  1409. * aarch64-dis-2.c: Regenerate.
  1410. * aarch64-opc.h (FLD_SVE_i3h, FLD_SVE_rot1, FLD_SVE_rot2): New
  1411. aarch64_field_kinds.
  1412. (OPD_F_OD_MASK): Widen by one bit.
  1413. (OPD_F_NO_ZR): Bump accordingly.
  1414. (get_operand_field_width): New function.
  1415. * aarch64-opc.c (fields): Add new SVE fields.
  1416. (operand_general_constraint_met_p): Handle new SVE operands.
  1417. (aarch64_print_operand): Likewise.
  1418. * aarch64-opc-2.c: Regenerate.
  1419. 2017-02-24 Richard Sandiford <richard.sandiford@arm.com>
  1420. * aarch64-tbl.h (aarch64_feature_simd_v8_3): Replace with...
  1421. (aarch64_feature_compnum): ...this.
  1422. (SIMD_V8_3): Replace with...
  1423. (COMPNUM): ...this.
  1424. (CNUM_INSN): New macro.
  1425. (aarch64_opcode_table): Use it for the complex number instructions.
  1426. 2017-02-24 Jan Beulich <jbeulich@suse.com>
  1427. * i386-dis.c (reg_table): REG_F6/1 and REG_F7/1 decode as TEST.
  1428. 2017-02-23 Sheldon Lobo <sheldon.lobo@oracle.com>
  1429. Add support for associating SPARC ASIs with an architecture level.
  1430. * include/opcode/sparc.h (sparc_asi): New sparc_asi struct.
  1431. * opcodes/sparc-opc.c (asi_table): Updated asi_table and encoding/
  1432. decoding of SPARC ASIs.
  1433. 2017-02-23 Jan Beulich <jbeulich@suse.com>
  1434. * i386-dis.c (get_valid_dis386): Don't special case VEX opcode
  1435. 82. For 3-byte VEX only special case opcode 77 in VEX_0F space.
  1436. 2017-02-21 Jan Beulich <jbeulich@suse.com>
  1437. * aarch64-asm.c (convert_bfc_to_bfm): Copy operand 0 to operand
  1438. 1 (instead of to itself). Correct typo.
  1439. 2017-02-14 Andrew Waterman <andrew@sifive.com>
  1440. * riscv-opc.c (riscv_opcodes): Add sfence.vma instruction and
  1441. pseudoinstructions.
  1442. 2017-02-15 Richard Sandiford <richard.sandiford@arm.com>
  1443. * aarch64-opc.c (aarch64_sys_regs): Add SVE registers.
  1444. (aarch64_sys_reg_supported_p): Handle them.
  1445. 2017-02-15 Claudiu Zissulescu <claziss@synopsys.com>
  1446. * arc-opc.c (UIMM6_20R): Define.
  1447. (SIMM12_20): Use above.
  1448. (SIMM12_20R): Define.
  1449. (SIMM3_5_S): Use above.
  1450. (UIMM7_A32_11R_S): Define.
  1451. (UIMM7_9_S): Use above.
  1452. (UIMM3_13R_S): Define.
  1453. (SIMM11_A32_7_S): Use above.
  1454. (SIMM9_8R): Define.
  1455. (UIMM10_A32_8_S): Use above.
  1456. (UIMM8_8R_S): Define.
  1457. (W6): Use above.
  1458. (arc_relax_opcodes): Use all above defines.
  1459. 2017-02-15 Vineet Gupta <vgupta@synopsys.com>
  1460. * arc-regs.h: Distinguish some of the registers different on
  1461. ARC700 and HS38 cpus.
  1462. 2017-02-14 Alan Modra <amodra@gmail.com>
  1463. PR 21118
  1464. * ppc-opc.c (powerpc_operands): Flag SPR, SPRG and TBR entries
  1465. with PPC_OPERAND_SPR. Flag PSQ and PSQM with PPC_OPERAND_GQR.
  1466. 2017-02-11 Stafford Horne <shorne@gmail.com>
  1467. Alan Modra <amodra@gmail.com>
  1468. * cgen-opc.c (cgen_lookup_insn): Delete buf and base_insn temps.
  1469. Use insn_bytes_value and insn_int_value directly instead. Don't
  1470. free allocated memory until function exit.
  1471. 2017-02-10 Nicholas Piggin <npiggin@gmail.com>
  1472. * ppc-opc.c (powerpc_opcodes) <scv, rfscv>: New mnemonics.
  1473. 2017-02-03 Nick Clifton <nickc@redhat.com>
  1474. PR 21096
  1475. * aarch64-opc.c (print_register_list): Ensure that the register
  1476. list index will fir into the tb buffer.
  1477. (print_register_offset_address): Likewise.
  1478. * tic6x-dis.c (print_insn_tic6x): Increase size of func_unit_buf.
  1479. 2017-01-27 Alexis Deruell <alexis.deruelle@gmail.com>
  1480. PR 21056
  1481. * tic6x-dis.c (print_insn_tic6x): Correct displaying of parallel
  1482. instructions when the previous fetch packet ends with a 32-bit
  1483. instruction.
  1484. 2017-01-24 Dimitar Dimitrov <dimitar@dinux.eu>
  1485. * pru-opc.c: Remove vague reference to a future GDB port.
  1486. 2017-01-20 Nick Clifton <nickc@redhat.com>
  1487. * po/ga.po: Updated Irish translation.
  1488. 2017-01-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
  1489. * arm-dis.c (coprocessor_opcodes): Fix vcmla mask and disassembly.
  1490. 2017-01-13 Yao Qi <yao.qi@linaro.org>
  1491. * m68k-dis.c (match_insn_m68k): Extend comments. Return -1
  1492. if FETCH_DATA returns 0.
  1493. (m68k_scan_mask): Likewise.
  1494. (print_insn_m68k): Update code to handle -1 return value.
  1495. 2017-01-13 Yao Qi <yao.qi@linaro.org>
  1496. * m68k-dis.c (enum print_insn_arg_error): New.
  1497. (NEXTBYTE): Replace -3 with
  1498. PRINT_INSN_ARG_MEMORY_ERROR.
  1499. (NEXTULONG): Likewise.
  1500. (NEXTSINGLE): Likewise.
  1501. (NEXTDOUBLE): Likewise.
  1502. (NEXTDOUBLE): Likewise.
  1503. (NEXTPACKED): Likewise.
  1504. (FETCH_ARG): Likewise.
  1505. (FETCH_DATA): Update comments.
  1506. (print_insn_arg): Update comments. Replace magic numbers with
  1507. enum.
  1508. (match_insn_m68k): Likewise.
  1509. 2017-01-12 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
  1510. * i386-dis.c (enum): Add PREFIX_EVEX_0F3855, EVEX_W_0F3855_P_2.
  1511. * i386-dis-evex.h (evex_table): Updated.
  1512. * i386-gen.c (cpu_flag_init): Add CPU_AVX512_VPOPCNTDQ_FLAGS,
  1513. CPU_ANY_AVX512_VPOPCNTDQ_FLAGS. Update CPU_ANY_AVX512F_FLAGS.
  1514. (cpu_flags): Add CpuAVX512_VPOPCNTDQ.
  1515. * i386-opc.h (enum): (AVX512_VPOPCNTDQ): New.
  1516. (i386_cpu_flags): Add cpuavx512_vpopcntdq.
  1517. * i386-opc.tbl: Add Intel AVX512_VPOPCNTDQ instructions.
  1518. * i386-init.h: Regenerate.
  1519. * i386-tbl.h: Ditto.
  1520. 2017-01-12 Yao Qi <yao.qi@linaro.org>
  1521. * msp430-dis.c (msp430_singleoperand): Return -1 if
  1522. msp430dis_opcode_signed returns false.
  1523. (msp430_doubleoperand): Likewise.
  1524. (msp430_branchinstr): Return -1 if
  1525. msp430dis_opcode_unsigned returns false.
  1526. (msp430x_calla_instr): Likewise.
  1527. (print_insn_msp430): Likewise.
  1528. 2017-01-05 Nick Clifton <nickc@redhat.com>
  1529. PR 20946
  1530. * frv-desc.c (lookup_mach_via_bfd_name): Return NULL if the name
  1531. could not be matched.
  1532. (frv_cgen_cpu_open): Allow for lookup_mach_via_bfd_name returning
  1533. NULL.
  1534. 2017-01-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
  1535. * aarch64-tbl.h (RCPC, RCPC_INSN): Define.
  1536. (aarch64_opcode_table): Use RCPC_INSN.
  1537. 2017-01-03 Kito Cheng <kito.cheng@gmail.com>
  1538. * riscv-opc.c (riscv-opcodes): Add support for the "q" ISA
  1539. extension.
  1540. * riscv-opcodes/all-opcodes: Likewise.
  1541. 2017-01-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
  1542. * riscv-dis.c (print_insn_args): Add fall through comment.
  1543. 2017-01-03 Nick Clifton <nickc@redhat.com>
  1544. * po/sr.po: New Serbian translation.
  1545. * configure.ac (ALL_LINGUAS): Add sr.
  1546. * configure: Regenerate.
  1547. 2017-01-02 Alan Modra <amodra@gmail.com>
  1548. * epiphany-desc.h: Regenerate.
  1549. * epiphany-opc.h: Regenerate.
  1550. * fr30-desc.h: Regenerate.
  1551. * fr30-opc.h: Regenerate.
  1552. * frv-desc.h: Regenerate.
  1553. * frv-opc.h: Regenerate.
  1554. * ip2k-desc.h: Regenerate.
  1555. * ip2k-opc.h: Regenerate.
  1556. * iq2000-desc.h: Regenerate.
  1557. * iq2000-opc.h: Regenerate.
  1558. * lm32-desc.h: Regenerate.
  1559. * lm32-opc.h: Regenerate.
  1560. * m32c-desc.h: Regenerate.
  1561. * m32c-opc.h: Regenerate.
  1562. * m32r-desc.h: Regenerate.
  1563. * m32r-opc.h: Regenerate.
  1564. * mep-desc.h: Regenerate.
  1565. * mep-opc.h: Regenerate.
  1566. * mt-desc.h: Regenerate.
  1567. * mt-opc.h: Regenerate.
  1568. * or1k-desc.h: Regenerate.
  1569. * or1k-opc.h: Regenerate.
  1570. * xc16x-desc.h: Regenerate.
  1571. * xc16x-opc.h: Regenerate.
  1572. * xstormy16-desc.h: Regenerate.
  1573. * xstormy16-opc.h: Regenerate.
  1574. 2017-01-02 Alan Modra <amodra@gmail.com>
  1575. Update year range in copyright notice of all files.
  1576. For older changes see ChangeLog-2016
  1577. Copyright (C) 2017 Free Software Foundation, Inc.
  1578. Copying and distribution of this file, with or without modification,
  1579. are permitted in any medium without royalty provided the copyright
  1580. notice and this notice are preserved.
  1581. Local Variables:
  1582. mode: change-log
  1583. left-margin: 8
  1584. fill-column: 74
  1585. version-control: never
  1586. End: