XiangShan (香山) is an open-source high-performance RISC-V processor project.
中文说明在此。
XiangShan's documentation is available at docs.xiangshan.cc.
XiangShan Design Document for Kunminghu V2R2 has been published separately. You can find it at docs.xiangshan.cc/projects/design.
XiangShan User Guide has been published separately. You can find it at docs.xiangshan.cc/projects/user-guide or XiangShan-User-Guide/releases.
We are using Weblate to translate documentation into English and other languages. Your contributions are welcome—come and help us improve it!
All XiangShan documents are licensed under the CC-BY-4.0.
Our paper introduces XiangShan and the practice of agile development methodology on high performance RISC-V processors. It covers some representative tools we have developed and used to accelerate the chip development process, including design, functional verification, debugging, performance validation, etc. This paper is awarded all three available badges for artifact evaluation (Available, Functional, and Reproduced).
Paper PDF | IEEE Xplore | BibTeX | Presentation Slides | Presentation Video
Wechat/微信:香山开源处理器
Zhihu/知乎:香山开源处理器
Weibo/微博:香山开源处理器
You can contact us through our mailing list. All mails from this list will be archived here.
The first stable micro-architecture of XiangShan is called Yanqihu (雁栖湖) and is on the yanqihu branch, which has been developed since June 2020.
The second stable micro-architecture of XiangShan is called Nanhu (南湖) and is on the nanhu branch.
The current version of XiangShan, also known as Kunminghu (昆明湖), is still under development on the master branch.
The micro-architecture overview of Kunminghu (昆明湖) is shown below.
Some of the key directories are shown below.
.
├── src
│ └── main/scala # design files
│ ├── device # virtual device for simulation
│ ├── system # SoC wrapper
│ ├── top # top module
│ ├── utils # utilization code
│ └── xiangshan # main design code
│ └── transforms # some useful firrtl transforms
├── scripts # scripts for agile development
├── fudian # floating unit submodule of XiangShan
├── huancun # L2/L3 cache submodule of XiangShan
├── difftest # difftest co-simulation framework
└── ready-to-run # pre-built simulation images
make bsp
make idea
- Run
make verilog
to generate verilog code. This generates multiple.sv
files in thebuild/rtl/
folder (e.g.,build/rtl/XSTop.sv
). - Refer to
Makefile
for more information.
- Set environment variable
NEMU_HOME
to the absolute path of the NEMU project. - Set environment variable
NOOP_HOME
to the absolute path of the XiangShan project. - Set environment variable
AM_HOME
to the absolute path of the AM project. - Install
mill
. Refer to the Manual section in this guide. - Clone this project and run
make init
to initialize submodules.
- Install Verilator, the open-source Verilog simulator.
- Run
make emu
to build the C++ simulator./build/emu
with Verilator. - Refer to
./build/emu --help
for run-time arguments of the simulator. - Refer to
Makefile
andverilator.mk
for more information.
Example:
make emu CONFIG=MinimalConfig EMU_THREADS=2 -j10
./build/emu -b 0 -e 0 -i ./ready-to-run/coremark-2-iteration.bin --diff ./ready-to-run/riscv64-nemu-interpreter-so
- Install picker, a verifaction tool that supports high-level languages.
- Run
make pdb
to build XiangShan Python binaries. - Run
make pdb-run
to run XiangShan binaries.
Example output and interaction:
$ make pdb-run
[Info] Set PMEM_BASE to 0x80000000 (Current: 0x80000000)
[Info] Set FIRST_INST_ADDRESS to 0x80000000 (Current: 0x80000000)
Using simulated 32768B flash
[Info] reset dut complete
> XiangShan/scripts/pdb-run.py(13)run()
-> while True:
(XiangShan) xload ready-to-run/microbench.bin # Load binary (Tab-compatible)
(XiangShan) xwatch_commit_pc 0x80000004 # set watch point,
(XiangShan) xistep 3 # Step to next three instruction commit, it will stop at watch point
[Info] Find break point (Inst commit), break (step 2107 cycles) at cycle: 2207 (0x89f)
[Info] Find break point (Inst commit, Target commit), break (step 2108 cycles) at cycle: 2208 (0x8a0)
(XiangShan) xpc # print pc info
PC[0]: 0x80000000 Instr: 0x00000093
PC[1]: 0x80000004 Instr: 0x00000113
PC[2]: 0x0 Instr: 0x0
...
PC[7]: 0x0 Instr: 0x0
(XiangShan) xistep 1000000 # Execute to binary end
[Info] Find break point (Inst commit), break (step 2037 cycles) at cycle: 2207 (0x89f)
[Info] Find break point (Inst commit), break (step 2180 cycles) at cycle: 2207 (0x89f)
...
HIT GOOD LOOP at pc = 0xf0001cb0
The implementation of XiangShan is inspired by several key papers. We list these papers in XiangShan document, see: Acknowledgements. We very much encourage and expect that more academic innovations can be realised based on XiangShan in the future.
Copyright © 2020-2025 Institute of Computing Technology, Chinese Academy of Sciences.
Copyright © 2021-2025 Beijing Institute of Open Source Chip
Copyright © 2020-2022 by Peng Cheng Laboratory.
XiangShan is licensed under Mulan PSL v2.