The JIT compiler for the LKQL language.
- GraalVM : The high performance JVM
- Maven : Java project manager
- Python3 : The language (3.9 or later)
- Langkit : The language front-end creation framework
- Libadalang and Liblkqllang and their Java bindings
First, you need to ensure that the mvn
command is accessible and fairly recent (at least 3.8.5).
Then, make sure you have an accessible Python3 installation. Python 3.9 or later.
You also need to install GraalVM's native-image
utility, which can be done
running gu install native-image
(where gu
is in the bin
directory of the GraalVM
installation).
Also make sure that your GraalVM installation is for Java 17, as Java 19 is not supported for now. For information, the tested version of GraalVM is graalvm-ce-java17-22.3.1.
$[langkit]> pip3 install -r requirement-pypi.txt
$[langkit]> ./manage.py make
$[langkit]> eval `./manage.py setenv`
$[langkit]> export PATH="/path/to/langkit/scripts:$PATH"
If you get a Python error about the langkit library, add the langkit directory to your PYTHONPATH
environment variable.
Note: If for some reason you are not running ./manage.py setenv
, make sure that the
sigsegv_handler
library is reachable from your LD_LIBRARY_PATH
.
Install the Java LangkitSupport library:
$[langkit]> mvn -f langkit/java_support install
$[libadalang]> lkm make --enable-java
$[libadalang]> eval `lkm setenv`
Make sure the Java bindings are installed locally
$[libadalang]> mvn -f build/java install
$[langkit-query-language/lkql]> lkm make --enable-java
$[langkit-query-language/lkql]> eval `lkm setenv`
As for Libadalang, make sure Java bindings are installed
$[langkit-query-language/lkql]> mvn -f build/java install
JAVA_HOME
should points to your local GraalVM installationGRAAL_HOME
should also points to your GraalVM installation
$[langkit-query-language/lkql_jit]> mvn clean install
You can now access the LKQL JIT launcher using the lkql.py
Python script that has been installed
in the languages/lkql/bin
directory of your GraalVM installation.
This script will launch LKQL JIT with the current accessible Java installation (java -jar lkql_cli.jar ...
) so you have to run it in a valid environment.
If you want to build LKQL JIT as a native executable, you can use the native
Maven profile:
$[langkit-query-language/lkql_jit]> mvn clean install -P native
Then the lkql
executable will be available under the langkit-query-language/lkql_jit/native/bin
directory and will be installed to your local GraalVM guest languages folder
($GRAAL_HOME/languages/lkql/bin
).
LKQL JIT project uses the google-java-format
as code formatter. It is run every time you call
the compile
Maven phase and will raise an error if there is a style violation in the LKQL JIT
source code. To automatically format all Java files you can run the following command:
$[langkit-query-language/lkql_jit] mvn spotless:apply
To debug LKQL_JIT native-image build you can use the debug
maven profile.
$[langkit-query-language/lkql_jit]> mvn clean install -P native,debug
If you need to debug or profile LKQL_JIT native-image binaries there is the dev
profile which
enable support for tools like valgrind
, gdb
or perf
on the produced binaries.
$[langkit-query-language/lkql_jit]> mvn clean install -P native,dev
If you don't need or want any of those, use the prod
profile to disable all debugging and
profiling information.
$[langkit-query-language/lkql_jit]> mvn clean install -P native,prod
To develop for LKQL JIT you may use Intellij IDEA since the LKQL JIT project use and contains a
configuration for this IDE. You just have to open the LKQL JIT project (lkql_jit/pom.xml
) with
Intellij to initialize the project.
However, LKQL JIT project use google-java-format
to format the Java source code, so you may
configure Intellij to use this formatter and applying it when saving Java files. To make this
you have to follow those steps:
Go to File > Settings > Plugins
and search for "google-java-format" in the marketplace then
install it.
You now have to enable the "google-java-format" plugin: go to File > Settings > Other Settings > google-java-format Settings
and check the Enable google-java-format
option. Then you have to
select the Android Open Source Project (AOSP) style
in the Code style
menu.
The google-java-format plugin uses some internal classes that aren't available without extra
configuration. You have to go to Help > Edit Custom VM Options...
then past these lines:
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
Then restart you IDE. Now google-java-format
should have replaced the Reformat Code
and
Optimize Imports
actions.
If you want Intellij to automatically reformat the current file when it is saved you can go to
File > Settings > Tools > Actions on save
then check the Optimize imports
and Reformat code
options.