/[gxemul]/trunk/doc/index.html
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /trunk/doc/index.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 44 - (hide annotations)
Mon Oct 8 16:22:56 2007 UTC (16 years, 6 months ago) by dpavlin
File MIME type: text/html
File size: 7276 byte(s)
++ trunk/HISTORY	(local)
$Id: HISTORY,v 1.1632 2007/09/11 21:46:35 debug Exp $
20070616	Implementing the MIPS32/64 revision 2 "ror" instruction.
20070617	Adding a struct for each physpage which keeps track of which
		ranges within that page (base offset, length) that are
		continuously translatable. When running with native code
		generation enabled (-b), a range is added after each read-
		ahead loop.
		Experimenting with using the physical program counter sample
		data (implemented 20070608) together with the "translatable
		range" information, to figure out which physical address ranges
		would be worth translating to native code (if the number of
		samples falling within a range is above a certain threshold).
20070618	Adding automagic building of .index comment files for
		src/file/, src/promemul/, src src/useremul/ as well.
		Adding a "has been translated" bit to the ranges, so that only
		not-yet-translated ranges will be sampled.
20070619	Moving src/cpu.c and src/memory_rw.c into src/cpus/,
		src/device.c into src/devices/, and src/machine.c into
		src/machines/.
		Creating a skeleton cc/ld native backend module; beginning on
		the function which will detect cc command line, etc.
20070620	Continuing on the native code generation infrastructure.
20070621	Moving src/x11.c and src/console.c into a new src/console/
		subdir (for everything that is console or framebuffer related).
		Moving src/symbol*.c into a new src/symbol/, which should
		contain anything that is symbol handling related.
20070624	Making the program counter sampling threshold a "settings
		variable" (sampling_threshold), i.e. it can now be changed
		during runtime.
		Switching the RELEASE notes format from plain text to HTML.
		If the TMPDIR environment variable is set, it is used instead
		of "/tmp" for temporary files.
		Continuing on the cc/ld backend: simple .c code is generated,
		the compiler and linker are called, etc.
		Adding detection of host architecture to the configure script
		(again), and adding icache invalidation support (only
		implemented for Alpha hosts so far).
20070625	Simplifying the program counter sampling mechanism.
20070626	Removing the cc/ld native code generation stuff, program
		counter sampling, etc; it would not have worked well in the
		general case.
20070627	Removing everything related to native code generation.
20070629	Removing the (practically unusable) support for multiple
		emulations. (The single emulation allowed now still supports
		multiple simultaneous machines, as before.)
		Beginning on PCCTWO and M88K interrupts.
20070723	Adding a dummy skeleton for emulation of M32R processors.
20070901	Fixing a warning found by "gcc version 4.3.0 20070817
		(experimental)" on amd64.
20070905	Removing some more traces of the old "multiple emulations"
		code.
		Also looking in /usr/local/include and /usr/local/lib for
		X11 libs, when running configure.
20070909	Minor updates to the guest OS install instructions, in
		preparation for the NetBSD 4.0 release.
20070918	More testing of NetBSD 4.0 RC1.

1 dpavlin 12 <html><head><title>Gavare's eXperimental Emulator</title>
2 dpavlin 8 <meta name="robots" content="noarchive,nofollow,noindex"></head>
3 dpavlin 4 <body bgcolor="#f8f8f8" text="#000000" link="#4040f0" vlink="#404040" alink="#ff0000">
4     <table border=0 width=100% bgcolor="#d0d0d0"><tr>
5     <td width=100% align=center valign=center><table border=0 width=100%><tr>
6     <td align="left" valign=center bgcolor="#d0efff"><font color="#6060e0" size="6">
7 dpavlin 6 <b>Gavare's eXperimental Emulator&nbsp;&nbsp;&nbsp;&nbsp;(GXemul)</b>
8 dpavlin 4 </font></td></tr></table></td></tr></table><p>
9 dpavlin 2
10 dpavlin 12
11 dpavlin 2 <!--
12    
13 dpavlin 44 $Id: index.html,v 1.280 2007/06/28 15:20:16 debug Exp $
14 dpavlin 2
15 dpavlin 34 Copyright (C) 2003-2007 Anders Gavare. All rights reserved.
16 dpavlin 2
17     Redistribution and use in source and binary forms, with or without
18     modification, are permitted provided that the following conditions are met:
19    
20     1. Redistributions of source code must retain the above copyright
21     notice, this list of conditions and the following disclaimer.
22     2. Redistributions in binary form must reproduce the above copyright
23     notice, this list of conditions and the following disclaimer in the
24     documentation and/or other materials provided with the distribution.
25     3. The name of the author may not be used to endorse or promote products
26     derived from this software without specific prior written permission.
27    
28     THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
29     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31     ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
32     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34     OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36     LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37     OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38     SUCH DAMAGE.
39    
40     -->
41    
42     <h3>Contents:</h3>
43    
44     <p>
45     <ul>
46     <li><a href="intro.html">Introduction</a>
47     <ul>
48     <li><a href="intro.html#overview">Overview</a>
49 dpavlin 4 <li><a href="intro.html#free">Is GXemul Free software?</a>
50 dpavlin 2 <li><a href="intro.html#build">How to compile/build the emulator</a>
51 dpavlin 6 <li><a href="intro.html#run">How to run the emulator</a>
52 dpavlin 22 <li><a href="intro.html#cpus">Which processor architectures does GXemul emulate?</a>
53 dpavlin 42 <li><a href="intro.html#hosts">Which host architectures/platforms are supported?</a>
54 dpavlin 2 <li><a href="intro.html#accuracy">Emulation accuracy</a>
55     <li><a href="intro.html#emulmodes">Which machines does GXemul emulate?</a>
56     </ul>
57    
58     <p>
59 dpavlin 4
60 dpavlin 2 <li><a href="guestoses.html">Installing and running "guest OSes"</a>
61     <ul>
62     <li><a href="guestoses.html#generalnotes">General notes on running "guest OSes"</a>
63 dpavlin 22 <li><a href="guestoses.html#netbsdpmaxinstall">NetBSD/pmax</a>
64 dpavlin 10 <li><a href="guestoses.html#netbsdarcinstall">NetBSD/arc</a>
65     <li><a href="guestoses.html#netbsdhpcmipsinstall">NetBSD/hpcmips</a>
66     <li><a href="guestoses.html#netbsdcobaltinstall">NetBSD/cobalt</a>
67     <li><a href="guestoses.html#netbsdevbmipsinstall">NetBSD/evbmips</a>
68 dpavlin 30 <li><a href="guestoses.html#netbsdalgorinstall">NetBSD/algor</a>
69 dpavlin 10 <li><a href="guestoses.html#netbsdsgimips">NetBSD/sgimips</a>
70 dpavlin 14 <li><a href="guestoses.html#netbsdcatsinstall">NetBSD/cats</a>
71 dpavlin 22 <li><a href="guestoses.html#netbsdevbarminstall">NetBSD/evbarm</a>
72 dpavlin 30 <li><a href="guestoses.html#netbsdnetwinderinstall">NetBSD/netwinder</a>
73 dpavlin 20 <li><a href="guestoses.html#netbsdprepinstall">NetBSD/prep</a>
74 dpavlin 34 <li><a href="guestoses.html#netbsdmacppcinstall">NetBSD/macppc</a>
75 dpavlin 44 <li><a href="guestoses.html#netbsdpmppc">NetBSD/pmppc</a>
76 dpavlin 36 <li><a href="dreamcast.html#netbsd_generic_md">NetBSD/dreamcast</a>
77     <li><a href="dreamcast.html#linux_live_cd">Linux/dreamcast</a>
78 dpavlin 22 <li><a href="guestoses.html#openbsdpmaxinstall">OpenBSD/pmax</a>
79 dpavlin 14 <li><a href="guestoses.html#openbsdcatsinstall">OpenBSD/cats</a>
80 dpavlin 40 <li><a href="guestoses.html#openbsdlandiskinstall">OpenBSD/landisk</a>
81 dpavlin 10 <li><a href="guestoses.html#ultrixinstall">Ultrix/RISC</a>
82     <li><a href="guestoses.html#sprite">Sprite for DECstation</a>
83     <li><a href="guestoses.html#declinux">Debian GNU/Linux for DECstation</a>
84 dpavlin 2 </ul>
85    
86     <p>
87    
88     <li><a href="experiments.html">Experimenting with GXemul</a>
89     <ul>
90     <li><a href="experiments.html#hello">Hello world</a>
91     <li><a href="experiments.html#expdevices">Experimental devices</a>
92     </ul>
93    
94     <p>
95    
96 dpavlin 32 <li><a href="configfiles.html">Configuration files</a>
97 dpavlin 24 <ul>
98 dpavlin 32 <li><a href="configfiles.html#intro">Introduction</a>
99     <li><a href="configfiles.html#config">Configuration file syntax</a>
100     <li><a href="configfiles.html#minimal">A minimal example</a>
101 dpavlin 24 </ul>
102    
103     <p>
104    
105 dpavlin 32 <li><a href="networking.html">Networking</a>
106 dpavlin 2 <ul>
107 dpavlin 32 <li><a href="networking.html#intro">Introduction</a>
108     <li><a href="networking.html#multihost">Network across multiple hosts</a>
109     <li><a href="networking.html#direct_example_1">Direct-access example 1: udp_snoop</a>
110 dpavlin 2 </ul>
111    
112     <p>
113    
114 dpavlin 34 <li><a href="dreamcast.html">Dreamcast emulation</a>
115     <ul>
116     <li><a href="dreamcast.html#intro">Introduction</a>
117     <li><a href="dreamcast.html#netbsd_generic_md">NetBSD/dreamcast GENERIC_MD</a>
118     <li><a href="dreamcast.html#netbsd_live_cd">NetBSD/dreamcast Live CD</a>
119     <li><a href="dreamcast.html#linux_live_cd">Linux/dreamcast Live CD</a>
120     </ul>
121    
122     <p>
123    
124 dpavlin 12 <li><a href="misc.html">Miscellaneous</a>
125 dpavlin 2 <ul>
126 dpavlin 12 <li><a href="misc.html#devel">Writing operating system code, or
127     developing firmware, using GXemul</a>
128 dpavlin 2 <li><a href="misc.html#compilercontruct">Using GXemul in compiler contruction courses</a>
129     <li><a href="misc.html#disk">How to start the emulator with a disk image</a>
130 dpavlin 38 <li><a href="misc.html#tape_images">How to start the emulator with tape images</a>
131     <li><a href="misc.html#disk_overlays">How to use disk image overlays</a>
132 dpavlin 20 <li><a href="misc.html#filexfer">Transfering files to/from the guest OS</a>
133 dpavlin 2 <li><a href="misc.html#largeimages">How to extract large gzipped disk images</a>
134     <li><a href="misc.html#userland">Running userland binaries</a>
135     <li><a href="misc.html#promdump">Using a PROM dump from a real machine</a>
136     </ul>
137    
138     <p>
139    
140 dpavlin 38 <li><a href="translation.html">Dynamic Translation</a>
141     <ul>
142     <li><a href="translation.html#staticvsdynamic">Static vs. dynamic</a>
143     <li><a href="translation.html#ir">Executable Intermediate Representation</a>
144     <li><a href="translation.html#performance">Performance</a>
145     <li><a href="translation.html#instrcomb">Instruction Combinations</a>
146     <li><a href="translation.html#native">Native Code Generation Back-ends</a>
147     </ul>
148    
149     <p>
150    
151 dpavlin 2 <li><a href="technical.html">Technical details</a>
152     <ul>
153 dpavlin 10 <li><a href="technical.html#speed">Speed and emulation modes</a>
154 dpavlin 2 <li><a href="technical.html#net">Networking</a>
155     <li><a href="technical.html#devices">Emulation of hardware devices</a>
156     </ul>
157    
158     </ul>
159    
160    
161    
162    
163     <p><br>
164     <a name="feedback"></a>
165     <h3>Feedback:</h3>
166    
167     If you have found GXemul useful, found a bug, or have other comments,
168     then don't hesitate to mail me.
169     <p>
170     (Anders Gavare)
171     <p>
172     <img src="maddr.gif">
173    
174    
175     </p>
176    
177     </body>
178     </html>

  ViewVC Help
Powered by ViewVC 1.1.26