Skip to content

tali/sclang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0fa0c6c · Jan 17, 2022
Aug 3, 2021
Jan 17, 2022
Jan 17, 2022
Aug 3, 2021
Jan 17, 2022
Dec 29, 2021
Jan 17, 2022
Jul 31, 2021
Jul 31, 2021
Jan 11, 2022
Jul 31, 2021
Jul 22, 2021
Jan 17, 2022
Jul 31, 2021
Feb 15, 2020
Aug 23, 2021
Aug 22, 2021

Repository files navigation

SCLANG

sclang is an work-in-progress SCL compiler using LLVMs MLIR infrastructure.

Instead of generating AWL or machine code for S7, it directly targets the host computer. Goal is to provide a fast compiler and runtime to run unit and integration tests for large SCL projects.

Current status: parsing SCL files works quite well, code generation only works for a very limited subset of expressions.

BUILDING

MLIR is still in active development and Sclang is regularly updated to follow that development. A compatible version of llvm-project/mlir is provided as submodule. You can choose to build it using either CMake or Bazel. Both MacOS and Linux are supported.

Check out sources

git clone --recursive https://github.com/tali/sclang
cd sclang

Note: The repository is set up so that git submodule update performs a shallow clone, meaning it download just enough of the LLVM repository to check out the currently specified commit. If you wish to work with the full history of the LLVM repository, you can manually "unshallow" the submodule:

cd third_party/llvm-project
git fetch --unshallow

Build using CMake

cmake -B build -S third_party/llvm-project/llvm -GNinja \
	-DBUILD_SHARED_LIBS=OFF \
	-DLLVM_ENABLE_ASSERTIONS=ON \
	-DLLVM_ENABLE_PROJECTS="mlir" \
	-DLLVM_EXTERNAL_PROJECTS=sclang \
	-DLLVM_EXTERNAL_SCLANG_SOURCE_DIR=$PWD \
	-DLLVM_TARGETS_TO_BUILD=X86 \
	-DCMAKE_BUILD_TYPE=Release
# alternatively use CMAKE_BUILD_TYPE=DEBUG
cmake --build build --target check-sclang

Build using Bazel

bazel test --config=generic_clang //test
# alternatively:
bazel test --config=generic_gcc //test