Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There is open-source generates machine code project from byte-code at run-time interpreter? (By mean byte-code I mean other byte-code type like IL and etc)

I would like to learn a little how machine code works. (If there is project that generates machine code at run-time ,I'll like to view that too)

share|improve this question
Several, in fact. They're called JIT compilers and it's trivial to find a few with google ;) – delnan Aug 21 '12 at 20:19
@delnan They generates machine-code at run-time? Can you give me some names? – MessyCode Aug 21 '12 at 20:20
why is this tagged C++? – Lubo Antonov Aug 21 '12 at 20:21
@lucas1024 I usually programming in C++. Second I'll remove this tag. – MessyCode Aug 21 '12 at 20:22
clang can be used JIT, converts bytecode to machine code at runtime, and is open source. If you want to learn about machine code this is not the way to do it. Learn machine code by learning assembly language. Learn how machine code works by either writing a simulator or a disassembler (your success here relies on the instruction set chosen, for example NOT x86, that would be a bad choice). I have many suggestions github.com/dwelch67 arm, thumb, msp430, mips, etc. lsasim created for learning asm. I am working on a simple risc16 thing, very educational. – dwelch Aug 22 '12 at 4:03
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.