OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [or1ksim/] [NEWS] - Blame information for rev 420

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 85 jeremybenn
              Or1ksim: The OpenRISC 1000 Architectural Simulator
2
              ==================================================
3
 
4
 
5 420 jeremybenn
New in top of tree
6
==================
7
 
8
New features (shouldn't be there during a release cycle, but prompted by debug
9
needs elsewhere in the tool chain).
10
 
11
New option --trace provides a one line dump of instruction executed and any
12
register or memory location changed after each instruction.
13
 
14
New config setting for memory initialization "exitnops" fills memory with
15
"l.nop 1", which will cause the simulator to exit. Good for tracking pointer
16
corruption.
17
 
18
 
19 385 jeremybenn
New in release 0.5.0rc2
20
=======================
21
 
22
No new features. This is purely bug fixes post-0.5.0rc1.
23
 
24
The following bugs are fixed.
25 420 jeremybenn
* Bug 1847: Build issues with RSP server (duplicate of 1815).
26
* Bug 1846: Casting errors.
27 385 jeremybenn
* Bug 1824: Memory controller issue (marked as duplicate of Bug 1758).
28 420 jeremybenn
* Bug 1816: Error message when target not set is obscure (duplicate of 1813).
29
* Bug 1815: Build errors with RSP server.
30 385 jeremybenn
* Bug 1813: "make check" fails before installation.
31
 
32
The following bugs are outstanding
33
* Bug 1823: Configuration file error line numbers are wrong.
34
* Bug 1822: ATA configuration is broken. Documented in user guide.
35
* Bug 1758: Memory controller issues. Workaround in the user guide.
36
 
37
 
38 346 jeremybenn
New in release 0.5.0rc1
39
=======================
40 143 jeremybenn
 
41 346 jeremybenn
The floating point implementation is now based on John Hauser's "softfloat"
42
package, ensuring rigorous compliance with the IEEE 754-2008 standard.
43
 
44 143 jeremybenn
The library interface is extended to allow registers and memory to be written
45 346 jeremybenn
directly and processor stalled and unstalled. This is to allow direct
46
integration as a simulator in GDB.
47 143 jeremybenn
 
48 346 jeremybenn
Some of the existing library interface functions have different prototypes.
49
 
50 224 jeremybenn
The "include" feature of configuration files (which never worked, but no one
51
ever noticed) is dropped.
52
 
53
If the configuration file is not found in the local directory, it is searched
54
for in the ${HOME}/.or1ksim directory, then (for backwards compatibility) the
55
${HOME}/.or1k directory.
56
 
57 346 jeremybenn
If no simulation file is specified, then sim.cfg is not searched for as a
58
default.
59 224 jeremybenn
 
60 346 jeremybenn
New options are added -q|--quiet, -V|--verbose, -m|--memory and
61
--report-memory-errors. The semantics of --nosrv and --src otpions are changed.
62 224 jeremybenn
 
63 346 jeremybenn
There is a configuration option to collect statistics on instruction execution
64
in binary form.
65
 
66
In previous versions, Bus exceptions were unique in that they produced an
67
error message on standard output. The default is now for this exception to be
68
handled silently, unless requested by --report-memory-errors.
69
 
70
The following feature requests have been accepted.
71
* Feature  393: Integrate Or1ksim in GDB.
72
 
73 143 jeremybenn
The following bugs are fixed.
74 346 jeremybenn
* Bug 1821: Reference configuration file has defective debug section.
75
* Bug 1817: Reference configuration file missing from distribution.
76
* Bug 1795: GDB breakpoints do not work with the instruction cache.
77 143 jeremybenn
 
78 346 jeremybenn
The following bugs are either cannot be reproduced or will not be fixed.
79
 
80
The following bugs are outstanding
81
* Bug 1824: Memory controller issue (probably the same as Bug 1758).
82
* Bug 1823: Configuration file error line numbers are wrong.
83
* Bug 1822: ATA section in configuration file is broken.
84
* Bug 1816: Error message when target not set is obscure.
85
* Bug 1813: "make check" fails before installation.
86
* Bug 1758: Memory controller issues. Workaround in the user guide.
87
 
88
 
89 134 jeremybenn
New in release 0.4.0
90
====================
91
 
92
No new features or bugs. This is the full release based on 0.4.0rc2.
93
 
94
 
95 127 jeremybenn
New in release 0.4.0rc2
96
=======================
97 107 jeremybenn
 
98
No new features are provided, pending full release of 0.4.0.
99
 
100 124 jeremybenn
The configuration options --enable-arith-flag and --enable-ov-flag have been
101
removed, since they were the source of bugs, notably Bugs 1782, 1783 and 1784.
102
 
103 127 jeremybenn
The configuration option --enable-unsigned-xori has been added to allow a
104
conditional solution to Bug 1790.
105
 
106 107 jeremybenn
The following bugs are fixed.
107
* Bug 1770: l.div does not set carry or give correct exception.
108 114 jeremybenn
* Bug 1771: l.add* do not correctly set the overflow flag.
109 115 jeremybenn
* Bug 1772: l.fl1 not implemented.
110 116 jeremybenn
* Bug 1773: l.maci not correctly implemented.
111 118 jeremybenn
* Bug 1774: l.mulu not implemented.
112 121 jeremybenn
* Bug 1775: l.jalr and l.jr don't trigger alignment exceptions.
113 114 jeremybenn
* Bug 1776: l.addic is not implemented.
114 122 jeremybenn
* Bug 1777: l.macrc not correctly implemented.
115
* Bug 1778: l.ror and l.rori are not implemented.
116 123 jeremybenn
* Bug 1779: l.mtspr implementation is incorrect.
117 124 jeremybenn
* Bug 1782: Or1ksim setting of overflow flag is wrong.
118
* Bug 1783: Or1ksim definition of overflow is wrong.
119
* Bug 1784: Or1ksim does not trigger overflow exceptions.
120 127 jeremybenn
* Bug 1790: l.xori implementation is incorrect.
121 107 jeremybenn
 
122
The following bugs are either cannot be reproduced or will not be fixed.
123
 
124
The following bugs are outstanding
125 114 jeremybenn
* Bug 1758: Memory controller issues. Workaround in the user guide.
126 107 jeremybenn
 
127
 
128 104 jeremybenn
New in release 0.4.0rc1
129
=======================
130 85 jeremybenn
 
131 86 jeremybenn
The following new features are provided.
132 85 jeremybenn
* testbench now renamed testsuite and fully integrated using DejaGNU.
133
  "make check" now works correctly if the OpenRISC toolchain is installed.
134 86 jeremybenn
* New configuration flag --enable-all-tests to enable building of incomplete
135
  tests with "make check".
136 104 jeremybenn
* The library offers an interface via modelled JTAG
137
* Single precision floating point is available.
138 85 jeremybenn
 
139 86 jeremybenn
The user guide is updated.
140
 
141
The following feature requests have been accepted.
142 104 jeremybenn
* Feature  413: ORFPX32 single precision floating point now supported.
143 85 jeremybenn
* Feature  469: Icache tags now intialized as invalid.
144
* Feature 1673: Or1ksim now builds on Mac OS X.
145
* Feature 1678: download, patch and build dirs removed from SVN.
146
 
147 86 jeremybenn
The following feature requests have been rejected.
148 85 jeremybenn
* Feature  399: Writeable SR_LEE bit will not be provided.
149
* Feature  409: Separate ELF loader library already exists in binutils.
150
* Feature  586: Ignoring HW breakpoints is already possible.
151
 
152 89 jeremybenn
The following bugs are fixed.
153
* Bug  534: Test suite fixed (see above).
154
* Bug 1710: mprofile now handles mode args correctly.
155
* Bug 1723: PS2 keyboard error message clearer if RX file won't open.
156 104 jeremybenn
* Bug 1733: Or1ksim now accepts ELF image when working through RSP.
157
* Bug 1767: l.lws is not recognized as an opcode.
158 85 jeremybenn
 
159 89 jeremybenn
The following bugs are either cannot be reproduced or will not be fixed.
160
 
161 104 jeremybenn
The following bugs are outstanding
162
* Bug 1758: Memory controller issues. Workaround in the user guide.
163 89 jeremybenn
 
164 104 jeremybenn
 
165 19 jeremybenn
New in release 0.3.0
166 85 jeremybenn
====================
167
 
168 19 jeremybenn
* No new features or bugs. This is the full release based on rc3.
169
 
170
New in release 0.3.0rc3
171 85 jeremybenn
=======================
172
 
173 19 jeremybenn
* Bug 376 fixed: 32 interrupts now supported
174
* Bug 377 fixed: Level triggered interrupts now work correctly
175
* Bug 378 fixed: xterm UART now works with RSP
176
* Bug 379 fixed: RSP performance improved
177
* Bug 380 fixed: GDB 6.8 stepi now works through Or1ksim JTAG interface
178
* Bug 398 fixed: Lack of support for LEE bit in SR documented
179
* Bug 415 fixed: NPC behavior on writing optionally matches real HW
180
* Bug 418 fixed: All library up calls are host-endian
181
 
182
* Feature 395 added: Boot from 0xf0000000 now enabled.
183
* Feature 408 added: Image file may be NULL for or1ksim_init.
184
* Feature 410 added: RSP now clears sigval on unstalling the processor.
185
* Feature 417 added: Or1ksim prints out its version on startup.
186
 
187
New in release 0.3.0rc2
188 85 jeremybenn
=======================
189
 
190 19 jeremybenn
* A number of bug fixes
191
* Updates to user guide
192
 
193
New in release 0.3.0rc1
194 85 jeremybenn
=======================
195
 
196 19 jeremybenn
* Numerous bug fixes (see the OpenRISC tracker and the ChangeLog file)
197
* User Guide
198
* Consistent coding style and file naming throughout
199
* Support for external SystemC models
200
 
201 85 jeremybenn
New in release 1.9 (old style numbering)
202
========================================
203 19 jeremybenn
 
204
* support for binary COFF
205
* generation of verilog memory models (used when you want to run simulation
206
of OpenRISC processor cores)
207
 
208 85 jeremybenn
New in release 1.2 (old style numbering)
209
========================================
210 19 jeremybenn
 
211
* support for OR16 ISA
212
 
213 85 jeremybenn
New in release 1.1 (old style numbering)
214
========================================
215 19 jeremybenn
 
216
 * First release

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.