Skip to content

SalvatoreDiGirolamo/tracevis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 

Repository files navigation

tracevis

Requires: perl >= v5.26; addr2line >= 2.30. Could work with lower versions too, but it is not tested.

Usage: perl ./parse.pl [-i] [-p] [-t] <binary> <trace file 1> ... <trace file n>

The trace files are expected to be the ones produced by RI5CY cores in RTL simulation (default) or GVSOC virtual platform (with -g flag).

Output: JSON that can be loaded into chrome tracing (about://tracing from chrome or chromium)

Options:

  • -i: inlines instructions. Even if a function is inlined, it is still possible to see the inlined function. By default we show the origin function name, even if it inlined. If this option is specified the instructions are shown as belonging to the inlining function.
  • -p: labels the instruction with the PC instead of the instruction type.
  • -g: parses traces produced by GVSOC running with --trace=/sys--trace=/sys/board/chip/cluster/pe0:pe0.log (or similar for other cores).
  • -t: produces an enriched plain-text trace.

Example: The example/ folder contains:

  • bin/pulp_api_example: a sample binary;
  • traces/trace*.log: the per-core RI5CY traces produced by the RTL simulation of the above binary file;
  • chrome.json: the output file produced by the script when the above binary and traces are given as input.

The chrome.json can be produced by running the following command:

perl parse.pl example/bin/pulp_api_example example/traces/trace_core_0*.log > chrome.json

Known Limitations: The tracer embedded in Google Chrome (chrome://tracing) is not able to open very large traces. Empirically we saw that up to ~500k events can be managed. Things that can help:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages