vote up 0 vote down star

Hi,

I was thinking about refreshing my computer engineering knowledge this summer by implementing a computer architecture (simulated, of course) and a simple tool chain (assembler and compiler).

I'm still not very sure about what features could be fun (and not too hard) to implement, because I don't want to get a very high load of work that would result in the project being unfinished.

Some things I'm still trying to decide are:

  • Instruction Set Architecture (I'm almost sure I'll go for a RISC one)
  • Pipelines and Instruction Level Parallelism
  • Memory model (segmented, paged, etc.)
  • Cache memories
  • IO model, network and peripherals
  • Multithreading/Multiprocessor
  • Making it a process VM or make it suitable for running a small OS
  • Source language for the compiler (maybe C, or perphaps something cooler)
  • Debugger
  • Performance measurement facilities (for testing different algorithms and compiler optimizations)
  • And maybe if I go completely nuts, I'll try to make an implementation in a hardware description language :-)

I'm sure I cannot afford to implement all of this, but just a small fraction, so what characteristics do you think would be more interesting to play with? (considering that this is not for a production system, just to remember things and maybe learning new ones, as I got my degree five years ago).

Thanks!

flag

2 Answers

vote up 1 vote down

Have you implemented a compiler before? If so, then that shouldn't be too much of an issue, if not, that alone would be your summer, and at the end you'll have a straightforward, but not industry standard compiler.

With a decent toolset and good knowledge of them (ie, a good set of libraries/data structures like reasonable hashtables/maps/lex/yacc/antlr), an basic assembler is two days maybe three. I did an assembler for the Manchester Mark I in a day in college, but only because I had written a 6502 assembler the year before and the code was fresh enough in my mind to port to the new (simpler) instruction set.

If you're going to just do a gcc back end for your architecture, then you're in better shape.

Doing an emulator for a processor is not that bad. I've written 6502 and 6800 emulators. The hardest part is getting condition codes right on arithmetic - harder on the tiny processors because most of them have some broken way of doing binary coded decimal (6502 - SED/CLD, 6800 - half carry flag, DAA). I wrote the 6800 in one weekend in C with a processor manual on my lap. For grins, I recently rewrote the whole thing in C# doing less bare-metal coding and more high level abstraction so that it should be easy to build something like MAME on the processor framework. That took me about 5 days of time in 2 hour chunks over the past two years.

If you're doing nothing else, you would probably get your assembler and processor running well enough in a VM with a debugger. Maybe you can figure out how to get gdb hooked into it, they've done that with the ARM emulator for gameboy (although it's been fragile when I've played with it). I wouldn't put high hopes on getting your compiler going. You might instead do a FORTH port. It's straightforward and then you have a medium level language.

link|flag
Yes, of course I have implemented a compiler before, but it was a toy one... Anyway, I think I should read again the Dragon Book that is getting dust in my shelf :-) – fortran Jun 24 at 13:11
vote up 0 vote down

I will humbly suggest that you can learn the ideas without all the pain if you implement a Universal Virtual Machine simulator and a link-and-load assember for that same machine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.