]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/rx/ChangeLog
[include/opcode]
[thirdparty/binutils-gdb.git] / sim / rx / ChangeLog
1 2010-07-29 DJ Delorie <dj@redhat.com>
2
3 * rx.c (decode_cache_base): New.
4 (id_names): Remove ediv and edivu.
5 (optype_names): Add TwoReg.
6 (maybe_get_mem_page): New.
7 (rx_get_byte): Call it.
8 (get_op): Add TwoReg support.
9 (put_op): Likewise.
10 (PD, PS, PS2, GD, GS, GS2, DSZ, SSZ, S2SZ, US1, US2, OM): "opcode"
11 is a pointer now.
12 (DO_RETURN): New. We use longjmp to return an exception result.
13 (decode_opcode): Make opcode a pointer to the decode cache. Save
14 decoded opcode information and re-use. Call DO_RETURN instead of
15 return throughout. Remove ediv and edivu.
16 * mem.c (ptdc): New. Adds decode cache.
17 (rx_mem_ptr): Support it.
18 (rx_mem_decode_cache): New.
19 * mem.h (enum mem_ptr_action): add MPA_DECODE_CACHE.
20 (rx_mem_decode_cache): Declare.
21 * gdb-if.c (sim_resume): Add decode_opcode's setjmp logic here...
22 * main.c (main): ...and here. Use a fast loop if neither trace
23 nor disassemble is given.
24 * cpu.h (RX_MAKE_STEPPED, RX_MAKE_HIT_BREAK, RX_MAKE_EXITED,
25 RX_MAKE_STOPPED, RX_EXITED, RX_STOPPED): Adjust so that 0 is not a
26 valid code for anything.
27
28 2010-07-27 DJ Delorie <dj@redhat.com>
29
30 * README.txt: New.
31 * config.h (CYCLE_ACCURATE, CYCLE_STATS): New.
32 * configure.in (--enable-cycle-accurate, --enable-cycle-stats):
33 New. Default to enabled.
34 * configure: Regenerate.
35
36 * cpu.h (regs_type): Add cycle tracking info.
37 (reset_pipeline_stats): Declare.
38 (halt_pipeline_stats): Declare.
39 (pipeline_stats): Declare.
40 * main.c (done): Call pipeline_stats().
41 * mem.h (rx_mem_ptr): Moved to here ...
42 * mem.c (mem_ptr): ... from here. Rename throughout.
43 (mem_put_byte): Move LEDs to Port A. Add Port B to control cycle
44 statistics. Move UART to SCI4.
45 (mem_put_hi): Add TPU 1-2. TPU 1 and 2 count CPU cycles.
46 * reg.c (init_regs): Set Rt reg to -1 (no reg).
47 * rx.c: Add cycle counting and statistics throughout.
48 (rx_get_byte): Optimize for speed.
49 (decode_opcode): Likewise.
50 (reset_pipeline_stats): New.
51 (halt_pipeline_stats): New.
52 (pipeline_stats): New.
53 * trace.c (sim_disasm_one): Print cycle count.
54
55 2010-07-07 Kevin Buettner <kevinb@redhat.com>
56
57 * gdb-if.c (sim_store_register): Add case for sim_rx_acc_regnum.
58
59 2010-06-24 Kevin Buettner <kevinb@redhat.com>
60
61 * gdb-if.c (trace.h): Include.
62 (reg_size, sim_fetch_register): Add cases for sim_rx_acc_regnum.
63
64 2010-06-07 Nick Clifton <nickc@redhat.com>
65
66 * reg.c (set_oszc): Use unsigned int for the mask.
67 (set_szc, set_osz, set_sz): Likewise.
68
69 2010-05-28 Kevin Buettner <kevinb@redhat.com>
70
71 * gdb-if.c (sim_do_command): Add a "sim verbose noisy" command.
72
73 2010-04-14 Mike Frysinger <vapier@gentoo.org>
74
75 * gdb-if.c (sim_write): Add const to buf arg.
76
77 2010-01-30 Masaki Muranaka <monaka@monami-software.com>
78
79 * configure.in: Check if the host has getopt.h.
80 * configure: Regenerate.
81 * config.in: Regenerate.
82 * main.c: Include config.h.
83 Use HAVE_STDLIB_H, HAVE_UNISTD_H, HAVE_GETOPT_H.
84 Include getopt.h in case HAVE_GETOPT_H is defined.
85
86 2009-12-22 Yoshinori Sato <ysato@users.sourceforge.jp>
87
88 * rx/rx.c (decode_opcode): btst bit address mask fix.
89
90 2009-11-30 DJ Delorie <dj@redhat.com>
91
92 * rx/rx.c (decode_opcode): fix SWHILE logic.
93
94 2009-10-27 DJ Delorie <dj@redhat.com>
95 Kevin Buettner <kevinb@redhat.com>
96
97 * load.h: New.
98 * rx.c: New.
99 * syscalls.c: New.
100 * syscalls.h: New.
101 * load.c: New.
102 * configure.in: New.
103 * gdb-if.c: New.
104 * err.c: New.
105 * cpu.h: New.
106 * Makefile.in: New.
107 * fpu.c: New.
108 * mem.c: New.
109 * config.in: New.
110 * err.h: New.
111 * reg.c: New.
112 * mem.h: New.
113 * main.c: New.
114 * misc.h: New.
115 * trace.c: New.
116 * misc.c: New.
117 * syscall.h: New.
118 * trace.h: New.
119 * fpu.h: New.