]>
Commit | Line | Data |
---|---|---|
54192495 ILT |
1 | Mon Mar 28 12:28:30 1994 David Edelsohn ([email protected]) |
2 | ||
3 | * ppc-opc.c: Define POWER2 as short alias flag. | |
4 | (powerpc_opcodes): Add POWER/2 opcodes lfq*, stfq*, fcir[z], and | |
5 | fsqrt. | |
6 | ||
7 | Wed Mar 23 12:23:05 1994 Ian Lance Taylor ([email protected]) | |
8 | ||
9 | * i960-dis.c (print_insn_i960): Don't read a second word for | |
10 | opcodes 0, 1, 2 and 3. | |
11 | ||
12 | Wed Mar 16 15:37:58 1994 Ian Lance Taylor ([email protected]) | |
13 | ||
14 | * configure.in: Don't build m68881-ext.o for bfd_m68k_arch. | |
15 | ||
448ff992 ILT |
16 | Mon Mar 14 14:53:50 1994 Ian Lance Taylor ([email protected]) |
17 | ||
c0386c7a ILT |
18 | * m68881-ext.c: Removed; no longer used. |
19 | * Makefile.in: Changed accordingly. | |
20 | ||
448ff992 ILT |
21 | * m68k-dis.c (ext_format_68881): Don't declare. |
22 | (print_insn_m68k): If an instruction uses place 'i', it uses at | |
23 | least four fixed bytes. | |
24 | (print_insn_arg): Don't bump p by 2 for case 'I', place 'i'. For | |
25 | extended float, convert to double using floatformat_to_double, not | |
26 | ieee_extended_to_double, and fetch the data before converting it. | |
27 | ||
d75eb68c ILT |
28 | Tue Mar 8 18:12:25 1994 Ian Lance Taylor ([email protected]) |
29 | ||
30 | * mips-opc.c: It's sqrt.s, not sqrt.w. From | |
31 | [email protected] (David Johnson). | |
32 | ||
9a458b67 ILT |
33 | Tue Feb 8 16:55:27 1994 Ian Lance Taylor ([email protected]) |
34 | ||
35 | * ppc-opc.c (powerpc_opcodes): The POWER uses bdn[l][a] where the | |
36 | PowerPC uses bdnz[l][a]. | |
37 | ||
5c9b5f58 PS |
38 | Tue Feb 8 00:32:28 1994 Peter Schauer ([email protected]) |
39 | ||
4dd4933e | 40 | * dis-buf.c, i386-dis.c: Include sysdep.h. |
5c9b5f58 PS |
41 | |
42 | Mon Feb 7 19:22:23 1994 Ian Lance Taylor ([email protected]) | |
43 | ||
44 | * configure.in (bfd_powerpc_arch): Use ppc-dis.o and ppc-opc.o. | |
45 | ||
46 | * ppc-opc.c (powerpc_opcodes): Mark POWER instructions supported | |
47 | by Motorola PowerPC 601 with PPC_OPCODE_601. | |
48 | * ppc-dis.c (print_insn_big_powerpc, print_insn_little_powerpc): | |
49 | Disassemble Motorola PowerPC 601 instructions as well as normal | |
50 | PowerPC instructions. | |
51 | ||
9f80c72b JK |
52 | Sun Feb 6 07:45:17 1994 Jim Kingdon ([email protected]) |
53 | ||
54 | * i960-dis.c (reg, mem): Just use a static array instead of | |
55 | calling xmalloc. | |
56 | ||
e3960b96 JL |
57 | Sat Feb 5 00:04:02 1994 Jeffrey A. Law ([email protected]) |
58 | ||
0bb364c6 JL |
59 | * hppa-dis.c (print_insn_hppa): For '?' and '@' only adjust the |
60 | condition name index if this is for a negated condition. | |
61 | ||
e59f3227 JL |
62 | * hppa-dis.c (print_insn_hppa): No space before 'H' operand. |
63 | Floating point format for 'H' operand is backwards from normal | |
64 | case (0 == double, 1 == single). For '4', '6', '7', '9', and '8' | |
65 | operands (fmpyadd and fmpysub), handle bizarre register | |
66 | translation correctly for single precision format. | |
67 | ||
e3960b96 JL |
68 | * hppa-dis.c (print_insn_hppa): Do not emit a space after 'F' |
69 | or 'I' operands if the next format specifier is 'M' (fcmp | |
70 | condition completer). | |
71 | ||
72 | Feb 4 23:38:03 1994 Ian Lance Taylor ([email protected]) | |
1c214e4c ILT |
73 | |
74 | * ppc-opc.c (powerpc_operands): New operand type MBE to handle a | |
75 | single number giving a bitmask for the MB and ME fields of an M | |
76 | form instruction. Change NB to accept 32, and turn it into 0; | |
77 | also turn 0 into 32 when disassembling. Seperated SH from NB. | |
78 | (insert_mbe, extract_mbe): New functions. | |
79 | (insert_nb, extract_nb): New functions. | |
80 | (SC_MASK): Mask out SA and LK bits. | |
81 | (powerpc_opcodes): Change "cal" to use RT, D, RA rather than RT, | |
82 | RA, SI. Change "liu" and "cau" to use UI rather than SI. Mark | |
83 | "bctr" and "bctrl" as accepted by POWER. Change "rlwimi", | |
84 | "rlimi", "rlwimi.", "rlimi.", "rlwinm", "rlinm", "rlwinm.", | |
85 | "rlinm.", "rlmi", "rlmi.", "rlwnm", "rlnm", "rlwnm.", "rlnm." to | |
86 | use MBE rather than MB. Add "mfmq" and "mtmq" POWER instructions. | |
87 | (powerpc_macros): Define table of macro definitions. | |
88 | (powerpc_num_macros): Define. | |
89 | ||
90 | * ppc-dis.c (print_insn_powerpc): Don't skip optional operands | |
91 | if PPC_OPERAND_NEXT is set. | |
92 | ||
93 | Sat Jan 22 23:10:07 1994 Ian Lance Taylor ([email protected]) | |
94 | ||
95 | * i960-dis.c (print_insn_i960): Make buffer bfd_byte instead of | |
96 | char. Retrieve contents using bfd_getl32 instead of shifting. | |
97 | ||
1211751d ILT |
98 | Fri Jan 21 19:01:39 1994 Ian Lance Taylor ([email protected]) |
99 | ||
100 | * ppc-opc.c: New file. Opcode table for PowerPC, including | |
101 | opcodes for POWER (RS/6000). | |
102 | * ppc-dis.c: New file. PowerPC and Power (RS/6000) disassembler. | |
103 | * Makefile.in (ALL_MACHINES): Add ppc-dis.o and ppc-opc.o. | |
104 | (CFILES): Add ppc-dis.c. | |
105 | (ppc-dis.o, ppc-opc.o): New targets. | |
106 | * configure.in: Build ppc-dis.o and ppc-opc.o for bfd_rs6000_arch. | |
107 | ||
f037e5b0 JL |
108 | Mon Jan 17 20:05:49 1994 Jeffrey A. Law ([email protected]) |
109 | ||
110 | * hppa-dis.c (print_insn_hppa): Handle 'N' in assembler template. | |
111 | No space before 'u', 'f', or 'N'. | |
112 | ||
a279b1f5 JK |
113 | Sun Jan 16 14:20:16 1994 Jim Kingdon ([email protected]) |
114 | ||
4baf1a8c JK |
115 | * i386-dis.c (print_insn_i386): Add FIXME comment regarding reading |
116 | farther than we should. | |
117 | ||
a279b1f5 JK |
118 | * i386-dis.c (dis386): Use Yb and Yv for scasb and scasS. |
119 | ||
120 | Thu Jan 6 12:38:05 1994 David J. Mackenzie ([email protected]) | |
121 | ||
122 | * sparc-dis.c m68k-dis.c alpha-dis.c a29k-dis.c: Fix comments. | |
123 | ||
124 | Wed Jan 5 11:56:21 1994 David J. Mackenzie ([email protected]) | |
125 | ||
126 | * i960-dis.c (print_insn_i960): Only read word2 if the instruction | |
127 | needs it, to prevent reading past the end of a section. | |
128 | ||
129 | Wed Nov 17 17:20:12 1993 Ian Lance Taylor ([email protected]) | |
130 | ||
131 | * mips-opc.h: Use macro for j instruction, to support SVR4 PIC. | |
132 | Removed t,A case for la; always use t,A(b) case. | |
133 | ||
134 | Mon Nov 8 12:37:36 1993 Ian Lance Taylor ([email protected]) | |
135 | ||
136 | From Ted Lemen <[email protected]> | |
137 | * mips-dis.c (print_insn_arg): Handle 'k'. | |
138 | * mips-opc.c: Make cache use k, not t. | |
139 | ||
ba936a2e PS |
140 | Sun Nov 7 23:52:34 1993 Peter Schauer ([email protected]) |
141 | ||
142 | * alpha-opc.h, alpha-dis.c (print_insn_alpha): Add | |
143 | FLOAT_MEMORY_FORMAT_CODE, FLOAT_BRANCH_FORMAT_CODE, correct | |
144 | FLOAT_FORMAT_CODE to put out floating point register names. | |
145 | ||
146 | Mon Nov 1 18:17:51 1993 Ian Lance Taylor ([email protected]) | |
147 | ||
148 | * mips-opc.c: Use macros for jal variants, to support SVR4 PIC. | |
149 | ||
bf04fba0 JK |
150 | Thu Oct 28 17:42:23 1993 Ian Lance Taylor ([email protected]) |
151 | ||
152 | * a29k-dis.c (print_insn): Use 0x%08x, not 0x%8x. | |
153 | ||
70643dbc ILT |
154 | Wed Oct 27 11:48:01 1993 Ian Lance Taylor ([email protected]) |
155 | ||
156 | * mips-opc.c (dsll, dsra, dsrl): Added '>' cases for shift counts | |
157 | larger than 32. Moved dsxx32 variants first for disassembler. | |
158 | ||
07bf1ce5 SC |
159 | Mon Oct 25 11:33:14 1993 Steve Chamberlain ([email protected]) |
160 | ||
161 | * z8kgen.c, z8k-opc.h: Add full lda information. | |
162 | ||
163 | Tue Oct 19 12:39:25 1993 Jeffrey A Law ([email protected]) | |
164 | ||
165 | * hppa-dis.c (print_insn_hppa): Do not emit a space after | |
166 | movb instructions. Any necessary space will be emitted by | |
167 | the code to handle nullification completers. | |
168 | ||
169 | Wed Oct 13 16:19:07 1993 Ian Lance Taylor ([email protected]) | |
170 | ||
171 | * mips-opc.c: Moved l.d down so that it disassembles as ldc1. | |
172 | ||
bb959d0a PS |
173 | Fri Oct 8 02:34:21 1993 Peter Schauer ([email protected]) |
174 | ||
175 | * alpha-opc.h: Add ldl_l, fix typo for ldq_u. | |
176 | * alpha-dis.c (print_insn_alpha): Add code for PAL_FORMAT_CODE. | |
177 | ||
9978cd4d ILT |
178 | Tue Oct 5 17:47:53 1993 Ian Lance Taylor ([email protected]) |
179 | ||
180 | * mips-opc.c: Correct lwu opcode value (book had it wrong). | |
181 | ||
182 | Thu Sep 30 11:26:18 1993 Steve Chamberlain ([email protected]) | |
183 | ||
184 | * z8k-dis.c (FETCH_DATA): get just the right amount of data. | |
185 | (unpack_instr): Cope with ARG_IMM4M1 type instructions. | |
186 | ||
cb79d01d RP |
187 | Wed Sep 29 16:24:49 1993 K. Richard Pixley ([email protected]) |
188 | ||
189 | * m88k-dis.c (m88kdis): comment change. Remove space after | |
190 | printing mnemonic. | |
191 | (printop): handle new arg types DEC and XREG for m88110. | |
192 | ||
a0ad6c0f JK |
193 | Tue Sep 28 19:20:16 1993 Jeffrey A Law ([email protected]) |
194 | ||
195 | * hppa-dis.c (print_insn_hppa): Handle 'z' operand | |
196 | type for absolute branch addresses. Delete special | |
197 | "ble" and "be" code in 'W' operand code. | |
198 | ||
199 | Fri Sep 24 14:08:33 1993 Ian Lance Taylor ([email protected]) | |
200 | ||
201 | * mips-opc.c: Set hazard information correctly for branch | |
202 | likely instructions. | |
203 | ||
204 | Fri Sep 17 04:41:17 1993 Peter Schauer ([email protected]) | |
205 | ||
206 | * alpha-dis.c (print_insn_alpha), alpha-opc.h: Fix bugs, use | |
207 | info->fprintf_func for printing and info->print_address_func for | |
208 | address output. | |
209 | ||
210 | Wed Sep 15 12:12:07 1993 Ian Lance Taylor ([email protected]) | |
211 | ||
212 | * mips-opc.c: Set INSN_TRAP for tXX instructions. | |
213 | ||
214 | Thu Sep 9 10:11:27 1993 Ian Lance Taylor ([email protected]) | |
215 | ||
216 | * mips-opc.c: From [email protected] (David Johnson): | |
217 | Corrected second case of "b" for disassembler. | |
218 | ||
44647fcc ILT |
219 | Tue Sep 7 14:25:15 1993 Ian Lance Taylor ([email protected]) |
220 | ||
221 | * mips-dis.c, m88k-dis.c: Don't include libbfd.h. Changed calls | |
222 | to BFD swapping routines to correspond to BFD name changes. | |
223 | ||
a9c686ad ILT |
224 | Thu Sep 2 10:35:25 1993 Ian Lance Taylor ([email protected]) |
225 | ||
547998d2 ILT |
226 | * mips-opc.c: Change div machine instruction to be z,s,t rather |
227 | than s,t. Change div macro to be d,v,t rather than d,s,t. | |
228 | Likewise for divu, ddiv, ddivu. Added z,s,t case for drem, dremu, | |
229 | rem and remu which generates only the corresponding div | |
230 | instruction. This is for compatibility with the MIPS assembler, | |
231 | which only generates the simple machine instruction when an | |
232 | explicit destination of $0 is used. | |
233 | * mips-dis.c (print_insn_arg): Handle 'z' (always register zero). | |
a9c686ad | 234 | |
a5ba0d3f ILT |
235 | Thu Aug 26 17:41:44 1993 Ian Lance Taylor ([email protected]) |
236 | ||
237 | * mips-opc.c: From [email protected] (David Johnson): Set | |
238 | WR_31 hazard for bal, bgezal, bltzal. | |
239 | ||
240 | Thu Aug 26 17:20:02 1993 Jim Kingdon ([email protected]) | |
241 | ||
242 | * hppa-dis.c (print_insn_hppa): Use print function | |
243 | from within the disassemble_info, not fprintf_filtered. | |
244 | ||
245 | Wed Aug 25 13:51:40 1993 Ken Raeburn ([email protected]) | |
246 | ||
247 | * hppa-dis.c (print_insn_hppa): Handle '|' like '>'. (From Jeff | |
248 | Law, [email protected].) | |
249 | ||
320cdccf ILT |
250 | Mon Aug 23 12:44:05 1993 Ian Lance Taylor ([email protected]) |
251 | ||
252 | * mips-opc.c ("absu"): Removed. | |
253 | ("dabs"): Added. | |
254 | ||
2bef2d3e ILT |
255 | Fri Aug 20 10:52:52 1993 Ian Lance Taylor ([email protected]) |
256 | ||
257 | * mips-opc.c: Added r6000 and r4000 instructions and macros. | |
258 | Changed hazard information to distinguish between memory load | |
259 | delays and coprocessor load delays. | |
260 | ||
45b14705 ILT |
261 | Wed Aug 18 15:39:23 1993 Ian Lance Taylor ([email protected]) |
262 | ||
263 | * mips-opc.c: li.d uses "T,L", not "S,F". Added li.s. | |
264 | ||
ed2fe80f DM |
265 | Tue Aug 17 09:44:42 1993 David J. Mackenzie ([email protected]) |
266 | ||
267 | * configure.in: Don't pass cpu to config.bfd. | |
268 | ||
e9a30357 ILT |
269 | Tue Aug 17 12:23:52 1993 Ian Lance Taylor ([email protected]) |
270 | ||
271 | * m88k-dis.c (m88kdis): Make class unsigned. | |
272 | ||
273 | Thu Aug 12 15:08:18 1993 Ian Lance Taylor ([email protected]) | |
274 | ||
275 | * alpha-dis.c (print_insn_alpha): One branch format case was | |
276 | missing the instruction name. | |
277 | ||
278 | Wed Aug 11 19:29:39 1993 David J. Mackenzie ([email protected]) | |
279 | ||
280 | * Makefile.in (ALL_MACHINES): Renamed from DIS_LIBS. | |
281 | Add the arch-specific auxiliary files. | |
282 | (OFILES): Remove the arch-specific auxiliary files | |
283 | and use BFD_MACHINES instead of DIS_LIBS. | |
284 | * configure.in: Set BFD_MACHINES based on --with-targets option. | |
285 | ||
786e4f1a ILT |
286 | Thu Aug 12 12:04:53 1993 Ian Lance Taylor ([email protected]) |
287 | ||
288 | * mips-opc.c: Added lwc1 E,A(b) to go with lwc1 T,A(b). Similarly | |
289 | for swc1. | |
290 | ||
291 | Sun Aug 8 15:09:30 1993 Jim Kingdon ([email protected]) | |
292 | ||
293 | * sparc-opc.c: Change CONST to const to deal with gcc | |
294 | -Dconst=__const -traditional. | |
295 | ||
11a0aaa7 ILT |
296 | Fri Aug 6 10:58:55 1993 Ian Lance Taylor ([email protected]) |
297 | ||
298 | * mips-opc.c: From [email protected] (David Johnson): Took | |
299 | coprocessor instructions out of #if 0, and made them use new | |
300 | argument type "C". | |
301 | ||
071689e1 JK |
302 | Thu Aug 5 17:11:06 1993 Jim Kingdon ([email protected]) |
303 | ||
304 | * sparc-dis.c: Include ansidecl.h before opcodes/sparc.h. | |
305 | ||
306 | Fri Jul 30 18:48:15 1993 John Gilmore ([email protected]) | |
307 | ||
308 | * sparc-opc.c: Add F_JSR, F_UNBR, or F_CONDBR flags to each branch | |
309 | instruction, for use by the disassembler. | |
310 | ||
311 | * sparc-dis.c (SEX): Add sign extension macro. Replace many | |
312 | hand-coded sign extensions that depended on 32-bit host ints. | |
313 | FIXME, we still depend on big-endian host bitfield ordering. | |
314 | (sparc_print_insn): Set the insn_info_valid field, and the | |
315 | other fields that describe the instruction being printed. | |
316 | ||
317 | Tue Jul 27 17:04:58 1993 Jim Wilson ([email protected]) | |
318 | ||
319 | * sparc-opc.c (call): Accept all 6 addressing modes valid for | |
320 | `jmp' instead of just one of them. | |
321 | ||
4d135f1c JK |
322 | Wed Jul 21 11:43:32 1993 Jim Kingdon ([email protected]) |
323 | ||
071689e1 JK |
324 | * hppa-dis.c: Move floating registers from reg_names to fp_reg_names. |
325 | (fput_fp_reg_r): Renamed from fput_reg_r. | |
326 | (fput_fp_reg): New function. | |
327 | (print_insn_hppa): Use fput_fp_reg{,_r} where appropriate. | |
328 | ||
4d135f1c JK |
329 | * hppa-dis.c (print_insn_hppa, cases 'a', 'd'): Print space afterwards. |
330 | ||
331 | * hppa-dis.c (print_insn_hppa, case 'd'): Use GET_COND not GET_FIELD. | |
332 | ||
17068960 JK |
333 | Mon Jul 19 13:52:21 1993 Jim Kingdon ([email protected]) |
334 | ||
b2ad2e64 JK |
335 | * hppa-dis.c (print_insn_hppa): Use extract_5r_store for 'r'. |
336 | ||
981b3a27 JK |
337 | * hppa-dis.c (print_insn_hppa, case '>'): If next character is 'n', |
338 | don't output a space. | |
339 | ||
17068960 JK |
340 | * hppa-dis.c (float_format_names): 10 is undefined, and 11 is quad. |
341 | ||
32d2052a JK |
342 | Sun Jul 18 16:30:02 1993 Jim Kingdon ([email protected]) |
343 | ||
344 | * mips-opc.c: New file, containing opcode table from | |
345 | ../include/opcode/mips.h. | |
346 | * Makefile.in: Add it. | |
347 | ||
a4c01299 ILT |
348 | Thu Jul 15 12:37:05 1993 Ian Lance Taylor ([email protected]) |
349 | ||
350 | * m88k-dis.c: New file, moved in from gdb and changed to use the | |
351 | new dis-asm.h disassembler interface. | |
352 | * Makefile.in (DIS_LIBS): Added m88k-dis.o. | |
353 | (m88k-dis.o): New target. | |
354 | ||
37609724 ILT |
355 | Tue Jul 13 10:04:16 1993 Ian Lance Taylor ([email protected]) |
356 | ||
357 | * mips-dis.c (print_insn_arg, _print_insn_mips): Made pointer to | |
358 | argument string const char * to correspond to opcode/mips.h. | |
359 | ||
fde326fb ILT |
360 | Tue Jul 6 15:18:37 1993 Ian Lance Taylor ([email protected]) |
361 | ||
362 | * mips-dis.c: Updated to account for name changes in new version | |
363 | of opcode/mips.h. | |
364 | * Makefile.in: Added header file dependencies. | |
365 | ||
a5b5f81d DE |
366 | Sat Jul 3 23:47:56 1993 Doug Evans ([email protected]) |
367 | ||
368 | * h8300-dis.c (bfd_h8_disassemble): Correct fetching of instruction. | |
369 | ||
370 | Thu Jul 1 12:23:38 1993 Jim Kingdon ([email protected]) | |
371 | ||
372 | * m68k-dis.c (NEXTWORD, NEXTLONG): Use ((x) ^ 0x8000) - 0x8000 to sign | |
373 | extend, rather than shifts. | |
374 | ||
375 | Sun Jun 20 20:56:56 1993 Ken Raeburn ([email protected]) | |
376 | ||
377 | * Makefile.in: Undo 15 June change. | |
378 | ||
5b6c6336 PB |
379 | Fri Jun 18 14:15:15 1993 Per Bothner ([email protected]) |
380 | ||
381 | * m68k-dis.c (print_insn_arg): Change return value to byte count | |
382 | or error code. | |
383 | * m68k-dis.c: Re-write to detect invalid operands before | |
384 | printing anything, so we can handle this the same way we | |
385 | handle invalid opcodes. | |
386 | ||
219cf232 SC |
387 | Thu Jun 17 15:01:36 1993 Steve Chamberlain ([email protected]) |
388 | ||
389 | * sh-dis.c, sh-opc.h: Understand some more opcodes. | |
390 | ||
91ea6ab0 ILT |
391 | Wed Jun 16 13:48:05 1993 Ian Lance Taylor ([email protected]) |
392 | ||
393 | * hppa-dis.c: Include <ansidecl.h> and sysdep.h before other | |
394 | header files. | |
395 | ||
0a3c15c3 KR |
396 | Tue Jun 15 21:45:26 1993 Ken Raeburn ([email protected]) |
397 | ||
398 | * sparc-dis.c: Don't declare qsort, since sysdep.h might. | |
399 | ||
400 | * configure.in: Do make sysdep.h link. | |
401 | * Makefile.in: Search ../include. Don't search ../bfd. | |
402 | ||
5aef7c67 SG |
403 | Tue Jun 15 13:36:10 1993 Stu Grossman ([email protected]) |
404 | ||
405 | Changes from Jeff Law, [email protected]: | |
406 | * hppa-dis.c: Fix typo. 'a' and 'd' were reversed. | |
407 | Do not print a space before the completers specified by | |
408 | 'a' and 'd'. | |
409 | ||
112087ed KR |
410 | Fri Jun 11 18:40:21 1993 Ken Raeburn ([email protected]) |
411 | ||
998f2ef3 KR |
412 | * mips-dis.c: No longer need to bomb out if HOST_64_BIT is |
413 | defined, since gdb has been fixed. | |
414 | ||
112087ed KR |
415 | Changes from Jeff Law, [email protected]: |
416 | * hppa-dis.c (print_insn_hppa): Last argument to fput_reg, | |
417 | fput_reg_r, fput_creg, fput_const, and fputs_filtered should | |
418 | be a *disassemble_info, not a *FILE. | |
419 | * hppa-dis.c: Support 'd', '!', and 'a'. | |
420 | * hppa-dis.c: Support 's' to extract a 2 bit space register. | |
421 | * hppa-dis.c: Delete cases which are no longer needed. | |
422 | ||
e6fb7139 JK |
423 | Fri Jun 11 07:53:48 1993 Jim Kingdon ([email protected]) |
424 | ||
425 | * m68k-dis.c (print_insn_{m68k,arg}): Add MMU codes. | |
426 | ||
427 | Tue Jun 8 12:25:01 1993 Steve Chamberlain ([email protected]) | |
428 | ||
429 | * h8300-dis.c: New file, removed from bfd/cpu-h8300.c, with | |
430 | H8/300-H opcodes. | |
431 | ||
e0a8bcfb PB |
432 | Mon Jun 7 12:58:49 1993 Per Bothner ([email protected]) |
433 | ||
434 | * Makefile.in (CSEARCH): Add -I../bfd for sysdep.h and bfd.h. | |
435 | * configure.in: No longer need to configure to get sysdep.h. | |
436 | ||
437 | Thu Jun 3 15:56:49 1993 Stu Grossman ([email protected]) | |
438 | ||
439 | * Patches from Jeffrey Law <[email protected]>. | |
440 | * hppa-dis.c: Support 'I', 'J', and 'K' in output | |
441 | templates for 1.1 FP computational instructions. | |
442 | ||
443 | Tue May 25 13:05:48 1993 Ken Raeburn ([email protected]) | |
444 | ||
445 | * h8500-dis.c (print_insn_h8500): Address argument is type | |
446 | bfd_vma. | |
447 | * z8k-dis.c (print_insn_z8k, print_insn_z8001, print_insn_z8002): | |
448 | Ditto. | |
449 | ||
450 | * h8500-opc.h (addr_class_type): No comma at end of enumerator. | |
451 | * sh-opc.h (sh_nibble_type, sh_arg_type): Ditto. | |
452 | ||
453 | * sparc-dis.c (compare_opcodes): Move static declaration to | |
454 | top-level. | |
455 | ||
456 | Fri May 21 14:17:37 1993 Peter Schauer ([email protected]) | |
457 | ||
458 | * sparc-dis.c (print_insn_sparc): Implement 'n' argument for unimp | |
459 | instruction, remove unimp hack from 'l' argument. | |
460 | ||
461 | Wed May 19 15:35:54 1993 Stu Grossman ([email protected]) | |
462 | ||
463 | * z8k-dis.c (fetch_data): Use unsigned char to make ancient gcc's | |
464 | happy. | |
465 | ||
466 | Fri May 14 15:22:46 1993 Ian Lance Taylor ([email protected]) | |
467 | ||
468 | * Based on patches from [email protected] (David Johnson): | |
469 | * mips-dis.c (print_insn_arg): Handle 'C' for general coprocessor | |
470 | instructions. | |
471 | ||
cfa8d061 KR |
472 | Fri May 14 00:09:14 1993 Ken Raeburn ([email protected]) |
473 | ||
d698222b KR |
474 | * hppa-dis.c: Include dis-asm.h before sysdep.h. Changed some |
475 | arrays of string pointers to 2-d arrays of chars, to save | |
476 | space. | |
cfa8d061 KR |
477 | |
478 | Thu May 6 20:51:17 1993 Fred Fish ([email protected]) | |
479 | ||
480 | * a29k-dis.c, alpha-dis.c, i960-dis.c, sparc-dis.c, z8k-dis.c: | |
481 | Cast second arg to read_memory_func to "bfd_byte *", as necessary. | |
482 | ||
483 | Tue May 4 20:31:10 1993 Ken Raeburn ([email protected]) | |
484 | ||
485 | * hppa-dis.c: New file from Utah, adapted to new disassembler | |
486 | calling interface. | |
487 | * Makefile.in: Include it. | |
488 | ||
489 | Mon Apr 26 18:17:42 1993 Steve Chamberlain ([email protected]) | |
490 | ||
491 | * sh-dis.c, sh-opc.h: New files. | |
492 | ||
493 | Fri Apr 23 18:51:22 1993 Steve Chamberlain ([email protected]) | |
494 | ||
495 | * alpha-dis.c, alpha-opc.h: New files. | |
496 | ||
497 | Tue Apr 6 12:54:08 1993 Peter Schauer ([email protected]) | |
498 | ||
499 | * mips-dis.c: Sign extend 'j' and 'b' arguments, delta is a signed | |
500 | value. | |
501 | ||
d802b948 JG |
502 | Mon Apr 5 17:37:37 1993 John Gilmore ([email protected]) |
503 | ||
504 | * sparc-dis.c: Make "ta" the default trap instruction, "t" the alias. | |
505 | ||
506 | Fri Apr 2 07:24:27 1993 Ian Lance Taylor ([email protected]) | |
507 | ||
508 | * a29k-dis.c, sparc-dis.c, sparc-opc.c: Use CONST rather than | |
509 | const. | |
510 | ||
720b3aed JK |
511 | Thu Apr 1 11:20:43 1993 Jim Kingdon ([email protected]) |
512 | ||
513 | * sparc-dis.c: Use fprintf_func a few places where I forgot, | |
514 | and double percent signs a few places. | |
515 | ||
516 | * a29k-dis.c, i960-dis.c: New, merged from gdb and binutils. | |
517 | ||
518 | * i386-dis.c, m68k-dis.c, mips-dis.c, sparc-dis.c: | |
519 | Use info->print_address_func not print_address. | |
520 | ||
521 | * dis-buf.c (generic_print_address): New function. | |
522 | ||
f7ed13c7 JK |
523 | Wed Mar 31 10:07:04 1993 Jim Kingdon ([email protected]) |
524 | ||
525 | * Makefile.in: Add sparc-dis.c. | |
526 | sparc-dis.c: New file, merges binutils and gdb versions as follows: | |
527 | From GDB: | |
528 | Add `add' instruction to the set that get checked | |
529 | for a preceding `sethi' in order to print an absolute address. | |
530 | * (print_insn): Disassembly prefers real instructions. | |
531 | (is_delayed_branch): Speed up. | |
532 | * sparc-opcode.h: Add ALIAS bit to aliases. Fix up opcode tables. | |
533 | Still missing some float ops, and needs testing. | |
534 | * sparc-pinsn.c (print_insn): Eliminate 'set' test, subsumed by | |
535 | F_ALIAS. Use printf, not fprintf, when not passing a file | |
536 | pointer... | |
537 | (compare_opcodes): Check that identical instructions have | |
538 | identical opcodes, complain otherwise. | |
539 | From binutils: | |
540 | * New 'm' arg. | |
541 | * Include reg_names. | |
542 | From neither: | |
543 | Use dis-asm.h/read_memory_func interface. | |
544 | ||
05545edc RP |
545 | Wed Mar 31 20:49:06 1993 K. Richard Pixley ([email protected]) |
546 | ||
547 | * h8500-dis.c, i386-dis.c, m68k-dis.c, z8k-dis.c (fetch_data): | |
548 | deliberately return non-zero to setjmp from longjmp. Otherwise | |
549 | this code fails to compile. | |
550 | ||
cbe61cc6 SG |
551 | Wed Mar 31 17:04:31 1993 Stu Grossman ([email protected]) |
552 | ||
553 | * m68k-dis.c: Fix prototype for fetch_arg(). | |
554 | ||
5d0734a7 JK |
555 | Wed Mar 31 10:07:04 1993 Jim Kingdon ([email protected]) |
556 | ||
557 | * dis-buf.c: New file, for new read_memory_func interface. | |
558 | Makefile.in (OFILES): Include it. | |
559 | m68k-dis.c, i386-dis.c, h8500-dis.c, mips-dis.c, z8k-dis.c: | |
560 | Use new read_memory_func interface. | |
561 | ||
562 | Mon Mar 29 14:02:17 1993 Steve Chamberlain ([email protected]) | |
563 | ||
564 | * h8500-dis.c (print_insn_h8500): Get sign of fp offsets right. | |
565 | * h8500-opc.h: Fix couple of opcodes. | |
566 | ||
567 | Wed Mar 24 02:03:36 1993 david d `zoo' zuhn (zoo at poseidon.cygnus.com) | |
568 | ||
569 | * Makefile.in: add dvi & installcheck targets | |
570 | ||
2cb563e6 JG |
571 | Mon Mar 22 18:55:04 1993 John Gilmore ([email protected]) |
572 | ||
573 | * Makefile.in: Update for h8500-dis.c. | |
574 | ||
337110ea SC |
575 | Fri Mar 19 14:27:17 1993 Steve Chamberlain ([email protected]) |
576 | ||
577 | * h8500-dis.c, h8500-opc.h: New files | |
578 | ||
c840244e PB |
579 | Thu Mar 18 14:12:37 1993 Per Bothner ([email protected]) |
580 | ||
581 | * mips-dis.c, z8k-dis.c: Converted to use interface defined in | |
582 | ../include/dis-asm.h. | |
583 | * m68k-dis.c: New file (merge of ../binutils/m68k-pinsn.c | |
584 | and ../gdb/m68k-pinsn.c). | |
585 | * i386-dis.c: New file (merge of ../binutils/i386-pinsn.c | |
586 | and ../gdb/i386-pinsn.c). | |
587 | * m68881-ext.c: New file. Moved definition of | |
588 | ext_format ext_format_68881 from ../gdb/m68k-tdep.c. | |
589 | * Makefile.in: Adjust for new files. | |
590 | * i386-dis.c: Patches from John Hassey ([email protected]). | |
591 | * m68k-dis.c: Recognize '9' placement code, so (say) pflush | |
592 | can be dis-assembled. | |
593 | ||
594 | Wed Feb 17 09:19:47 1993 Ken Raeburn ([email protected]) | |
595 | ||
596 | * mips-dis.c (print_insn_arg): Now returns void. | |
597 | ||
598 | Mon Jan 11 16:09:16 1993 Fred Fish ([email protected]) | |
599 | ||
600 | * mips-dis.c (ansidecl.h): Include for benefit of sysdep.h | |
601 | files that use the macros. | |
602 | ||
603 | Thu Jan 7 13:15:17 1993 Ian Lance Taylor ([email protected]) | |
604 | ||
605 | * mips-dis.c: New file, from gdb/mips-pinsn.c. | |
606 | * Makefile.in (DIS_LIBS): Added mips-dis.o. | |
607 | (CFILES): Added mips-dis.c. | |
608 | ||
609 | Thu Jan 7 07:36:33 1993 Steve Chamberlain ([email protected]) | |
610 | ||
611 | * z8k-dis.c (print_insn_z8001, print_insn_z8002): new routines | |
612 | * z8kgen.c, z8k-opc.h: fix sizes of some shifts. | |
613 | ||
614 | Tue Dec 22 15:42:44 1992 Per Bothner ([email protected]) | |
615 | ||
616 | * Makefile.in: Improve *clean rules. | |
617 | * configure.in: Allow a default host. | |
618 | ||
619 | Tue Nov 17 19:53:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) | |
620 | ||
621 | * Makefile.in: also use -I$(srcdir)/../bfd, since some sysdep | |
622 | files include other sysdep files | |
623 | ||
624 | Thu Nov 12 16:10:37 1992 Steve Chamberlain ([email protected]) | |
625 | ||
626 | * z8k-dis.c z8k-opc.h z8kgen.c: checkpoint | |
627 | ||
628 | Fri Oct 9 04:56:05 1992 John Gilmore ([email protected]) | |
629 | ||
630 | * configure.in: For host support, use ../bfd/configure.host | |
631 | so it stays in sync with the ../bfd/hosts database. | |
632 | ||
d5dcef63 DZ |
633 | Thu Oct 1 23:38:54 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com) |
634 | ||
635 | * configure.in: use cpu-vendor-os triple instead of nested cases | |
636 | ||
0843ea63 MW |
637 | Wed Sep 30 16:09:20 1992 Michael Werner ([email protected]) |
638 | ||
639 | * z8k-dis.c (unparse_instr): fix bug where opcode returned was | |
640 | *always* the wrong one. | |
641 | ||
b31a1f81 SC |
642 | Wed Sep 30 07:42:17 1992 Steve Chamberlain ([email protected]) |
643 | ||
644 | * z8kgen.c: added copyright info | |
645 | ||
447bbbea SC |
646 | Tue Sep 29 12:20:21 1992 Steve Chamberlain ([email protected]) |
647 | ||
648 | * z8k-dis.c (unparse_instr): prettier tabs | |
649 | * z8kgen.c -> z8k-opc.h: bug fixes in tables | |
650 | ||
57cae454 SG |
651 | Fri Sep 25 12:50:32 1992 Stu Grossman (grossman at cygnus.com) |
652 | ||
653 | * configure.in: Add ncr* configuration. | |
654 | * z8k-dis.c (struct instr_data_s): Make instr_asmsrc char to make | |
655 | picayune ANSI compilers happy. | |
656 | ||
657 | Sep 20 08:50:55 1992 Fred Fish ([email protected]) | |
658 | ||
659 | * configure.in (i386): Make i386 and i486 synonymous for now. | |
660 | * configure.in (i[34]86-*-sysv4): Add my_host definition. | |
661 | ||
3a157902 KR |
662 | Fri Sep 18 17:01:23 1992 Ken Raeburn ([email protected]) |
663 | ||
664 | * Makefile.in (install): Fix typo. | |
665 | ||
68ca3238 JG |
666 | Fri Sep 18 02:04:24 1992 John Gilmore ([email protected]) |
667 | ||
668 | * Makefile.in (make): Remove obsolete crud. | |
669 | (sparc-opc.o): Avoid Sun Make VPATH bug. | |
670 | ||
e5bc6aaf RP |
671 | Tue Sep 8 17:29:27 1992 K. Richard Pixley ([email protected]) |
672 | ||
673 | * Makefile.in: since there are no SUBDIRS, remove rule and | |
68ca3238 | 674 | references of subdir_do. |
e5bc6aaf | 675 | |
794a16b0 KR |
676 | Tue Sep 8 17:02:58 1992 Ken Raeburn ([email protected]) |
677 | ||
678 | * Makefile.in (install): Get the library name right here too. | |
679 | Don't install bfd.h, since it's unrelated to this library. No | |
680 | subdirs to recurse into, either. | |
681 | (CFILES): The source file has a .c suffix, not .o. | |
682 | ||
683 | * sparc-opc.c: New file, moved from BFD. | |
684 | * Makefile.in (OFILES): Build it. | |
685 | ||
686 | Thu Sep 3 16:59:20 1992 Michael Werner ([email protected]) | |
687 | ||
688 | * z8k-dis.c: fixed forward refferences of some declarations. | |
689 | ||
690 | Mon Aug 31 16:09:45 1992 Michael Werner ([email protected]) | |
691 | ||
692 | * Makefile.in: get the name of the library right | |
693 | ||
a4ccc310 SC |
694 | Mon Aug 31 13:47:35 1992 Steve Chamberlain ([email protected]) |
695 | ||
add1fb05 | 696 | * z8k-dis.c: knows how to disassemble z8k stuff |
a4ccc310 SC |
697 | * z8k-opc.h: new file full of z8000 opcodes |
698 | ||
9a458b67 ILT |
699 | \f |
700 | Local Variables: | |
701 | version-control: never | |
702 | End: |