项目作者: Lancern

项目描述 :
Anderson points-to analysis implementation based on LLVM
高级语言: C++
项目地址: git://github.com/Lancern/llvm-anderson.git
创建时间: 2020-12-26T05:57:25Z
项目社区:https://github.com/Lancern/llvm-anderson

开源协议:MIT License

下载


LLVM-Anderson

This project implements the famous flow-insensitive
points-to analysis
algorithm, namely
Anderson algorithm,
on the LLVM compiler platform.

Notes: This is a toy project. It’s not well tested and corner cases are poorly considered.
Use it at your own risk!

Build

Prerequisites

Please ensure you have LLVM installed before build. The recommended LLVM version
is LLVM 10.0.0, but other LLVM versions might work as well (not tested).

If you are using Ubuntu, execute the following command to install required
components before build:

  1. sudo apt install build-essential cmake llvm-dev

If you want to build doxygen documentation, you need to install doxygen as well:

  1. sudo apt install doxygen

Build Binaries

Clone the repository and switch into source tree root:

  1. git clone https://github.com/Lancern/p2a.git
  2. cd p2a

Create a build directory:

  1. mkdir build
  2. cd build

Then you can build p2a by the familiar two-step build:

  1. cmake ..
  2. cmake --build .

Build Doxygen Documents

In order to build doxygen documents, just add the --target switch when
invoking cmake --build . in the last step of build:

  1. cmake --build . --target doxygen

The doxygen output directory is docs/doxygen.

License

This project is open-sourced under the MIT license.