项目作者: jf549

项目描述 :
An efficient dynamic data-dependence profiler
高级语言: C++
项目地址: git://github.com/jf549/deppy.git
创建时间: 2016-11-09T19:46:55Z
项目社区:https://github.com/jf549/deppy

开源协议:MIT License

下载


Deppy

An efficient dynamic data-dependence profiler

Building

  1. $ mkdir build
  2. $ cd build
  3. $ cmake ..
  4. $ make

Running

Instrumenting a C program

  1. $ cd build
  2. $ ./tracer/instrument.sh path/to/source.c

The C program will be compiled with instrumentation into the executable build/tracer/tracer.

Running the profiler

  1. $ cd build
  2. $ ./tracer/tracer | ./analyser/deppy

Running the unit tests

  1. $ cd build
  2. $ ./test/tests