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

Subversion Repositories openrisc_me

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

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

powered by: WebSVN 2.1.0

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