SICStus Prolog JIT Compiler

SICStus Prolog 4.3 has added a JIT compiler for x86-64 processors.

I have two questions regarding the JIT compiler.

First, where can I find documentation (documents, notes or notes) about the features (and limitations, design and methods) of the JIT compiler?

And secondly, can SICStus be aimed at releasing x86-64 assembly code created by the JIT compiler?

+5
source share
1 answer

Information on the implementation of the JIT SICStus Prolog is not published.

You can get some info from perf on Linux if you follow the instructions in library/perf/sp_jit_objdump in installing SICStus. Among other things, perf can show code parsing.

+3
source

Source: https://habr.com/ru/post/1214606/


All Articles