[Contents] [TitleIndex] [WordIndex

Contributor - LLVM

Description

The goal of this project is to convert the Scilab language into LLVM bitcode.

We want to use LLVM to Just-In-Time (JIT) compile some Scilab code (see [1] for and example of jit with LLVM). This should be a very rewarding approach because Scilab has many variables that are handled as matrices but are in fact 1 X 1 matrices that could be handled much more efficiently as simple numbers.

Note that this work must be done in the Scilab git branch called YaSp which will be the base of Scilab 6 as this branch features a clean API to access the Abstract Syntax Tree [2] of a Scilab program.

Amongst the challenges of a Scilab JIT, the following issues are noteworthy :

Some help from the LLVM project could be provided in the scope of this project.

Ideas

The following strategy could be used :

  1. When entering a loop construct, one should guess if the loop will be taken enough times to justify the jiting effort.
  2. If the jiting effort is deemed worthwhile, we should then infer which of the variables will have types (and dimensions) for which jiting is possible (i.e. at first only doubles, then also complex numbers, vectors, matrices).
  3. We should then jit the expressions involving those variables. Extra care should be given to numerical accuracy (e.g. keep the same algorithms as in Scilab, see [5], forbid overaggressive optimizations that would not respect IEEE754, ...)
  4. Of course, checking similar projects would be a good idea.

  5. How other projects are using LLVM

[1] LLVM JIT tutorial example.

[2] Scilab new Abstract Syntax Tree API

[3] LLVM back-end for a dynamic type language (lua).

[4] discussion on the cost of LLVM JIT for python code.

[5] on the robustness of some Scilab numerical computations.

LLVM Qemu


2022-09-08 09:26