Skip to content

reSHARMA/RISCV32-GPU

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RISCV32 GPU ISA

64 bit pointers in RV32 using custom load/store in different address space.

Getting Started

Start with cloning the llvm-project

$ git clone https://github.com/llvm/llvm-project.git -b llvmorg-8.0.0 

Replace the RISCV target backend with our fork

$ cd llvm-project/llvm/lib/Target
$ rm -rf RISCV
$ git clone this-repo RISCV

Update the updated data layout string to "e-m:e-p:32:32-p:64:32-i64:64-n32-S128" in clang to match the backend here

Build LLVM with Clang, till version 8.x RISCV was an experimental target!

$ cd llvm-project
$ mkdir build & cd build
$ cmake -DLLVM_ENABLE_PROJECTS=clang  -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD="X86" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="RISCV" -DLLVM_USE_LINKER=gold -DLLVM_ENABLE_Z3_SOLVER=OFF ../llvm
$ make 

Releases

No releases published

Packages

No packages published