| Author |
Message |
Gromer
Guest
|
Posted:
Tue Nov 22, 2005 9:15 am Post subject:
Emulating a processor |
|
|
Hi all,
I'm interested to understand the processor architecture in depth. So i
decided on emulating the processor itself (as my project). The best one
to start would be 386.
So i wud require some documents which explains on how to emulate any
processor or devices. ( Apart from the Intel Architecture documents
available).
How to emulate a 386 processor. I want to kno how usually this is done.
I wonder how bochs has been developed so elegantly...the resource
they've used.
It wud be appreciable if someone can guide me on any documents or
reference books avaliable on Emulating processors and devices.
..
Wht are the resources I should have in hand to start up up this
project.
Thanks,
Gromer |
|
| Back to top |
|
 |
Michael Quinlivan
Guest
|
Posted:
Tue Nov 22, 2005 9:15 am Post subject:
Re: Emulating a processor |
|
|
why not take a look at the Bochs source code? Of course, it emulates
an entire PC system, not just the processor... |
|
| Back to top |
|
 |
Simon Felix
Guest
|
Posted:
Tue Nov 22, 2005 9:15 am Post subject:
Re: Emulating a processor |
|
|
basically you have two choices:
full emulation: you read a byte from (emulated) ram and
interpret/execute it (use a huge switch-statement). then advance to the
next byte and interpret/execute it, ...
the virtualpc/qemu-with-accelerator/vmware/...-way: run the code as
ring3-process. catch every exception and emulate the thing that caused
the exception (i/o ports, mmu-stuff, ...)
but i suggest starting with something similar to dosbox
(http://dosbox.sf.net/). create a real-mode-only-emulator first. messing
around with page-tables and exceptions makes emulation quite difficult
to get right...
regards,
simon
Gromer wrote:
| Quote: | Hi all,
I'm interested to understand the processor architecture in depth. So i
decided on emulating the processor itself (as my project). The best one
to start would be 386.
So i wud require some documents which explains on how to emulate any
processor or devices. ( Apart from the Intel Architecture documents
available).
How to emulate a 386 processor. I want to kno how usually this is done.
I wonder how bochs has been developed so elegantly...the resource
they've used.
It wud be appreciable if someone can guide me on any documents or
reference books avaliable on Emulating processors and devices.
.
Wht are the resources I should have in hand to start up up this
project.
Thanks,
Gromer
|
|
|
| Back to top |
|
 |
Damiano
Guest
|
Posted:
Tue Nov 22, 2005 5:15 pm Post subject:
Re: Emulating a processor |
|
|
Hi Gromer
Why not to take an approach to vhdl.
Instead of emulating you can simulate and even synthesize.
If your aim is to better understand how a processor work this may give you a
deeper understanding.
Also there are numerous processor cores available as open source in vhdl,
mainly microcontrollers.
"Gromer" <osIndgy@gmail.com> ha scritto nel messaggio
news:1132639105.148321.60240@o13g2000cwo.googlegroups.com...
| Quote: | Hi all,
I'm interested to understand the processor architecture in depth. So i
decided on emulating the processor itself (as my project). The best one
to start would be 386.
So i wud require some documents which explains on how to emulate any
processor or devices. ( Apart from the Intel Architecture documents
available).
How to emulate a 386 processor. I want to kno how usually this is done.
I wonder how bochs has been developed so elegantly...the resource
they've used.
It wud be appreciable if someone can guide me on any documents or
reference books avaliable on Emulating processors and devices.
.
Wht are the resources I should have in hand to start up up this
project.
Thanks,
Gromer
|
|
|
| Back to top |
|
 |
Hans-Bernhard Broeker
Guest
|
Posted:
Tue Nov 22, 2005 5:15 pm Post subject:
Re: Emulating a processor |
|
|
[F'up2 cut down --- OP neglected doing it.]
In comp.arch.embedded Gromer <osIndgy@gmail.com> wrote:
| Quote: | I'm interested to understand the processor architecture in depth. So
i decided on emulating the processor itself (as my project). The
best one to start would be 386.
|
I really wonder by what strange criteria the 386 could possibly come
out as "the best". Actually, the x86 is almost certainly the single
worst possible CPU line to do any theoretical work on. It's just too
plagued with silly exceptions due to its long history of compatibility
kept at almost any cost.
If you really want to learn something about CPU emulation, I'd
recommend Professor Knuth's work on the MIX and MMIX platforms ---
those are CPUs designed purely for educational purpose, and they only
ever existed as emulators, the original ones written by his Knuth-ness
in person.
--
Hans-Bernhard Broeker (broeker@physik.rwth-aachen.de)
Even if all the snow were burnt, ashes would remain. |
|
| Back to top |
|
 |
Grant Edwards
Guest
|
Posted:
Tue Nov 22, 2005 5:15 pm Post subject:
Re: Emulating a processor |
|
|
On 2005-11-22, Gromer <osIndgy@gmail.com> wrote:
| Quote: | I'm interested to understand the processor architecture in depth. So i
decided on emulating the processor itself (as my project). The best one
to start would be 386.
|
Yikes. Since you've never written an emulator, I would have
recommended starting with a decent architecture. Something like
a PDP-11 or 6809 or Z80. The '386 is a really nasty bit of
work. It's 3 or 4 badly designed processors rolled into one.
| Quote: | So i wud require some documents which explains on how to
emulate any processor or devices. ( Apart from the Intel
Architecture documents available). How to emulate a 386
processor. I want to kno how usually this is done. I wonder
how bochs has been developed so elegantly...the resource
they've used.
|
Well, if you want to know how bochs as done, then look at the
bochs source code and documentation.
| Quote: | It wud be appreciable if someone can guide me on any documents or
reference books avaliable on Emulating processors and devices.
Wht are the resources I should have in hand to start up up this
project.
|
--
Grant Edwards grante Yow! Yow! Are we in the
at perfect mood?
visi.com |
|
| Back to top |
|
 |
Markus Becker
Guest
|
Posted:
Tue Nov 22, 2005 5:15 pm Post subject:
Re: Emulating a processor |
|
|
["Followup-To:" nach comp.arch.embedded gesetzt.]
Simon Felix <de@royalinc.ath.cx> schrieb:
| Quote: | the virtualpc/qemu-with-accelerator/vmware/...-way: run the code as
ring3-process. catch every exception and emulate the thing that caused
the exception (i/o ports, mmu-stuff, ...)
|
VMWare does not work this way.
Markus |
|
| Back to top |
|
 |
Simon Felix
Guest
|
Posted:
Tue Nov 22, 2005 5:15 pm Post subject:
Re: Emulating a processor |
|
|
Markus Becker wrote:
| Quote: | ["Followup-To:" nach comp.arch.embedded gesetzt.]
Simon Felix <de@royalinc.ath.cx> schrieb:
the virtualpc/qemu-with-accelerator/vmware/...-way: run the code as
ring3-process. catch every exception and emulate the thing that caused
the exception (i/o ports, mmu-stuff, ...)
VMWare does not work this way.
|
no? how does it work? |
|
| Back to top |
|
 |
Markus Becker
Guest
|
Posted:
Tue Nov 22, 2005 5:15 pm Post subject:
Re: Emulating a processor |
|
|
Simon Felix <de@royalinc.ath.cx> schrieb:
| Quote: | VMWare does not work this way.
no? how does it work?
|
It does not emulate the processor, it just uses it.
Markus |
|
| Back to top |
|
 |
Nobody Here
Guest
|
Posted:
Tue Nov 22, 2005 11:15 pm Post subject:
Re: Emulating a processor |
|
|
Markus Becker <yetispamb@web.de> wrote:
| Quote: | Simon Felix <de@royalinc.ath.cx> schrieb:
VMWare does not work this way.
no? how does it work?
It does not emulate the processor, it just uses it.
|
Which is what he said. It does emulate the IO (or a lot of it, anyway)
though, and provides emulated hardware like video cards, network cards
and the like. Which is also what he said.
--
Nobby |
|
| Back to top |
|
 |
Michael R. Kesti
Guest
|
Posted:
Tue Nov 22, 2005 11:29 pm Post subject:
Re: Emulating a processor |
|
|
Grant Edwards wrote:
| Quote: | Yikes. Since you've never written an emulator, I would have
recommended starting with a decent architecture. Something like
a PDP-11 or 6809 or Z80. The '386 is a really nasty bit of
work. It's 3 or 4 badly designed processors rolled into one.
|
Agreed.
I wrote a Z80 simulator (I believe that the correct term for this thread's
topic is "simulator" rather than "emulator".) 20 years ao in 8088 assembler
on an 8 MHz AT&T 6300 that, at the time, had two 5.25" floppies and no hard
disk!
I used a rather straight forward (brute force?) method of allocating data
structures for the internal registers and look up tables for the op-codes.
The tables where used to jump to functions that "executed" the op-codes.
An Intel hex file decoder read program files into the simulated Z80 memory
space.
As usual, the hardest part was the user interface, especially the displays
of registers, and memory and I/O spaces. Interrupt generation was the
program's weak point and the thing I most planned to improve but never
got around to.
The greatest benefit of writing this program was the education concerning
the Z80's internals. I was writing embedded Z80 systems so this was a
good thing!
I had long thought that I had lost the source to this program but, in a
office renovation, I recently came across a disk that appears to contain
it. The trouble is that I no longer have a machine with a 5.25" floppy
drive. I might have to buy such a drive on eBay soon and see if the disk
is still readable!
--
========================================================================
Michael Kesti | "And like, one and one don't make
| two, one and one make one."
mrkesti at comcast dot net | - The Who, Bargain |
|
| Back to top |
|
 |
Mark Borgerson
Guest
|
Posted:
Tue Nov 22, 2005 11:59 pm Post subject:
Re: Emulating a processor |
|
|
In article <43835584.18A82B2E@nospam.net>, mrkesti@nospam.net says...
| Quote: | Grant Edwards wrote:
Yikes. Since you've never written an emulator, I would have
recommended starting with a decent architecture. Something like
a PDP-11 or 6809 or Z80. The '386 is a really nasty bit of
work. It's 3 or 4 badly designed processors rolled into one.
Agreed.
I wrote a Z80 simulator (I believe that the correct term for this thread's
topic is "simulator" rather than "emulator".) 20 years ao in 8088 assembler
on an 8 MHz AT&T 6300 that, at the time, had two 5.25" floppies and no hard
disk!
I used a rather straight forward (brute force?) method of allocating data
structures for the internal registers and look up tables for the op-codes.
The tables where used to jump to functions that "executed" the op-codes.
An Intel hex file decoder read program files into the simulated Z80 memory
space.
As usual, the hardest part was the user interface, especially the displays
of registers, and memory and I/O spaces. Interrupt generation was the
program's weak point and the thing I most planned to improve but never
got around to.
The greatest benefit of writing this program was the education concerning
the Z80's internals. I was writing embedded Z80 systems so this was a
good thing!
I had long thought that I had lost the source to this program but, in a
office renovation, I recently came across a disk that appears to contain
it. The trouble is that I no longer have a machine with a 5.25" floppy
drive. I might have to buy such a drive on eBay soon and see if the disk
is still readable!
I did the same thing for the 68K processor. I also simulated a simple |
serial port and a few interrupts. As you say, the most difficult part
was the user interface. My simulator was done on a Macintosh and worked
well enough that I used it when I taught an introductory course on
computer architecture. It turned out to be most useful in illustrating
what happens in memory when you use stack-based parameters for
subroutines. It beat the heck out of keeping track of the stack with
paper and pencil!
My simulator would interpret M68K assembly language in a text file--
stepping through the source code and showing effects on registers
and memory. It was cool at the time (mid 80's), but now you can
get a better simulator with just about every IDE designed to
do cross-compilation and debugging with an embedded processor.
Mark Borgerson |
|
| Back to top |
|
 |
Michael R. Kesti
Guest
|
Posted:
Wed Nov 23, 2005 1:11 am Post subject:
Re: Emulating a processor |
|
|
Mark Borgerson wrote:
| Quote: | I did the same thing for the 68K processor.
|
When I showed my simulator to the division engineering manager he asked
me if I could do a 68K version because we were about to embark on a 68K
project. I told him that I probably wouldn't finish it before the project's
final testing phase and that it probably wouldn't be all that useful even
if it was available sooner than that.
| Quote: | I also simulated a simple
serial port and a few interrupts. As you say, the most difficult part
was the user interface. My simulator was done on a Macintosh and worked
well enough that I used it when I taught an introductory course on
computer architecture. It turned out to be most useful in illustrating
what happens in memory when you use stack-based parameters for
subroutines. It beat the heck out of keeping track of the stack with
paper and pencil!
|
Yes, I can see that a classroom environment may be the best place for
serious use of such programs.
| Quote: | My simulator would interpret M68K assembly language in a text file--
stepping through the source code and showing effects on registers
and memory.
|
It didn't occur to me to have my simulator also be an assembler, but I
can see that this would be cool. How did you deal with forward references?
| Quote: | It was cool at the time (mid 80's), but now you can
get a better simulator with just about every IDE designed to
do cross-compilation and debugging with an embedded processor.
|
I've used plenty of IDE-based cross compilers and debuggers but don't
recall any of them being equipped with simlators. Can you provide some
examples of such?
--
========================================================================
Michael Kesti | "And like, one and one don't make
| two, one and one make one."
mrkesti at comcast dot net | - The Who, Bargain |
|
| Back to top |
|
 |
Laurent D.A.M. Menten
Guest
|
Posted:
Wed Nov 23, 2005 1:15 am Post subject:
Re: Emulating a processor |
|
|
Gromer wrote:
| Quote: | Hi all,
I'm interested to understand the processor architecture in depth. So i
decided on emulating the processor itself (as my project). The best one
to start would be 386.
So i wud require some documents which explains on how to emulate any
processor or devices. ( Apart from the Intel Architecture documents
available).
How to emulate a 386 processor. I want to kno how usually this is done.
I wonder how bochs has been developed so elegantly...the resource
they've used.
It wud be appreciable if someone can guide me on any documents or
reference books avaliable on Emulating processors and devices.
..
Wht are the resources I should have in hand to start up up this
project.
Thanks,
Gromer
|
Check for SimCore, which emulate an alpha processor, as far as I
remember it is a relatively small and easy to read set of c++ file.
-----BEGIN GEEK CODE BLOCK-----
Version: 3.12
GCS/O d--(---) s: a C++ UL++++ P+ L+++ E--- W++ N+ o-- K--- w--
O- M- V- PS++ PE Y+ PGP- t 5 X++ R* tv++ b++ DI++ D
G+ e++ h-- r+++ y+++
------END GEEK CODE BLOCK------ |
|
| Back to top |
|
 |
Mark Borgerson
Guest
|
Posted:
Wed Nov 23, 2005 7:21 am Post subject:
Re: Emulating a processor |
|
|
In article <43836D55.86432832@nospam.net>, mrkesti@nospam.net says...
| Quote: | Mark Borgerson wrote:
I did the same thing for the 68K processor.
When I showed my simulator to the division engineering manager he asked
me if I could do a 68K version because we were about to embark on a 68K
project. I told him that I probably wouldn't finish it before the project's
final testing phase and that it probably wouldn't be all that useful even
if it was available sooner than that.
I also simulated a simple
serial port and a few interrupts. As you say, the most difficult part
was the user interface. My simulator was done on a Macintosh and worked
well enough that I used it when I taught an introductory course on
computer architecture. It turned out to be most useful in illustrating
what happens in memory when you use stack-based parameters for
subroutines. It beat the heck out of keeping track of the stack with
paper and pencil!
Yes, I can see that a classroom environment may be the best place for
serious use of such programs.
My simulator would interpret M68K assembly language in a text file--
stepping through the source code and showing effects on registers
and memory.
It didn't occur to me to have my simulator also be an assembler, but I
can see that this would be cool. How did you deal with forward references?
|
The whole source file was in memory, so it was straightforward to do
multiple passes to make up the symbol table, count the code bytes,
and resolve the forward references.
| Quote: | It was cool at the time (mid 80's), but now you can
get a better simulator with just about every IDE designed to
do cross-compilation and debugging with an embedded processor.
I've used plenty of IDE-based cross compilers and debuggers but don't
recall any of them being equipped with simlators. Can you provide some
examples of such?
|
Perhaps they're not as common as I thought. But I think that MPLab for
the PIC chips has a simulator. Codewarrior PALMOS has a palm device
emulator. I think that the Keil 8051 system that I used about
10 years ago had a simulator as part of the system. I think the C-Spy
debugger for the IAR ARM development system also has a simulator
option--although I've not used it.
Mark Borgerson |
|
| Back to top |
|
 |
|
|
|
|