Lycheus / shore-llvm

RISC-V SHORE LLVM compiler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RISC-V LLVM with SoftboundCETS

About

This repository adds support for various aspects of the RISC-V instruction set to the Clang C/C++ compiler and LLVM back end.

The "master" branch follows official LLVM.

The "dev" branch at the moment contains mostly patches developed by the LowRISC project that have not yet been upstreamed to the official LLVM repository. It is updated from the master branch regularly. As more patches are committed to upstream LLVM the differences will become smaller, but the intention is to add other patches here so people can conveniently use them in advance of them being accepted into upstream.

How can I build LLVM+Clang and use it to cross-compile for a riscv target?

As well as this repository, you will need the RISC-V gcc toolchain. If you don't have RISC-V hardware then you will want to have QEMU to run your programs.

The following bash commands have been tested on a fresh Ubuntu install (e.g. Amazon EC2 Ubuntu 16.04 LTS ami-0e32ec5bc225539f5 and 18.04 LTS ami-0bbe6b35405ecebdb) and are known to result in a working RISC-V LLVM.

If you already have recent RISC-V gnu tools and/or qemu in your PATH then you can omit the steps to download and build those.

At the moment the clang driver does not successfully find the gnu linker and libraries so you need to explicitly use gcc to link your object files. This should be fixed soon.

By default clang is generating rv32imac/rv64imac code but you can override this, and in particular if you have floating point hardware you can add "-march=rv32gc" (or rv64gc) to the clang command line to get FPU instructions with a soft float ABI (scalar FP function arguments and results passed in integer registers).

sudo apt-get update
sudo apt-get -y dist-upgrade
sudo apt-get -y install \
  binutils build-essential libtool texinfo \
  gzip zip unzip patchutils curl git \
  make cmake ninja-build automake bison flex gperf \
  grep sed gawk python bc \
  zlib1g-dev libexpat1-dev libmpc-dev \
  libglib2.0-dev libfdt-dev libpixman-1-dev 

mkdir riscv
cd riscv
mkdir _install
export PATH=`pwd`/_install/bin:$PATH

# gcc, binutils, newlib
git clone --recursive https://github.com/riscv/riscv-gnu-toolchain
pushd riscv-gnu-toolchain
./configure --prefix=`pwd`/../_install --enable-multilib --with-cmodel=medany
make -j`nproc`
make linux -j`nproc`
popd

# qemu
git clone https://github.com/riscv/riscv-qemu
pushd riscv-qemu
./configure --prefix=`pwd`/../_install --target-list=riscv64-linux-user,riscv32-linux-user
make -j`nproc` install
popd

# LLVM
#git clone https://github.com/sifive/riscv-llvm
git clone https://github.com/Lycheus/RISCV-LLVM-bound.git
pushd riscv-llvm
ln -s ../../clang llvm/tools || true
mkdir _build
cd _build
cmake -G Ninja -DCMAKE_BUILD_TYPE="Release" \
  -DBUILD_SHARED_LIBS=True -DLLVM_USE_SPLIT_DWARF=True \
  -DCMAKE_INSTALL_PREFIX="../../_install" \
  -DLLVM_OPTIMIZED_TABLEGEN=True -DLLVM_BUILD_TESTS=False \
  -DDEFAULT_SYSROOT="../../_install/sysroot" \
  -DLLVM_DEFAULT_TARGET_TRIPLE="riscv64-unknown-gnu-linux" \
  -DLLVM_TARGETS_TO_BUILD="" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="RISCV" \
  ../llvm
cmake --build . --target install
popd

# Sanity test your new RISC-V LLVM
cat >hello.c <<END
#include <stdio.h>

int main(){
  printf("Hello RISCV!\n");
  return 0;
}
END

# SoftboundCETS
pushd riscv-llvm
cd  runtime
make softboundcets_rt_riscv
popd
# You can enable runtime function counter by adding "-D__FUNC_CYCLE" CLAGS in Makefile.
# To access these counters, please refer to README in runtime folder.

# 32 bit
clang -O -c hello.c --target=riscv32
riscv64-unknown-elf-gcc hello.o -o hello -march=rv32imac -mabi=ilp32
qemu-riscv32 hello

# 64 bit
clang -O -c hello.c
riscv64-unknown-elf-gcc hello.o -o hello -march=rv64imac -mabi=lp64
qemu-riscv64 hello

# example script to compile program with softboundcets enforced
clang hello.c -c -fsoftboundcets
riscv64-unknown-linux-gnu-gcc hello.o -o hello -march=rv64gc -mabi=lp64 -L `pwd`/riscv-llvm/runtime -lsoftboundcets_rt -lm -lrt -static
qemu-riscv64 hello

-------
Some alternitive building script for different lib stack are available here.

cmake -G Ninja -DCMAKE_BUILD_TYPE="Release" \
-DBUILD_SHARED_LIBS=True -DLLVM_USE_SPLIT_DWARF=True \
-DCMAKE_INSTALL_PREFIX="../../_install" \
-DLLVM_OPTIMIZED_TABLEGEN=True -DLLVM_BUILD_TESTS=False \
-DDEFAULT_SYSROOT="../../_install/sysroot" \
-DLLVM_DEFAULT_TARGET_TRIPLE="riscv64-unknown-gnu-linux" \
-DLLVM_TARGETS_TO_BUILD="" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="RISCV" \
../llvm

cmake -G Ninja -DCMAKE_BUILD_TYPE="Release" \
-DBUILD_SHARED_LIBS=True -DLLVM_USE_SPLIT_DWARF=True \
-DCMAKE_INSTALL_PREFIX="../../_install" \
-DLLVM_OPTIMIZED_TABLEGEN=True -DLLVM_BUILD_TESTS=False \
-DLLVM_DEFAULT_TARGET_TRIPLE="x86_64-unknown-linux-gnu" \
-DLLVM_TARGETS_TO_BUILD="X86" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="" \
../llvm

About

RISC-V SHORE LLVM compiler


Languages

Language:C++ 47.0%Language:LLVM 24.9%Language:C 10.9%Language:Assembly 9.4%Language:HTML 4.1%Language:Python 1.5%Language:Objective-C 1.0%Language:CMake 0.3%Language:Objective-C++ 0.2%Language:Go 0.1%Language:Cuda 0.1%Language:OCaml 0.1%Language:Perl 0.1%Language:Shell 0.0%Language:Makefile 0.0%Language:Awk 0.0%Language:JavaScript 0.0%Language:CSS 0.0%Language:C# 0.0%Language:Emacs Lisp 0.0%Language:Roff 0.0%Language:Batchfile 0.0%Language:Pawn 0.0%Language:Vim Script 0.0%Language:SMT 0.0%Language:SWIG 0.0%Language:Fortran 0.0%Language:Yacc 0.0%Language:M4 0.0%Language:Mathematica 0.0%Language:SourcePawn 0.0%Language:Lex 0.0%Language:Ruby 0.0%Language:Ada 0.0%Language:Dockerfile 0.0%Language:Cool 0.0%Language:NASL 0.0%Language:M 0.0%Language:TypeScript 0.0%Language:Common Lisp 0.0%Language:TeX 0.0%Language:Pascal 0.0%Language:AppleScript 0.0%Language:RenderScript 0.0%Language:R 0.0%Language:DTrace 0.0%Language:PHP 0.0%Language:Starlark 0.0%Language:Swift 0.0%Language:Rust 0.0%Language:POV-Ray SDL 0.0%