<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">
Hi Dean,
<div class=""><br class="">
</div>
<div class="">I haven't looked very closely at XRay so far, but I'm wondering if making CTF (common trace format, e.g. see <a href="http://diamon.org/ctf/" class="">http://diamon.org/ctf/</a>) the default format for XRay traces would be useful?</div>
<div class="">It seems it'd be nice to be able to reuse some of the tools that already exist for CTF, such as a graphical viewer (<a href="http://tracecompass.org/" class="">http://tracecompass.org/</a>) or a converter library (<a href="http://man7.org/linux/man-pages/man1/babeltrace.1.html" class="">http://man7.org/linux/man-pages/man1/babeltrace.1.html</a>).</div>
<div class="">LTTng already uses this format and linux perf can create traces in CTF format too. Probably it would be useful for at least some to be able to combine traces from XRay with traces from LTTng or linux perf?</div>
<div class=""><br class="">
</div>
<div class="">Maybe the current version of CTF may not have all the features that you need, but the next version of CTF (CTF 2) seems to be at least addressing some of the concerns you touch on below: <a href="http://diamon.org/ctf/files/CTF2-PROP-1.0.html#design-goals" class="">http://diamon.org/ctf/files/CTF2-PROP-1.0.html#design-goals</a>.</div>
<div class=""><br class="">
</div>
<div class="">Any thoughts on whether CTF could be a good choice as the format to store XRay logs in?</div>
<div class=""><br class="">
</div>
<div class="">Thanks,</div>
<div class=""><br class="">
</div>
<div class="">Kristof</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
<div>
<blockquote type="cite" class="">
<div class="">On 30 Nov 2016, at 06:08, Dean Michael Berris via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" class="">llvm-dev@lists.llvm.org</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">Hi llvm-dev,<br class="">
<br class="">
Recently, we've committed the beginnings of the llvm-xray [0] tool which allows for conveniently working with both XRay-instrumented libraries as well as XRay trace/log files. In the course of the review for the conversion tool [1] which turns a binary/raw
 XRay log file into YAML for human consumption purposes, a question arose as to how we intend to allow users to develop tools that deal with XRay traces (and the instrumentation maps in binaries).<br class="">
<br class="">
As a bit of background, I've been working on the "flight data recorder" mode [2] for the XRay runtime library -- this mode lets the XRay instrumented binary to continuously write trace entries into an in-memory log, which is kept as a circular buffer of buffers
 [3]. FDR mode writes more concise records and has a different log format than the current "naive" logging implementation in compiler-rt (which continuously writes to disk as soon as thread-local buffers are full).<br class="">
<br class="">
# Problem Statement<br class="">
<br class="">
XRay has two key pieces of information that need to be encoded in a consistent manner: the instrumentation map embedded in binaries and the xray log files. However, we run into some issues when we change the encoding of this information over time either adding
 or removing information. This situation is very similar to how LLVM handles backwards compatibility with the bitcode format / versioning.<br class="">
<br class="">
The problem we have is how to ensure that as we make changes to the data being output by the runtime library, that the tools handling this data are able to read them. A lot of factors play into this, which may be solved in many different ways (but is not the
 crux of this RFC):<br class="">
<br class="">
- The split between the LLVM "core" library/tools and compiler-rt. This means we implement the writer in compiler-rt but implement the tools reading the traces in LLVM. We also have to coordinate any changes in LLVM for encoding new information in to the instrumentation
 map so that compiler-rt can take advantage of this new information.<br class="">
<br class="">
- The potential for allowing user-defined additional information embedded in the XRay traces. We have ongoing projects that will add things like argument logging, and custom data logging, which will add information to the log without necessarily changing the
 "format" of the data.<br class="">
<br class="">
# Potential Resolutions<br class="">
<br class="">
Given the state we're at in XRay's development, we're looking at a few ways of going about the backwards/forwards compatibility of the instrumentation map and the xray log files, and the tools that will be written to read/manipulate them. We're seeking feedback
 on the following options and alternatives we may not have considered.<br class="">
<br class="">
## Option A: Expose a Library that supports all known formats.<br class="">
<br class="">
We can move out some currently tool-specific code for `llvm-xray extract` [0] that is able to ingest a binary with XRay instrumentation as something in (strawman proposal) lib/XRay (i.e. include/llvm/XRay/..., and implementation in lib/XRay/...), so that the
 tools become a thin wrapper around the functionality in this library. We can apply this to the `llvm-xray convert` core logic as well, to allow for loading all known/supported formats for the log file.<br class="">
<br class="">
This option gives us the capability to provide a set of canonical implementations that can handle a set of file formats. This might introduce some complexity in parsing lots of known/supported formats (like YAML, compiler-emitted instrumentation maps for x86_64/arm7/aarch64/<insert
 platforms where XRay is yet to be ported>) in a library that not all tool writers actually need.<br class="">
<br class="">
This option follows closely what the LLVM project does with backwards compatibility for parsing LLVM IR, applied to XRay instrumentation maps and traces.<br class="">
<br class="">
## Option B: Expose a library that only supports one canonical format.<br class="">
<br class="">
We can keep tool-specific code alongside the tools, but define one canonical format for the instrumentation map and traces -- as a specification document and a library implementation. This canonical format could be what we already have today which will make
 the log reading and instrumentation map handling library simple, and evolves only in case we extend/change the canonical format.<br class="">
<br class="">
This means in the case for FDR mode traces, we'll have the conversion tool know about the FDR mode trace format/encoding and have a transformation from that to the canonical format. This means that the transformation logic will be localised to the conversion
 tool, while any other tool that builds upon and uses the reader library will not need to change. This also provides options for users defining their own log formats using the XRay library interfaces to install their own handlers to implement the transformations
 from their format to the XRay-canonical format in the tool without being tied to maintaining the released library version.<br class="">
<br class="">
The evolution of the canonical format can happen more slowly and more conservatively than when new implementations of the XRay runtime is made available through compiler-rt.<br class="">
<br class="">
# Open Questions<br class="">
<br class="">
Some burning questions we'd like to get some thoughts on:<br class="">
<br class="">
- Is there a preference between the two options provided above?<br class="">
- Any other alternatives we should consider?<br class="">
- Which parts of which options do you prefer, and is there a synthesis of either of those options that appeals to you?<br class="">
<br class="">
Thanks in advance!<br class="">
<br class="">
[0] - `llvm-xray extract` defined in <a href="https://reviews.llvm.org/D21987" class="">
https://reviews.llvm.org/D21987</a><br class="">
[1] - `llvm-xray convert` being reviewed in <a href="https://reviews.llvm.org/D24376" class="">
https://reviews.llvm.org/D24376</a><br class="">
[2] - FDR mode ongoing implementation (work in progress) at <a href="https://reviews.llvm.org/D27038" class="">
https://reviews.llvm.org/D27038</a><br class="">
[3] - Buffer Queue implementation (work in progress) at <a href="https://reviews.llvm.org/D26232" class="">
https://reviews.llvm.org/D26232</a><br class="">
<br class="">
-- Dean<br class="">
<br class="">
_______________________________________________<br class="">
LLVM Developers mailing list<br class="">
<a href="mailto:llvm-dev@lists.llvm.org" class="">llvm-dev@lists.llvm.org</a><br class="">
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev<br class="">
</div>
</blockquote>
</div>
<br class="">
</div>
</body>
</html>