开发者

Compiling into executable file

开发者 https://www.devze.com 2023-01-07 14:00 出处:网络
I am currently writing a programming language in C/C++ as an exercise (but mostly for fun).At the moment it compiles into a list of commands that are then executed 开发者_如何学编程(kind of like a low

I am currently writing a programming language in C/C++ as an exercise (but mostly for fun). At the moment it compiles into a list of commands that are then executed 开发者_如何学编程(kind of like a low-level API). Its working fantastically, however, I think it would be more exciting if instead of having a interpreter executable, having the language actually compile into a .exe file. I don't know if it is possible or how challenging this might be. I could not find any resources to help me with this. - Thanks in advance.


You could consider writing a frontend for LLVM (tutorial) or GCC (article from linux journal) - if thats still fun for you is a different question.


It would certainly be possible, although it could be a fair bit of work to produce all of the necessary parts to make a runnable binary. If that is what you are trying to learn about, then it could be a great exercise.

However, if you are simply looking to make it run faster, there are other options. For example, you could possibly emit C/C++ code based on the input program and then compile/link that.


First, you have to be clear about the syntax and lexical of your language code in a formal way. Then, you could take a look on lex. That builds a lexical analyzer, that you can use to generate the C code (or whatever) you need.

If your language doesn't use dynamic types, then you could get it easy.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号