ChangeLog-2007 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869
  1. 2007-12-31 H.J. Lu <hongjiu.lu@intel.com>
  2. * i386-dis.c (prefix_table): Use "%LQ" on cvtsi2ss/cvtsi2sd.
  3. (putop): Handle '%' and "LQ".
  4. * i386-opc.tbl: Remove IgnoreSize from cvtsi2ss/cvtsi2sd.
  5. * i386-tbl.h: Regenerated.
  6. 2007-12-28 H.J. Lu <hongjiu.lu@intel.com>
  7. * i386-gen.c (cpu_flag_init): Add CpuSSE4_1_Or_5 to
  8. CPU_SSE4_1_FLAGS, CPU_SSE4_2_FLAGS and CPU_SSE5_FLAGS.
  9. (cpu_flags): Add CpuSSE4_1_Or_5.
  10. * i386-init.h: Regenerated.
  11. * i386-tbl.h: Likewise.
  12. * i386-opc.h (CpuSSE4_1_Or_5): New.
  13. (CpuLM): Updated.
  14. (i386_cpu_flags): Add cpusse4_1_or_5.
  15. * i386-opc.tbl: Use CpuSSE4_1_Or_5 instead of CpuSSE4_1|CpuSSE5
  16. on ptest, roundpd, roundps, roundsd and roundss.
  17. 2007-12-23 H.J. Lu <hongjiu.lu@intel.com>
  18. * i386-gen.c (opcode_modifiers): Add OldGcc, ATTMnemonic and
  19. IntelMnemonic.
  20. * i386-opc.h (OldGcc): New.
  21. (ATTMnemonic): Likewise.
  22. (IntelMnemonic): Likewise.
  23. (Opcode_Modifier_Max): Updated.
  24. (i386_opcode_modifier): Add oldgcc, attmnemonic and
  25. intelmnemonic.
  26. * i386-opc.tbl: Update fadd, fdiv, fdivp, fdivr, fdivrp, fmul,
  27. fsub, fsubp, fsubr and fsubrp with OldGcc, ATTMnemonic and
  28. IntelMnemonic.
  29. * i386-tbl.h: Regeneratd.
  30. 2007-12-22 H.J. Lu <hongjiu.lu@intel.com>
  31. * i386-dis.c (intel_mnemonic): New.
  32. (print_i386_disassembler_options): Display att-mnemonic and
  33. intel-mnemonic options.
  34. (print_insn): Handle att-mnemonic and intel-mnemonic.
  35. (float_reg): Replace SYSV386_COMPAT with "!M" and "M".
  36. (putop): Handle "!M" and "M".
  37. 2007-12-21 H.J. Lu <hongjiu.lu@intel.com>
  38. * Makefile.am (i386-gen.o): Also depend on
  39. $(srcdir)/../include/opcode/i386.h.
  40. * Makefile.in: Regenerated.
  41. 2007-11-29 Mark Shinwell <shinwell@codesourcery.com>
  42. * mips-dis.c (mips_arch_choices): Add Loongson-2E and -2F
  43. entries.
  44. * mips-opc.c (IL2E): New.
  45. (IL2F): New.
  46. (mips_builtin_opcodes): Add Loongson-2E and -2F instructions.
  47. Allow movz and movn for Loongson-2E and -2F. Add movnz entry.
  48. Move coprocessor encodings to the end of the table. Allow
  49. certain MIPS V .ps instructions on the Loongson-2E and -2F.
  50. 2007-11-29 Mark Shinwell <shinwell@codesourcery.com>
  51. * mips-opc.c (I3_32, I3_33, I4_32, I4_33, I5_33): New.
  52. (mips_builtin_opcodes): Use these new I* values.
  53. 2007-11-27 Andreas Krebbel <krebbel1@de.ibm.com>
  54. * s390-opc.txt ("tcet", "tcdt", "tcxt", "tget", "tgdt",
  55. "tgxt"): Removed.
  56. ("tdcet", "tdcdt", "tdcxt", "tdget", "tdgdt", "tdgxt"): Added.
  57. 2007-11-14 H.J. Lu <hongjiu.lu@intel.com>
  58. * ia64-ic.tbl: Updated for Itanium 9100 series.
  59. * ia64-raw.tbl: Likewise.
  60. * ia64-waw.tbl: Likewise.
  61. * ia64-asmtab.c: Regenerated.
  62. 2007-11-14 Tristan Gingold <gingold@adacore.com>
  63. * ia64-dis.c (print_insn_ia64): Handle ar.ruc.
  64. * ia64-gen.c (lookup_regindex): Likewise.
  65. 2007-11-07 Jens Arnold <jens@jens-arnold.net>
  66. PR gas/5228
  67. * m68k-opc.c (m68k_opcodes): Fix coldfire msac.w instructions with
  68. parallel loads.
  69. 2007-11-07 Tristan Gingold <gingold@adacore.com>
  70. * ia64-dis.c (print_insn_ia64): Generate symbolic names for cr
  71. registers instead of register number.
  72. 2007-11-07 David O'Brien <obrien@FreeBSD.org>
  73. * arm-dis.c (arm_opcodes): Remove superflous escapes of percent
  74. operators.
  75. 2007-11-06 Peter Bergner <bergner@vnet.ibm.com>
  76. * ppc-opc.c (powerpc_opcodes): Remove the dcffix and dcffix. opcodes
  77. which are not included in the "Preliminary Decimal Floating-Point
  78. Architecture" document.
  79. 2007-11-01 H.J. Lu <hongjiu.lu@intel.com>
  80. * i386-gen.c (opcode_modifiers): Replace No_xSuf with
  81. No_ldSuf.
  82. * i386-opc.tbl: Likewise.
  83. * i386-opc.h (No_xSuf): Renamed to ...
  84. (No_ldSuf): This.
  85. (FWait): Updated.
  86. 2007-11-01 H.J. Lu <hongjiu.lu@intel.com>
  87. * i386-gen.c (opcode_modifiers): Add ByteOkIntel, ToDword,
  88. ToQword and AddrPrefixOp0.
  89. * i386-opc.h (ByteOkIntel): New.
  90. (ToDword): Likewise.
  91. (ToQword): Likewise.
  92. (AddrPrefixOp0): Likewise.
  93. (IsPrefix): Updated.
  94. (i386_opcode_modifier): Add byteokintel, todword, toqword
  95. and addrprefixop0.
  96. * i386-opc.tbl (cvtss2si): Add ToQword.
  97. (cvttss2si): Likewise.
  98. (cvtsd2si): Add ToDword.
  99. (cvttsd2si): Likewise.
  100. (monitor): Add AddrPrefixOp0.
  101. (invlpga): Likewise.
  102. (vmload): Likewise.
  103. (vmrun): Likewise.
  104. (vmsave): Likewise.
  105. (pextrb): Add ByteOkIntel.
  106. (pinsrb): Likewise.
  107. * i386-tbl.h: Regenerated.
  108. 2007-10-31 H.J. Lu <hongjiu.lu@intel.com>
  109. * i386-dis.c (USE_REG_TABLE): Defined as the previous one + 1.
  110. (USE_REG_TABLE): Likewise.
  111. (USE_MOD_TABLE): Likewise.
  112. (USE_RM_TABLE): Likewise.
  113. (USE_PREFIX_TABLE): Likewise.
  114. (USE_X86_64_TABLE): Likewise.
  115. (USE_3BYTE_TABLE): Likewise.
  116. 2007-10-26 H.J. Lu <hongjiu.lu@intel.com>
  117. * i386-dis.c (MOD_0F2B_PREFIX_0...MOD_0F2B_PREFIX_3): New.
  118. (MOD_0F51): Likewise.
  119. (MOD_0FD7): Likewise.
  120. (MOD_0FE7_PREFIX_2): Likewise.
  121. (MOD_0F382A_PREFIX_2): Likewise.
  122. (MOD_0F71_REG_2): Updated.
  123. (MOD_0FF0_PREFIX_3): Likewise.
  124. (MOD_62_32BIT): Likewise.
  125. (dis386_twobyte): Use MOD_0F51 and MOD_0FD7.
  126. (prefix_table): Use MOD_0F2B_PREFIX_0...MOD_0F2B_PREFIX_3,
  127. MOD_0FE7_PREFIX_2 and MOD_0F382A_PREFIX_2.
  128. (mod_table): Add MOD_0F2B_PREFIX_0...MOD_0F2B_PREFIX_3,
  129. MOD_0F51, MOD_0FD7 and MOD_0F382A_PREFIX_2.
  130. 2007-10-26 Nick Clifton <nickc@redhat.com>
  131. * arm-dis.c (print_insn): Check for a symtab that exists but is
  132. empty.
  133. 2007-10-24 Alan Modra <amodra@bigpond.net.au>
  134. * po/POTFILES.in: Regenerate.
  135. 2007-10-23 H.J. Lu <hongjiu.lu@intel.com>
  136. * i386-dis.c (OP_SIMD_Suffix): Renamed to ...
  137. (CMP_Fixup): This. Rewrite.
  138. (OPSIMD): Renamed to ...
  139. (CMP): This. Updated.
  140. (prefix_table): Update PREFIX_0FC2 entry.
  141. 2007-10-22 H.J. Lu <hongjiu.lu@intel.com>
  142. * i386-dis.c (prefix_table): Reordered by opcode.
  143. (mod_table): Likewise.
  144. 2007-10-19 H.J. Lu <hongjiu.lu@intel.com>
  145. * i386-dis.c (prefix_table): Use XS on psrldq and pslldq.
  146. 2007-10-17 Nathan Sidwell <nathan@codesourcery.com>
  147. * m68k-opc.c (m68k_opcodes): Correct move sr and ccr masks for
  148. coldfire.
  149. 2007-10-15 Peter Bergner <bergner@vnet.ibm.com>
  150. * ppc-opc.c (powerpc_opcodes): Fix the first two operands of
  151. dquaiq. to use the TE and FRT macros.
  152. 2007-10-15 Peter Bergner <bergner@vnet.ibm.com>
  153. * ppc-opc.c (TE): Correct signedness.
  154. (powerpc_opcodes): Sort psq_st and psq_stu according to major
  155. opcode number.
  156. 2007-10-15 H.J. Lu <hongjiu.lu@intel.com>
  157. * i386-dis.c (dis386_twobyte): Reformat.
  158. (prefix_table): Likewise.
  159. (three_byte_table): Likewise.
  160. 2007-10-15 Alan Modra <amodra@bigpond.net.au>
  161. * mcore-dis.c (print_insn_mcore): Protect "fprintf" var against
  162. macro expansion.
  163. 2007-10-12 H.J. Lu <hongjiu.lu@intel.com>
  164. * i386-gen.c (opcode_modifiers): Add FirstXmm0.
  165. * i386-opc.h (FirstXmm0): New.
  166. (IsPrefix): Updated.
  167. (i386_opcode_modifier): Add firstxmm0.
  168. * i386-opc.tbl (blendvpd): Replace RegKludge with FirstXmm0.
  169. (blendvps): Likewise.
  170. (pblendvb): Likewise.
  171. * i386-tbl.h: Regenerated.
  172. 2007-10-12 H.J. Lu <hongjiu.lu@intel.com>
  173. * i386-dis.c (prefix_table): Reformat pblendvb and blendvps.
  174. 2007-10-10 H.J. Lu <hongjiu.lu@intel.com>
  175. * i386-dis.c (v_mode): Defined as previous one + 1.
  176. (w_mode): Likewise.
  177. (d_mode): Likewise.
  178. (q_mode): Likewise.
  179. (t_mode): Likewise.
  180. (x_mode): Likewise.
  181. (m_mode): Likewise.
  182. (cond_jump_mode): Likewise.
  183. (loop_jcxz_mode): Likewise.
  184. (dq_mode): Likewise.
  185. (dqw_mode): Likewise.
  186. (f_mode): Likewise.
  187. (const_1_mode): Likewise.
  188. (stack_v_mode): Likewise.
  189. (z_mode): Likewise.
  190. (o_mode): Likewise.
  191. (dqb_mode): Likewise.
  192. (dqd_mode): Likewise.
  193. (es_reg): Likewise.
  194. (cs_reg): Likewise.
  195. (ss_reg): Likewise.
  196. (ds_reg): Likewise.
  197. (fs_reg): Likewise.
  198. (gs_reg): Likewise.
  199. (eAX_reg): Likewise.
  200. (eCX_reg): Likewise.
  201. (eDX_reg): Likewise.
  202. (eBX_reg): Likewise.
  203. (eSP_reg): Likewise.
  204. (eBP_reg): Likewise.
  205. (eSI_reg): Likewise.
  206. (eDI_reg): Likewise.
  207. (al_reg): Likewise.
  208. (cl_reg): Likewise.
  209. (dl_reg): Likewise.
  210. (bl_reg): Likewise.
  211. (ah_reg): Likewise.
  212. (ch_reg): Likewise.
  213. (dh_reg): Likewise.
  214. (bh_reg): Likewise.
  215. (ax_reg): Likewise.
  216. (cx_reg): Likewise.
  217. (dx_reg): Likewise.
  218. (bx_reg): Likewise.
  219. (sp_reg): Likewise.
  220. (bp_reg): Likewise.
  221. (si_reg): Likewise.
  222. (di_reg): Likewise.
  223. (rAX_reg): Likewise.
  224. (rCX_reg): Likewise.
  225. (rDX_reg): Likewise.
  226. (rBX_reg): Likewise.
  227. (rSP_reg): Likewise.
  228. (rBP_reg): Likewise.
  229. (rSI_reg): Likewise.
  230. (rDI_reg): Likewise.
  231. (z_mode_ax_reg): Likewise.
  232. (indir_dx_reg): Likewise.
  233. (DREX_OC1): Updated.
  234. (DREX_NO_OC0): Likewise.
  235. (DREX_MASK): Likewise.
  236. (MAX_BYTEMODE): New. Issue an error if MAX_BYTEMODE is not
  237. less than DREX_OC1.
  238. 2007-10-08 H.J. Lu <hongjiu.lu@intel.com>
  239. * i386-dis.c: Updated comments for 'Y'.
  240. (putop): Don't add 'q' for 'Y' if suffix_always isn't true.
  241. 2007-10-08 Maciej W. Rozycki <macro@linux-mips.org>
  242. * opcodes/mips-dis.c (mips_cp0_names_r3000): New definition.
  243. (mips_cp0_names_r4000): Likewise.
  244. (mips_arch_choices): Link to the above as appropriate.
  245. 2007-10-08 Nick Clifton <nickc@redhat.com>
  246. * configure.in (SHARED_DEPENDENCIES): Change non-cygwin dependency
  247. to be ../bfd/libbfd.la.
  248. * configure: Regenerate.
  249. 2007-10-05 H.J. Lu <hongjiu.lu@intel.com>
  250. * i386-dis.c (dis386_twobyte): Add getsec.
  251. * i386-gen.c (cpu_flags): Add CpuSMX.
  252. * i386-opc.h (CpuSMX): New.
  253. (CpuSSSE3): Updated.
  254. (i386_cpu_flags): Add cpusmx.
  255. * i386-opc.tbl: Add getsec.
  256. * i386-init.h: Regenerated.
  257. * i386-tbl.h: Likewise.
  258. 2007-10-05 H.J. Lu <hongjiu.lu@intel.com>
  259. * i386-dis.c (reg_table): Use "{ XX }" on "(bad)".
  260. (prefix_table): Likewise.
  261. 2007-10-04 H.J. Lu <hongjiu.lu@intel.com>
  262. * i386-dis.c (dis386_twobyte): Use EXx instead of EXq on
  263. unpckhpX and unpckhpX.
  264. 2007-10-04 David Daney <ddaney@avtrex.com>
  265. * mips-opc.c (mips_builtin_opcodes): Mark lwxc1 as working on FP_S
  266. registers.
  267. 2007-10-04 H.J. Lu <hongjiu.lu@intel.com>
  268. * i386-dis.c (MOD_0F12_PREFIX_0): Use "movlps" and "movhlps"
  269. instead of "movlpX" and "movhlpX", respectively.
  270. (MOD_0F16_PREFIX_0): Use "movhps" and "movlhps" instead of
  271. "movhpX" and "movlhpX", respectively.
  272. 2007-10-04 Nick Clifton <nickc@redhat.com>
  273. * configure.in (WIN32LDFLAGS): Rename to SHARED_LDFLAGS.
  274. (WIN32LIBADD): Rename to SHARED_LIBADD
  275. (SHARED_DEPENDENCIES): New exported variable.
  276. (enable_shared): Add dependency upon libbfd.la for non-cygwin
  277. based shared library builds.
  278. * Makefile.am (libopcodes_la_DEPENDENCIES): Append
  279. SHARED_DEPENDENCIES.
  280. (libopcodes_la_LIBADD): Rename WIN32LIBADD to SHARED_LIBADD.
  281. (libopcodes_la_LDFLAGS): Rename WIN32LDFLAGS to SHARED_LDFLAGS.
  282. * configure: Regenerate.
  283. * Makefile.in: Regenerate.
  284. PR gas/5100
  285. * arc-opc.c (insert_offset): Fix spelling mistake in error
  286. message.
  287. 2007-10-03 H.J. Lu <hongjiu.lu@intel.com>
  288. * i386-dis.c (OP_REG): Set add to 0 only when needed.
  289. (OP_C): Likewise.
  290. (OP_D): Likewise.
  291. (OP_MMX): Likewise.
  292. (OP_XMM): Likewise.
  293. (OP_EM): Likewise.
  294. (OP_MXC): Likewise.
  295. (OP_EX): Likewise.
  296. 2007-10-03 H.J. Lu <hongjiu.lu@intel.com>
  297. * i386-opc.tbl: Update SSE comments.
  298. 2007-10-01 H.J. Lu <hongjiu.lu@intel.com>
  299. * i386-dis.c (THREE_BYTE_0FBA): Renamed to ...
  300. (THREE_BYTE_0F7B): This.
  301. (dis386_twobyte): Updated.
  302. (three_byte_table): Updated comments.
  303. 2007-10-01 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
  304. * cr16-opc.c: Updated the branch on condition instructions with
  305. RELAXABLE flag.
  306. 2007-09-30 H.J. Lu <hongjiu.lu@intel.com>
  307. * 386-dis.c (prefix_table): Reformat comment.
  308. 2007-09-29 H.J. Lu <hongjiu.lu@intel.com>
  309. * 386-dis.c (USE_GROUPS): Renamed to ...
  310. (USE_REG_TABLE): This.
  311. (USE_OPC_EXT_TABLE): Renamed to ...
  312. (USE_MOD_TABLE): This.
  313. (USE_OPC_EXT_RM_TABLE): Renamed to ...
  314. (USE_RM_TABLE): This.
  315. (USE_XXX_TABLE): Reordered.
  316. (GRP): Renamed to ...
  317. (REG_TABLE): This.
  318. (OPC_EXT_TABLE): Renamed to ...
  319. (MOD_TABLE): This.
  320. (OPC_EXT_RM_TABLE): Renamed to ...
  321. (RM_TABLE): This.
  322. (GRP_XXX): Renamed to ...
  323. (REG_XXX): This.
  324. (PREGRP_XXX): Renamed to ...
  325. (PREFIX_XXX): This.
  326. (OPC_EXT_XXX): Renamed to ...
  327. (MOD_XXX): This.
  328. (OPC_EXT_RM_XXX): Renamed to ...
  329. (RM_XXX): This.
  330. (grps): Renamed to ...
  331. (reg_table): This
  332. (prefix_user_table): Renamed to ...
  333. (prefix_table): This
  334. (opc_ext_table): Renamed to ...
  335. (mod_table): This
  336. (opc_ext_rm_table): Renamed to ...
  337. (rm_table): This
  338. (OPC_EXT_RM_XXX): Likewise.
  339. (dis386): Updated.
  340. (dis386_twobyte): Likewise.
  341. (reg_table): Likewise.
  342. (prefix_table): Likewise.
  343. (x86_64_table): Likewise.
  344. (three_byte_table): Likewise.
  345. (mod_table): Likewise.
  346. (rm_table): Likewise.
  347. (get_valid_dis386): Likewise.
  348. 2007-09-28 H.J. Lu <hongjiu.lu@intel.com>
  349. * 386-dis.c (USE_PREFIX_USER_TABLE): Renamed to ...
  350. (USE_PREFIX_TABLE): This.
  351. (X86_64_SPECIAL): Renamed to ...
  352. (USE_X86_64_TABLE): This.
  353. (IS_3BYTE_OPCODE): Renamed to ...
  354. (USE_3BYTE_TABLE): This.
  355. (GRPXXX): Removed.
  356. (PREGRPXXX): Likewise.
  357. (X86_64_XXX): Likewise.
  358. (THREE_BYTE_XXX): Likewise.
  359. (OPC_EXT_XXX): Likewise.
  360. (OPC_EXT_RM_XXX): Likewise.
  361. (DIS386): New.
  362. (GRP): Likewise.
  363. (PREGRP): Likewise.
  364. (X86_64_TABLE): Likewise.
  365. (THREE_BYTE_TABLE): Likewise.
  366. (OPC_EXT_TABLE): Likewise.
  367. (OPC_EXT_RM_TABLE): Likewise.
  368. (GRP_XXX): Likewise.
  369. (PREGRP_XXX): Likewise.
  370. (X86_64_XXX): Likewise.
  371. (THREE_BYTE_XXX): Likewise.
  372. (OPC_EXT_XXX): Likewise.
  373. (OPC_EXT_RM_XXX): Likewise.
  374. (dis386): Updated.
  375. (dis386_twobyte): Likewise.
  376. (grps): Likewise.
  377. (prefix_user_table): Likewise.
  378. (x86_64_table): Likewise.
  379. (three_byte_table): Likewise.
  380. (opc_ext_table): Likewise.
  381. (opc_ext_rm_table): Likewise.
  382. (get_valid_dis386): Likewise.
  383. 2007-09-27 H.J. Lu <hongjiu.lu@intel.com>
  384. * i386-dis.c (dis386): Swap X86_64_27 with OPC_EXT_2.
  385. (x86_64_table): Likewise.
  386. (opc_ext_table): Likewise.
  387. 2007-09-27 H.J. Lu <hongjiu.lu@intel.com>
  388. PR binutils/5072
  389. * i386-dis.c: Update comments on '{', '}' and '|' to support
  390. only AT&T and Intel modes.
  391. (X86_64_4...X86_64_27): New.
  392. (dis386): Updated. Use X86_64_4...X86_64_21.
  393. (dis386_twobyte): Updated.
  394. (float_mem): Likewise.
  395. (x86_64_table): Add X86_64_4...X86_64_27.
  396. (opc_ext_table): Updated. Use X86_64_22...X86_64_27.
  397. (putop): Updated handling of '{', '}' and '|' to support only
  398. AT&T and Intel modes.
  399. 2007-09-27 Kazu Hirata <kazu@codesourcery.com>
  400. * m68k-dis.c (print_insn_arg): Use %mbo instead of %mbb.
  401. 2007-09-26 James E. Wilson <wilson@specifix.com>
  402. * ia64-gen.c (print_dependency_table): Fix typo in last patch.
  403. 2007-09-26 Nick Clifton <nickc@redhat.com>
  404. * mt-asm.c (parse_imm16): Reword error message in order to allow
  405. it to be translated properly.
  406. * ia64-gen.c (print_dependency_table): Likewise.
  407. * mips-dis.c (print_insn_args): Likewise.
  408. 2007-09-26 Jan Beulich <jbeulich@novell.com>
  409. * i386-dis.c (OP_E_extended): Distinguish rip- and eip-
  410. relative addressing. Update used_prefixes based on whether any
  411. base or index register was printed.
  412. 2007-09-26 Jan Beulich <jbeulich@novell.com>
  413. * i386-opc.h (RegEip): Define.
  414. (RegEiz): Adjust.
  415. * i386-reg.tbl: Add eip. Mark rip and eip with RegRex64.
  416. * i386-tbl.h: Re-generate.
  417. 2007-09-25 H.J. Lu <hongjiu.lu@intel.com>
  418. * i386-gen.c (process_i386_opcodes): Process opcode_length.
  419. * i386-opc.h (template): Add opcode_length.
  420. * 386-opc.tbl: Likewise.
  421. * i386-tbl.h: Regenerated.
  422. 2007-09-21 H.J. Lu <hongjiu.lu@intel.com>
  423. * i386-opc.h: Adjust whitespaces.
  424. 2007-09-21 Dave Brolley <brolley@redhat.com>
  425. * mep-desc.c: Regenerated.
  426. 2007-09-20 H.J. Lu <hongjiu.lu@intel.com>
  427. * i386-dis.c (OP_E_extended): Display eiz for [eiz*1 + offset].
  428. 2007-09-20 H.J. Lu <hongjiu.lu@intel.com>
  429. PR 658
  430. * 386-dis.c (index64): New.
  431. (index32): Likewise.
  432. (intel_index64): Likewise.
  433. (intel_index32): Likewise.
  434. (att_index64): Likewise.
  435. (att_index32): Likewise.
  436. (print_insn): Set index64 and index32.
  437. (OP_E_extended): Use index64/index32 for index register for
  438. SIB with INDEX == 4.
  439. * i386-opc.h (RegEiz): New.
  440. (RegRiz): Likewise.
  441. * i386-reg.tbl: Add eiz and riz.
  442. * i386-tbl.h: Regenerated.
  443. 2007-09-19 H.J. Lu <hongjiu.lu@intel.com>
  444. * i386-dis.c (OP_E_extended): Always display scale for memory.
  445. 2007-09-17 H.J. Lu <hongjiu.lu@intel.com>
  446. * i386-opc.h (RegRip): New.
  447. * i386-reg.tbl (rip): Use RegRip for reg_num.
  448. * i386-tbl.h: Regenerated.
  449. 2007-09-17 Nick Clifton <nickc@redhat.com>
  450. * po/es.po: Updated Spanish translation.
  451. 2007-09-14 H.J. Lu <hongjiu.lu@intel.com>
  452. * Makefile.am: Run "make dep-am".
  453. * Makefile.in: Regenerate.
  454. 2007-09-14 Michael Meissner <michael.meissner@amd.com>
  455. Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
  456. Tony Linthicum <tony.linthicum@amd.com>
  457. * i386-opc.h (CpuSSE5): New macro.
  458. (i386_cpu_flags): Add Drex, Drexv and Drexc.
  459. * i386-gen.c (cpu_flag_init): Add CPU_SSE5_FLAGS.
  460. (operand_type_init): Add CpuSSE5.
  461. (opcode_modifiers): Add Drex, Drexv and Drexc.
  462. (i386_opcode_modifier): Ditto.
  463. * i386-opc.tbl (fmaddps,fmaddpd,fmaddss,fmaddsd): Define SSE5
  464. instructions here.
  465. (fmsubps,fmsubpd,fmsubss,fmsubsd): Ditto.
  466. (fnmaddps,fnmaddpd,fnmaddss,fnmaddsd): Ditto.
  467. (fnmsubps,fnmsubpd,fnmsubss,fnmsubsd): Ditto.
  468. (pmacssww,pmacsww,pmacsswd,pmacswd): Ditto.
  469. (pmacssdd,pmacsdd,pmacssdql,pmacssdqh): Ditto.
  470. (pmacsdql,pmacsdqh,pmadcsswd,pmadcswd): Ditto.
  471. (phaddbw,phaddbd,phaddbq,phaddwd): Ditto.
  472. (phaddwq,phadddq,phaddubw,phaddubd): Ditto.
  473. (phaddubq,phadduwd,phadduwq,phaddudq): Ditto.
  474. (phsubbw,phsubwd,phsubdq): Ditto.
  475. (pcmov,pperm,permps,permpd): Ditto.
  476. (protb,protw,protd,protq): Ditto.
  477. (pshlb,pshlw,pshld,pshlq): Ditto.
  478. (pshab,pshaw,pshad,pshaq): Ditto.
  479. (comps,comeqps,comltps,comungeps,comleps,comungtps): Ditto.
  480. (comunordps,comneps,comneqps,comnltps,comugeps): Ditto.
  481. (comnleps,comugtps,comordps,comueqps,comultps): Ditto.
  482. (comngeps,comuleps,comngtps,comfalseps,comuneps): Ditto.
  483. (comuneqps,comunltps,comgeps,comunleps,comgtps,comtrueps): Ditto.
  484. (compd,comeqpd,comltpd,comungepd,comlepd,comungtpd,comunordpd): Ditto.
  485. (comnepd,comneqpd,comnltpd,comugepd,comnlepd,comugtpd): Ditto.
  486. (comordpd,comueqpd,comultpd,comngepd,comulepd,comngtpd): Ditto.
  487. (comfalsepd,comunepd,comuneqpd,comunltpd,comgepd): Ditto.
  488. (comunlepd,comgtpd,comtruepd): Ditto.
  489. (comss,comeqss,comltss,comungess,comless,comungtss,comunordss): Ditto.
  490. (comness,comneqss,comnltss,comugess,comnless,comugtss): Ditto.
  491. (comordss,comueqss,comultss,comngess,comuless,comngtss): Ditto.
  492. (comfalsess,comuness,comuneqss,comunltss,comgess): Ditto.
  493. (comunless,comgtss,comtruess): Ditto.
  494. (comsd,comeqsd,comltsd,comungesd,comlesd,comungtsd,comunordsd): Ditto.
  495. (comnesd,comneqsd,comnltsd,comugesd,comnlesd,comugtsd): Ditto.
  496. (comordsd,comueqsd,comultsd,comngesd,comulesd,comngtsd): Ditto.
  497. (comfalsesd,comunesd,comuneqsd,comunltsd,comgesd): Ditto.
  498. (comunlesd,comgtsd,comtruesd): Ditto.
  499. (pcomub,pcomltub,pcomleub,pcomgtub,pcomgeub,pcomequb): Ditto.
  500. (pcomnequb,pcomneub): Ditto.
  501. (pcomuw,pcomltuw,pcomleuw,pcomgtuw,pcomgeuw,pcomequw): Ditto.
  502. (pcomnequw,pcomneuw): Ditto.
  503. (pcomud,pcomltud,pcomleud,pcomgtud,pcomgeud,pcomequd): Ditto.
  504. (pcomnequd,pcomneud): Ditto.
  505. (pcomuq,pcomltuq,pcomleuq,pcomgtuq,pcomgeuq,pcomequq): Ditto.
  506. (pcomnequq,pcomneuq): Ditto.
  507. (pcomb,pcomltb,pcomleb,pcomgtb,pcomgeb,pcomeqb): Ditto.
  508. (pcomneqb,pcomneb): Ditto.
  509. (pcomw,pcomltw,pcomlew,pcomgtw,pcomgew,pcomeqw): Ditto.
  510. (pcomneqw,pcomnew): Ditto.
  511. (pcomd,pcomltd,pcomled,pcomgtd,pcomged,pcomeqd): Ditto.
  512. (pcomneqd,pcomned): Ditto.
  513. (pcomq,pcomltq,pcomleq,pcomgtq,pcomgeq): Ditto.
  514. (pcomeqq,pcomneqq,pcomneq): Ditto.
  515. (pcomtrueb, pcomtruew, pcomtrued, pcomtrueq): Ditto.
  516. (pcomtrueub, pcomtrueuw, pcomtrueud, pcomtrueuq): Ditto.
  517. (pcomfalseb, pcomfalsew, pcomfalsed, pcomfalseq): Ditto.
  518. (pcomfalseub, pcomfalseuw, pcomfalseud, pcomfalseuq): Ditto.
  519. (frczps,frczpd,frczss,frczsd): Ditto.
  520. (cvtph2ps,cvtps2ph): Ditto.
  521. * i386-tbl.h: Regenerate from i386-opc.tbl.
  522. * i386-init.h: Likewise.
  523. * i386-dis.c (libiberty.h): Include to get ARRAY_SIZE.
  524. (dis386_move_test): New disassembly support for move from test
  525. register instruction that overlaps with SSE5 instructions.
  526. (print_insn): Add support for special casing the i386/i486 move
  527. from test register instruction that overlaps with the SSE5
  528. 0x0f24 4 operand instructions.
  529. (OP_DREX_ICMP): New macros for SSE5 DREX handling.
  530. (OP_DREX_FCMP): Ditto.
  531. (OP_E_extended): Rename from OP_E, add additional argument to skip
  532. the DREX byte.
  533. (OP_E): Call OP_E_extended.
  534. (DREX_REG_MEMORY): New macros for drex handling.
  535. (DREX_REG_UNKNOWN): Ditto.
  536. (DREX4_OC1): Ditto.
  537. (DREX4_NO_OC0): Ditto.
  538. (DREX4_MASK): Ditto.
  539. (three_byte_table): Add SSE5 instructions.
  540. (print_drex_arg): New function to print a DREX register or memory
  541. reference.
  542. (OP_DREX4): New function for handling DREX 4 argument ops.
  543. (OP_DREX3): New function for handling DREX 3 argument ops.
  544. (twobyte_has_modrm): 0f{25,7a,7b} all use the modrm byte.
  545. (THREE_BYTE_SSE5_0F{24,25,7A,7B}): New macros for initializing 3
  546. byte opcode support for SSE5 instructions.
  547. (dis386_twobyte): Add SSE5 24/25/7a/7b support.
  548. (three_byte_table): Add rows for describing SSE5 instructions.
  549. 2007-09-13 H.J. Lu <hongjiu.lu@intel.com>
  550. * i386-dis.c (get_valid_dis386): Take a pointer to
  551. disassemble_info. Handle IS_3BYTE_OPCODE.
  552. (print_insn): Updated. Don't handle IS_3BYTE_OPCODE here.
  553. 2007-09-12 H.J. Lu <hongjiu.lu@intel.com>
  554. * i386-opc.h (CpuUnused): Defined with CpuMax.
  555. (OTUnused): Defined with OTMax.
  556. 2007-09-12 Jan Beulich <jbeulich@novell.com>
  557. * i386-opc.tbl: Add two-operand forms of blendvps, blendvpd, and
  558. pblendvb.
  559. * i386-tbl.h: Regenerate.
  560. 2007-09-09 H.J. Lu <hongjiu.lu@intel.com>
  561. * i386-gen.c (main): Remove the local variable, unused.
  562. 2007-09-08 H.J. Lu <hongjiu.lu@intel.com>
  563. * Makefile.am: Run "make dep-am".
  564. * Makefile.in: Regenerate.
  565. 2007-09-08 H.J. Lu <hongjiu.lu@intel.com>
  566. * configure.in (AC_CHECK_HEADERS): Add limits.h.
  567. * configure: Regenerated.
  568. * config.in: Likewise.
  569. * i386-gen.c: Include "sysdep.h" instead of <stdlib.h> and
  570. <string.h>. Use xstrerror instead of strerror.
  571. (initializer): New.
  572. (cpu_flag_init): Likewise.
  573. (bitfield): Likewise.
  574. (BITFIELD): New.
  575. (cpu_flags): Likewise.
  576. (opcode_modifiers): Likewise.
  577. (operand_types): Likewise.
  578. (compare): Likewise.
  579. (set_cpu_flags): Likewise.
  580. (output_cpu_flags): Likewise.
  581. (process_i386_cpu_flags): Likewise.
  582. (output_opcode_modifier): Likewise.
  583. (process_i386_opcode_modifier): Likewise.
  584. (output_operand_type): Likewise.
  585. (process_i386_operand_type): Likewise.
  586. (set_bitfield): Likewise.
  587. (operand_type_init): Likewise.
  588. (process_i386_initializers): Likewise.
  589. (process_i386_opcodes): Call process_i386_opcode_modifier to
  590. process opcode_modifier. Call process_i386_operand_type to
  591. process operand_types.
  592. (process_i386_registers): Call process_i386_operand_type to
  593. process reg_type.
  594. (main): Check unused bits in i386_cpu_flags and i386_operand_type.
  595. Sort cpu_flags, opcode_modifiers and operand_types. Call
  596. process_i386_initializers.
  597. * i386-init.h: New.
  598. * i386-tbl.h: Regenerated.
  599. * i386-opc.h: Include <limits.h>.
  600. (CHAR_BIT): Define as 8 if not defined.
  601. (Cpu186): Changed to position of bitfiled.
  602. (Cpu286): Likewise.
  603. (Cpu386): Likewise.
  604. (Cpu486): Likewise.
  605. (Cpu586): Likewise.
  606. (Cpu686): Likewise.
  607. (CpuP4): Likewise.
  608. (CpuK6): Likewise.
  609. (CpuK8): Likewise.
  610. (CpuMMX): Likewise.
  611. (CpuMMX2): Likewise.
  612. (CpuSSE): Likewise.
  613. (CpuSSE2): Likewise.
  614. (Cpu3dnow): Likewise.
  615. (Cpu3dnowA): Likewise.
  616. (CpuSSE3): Likewise.
  617. (CpuPadLock): Likewise.
  618. (CpuSVME): Likewise.
  619. (CpuVMX): Likewise.
  620. (CpuSSSE3): Likewise.
  621. (CpuSSE4a): Likewise.
  622. (CpuABM): Likewise.
  623. (CpuSSE4_1): Likewise.
  624. (CpuSSE4_2): Likewise.
  625. (Cpu64): Likewise.
  626. (CpuNo64): Likewise.
  627. (D): Likewise.
  628. (W): Likewise.
  629. (Modrm): Likewise.
  630. (ShortForm): Likewise.
  631. (Jump): Likewise.
  632. (JumpDword): Likewise.
  633. (JumpByte): Likewise.
  634. (JumpInterSegment): Likewise.
  635. (FloatMF): Likewise.
  636. (FloatR): Likewise.
  637. (FloatD): Likewise.
  638. (Size16): Likewise.
  639. (Size32): Likewise.
  640. (Size64): Likewise.
  641. (IgnoreSize): Likewise.
  642. (DefaultSize): Likewise.
  643. (No_bSuf): Likewise.
  644. (No_wSuf): Likewise.
  645. (No_lSuf): Likewise.
  646. (No_sSuf): Likewise.
  647. (No_qSuf): Likewise.
  648. (No_xSuf): Likewise.
  649. (FWait): Likewise.
  650. (IsString): Likewise.
  651. (RegKludge): Likewise.
  652. (IsPrefix): Likewise.
  653. (ImmExt): Likewise.
  654. (NoRex64): Likewise.
  655. (Rex64): Likewise.
  656. (Ugh): Likewise.
  657. (Reg8): Likewise.
  658. (Reg16): Likewise.
  659. (Reg32): Likewise.
  660. (Reg64): Likewise.
  661. (FloatReg): Likewise.
  662. (RegMMX): Likewise.
  663. (RegXMM): Likewise.
  664. (Imm8): Likewise.
  665. (Imm8S): Likewise.
  666. (Imm16): Likewise.
  667. (Imm32): Likewise.
  668. (Imm32S): Likewise.
  669. (Imm64): Likewise.
  670. (Imm1): Likewise.
  671. (BaseIndex): Likewise.
  672. (Disp8): Likewise.
  673. (Disp16): Likewise.
  674. (Disp32): Likewise.
  675. (Disp32S): Likewise.
  676. (Disp64): Likewise.
  677. (InOutPortReg): Likewise.
  678. (ShiftCount): Likewise.
  679. (Control): Likewise.
  680. (Debug): Likewise.
  681. (Test): Likewise.
  682. (SReg2): Likewise.
  683. (SReg3): Likewise.
  684. (Acc): Likewise.
  685. (FloatAcc): Likewise.
  686. (JumpAbsolute): Likewise.
  687. (EsSeg): Likewise.
  688. (RegMem): Likewise.
  689. (OTMax): Likewise.
  690. (Reg): Commented out.
  691. (WordReg): Likewise.
  692. (ImplicitRegister): Likewise.
  693. (Imm): Likewise.
  694. (EncImm): Likewise.
  695. (Disp): Likewise.
  696. (AnyMem): Likewise.
  697. (LLongMem): Likewise.
  698. (LongMem): Likewise.
  699. (ShortMem): Likewise.
  700. (WordMem): Likewise.
  701. (ByteMem): Likewise.
  702. (CpuMax): New
  703. (CpuLM): Likewise.
  704. (CpuNumOfUints): Likewise.
  705. (CpuNumOfBits): Likewise.
  706. (CpuUnused): Likewise.
  707. (OTNumOfUints): Likewise.
  708. (OTNumOfBits): Likewise.
  709. (OTUnused): Likewise.
  710. (i386_cpu_flags): New type.
  711. (i386_operand_type): Likewise.
  712. (i386_opcode_modifier): Likewise.
  713. (CpuSledgehammer): Removed.
  714. (CpuSSE4): Likewise.
  715. (CpuUnknownFlags): Likewise.
  716. (Reg): Likewise.
  717. (WordReg): Likewise.
  718. (ImplicitRegister): Likewise.
  719. (Imm): Likewise.
  720. (EncImm): Likewise.
  721. (Disp): Likewise.
  722. (AnyMem): Likewise.
  723. (LLongMem): Likewise.
  724. (LongMem): Likewise.
  725. (ShortMem): Likewise.
  726. (WordMem): Likewise.
  727. (ByteMem): Likewise.
  728. (template): Use i386_cpu_flags for cpu_flags, use
  729. i386_opcode_modifier for opcode_modifier, use
  730. i386_operand_type for operand_types.
  731. (reg_entry): Use i386_operand_type for reg_type.
  732. * Makefile.am (HFILES): Add i386-init.h.
  733. ($(srcdir)/i386-init.h): New rule.
  734. ($(srcdir)/i386-tbl.h): Depend on $(srcdir)/i386-init.h
  735. instead.
  736. * Makefile.in: Regenerated.
  737. 2007-09-06 H.J. Lu <hongjiu.lu@intel.com>
  738. * i386-gen.c (next_field): Updated to take a separator.
  739. (process_i386_opcodes): Updated.
  740. (process_i386_registers): Likewise.
  741. 2007-09-06 H.J. Lu <hongjiu.lu@intel.com>
  742. * i386-gen.c (table): Moved ...
  743. (main): Here. Call process_copyright to output copyright.
  744. (process_copyright): New.
  745. (process_i386_opcodes): Take FILE *table.
  746. (process_i386_registers): Likewise.
  747. 2007-09-06 H.J. Lu <hongjiu.lu@intel.com>
  748. * i386-gen.c (table): New.
  749. (process_i386_opcodes): Report errno when faied to open
  750. i386-opc.tbl. Output opcodes to table. Close i386-opc.tbl
  751. before return.
  752. (process_i386_registers): Report errno when faied to open
  753. i386-reg.tbl. Output opcodes to table. Close i386-reg.tbl
  754. before return.
  755. (main): Open i386-tbl.h for output.
  756. * Makefile.am ($(srcdir)/i386-tbl.h): Remove " > $@".
  757. * Makefile.in: Regenerated.
  758. 2007-09-06 H.J. Lu <hongjiu.lu@intel.com>
  759. * i386-opc.tbl: Correct SVME instructions to allow 32bit register
  760. operand in 64bit mode.
  761. * i386-tbl.h: Regenerated.
  762. 2007-08-31 H.J. Lu <hongjiu.lu@intel.com>
  763. * i386-dis.c (OPC_EXT_40...OPC_EXT_45): New.
  764. (dis386_twobyte): Use OPC_EXT_40...OPC_EXT_45.
  765. (opc_ext_table): Add OPC_EXT_40...OPC_EXT_45.
  766. 2007-08-31 H.J. Lu <hongjiu.lu@intel.com>
  767. * i386-dis.c (SVME_Fixup): Removed.
  768. (OPC_EXT_39): New.
  769. (OPC_EXT_RM_6): Likewise.
  770. (grps): Use OPC_EXT_39.
  771. (opc_ext_table): Add OPC_EXT_39.
  772. (opc_ext_rm_table): Add OPC_EXT_RM_6.
  773. * i386-opc.tbl: Correct SVME instructions to take register
  774. operand only.
  775. * i386-tbl.h: Regenerated.
  776. 2007-08-31 H.J. Lu <hongjiu.lu@intel.com>
  777. * Makefile.am (INCLUDES): Remove -D_GNU_SOURCE.
  778. * Makefile.in: Regenerated.
  779. * configure.in (AC_GNU_SOURCE): Added.
  780. (AC_PROG_CC): Moved before AC_GNU_SOURCE.
  781. (AC_CHECK_DECLS): Add stpcpy.
  782. * configure: Regenerated.
  783. * config.in: Likewise.
  784. * i386-dis.c: Include "sysdep.h" before "dis-asm.h".
  785. * sysdep.h (stpcpy): New.
  786. 2007-08-30 H.J. Lu <hongjiu.lu@intel.com>
  787. * i386-dis.c (INVLPG_Fixup): Removed.
  788. (OPC_EXT_38): New.
  789. (OPC_EXT_RM_5): Likewise.
  790. (grps): Use OPC_EXT_38.
  791. (opc_ext_table): Add OPC_EXT_38.
  792. (opc_ext_rm_table): Add OPC_EXT_RM_5.
  793. 2007-08-29 H.J. Lu <hongjiu.lu@intel.com>
  794. * i386-dis.c (SIMD_Fixup): Removed.
  795. (OPC_EXT_34...OPC_EXT_37): New.
  796. (dis386_twobyte): Use OPC_EXT_34 and OPC_EXT_35.
  797. (prefix_user_table): Use OPC_EXT_36 and OPC_EXT_37.
  798. (opc_ext_table): Add OPC_EXT_34...OPC_EXT_37.
  799. 2007-08-29 H.J. Lu <hongjiu.lu@intel.com>
  800. * i386-dis.c (OPC_EXT_25...OPC_EXT_33): New.
  801. (dis386): Use OPC_EXT_0...OPC_EXT_2.
  802. (dis386_twobyte): Use OPC_EXT_3...OPC_EXT_5.
  803. (grps): Updated to use OPC_EXT_6...OPC_EXT_31.
  804. (prefix_user_table): Use OPC_EXT_32.
  805. (x86_64_table): Use OPC_EXT_33.
  806. (opc_ext_table): Reorder and add OPC_EXT_25...OPC_EXT_33.
  807. 2007-08-29 H.J. Lu <hongjiu.lu@intel.com>
  808. * i386-dis.c (prefix_user_table): Fix comment.
  809. 2007-08-29 H.J. Lu <hongjiu.lu@intel.com>
  810. * i386-dis.c (OP_Skip_MODRM): New.
  811. (OP_Monitor): Likewise.
  812. (OP_Mwait): Likewise.
  813. (Mb): Likewise.
  814. (Skip_MODRM): Likewise.
  815. (USE_OPC_EXT_TABLE): Likewise.
  816. (USE_OPC_EXT_RM_TABLE): Likewise.
  817. (PREGRP98...PREGRP100): Likewise.
  818. (OPC_EXT_0...OPC_EXT_24): Likewise.
  819. (OPC_EXT_RM_0...OPC_EXT_RM_4): Likewise.
  820. (lock_prefix): Likewise.
  821. (data_prefix): Likewise.
  822. (addr_prefix): Likewise.
  823. (repz_prefix): Likewise.
  824. (repnz_prefix): Likewise.
  825. (opc_ext_table): Likewise.
  826. (opc_ext_rm_table): Likewise.
  827. (get_valid_dis386): Likewise.
  828. (OP_VMX): Removed.
  829. (OP_0fae): Likewise.
  830. (PNI_Fixup): Likewise.
  831. (VMX_Fixup): Likewise.
  832. (VM): Likewise.
  833. (twobyte_uses_DATA_prefix): Likewise.
  834. (twobyte_uses_REPNZ_prefix): Likewise.
  835. (twobyte_uses_REPZ_prefix): Likewise.
  836. (threebyte_0x38_uses_DATA_prefix): Likewise.
  837. (threebyte_0x38_uses_REPNZ_prefix): Likewise.
  838. (threebyte_0x38_uses_REPZ_prefix): Likewise.
  839. (threebyte_0x3a_uses_DATA_prefix): Likewise.
  840. (threebyte_0x3a_uses_REPNZ_prefix): Likewise.
  841. (threebyte_0x3a_uses_REPZ_prefix): Likewise.
  842. (grps): Use OPC_EXT_0...OPC_EXT_24.
  843. (prefix_user_table): Add PREGRP98...PREGRP100.
  844. (print_insn): Remove uses_DATA_prefix, uses_LOCK_prefix,
  845. uses_REPNZ_prefix and uses_REPZ_prefix. Initialize
  846. repz_prefix, repnz_prefix, lock_prefix, addr_prefix and
  847. data_prefix based on prefixes. Call get_valid_dis386 to
  848. get a pointer to the valid dis386. Print out prefixes if
  849. they aren't NULL.
  850. (OP_C): Clear lock_prefix if PREFIX_LOCK is used.
  851. (REP_Fixup): Set repz_prefix to "rep " when seeing
  852. PREFIX_REPZ.
  853. 2007-08-28 Daniel Jacobowitz <dan@codesourcery.com>
  854. * po/nl.po: Updated translation.
  855. 2007-08-28 H.J. Lu <hongjiu.lu@intel.com>
  856. * i386-dis.c (Md): New.
  857. (grps): Use 0 on invlpg. Use M on fxsave and fxrstor. Use
  858. Md on ldmxcsr and stmxcsr. Use b_mode on clflush.
  859. (OP_0fae): Clear bytemode for sfence.
  860. 2007-08-22 Ben Elliston <bje@au.ibm.com>
  861. * ppc-opc.c (PSW, PSWM, PSQ, PSQM, PSD, MTMSRD_L): New.
  862. (XOPS, XOPS_MASK, XW, XW_MASK): Likewise.
  863. (PPCPS): Likewise.
  864. (powerpc_opcodes): Add all pair singles instructions.
  865. * ppc-dis.c (powerpc_dialect): Handle "ppcps".
  866. (print_ppc_disassembler_options): Document -Mppcps.
  867. 2007-08-21 Andreas Krebbel <krebbel1@de.ibm.com>
  868. * s390-mkopc.c (struct s390_cond_ext_format): New global struct.
  869. (s390_cond_ext_format): New global variable.
  870. (expandConditionalJump): New function.
  871. (main): Invoke expandConditionalJump for mnemonics containing '*'.
  872. * s390-opc.txt: Replace mnemonics with conditional
  873. mask extensions with instructions using the newly introduced '*' tag.
  874. 2007-08-17 Alan Modra <amodra@bigpond.net.au>
  875. * po/Make-in: Add --msgid-bugs-address to xgettext invocation.
  876. 2007-08-10 Nick Clifton <nickc@redhat.com>
  877. * po/fi.po: Updated Finnish translation.
  878. * po/ga.po: Updated Irish translation.
  879. * po/vi.po: Updated Vietnamese translation.
  880. 2007-08-09 H.J. Lu <hongjiu.lu@intel.com>
  881. * i386-opc.tbl: Add NoRex64 to pmovsxbw, pmovsxwd, pmovsxdq,
  882. pmovzxbw, pmovzxwd, pmovzxdq and roundsd.
  883. * i386-tbl.h: Regenerated.
  884. 2007-08-03 James E. Wilson <wilson@specifix.com>
  885. * ia64-gen.c: (main): Add missing newline to copyright message.
  886. * ia64-ic.tbl (fp-non-arith): Add xmpy.
  887. * ia64-asmtab.c: Regenerate.
  888. 2007-08-01 Michael Snyder <msnyder@access-company.com>
  889. * i386-dis.c (print_insn): Guard against NULL.
  890. 2007-07-29 H.J. Lu <hongjiu.lu@intel.com>
  891. PR binutils/4834
  892. * i386-dis.c (EXw): New.
  893. (prefix_user_table): Updated to use EXw, EXd and EXq for SSE4
  894. instructions when appropriated.
  895. 2007-07-28 H.J. Lu <hongjiu.lu@intel.com>
  896. PR binutils/4834
  897. * i386-dis.c (Eq): New.
  898. (EMC): Renamed to ...
  899. (EMCq): This. Use q_mode instead of v_mode.
  900. (prefix_user_table): Updated to use EXd, EXq, EMCq, Ed and Eq
  901. when appropriated.
  902. 2007-07-28 H.J. Lu <hongjiu.lu@intel.com>
  903. * i386-dis.c (dis386_twobyte): Change "movd" to "movK".
  904. (prefix_user_table): Likewise. Use EXq instead of EXx on
  905. "movq".
  906. 2007-07-27 Nathan Sidwell <nathan@codesourcery.com>
  907. * ppc-opc (PPC7450): New.
  908. (powerpc_opcodes): Use it in dcba.
  909. 2007-07-24 H.J. Lu <hongjiu.lu@intel.com>
  910. * i386-gen.c (main): Print a newline after copyright notice.
  911. 2007-07-19 Nick Clifton <nickc@redhat.com>
  912. PR binutils/4801
  913. * maxq-dis.c (get_reg_name): Fix the scan of the
  914. mem_access_syntax_table.
  915. 2007-07-16 H.J. Lu <hongjiu.lu@intel.com>
  916. * i386-dis.c (EMq): Removed.
  917. (EMx): New.
  918. (prefix_user_table): Replace EMq with EMx.
  919. 2007-07-16 Nick Clifton <nickc@redhat.com>
  920. * po/nl.po: Updated translation.
  921. 2007-07-12 Nick Clifton <nickc@redhat.com>
  922. * po/vi.po: Updated translation.
  923. * po/nl.po: Updated translation.
  924. 2007-07-06 Mark Kettenis <kettenis@gnu.org>
  925. H.J. Lu <hongjiu.lu@intel.com>
  926. * Makefile.am (i386-tbl.h): Add $(srcdir)/ to target.
  927. (ia64-asmtab.c): Likewise.
  928. * Makefile.in: Regenerate.
  929. 2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
  930. * aclocal.m4: Regenerated.
  931. 2007-07-04 Nick Clifton <nickc@redhat.com>
  932. * alpha-dis.c: Update copyright notice to refer to GPLv3.
  933. * alpha-opc.c, arc-dis.c, arc-dis.h, arc-ext.c, arc-ext.h,
  934. arc-opc.c, arm-dis.c, avr-dis.c, bfin-dis.c, cgen-asm.c,
  935. cgen-asm.in, cgen-bitset.c, cgen-dis.c, cgen-dis.in, cgen-ibld.in,
  936. cgen-opc.c, cgen-ops.h, cgen.sh, cgen-types.h, cr16-dis.c,
  937. cr16-opc.c, cris-dis.c, cris-opc.c, crx-dis.c, crx-opc.c,
  938. d10v-dis.c, d10v-opc.c, d30v-dis.c, d30v-opc.c, disassemble.c,
  939. dis-buf.c, dis-init.c, dlx-dis.c, h8300-dis.c, h8500-dis.c,
  940. h8500-opc.h, hppa-dis.c, i370-dis.c, i370-opc.c, i386-dis.c,
  941. i386-gen.c, i386-opc.c, i386-opc.h, i860-dis.c, i960-dis.c,
  942. ia64-asmtab.h, ia64-dis.c, ia64-gen.c, ia64-opc-a.c, ia64-opc-b.c,
  943. ia64-opc.c, ia64-opc-d.c, ia64-opc-f.c, ia64-opc.h, ia64-opc-i.c,
  944. ia64-opc-m.c, ia64-opc-x.c, m10200-dis.c, m10200-opc.c,
  945. m10300-dis.c, m10300-opc.c, m68hc11-dis.c, m68hc11-opc.c,
  946. m68k-dis.c, m68k-opc.c, m88k-dis.c, maxq-dis.c, mcore-dis.c,
  947. mcore-opc.h, mips16-opc.c, mips-dis.c, mips-opc.c, mmix-dis.c,
  948. mmix-opc.c, msp430-dis.c, ns32k-dis.c, opintl.h, or32-dis.c,
  949. or32-opc.c, pdp11-dis.c, pdp11-opc.c, pj-dis.c, pj-opc.c,
  950. ppc-dis.c, ppc-opc.c, s390-dis.c, s390-mkopc.c, s390-opc.c,
  951. score-dis.c, score-opc.h, sh64-dis.c, sh64-opc.c, sh64-opc.h,
  952. sh-dis.c, sh-opc.h, sparc-dis.c, sparc-opc.c, spu-dis.c,
  953. spu-opc.c, sysdep.h, tic30-dis.c, tic4x-dis.c, tic54x-dis.c,
  954. tic54x-opc.c, tic80-dis.c, tic80-opc.c, v850-dis.c, v850-opc.c,
  955. vax-dis.c, w65-dis.c, w65-opc.h, xtensa-dis.c, z80-dis.c,
  956. z8k-dis.c, z8kgen.c: Likewise.
  957. * i386-opc.tbl, i386-reg.tbl: Add copyright notice.
  958. * aclocal.m4, configure, fr30-asm.c, fr30-desc.c, fr30-desc.h,
  959. fr30-dis.c, fr30-ibld.c, fr30-opc.c, fr30-opc.h, frv-asm.c,
  960. frv-desc.c, frv-desc.h, frv-dis.c, frv-ibld.c, frv-opc.c,
  961. frv-opc.h, i386-tbl.h, ia64-asmtab.c, ip2k-asm.c, ip2k-desc.c,
  962. ip2k-desc.h, ip2k-dis.c, ip2k-ibld.c, ip2k-opc.c, ip2k-opc.h,
  963. iq2000-asm.c, iq2000-desc.c, iq2000-desc.h, iq2000-dis.c,
  964. iq2000-ibld.c, iq2000-opc.c, iq2000-opc.h, m32c-asm.c,
  965. m32c-desc.c, m32c-desc.h, m32c-dis.c, m32c-ibld.c, m32c-opc.c,
  966. m32c-opc.h, m32r-asm.c, m32r-desc.c, m32r-desc.h, m32r-dis.c,
  967. m32r-ibld.c, m32r-opc.c, m32r-opc.h, m32r-opinst.c, mep-asm.c,
  968. mep-desc.c, mep-desc.h, mep-dis.c, mep-ibld.c, mep-opc.c,
  969. mep-opc.h, mt-asm.c, mt-desc.c, mt-desc.h, mt-dis.c, mt-ibld.c,
  970. mt-opc.c, mt-opc.h, openrisc-asm.c, openrisc-desc.c,
  971. openrisc-desc.h, openrisc-dis.c, openrisc-ibld.c, openrisc-opc.c,
  972. openrisc-opc.h, xc16x-asm.c, xc16x-desc.c, xc16x-desc.h,
  973. xc16x-dis.c, xc16x-ibld.c, xc16x-opc.c, xc16x-opc.h,
  974. xstormy16-asm.c, xstormy16-desc.c, xstormy16-desc.h,
  975. xstormy16-dis.c, xstormy16-ibld.c, xstormy16-opc.c,
  976. xstormy16-opc.h, z8k-opc.h: Regenerated
  977. 2007-07-04 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
  978. * cr16-dis.c (getcinvstring): Add const qualifier to char *
  979. parameter.
  980. (print_insn_cr16): Remove cast to char *.
  981. 2007-07-03 Nathan Sidwell <nathan@codesourcery.com>
  982. * m68k-dis.c (fetch_arg): Add E. Replace length switch with
  983. direct masking.
  984. (print_ins_arg): Add j & K operand types.
  985. (match_insn_m68k): Check and skip initial '.' arg character.
  986. (m68k_scan_mask): Likewise.
  987. * m68k-opc.c (m68k_opcodes): Add coprocessor instructions.
  988. 2007-07-02 Alan Modra <amodra@bigpond.net.au>
  989. * Makefile.am: Run "make dep-am".
  990. * Makefile.in: Regenerate.
  991. * aclocal.m4: Regenerate.
  992. * config.in: Regenerate.
  993. * po/POTFILES.in: Regenerate.
  994. * po/opcodes.pot: Regenerate.
  995. 2007-06-30 H.J. Lu <hongjiu.lu@intel.com>
  996. * aclocal.m4: Regenerated.
  997. * Makefile.in: Likewise.
  998. 2007-06-29 H.J. Lu <hongjiu.lu@intel.com>
  999. * i386-reg.tbl: Remove spaces before comments.
  1000. 2007-06-29 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
  1001. * cr16-opc.c: New file.
  1002. * cr16-dis.c: New file.
  1003. * Makefile.am: Entries for cr16.
  1004. * Makefile.in: Regenerate.
  1005. * cofigure.in: Add cr16 target information.
  1006. * configure : Regenerate.
  1007. * disassemble.c: Add cr16 target information.
  1008. 2007-06-28 H.J. Lu <hongjiu.lu@intel.com>
  1009. * Makefile.am (HFILES): Add i386-opc.h and i386-tbl.h.
  1010. (CFILES): Add i386-gen.c.
  1011. (i386-gen): New rule.
  1012. (i386-gen.o): Likewise.
  1013. (i386-tbl.h): Likewise.
  1014. Run "make dep-am".
  1015. * Makefile.in: Regenerated.
  1016. * i386-gen.c: New file.
  1017. * i386-opc.tbl: Likewise.
  1018. * i386-reg.tbl: Likewise.
  1019. * i386-tbl.h: Likewise.
  1020. * i386-opc.c: Include "i386-tbl.h".
  1021. (i386_optab): Removed.
  1022. (i386_regtab): Likewise.
  1023. (i386_regtab_size): Likewise.
  1024. 2007-06-26 Paul Brook <paul@codesourcery.com>
  1025. * arm-dis.c (coprocessor_opcodes): Add fmxr/fmrx mvfr0/mvfr1.
  1026. 2007-06-25 H.J. Lu <hongjiu.lu@intel.com>
  1027. * i386-opc.h (regKludge): Renamed to ...
  1028. (RegKludge): This.
  1029. * i386-opc.c (i386_optab): Replace regKludge with RegKludge.
  1030. 2007-06-23 H.J. Lu <hongjiu.lu@intel.com>
  1031. PR binutils/4667
  1032. * i386-dis.c (EX): Removed.
  1033. (EMd): New.
  1034. (EMq): Likewise.
  1035. (EXd): Likewise.
  1036. (EXq): Likewise.
  1037. (EXx): Likewise.
  1038. (PREGRP93...PREGRP97): Likewise.
  1039. (dis386_twobyte): Updated.
  1040. (prefix_user_table): Updated. Add PREGRP93...PREGRP97.
  1041. (OP_EX): Remove Intel syntax handling.
  1042. 2007-06-18 Nathan Sidwell <nathan@codesourcery.com>
  1043. * m68k-opc.c (m68k_opcodes): Add wdebugl variants.
  1044. 2007-06-14 H.J. Lu <hongjiu.lu@intel.com>
  1045. * Makefile.am (ACLOCAL_AMFLAGS): Add -I ../config -I ../bfd.
  1046. * acinclude.m4: Removed.
  1047. * Makefile.in: Regenerated.
  1048. * doc/Makefile.in: Likewise.
  1049. * aclocal.m4: Likewise.
  1050. * configure: Likewise.
  1051. 2007-06-05 Paul Brook <paul@codesourcery.com>
  1052. * arm-dis.c (thumb32_opcodes): Display writeback ldrd/strd addresses.
  1053. 2007-05-24 Steve Ellcey <sje@cup.hp.com>
  1054. * Makefile.in: Regnerate.
  1055. * configure: Regenerate.
  1056. * aclocal.m4: Regenerate.
  1057. 2007-05-18 Alan Modra <amodra@bigpond.net.au>
  1058. * ppc-dis.c (print_insn_powerpc): Don't skip all operands
  1059. after setting skip_optional.
  1060. 2007-05-16 Peter Bergner <bergner@vnet.ibm.com>
  1061. * ppc-dis.c (operand_value_powerpc, skip_optional_operands): New.
  1062. (print_insn_powerpc): Use the new operand_value_powerpc and
  1063. skip_optional_operands functions to omit or print all optional
  1064. operands as a group.
  1065. * ppc-opc.c (BFF, W, XFL_L, XWRA_MASK): New.
  1066. (XFL_MASK): Delete L and W bits from the mask.
  1067. (mtfsfi, mtfsfi.): Replace use of BF with BFF. Relpace use of XRA_MASK
  1068. with XWRA_MASK. Use W.
  1069. (mtfsf, mtfsf.): Use XFL_L and W.
  1070. 2007-05-14 H.J. Lu <hongjiu.lu@intel.com>
  1071. PR binutils/4502
  1072. * i386-dis.c (Suffix3DNow): Replace "pfmulhrw" with "pmulhrw".
  1073. 2007-05-10 H.J. Lu <hongjiu.lu@intel.com>
  1074. * i386-opc.h (ShortForm): Redefined.
  1075. (Jump): Likewise.
  1076. (JumpDword): Likewise.
  1077. (JumpByte): Likewise.
  1078. (JumpInterSegment): Likewise.
  1079. (FloatMF): Likewise.
  1080. (FloatR): Likewise.
  1081. (FloatD): Likewise.
  1082. (Size16): Likewise.
  1083. (Size32): Likewise.
  1084. (Size64): Likewise.
  1085. (IgnoreSize): Likewise.
  1086. (DefaultSize): Likewise.
  1087. (No_bSuf): Likewise.
  1088. (No_wSuf): Likewise.
  1089. (No_lSuf): Likewise.
  1090. (No_sSuf): Likewise.
  1091. (No_qSuf): Likewise.
  1092. (No_xSuf): Likewise.
  1093. (FWait): Likewise.
  1094. (IsString): Likewise.
  1095. (regKludge): Likewise.
  1096. (IsPrefix): Likewise.
  1097. (ImmExt): Likewise.
  1098. (NoRex64): Likewise.
  1099. (Rex64): Likewise.
  1100. (Ugh): Likewise.
  1101. 2007-05-07 H.J. Lu <hongjiu.lu@intel.com>
  1102. * i386-dis.c (threebyte_0x38_uses_DATA_prefix): Correct entries
  1103. for some SSE4 instructions.
  1104. (threebyte_0x3a_uses_DATA_prefix): Likewise.
  1105. 2007-05-03 H.J. Lu <hongjiu.lu@intel.com>
  1106. * i386-dis.c (CRC32_Fixup): Don't print suffix in Intel mode.
  1107. * i386-opc.c (i386_optab): Remove IgnoreSize and correct operand
  1108. type for crc32.
  1109. 2007-05-01 H.J. Lu <hongjiu.lu@intel.com>
  1110. * i386-dis.c (CRC32_Fixup): Properly handle Intel mode and
  1111. check data size prefix in 16bit mode.
  1112. * i386-opc.c (i386_optab): Default crc32 to non-8bit and
  1113. support Intel mode.
  1114. 2007-04-30 Mark Salter <msalter@redhat.com>
  1115. * frv-desc.c: Regenerate.
  1116. * frv-desc.h: Regenerate.
  1117. 2007-04-30 Alan Modra <amodra@bigpond.net.au>
  1118. PR 4436
  1119. * ppc-opc.c (powerpc_operands): Correct bitm for second entry of MBE.
  1120. 2007-04-27 H.J. Lu <hongjiu.lu@intel.com>
  1121. * i386-dis.c (modrm): Put reg before rm.
  1122. 2007-04-26 H.J. Lu <hongjiu.lu@intel.com>
  1123. PR binutils/4430
  1124. * i386-dis.c (print_displacement): New.
  1125. (OP_E): Call print_displacement instead of print_operand_value
  1126. to output displacement when either base or index exist. Print
  1127. the explicit zero displacement in 16bit mode.
  1128. 2007-04-26 H.J. Lu <hongjiu.lu@intel.com>
  1129. PR binutils/4429
  1130. * i386-dis.c (print_insn): Also swap the order of op_riprel
  1131. when swapping op_index. Break when the RIP relative address
  1132. is printed.
  1133. (OP_E): Properly handle RIP relative addressing and print the
  1134. explicit zero displacement for Intel mode.
  1135. 2007-04-27 Alan Modra <amodra@bigpond.net.au>
  1136. * Makefile.am: Run "make dep-am".
  1137. * Makefile.in: Regenerate.
  1138. * ns32k-dis.c: Include sysdep.h first.
  1139. 2007-04-24 Andreas Krebbel <krebbel1@de.ibm.com>
  1140. * opcodes/s390-opc.c (MASK_SSF_RRDRD): Fourth nybble belongs to the
  1141. opcode.
  1142. * opcodes/s390-opc.txt (pfpo, ectg, csst): Add new z9-ec instructions.
  1143. 2007-04-24 Nick Clifton <nickc@redhat.com>
  1144. * arm-dis.c (print_insn): Initialise type.
  1145. 2007-04-24 Alan Modra <amodra@bigpond.net.au>
  1146. * cgen-types.h: Include bfd_stdint.h, not stdint.h.
  1147. * Makefile.am: Run "make dep-am".
  1148. * Makefile.in: Regenerate.
  1149. 2007-04-23 Nathan Sidwell <nathan@codesourcery.com>
  1150. * m68k-opc.c: Mark mcfisa_c instructions.
  1151. 2007-04-21 Richard Earnshaw <rearnsha@arm.com>
  1152. * arm-dis.c (arm_opcodes): Disassemble to unified syntax.
  1153. (thumb_opcodes): Add missing white space in adr.
  1154. (arm_decode_shift): New parameter, print_shift. Only decode the
  1155. shift parameter if set. Adjust callers.
  1156. (print_insn_arm): Support for operand type q with no shift decode.
  1157. 2007-04-21 Alan Modra <amodra@bigpond.net.au>
  1158. * i386-opc.c (i386_float_regtab, i386_float_regtab_size): Delete.
  1159. Move contents to..
  1160. (i386_regtab): ..here.
  1161. * i386-opc.h (i386_float_regtab, i386_float_regtab_size): Delete.
  1162. * ppc-opc.c (powerpc_operands): Delete duplicate entries.
  1163. (BA_MASK, FXM_MASK, STRM_MASK, VA_MASK, VB_MASK, VC_MASK): Delete.
  1164. (VD_MASK, WS_MASK, MTMSRD_L, XRT_L): Delete.
  1165. (powerpc_opcodes): Replace uses of MTMSRD_L and XRT_L.
  1166. 2007-04-20 Nathan Sidwell <nathan@codesourcery.com>
  1167. * m68k-dis.c (print_insn_arg): Show c04 as rambar0 and c05 as
  1168. rambar1.
  1169. 2007-04-20 Alan Modra <amodra@bigpond.net.au>
  1170. * ppc-dis.c (print_insn_powerpc): Adjust for struct powerpc_operand
  1171. change.
  1172. * ppc-opc.c (powerpc_operands): Replace bit count with bit mask
  1173. in all entries. Add PPC_OPERAND_SIGNED to DE entry. Remove
  1174. references to following deleted functions.
  1175. (insert_bd, extract_bd, insert_dq, extract_dq): Delete.
  1176. (insert_ds, extract_ds, insert_de, extract_de): Delete.
  1177. (insert_des, extract_des, insert_li, extract_li): Delete.
  1178. (insert_nb, insert_rsq, insert_rtq, insert_ev2, extract_ev2): Delete.
  1179. (insert_ev4, extract_ev4, insert_ev8, extract_ev8): Delete.
  1180. (num_powerpc_operands): New constant.
  1181. (XSPRG_MASK): Remove entire SPRG field.
  1182. (powerpc_opcodes <bcctre, bcctrel>): Use XLBB_MASK not XLYBB_MASK.
  1183. 2007-04-20 Alan Modra <amodra@bigpond.net.au>
  1184. * ppc-opc.c (DCM, DGM, TE, RMC, R, SP, S): Correct shift.
  1185. (Z2_MASK): Define.
  1186. (powerpc_opcodes): Use Z2_MASK in all insns taking RMC operand.
  1187. 2007-04-20 Richard Earnshaw <rearnsha@arm.com>
  1188. * arm-dis.c (print_insn): Only look for a mapping symbol in the section
  1189. being disassembled.
  1190. 2007-04-19 Alan Modra <amodra@bigpond.net.au>
  1191. * Makefile.am: Run "make dep-am".
  1192. * Makefile.in: Regenerate.
  1193. * po/POTFILES.in: Regenerate.
  1194. 2007-04-19 Alan Modra <amodra@bigpond.net.au>
  1195. * ppc-opc.c (powerpc_opcodes): Add cctpl, cctpm, cctph, db8cyc,
  1196. db10cyc, db12cyc, db16cyc.
  1197. 2007-04-19 Nathan Froyd <froydnj@codesourcery.com>
  1198. * ppc-opc.c (powerpc_opcodes): Recognize three-operand tlbsxe.
  1199. 2007-04-18 H.J. Lu <hongjiu.lu@intel.com>
  1200. * i386-dis.c (CRC32_Fixup): New.
  1201. (PREGRP85, PREGRP86, PREGRP87, PREGRP88, PREGRP89, PREGRP90,
  1202. PREGRP91): New.
  1203. (threebyte_0x38_uses_DATA_prefix): Updated for SSE4.2.
  1204. (threebyte_0x3a_uses_DATA_prefix): Likewise.
  1205. (prefix_user_table): Add PREGRP85, PREGRP86, PREGRP87,
  1206. PREGRP88, PREGRP89, PREGRP90 and PREGRP91.
  1207. (three_byte_table): Likewise.
  1208. * i386-opc.c (i386_optab): Add SSE4.2 opcodes.
  1209. * i386-opc.h (CpuSSE4_2): New.
  1210. (CpuSSE4): Likewise.
  1211. (CpuUnknownFlags): Add CpuSSE4_2.
  1212. 2007-04-18 H.J. Lu <hongjiu.lu@intel.com>
  1213. * i386-dis.c (XMM_Fixup): New.
  1214. (Edqb): New.
  1215. (Edqd): New.
  1216. (XMM0): New.
  1217. (dqb_mode): New.
  1218. (dqd_mode): New.
  1219. (PREGRP39 ... PREGRP85): New.
  1220. (threebyte_0x38_uses_DATA_prefix): Updated for SSE4.
  1221. (threebyte_0x3a_uses_DATA_prefix): Likewise.
  1222. (prefix_user_table): Add PREGRP39 ... PREGRP85.
  1223. (three_byte_table): Likewise.
  1224. (putop): Handle 'K'.
  1225. (intel_operand_size): Handle dqb_mode, dqd_mode):
  1226. (OP_E): Likewise.
  1227. (OP_G): Likewise.
  1228. * i386-opc.c (i386_optab): Add SSE4.1 opcodes.
  1229. * i386-opc.h (CpuSSE4_1): New.
  1230. (CpuUnknownFlags): Add CpuSSE4_1.
  1231. (regKludge): Update comment.
  1232. 2007-04-18 Matthias Klose <doko@ubuntu.com>
  1233. * Makefile.am (libopcodes_la_LDFLAGS): Use bfd soversion.
  1234. * Makefile.in: Regenerate.
  1235. 2007-04-14 Steve Ellcey <sje@cup.hp.com>
  1236. * Makefile.am: Add ACLOCAL_AMFLAGS.
  1237. * Makefile.in: Regenerate.
  1238. 2007-04-13 H.J. Lu <hongjiu.lu@intel.com>
  1239. * i386-dis.c: Remove trailing white spaces.
  1240. * i386-opc.c: Likewise.
  1241. * i386-opc.h: Likewise.
  1242. 2007-04-11 H.J. Lu <hongjiu.lu@intel.com>
  1243. PR binutils/4333
  1244. * i386-dis.c (GRP1a): New.
  1245. (GRP1b ... GRPPADLCK2): Update index.
  1246. (dis386): Use GRP1a for entry 0x8f.
  1247. (mod, rm, reg): Removed. Replaced by ...
  1248. (modrm): This.
  1249. (grps): Add GRP1a.
  1250. 2007-04-09 Kazu Hirata <kazu@codesourcery.com>
  1251. * m68k-dis.c (print_insn_m68k): Restore info->fprintf_func and
  1252. info->print_address_func if longjmp is called.
  1253. 2007-03-29 DJ Delorie <dj@redhat.com>
  1254. * m32c-desc.c: Regenerate.
  1255. * m32c-dis.c: Regenerate.
  1256. * m32c-opc.c: Regenerate.
  1257. 2007-03-28 H.J. Lu <hongjiu.lu@intel.com>
  1258. * i386-opc.c (i386_optab): Change InvMem to RegMem for mov and
  1259. movq. Remove InvMem from sldt, smsw and str.
  1260. * i386-opc.h (InvMem): Renamed to ...
  1261. (RegMem): Update comments.
  1262. (AnyMem): Remove InvMem.
  1263. 2007-03-27 Paul Brook <paul@codesourcery.com>
  1264. * arm-dis.c (thumb_opcodes): Add entry for undefined insns (0xbe??).
  1265. 2007-03-24 Paul Brook <paul@codesourcery.com>
  1266. * arm-dis.c (coprocessor_opcodes): Remove superfluous 0x.
  1267. (print_insn_coprocessor): Handle %<bitfield>x.
  1268. 2007-03-24 Paul Brook <paul@codesourcery.com>
  1269. Mark Shinwell <shinwell@codesourcery.com>
  1270. * arm-dis.c (arm_opcodes): Print SRS base register.
  1271. 2007-03-23 H.J. Lu <hongjiu.lu@intel.com>
  1272. * i386-dis.c (prefix_name): Replace rex64XYZ with rex.WRXB.
  1273. * i386-opc.c (i386_optab): Add rex.wrxb.
  1274. 2007-03-21 H.J. Lu <hongjiu.lu@intel.com>
  1275. * i386-dis.c (REX_MODE64): Remove definition.
  1276. (REX_EXTX): Likewise.
  1277. (REX_EXTY): Likewise.
  1278. (REX_EXTZ): Likewise.
  1279. (USED_REX): Use REX_OPCODE instead of 0x40.
  1280. Replace REX_MODE64, REX_EXTX, REX_EXTY and REX_EXTZ with REX_W,
  1281. REX_R, REX_X and REX_B respectively.
  1282. 2007-03-21 H.J. Lu <hongjiu.lu@intel.com>
  1283. PR binutils/4218
  1284. * i386-dis.c (PREGRP38): New.
  1285. (dis386): Use PREGRP38 for 0x90.
  1286. (prefix_user_table): Add PREGRP38.
  1287. (print_insn): Set uses_REPZ_prefix to 1 for pause.
  1288. (NOP_Fixup1): Properly handle REX bits.
  1289. (NOP_Fixup2): Likewise.
  1290. * i386-opc.c (i386_optab): Allow %eax with xchg in 64bit.
  1291. Allow register with nop.
  1292. 2007-03-20 DJ Delorie <dj@redhat.com>
  1293. * m32c-asm.c: Regenerate.
  1294. * m32c-desc.c: Regenerate.
  1295. * m32c-desc.h: Regenerate.
  1296. * m32c-dis.h: Regenerate.
  1297. * m32c-ibld.c: Regenerate.
  1298. * m32c-opc.c: Regenerate.
  1299. * m32c-opc.h: Regenerate.
  1300. 2007-03-15 H.J. Lu <hongjiu.lu@intel.com>
  1301. * i386-opc.c: Include "libiberty.h".
  1302. (i386_regtab): Remove the last entry.
  1303. (i386_regtab_size): New.
  1304. (i386_float_regtab_size): Likewise.
  1305. * i386-opc.h (i386_regtab_size): New.
  1306. (i386_float_regtab_size): Likewise.
  1307. 2007-03-15 H.J. Lu <hongjiu.lu@intel.com>
  1308. * Makefile.am (CFILES): Add i386-opc.c.
  1309. (ALL_MACHINES): Add i386-opc.lo.
  1310. Run "make dep-am".
  1311. * Makefile.in: Regenerated.
  1312. * configure.in: Add i386-opc.lo for bfd_i386_arch.
  1313. * configure: Regenerated.
  1314. * i386-dis.c: Include "opcode/i386.h".
  1315. (MAXLEN): Renamed to MAX_MNEM_SIZE. Remove definition.
  1316. (FWAIT_OPCODE): Remove definition.
  1317. (UNIXWARE_COMPAT): Renamed to SYSV386_COMPAT. Remove definition.
  1318. (MAX_OPERANDS): Remove definition.
  1319. * i386-opc.c: New file.
  1320. * i386-opc.h: Likewise.
  1321. 2007-03-15 H.J. Lu <hongjiu.lu@intel.com>
  1322. * Makefile.in: Regenerated.
  1323. 2007-03-09 H.J. Lu <hongjiu.lu@intel.com>
  1324. * i386-dis.c (OP_Rd): Renamed to ...
  1325. (OP_R): This.
  1326. (Rd): Updated.
  1327. (Rm): Likewise.
  1328. 2007-03-08 Alan Modra <amodra@bigpond.net.au>
  1329. * fr30-asm.c: Regenerate.
  1330. * frv-asm.c: Regenerate.
  1331. * ip2k-asm.c: Regenerate.
  1332. * iq2000-asm.c: Regenerate.
  1333. * m32c-asm.c: Regenerate.
  1334. * m32r-asm.c: Regenerate.
  1335. * m32r-dis.c: Regenerate.
  1336. * mt-asm.c: Regenerate.
  1337. * mt-ibld.c: Regenerate.
  1338. * mt-opc.c: Regenerate.
  1339. * openrisc-asm.c: Regenerate.
  1340. * xc16x-asm.c: Regenerate.
  1341. * xstormy16-asm.c: Regenerate.
  1342. * Makefile.am: Run "make dep-am".
  1343. * Makefile.in: Regenerate.
  1344. * po/POTFILES.in: Regenerate.
  1345. 2007-03-06 Andreas Krebbel <krebbel1@de.ibm.com>
  1346. * opcodes/s390-opc.c (INSTR_RRE_FR, INSTR_RRF_F0FF2, INSTR_RRF_F0FR,
  1347. INSTR_RRF_UUFF, INSTR_RRF_0UFF, INSTR_RRF_FFFU, INSTR_RRR_F0FF): New
  1348. instruction formats added.
  1349. (MASK_RRE_FR, MASK_RRF_F0FF2, MASK_RRF_F0FR, MASK_RRF_UUFF,
  1350. MASK_RRF_0UFF, MASK_RRF_FFFU, MASK_RRR_F0FF): New instruction format
  1351. masks added.
  1352. * opcodes/s390-opc.txt (lpdfr - tgxt): Decimal floating point
  1353. instructions added.
  1354. * opcodes/s390-mkopc.c (s390_opcode_cpu_val): S390_OPCODE_Z9_EC added.
  1355. (main): z9-ec cpu type option added.
  1356. * include/opcode/s390.h (s390_opcode_cpu_val): S390_OPCODE_Z9_EC added.
  1357. 2007-02-22 DJ Delorie <dj@redhat.com>
  1358. * s390-opc.c (INSTR_SS_L2RDRD): New.
  1359. (MASK_SS_L2RDRD): New.
  1360. * s390-opc.txt (pka): Use it.
  1361. 2007-02-20 Thiemo Seufer <ths@mips.com>
  1362. Chao-Ying Fu <fu@mips.com>
  1363. * mips-dis.c (mips_arch_choices): Add DSP R2 support.
  1364. (print_insn_args): Add support for balign instruction.
  1365. * mips-opc.c (D33): New shortcut for DSP R2 instructions.
  1366. (mips_builtin_opcodes): Add DSP R2 instructions.
  1367. 2007-02-19 Andreas Krebbel <krebbel1@de.ibm.com>
  1368. * s390-opc.c (INSTR_RRF_U0FR, MASK_RRF_U0FR): Removed.
  1369. (INSTR_RRF_U0RF, MASK_RRF_U0RF): Added.
  1370. * s390-opc.txt (cfxbr, cfdbr, cfebr, cgebr, cgdbr, cgxbr, cger, cgdr,
  1371. cgxr, cfxr, cfdr, cfer): Instruction type set to INSTR_RRF_U0RF.
  1372. 2007-02-19 Andreas Krebbel <krebbel1@de.ibm.com>
  1373. * s390-opc.txt ("efpc", "sfpc"): Set to RRE_RR_OPT instruction type.
  1374. * s390-opc.c (s390_operands): Add RO_28 as optional gpr.
  1375. (INSTR_RRE_RR_OPT, MASK_RRE_RR_OPT): New instruction type for efpc
  1376. and sfpc.
  1377. 2007-02-16 Nick Clifton <nickc@redhat.com>
  1378. PR binutils/4045
  1379. * avr-dis.c (comment_start): New variable, contains the prefix to
  1380. use when printing addresses in comments.
  1381. (print_insn_avr): Set comment_start to an empty space if there is
  1382. no symbol table available as the generic address printing code
  1383. will prefix the numeric value of the address with 0x.
  1384. 2007-02-13 H.J. Lu <hongjiu.lu@intel.com>
  1385. * i386-dis.c: Updated to use an array of MAX_OPERANDS operands
  1386. in struct dis386.
  1387. 2007-02-05 Dave Brolley <brolley@redhat.com>
  1388. Richard Sandiford <rsandifo@redhat.com>
  1389. DJ Delorie <dj@redhat.com>
  1390. Graydon Hoare <graydon@redhat.com>
  1391. Frank Ch. Eigler <fche@redhat.com>
  1392. Ben Elliston <bje@redhat.com>
  1393. * Makefile.am (HFILES): Add mep-desc.h mep-opc.h.
  1394. (CFILES): Add mep-*.c
  1395. (ALL_MACHINES): Add mep-*.lo.
  1396. (CLEANFILES): Add stamp-mep.
  1397. (CGEN_CPUS): Add mep.
  1398. (MEP_DEPS): New variable.
  1399. (mep-*): New targets.
  1400. * configure.in: Handle bfd_mep_arch.
  1401. * disassemble.c (ARCH_mep): New macro.
  1402. (disassembler): Handle bfd_arch_mep.
  1403. (disassemble_init_for_target): Likewise.
  1404. * mep-*: New files for Toshiba Media Processor (MeP).
  1405. * Makefile.in: Regenerated.
  1406. * configure: Regenerated.
  1407. 2007-02-05 H.J. Lu <hongjiu.lu@intel.com>
  1408. * i386-dis.c (OP_J): Undo the last change. Properly handle 64K
  1409. wrap around within the same segment in 16bit mode.
  1410. 2007-02-02 H.J. Lu <hongjiu.lu@intel.com>
  1411. * i386-dis.c (OP_J): Mask to 16bit only if there is a data16
  1412. prefix.
  1413. 2007-02-02 H.J. Lu <hongjiu.lu@intel.com>
  1414. * avr-dis.c (avr_operand): Correct PR number in comment.
  1415. 2007-02-02 H.J. Lu <hongjiu.lu@intel.com>
  1416. * disassemble.c (disassembler_usage): Call
  1417. print_i386_disassembler_options for i386 disassembler.
  1418. * i386-dis.c (print_i386_disassembler_options): New.
  1419. (print_insn): Support the new addr64 option.
  1420. 2007-02-02 Hiroki Kaminaga <kaminaga@sm.sony.co.jp>
  1421. * ppc-dis.c (powerpc_dialect): Handle ppc440.
  1422. * ppc-dis.c (print_ppc_disassembler_options): Note the -M440 can
  1423. be used.
  1424. 2007-02-02 Alan Modra <amodra@bigpond.net.au>
  1425. * ppc-opc.c (insert_bdm): -Many comment.
  1426. (valid_bo): Add "extract" param. Accept both powerpc and power4
  1427. BO fields when disassembling with -Many.
  1428. (insert_bo, extract_bo, insert_boe, extract_boe): Adjust valid_bo call.
  1429. 2007-01-08 Kazu Hirata <kazu@codesourcery.com>
  1430. * m68k-opc.c (m68k_opcodes): Replace cpu32 with
  1431. cpu32 | fido_a except on tbl instructions.
  1432. 2007-01-04 Paul Brook <paul@codesourcery.com>
  1433. * arm-dis.c (arm_opcodes): Fix cpsie and cpsid entries.
  1434. 2007-01-04 Andreas Schwab <schwab@suse.de>
  1435. * m68k-opc.c: Fix encoding of signed bit in the cpu32 tbls insns.
  1436. 2007-01-04 Julian Brown <julian@codesourcery.com>
  1437. * arm-dis.c (neon_opcode): Fix disassembly for vshl, vqshl, vrshl,
  1438. vqrshl instructions.
  1439. For older changes see ChangeLog-2006
  1440. Copyright (C) 2007 Free Software Foundation, Inc.
  1441. Copying and distribution of this file, with or without modification,
  1442. are permitted in any medium without royalty provided the copyright
  1443. notice and this notice are preserved.
  1444. Local Variables:
  1445. mode: change-log
  1446. left-margin: 8
  1447. fill-column: 74
  1448. version-control: never
  1449. End: