Is there any C interpreter written in javascript or java ?

I don't need a full interpreter but I need to be able to do a step by step execution of the program and being able to see the values of variables, the stack...all that in a web interface.

The idea is to help C beginners by showing them the step by step execution of the program. We are using GWT to build the interface so if something exists in Java we should be able to use it.

I can modify it to suit my needs but if I can avoid to write the parser / abstract-syntax tree walker / stack manipulation... that would be great.


Edit :

To be clear I don't want to simulate the complete C because some programs can be really tricky.

By step I mean a basic operation such as : expression evaluation, affectation, function call.

The C I want to simulate will contains : variables, for, while, functions, arrays, pointers, maths functions. No goto, string functions, ctypes.h, setjmp.h... (at least for now).

Here is a prototype : http://www.di.ens.fr/~fevrier/war/simu.html

In this example we have manually converted the C code to a javascript representation but it's limited (expressions such as a == 2 || a = 1 are not handled) and is limited to programs manually converted.

We have a our disposal a C compiler on a remote server so we can check if the code is correct (and doesn't have any undefined behavior). The parsing / AST construction can also be done remotely (so any language) but the AST walking needs to be in javascript in order to run on the client side.

link|improve this question

69% accept rate
4  
You could have a look at this JavaScript PC Emuluator which also runs some form of Linux and has a C compiler (but maybe it is a bit too much out of scope). – Felix Kling May 26 '11 at 16:59
2  
@Felix: That's interesting but rather separate from what OP wanted. @Loïc: C does not really execute in "steps" or at least it's not required to. The closest thing would be sequence points. I only mention this because learning C as if it executed in "high level asm" steps according to the source is a major source of misunderstanding for beginnings in C. – R.. May 26 '11 at 17:04
@Felix: That's about 50 levels of abstractions off. The JS code emulates some x86 hardware, a linux kernel runs atop of it and runs various executables including tcc which was written in C but is run in the form of x86 opcodes. TCC compiles C programs to x86 executables pretty much directly and that x86 code is again run by the stack mentioned above. Good luck using that from Javascript! – delnan May 26 '11 at 17:05
@all: yeah... for just inspecting the values and the stack it is really not suited... my apologies. – Felix Kling May 26 '11 at 17:07
@Felix: not what I was looking for but interresting @R..: by step I mean a basic operation such as affectation, evaluation of expression, function call. I want to follow the execution line by line. – Loïc Février May 26 '11 at 17:13
show 12 more comments
feedback

2 Answers

There's a C grammar available for antlr that you can use to generate a C parser in Java, and possibly JavaScript too.

link|improve this answer
feedback

Don't know if your situation allows for it but in principle you could have your program run as a front end to a debugger attached to a actual running c program.

Or run as a front end to an arbitrary c interpreter.

link|improve this answer
I could do that but we are expecting a lot a people on the same programs (given as examples in a programming course), so I would like to compute the AST once and for all and then do the actual simulation on the client side. – Loïc Février May 26 '11 at 18:05
feedback

Your Answer

 
or
required, but never shown

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