开发者

Curious: Could LLVM be used for Infocom z-machine code, and if so how? (in general)

开发者 https://www.devze.com 2022-12-27 11:51 出处:网络
Forgive me if this is a silly question, but I\'m wondering if/how LLVM could be used to obtain a higher performance Z-Machine VM for in开发者_如何学Cteractive fiction. (If it could be used, I\'m just

Forgive me if this is a silly question, but I'm wondering if/how LLVM could be used to obtain a higher performance Z-Machine VM for in开发者_如何学Cteractive fiction. (If it could be used, I'm just looking for some high-level ideas or suggestions, not a detailed solution.)

It might seem odd to desire higher performance for a circa-1978 technology, but apparently Z-Machine games produced by the modern Inform 7 IDE can have performance issues due to the huge number of rules that need to be evaluated with each turn.

Thanks!

FYI: The Z-machine architecture was reverse-engineered by Graham Nelson and is documented at http://www.inform-fiction.org/zmachine/standards/z1point0/overview.html


Yes, it could be. A naïve port of the interpreter to the a compiler could be done relatively easily.

That said, it wouldn't be a big performance win. The problem with any compiler for ZCode or Glulx is that they're both relatively low-level. For instance, Glulx supports indirect jumps and self-modifying code. There's no way to statically compile that into efficient native code. Making it truly fast would require a trace compilation or something similar.


It would certainly be possible (but difficult) to use LLVM as a kind of JIT for Z-machine code, but wouldn't it be easier to simply compile the Inform source directly to a faster language? Eg, C for maximum speed, or .NET or Java if you prefer portability. I would suspect this route would be a lot easier, and better performing, than just jerry-rigging a JIT onto the side of the interpreter.

0

精彩评论

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

关注公众号