<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Apr 18, 2016 at 2:54 AM, Piotr Padlewski <span dir="ltr"><<a href="mailto:piotrekpad@gmail.com">piotrekpad@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><p dir="ltr">Have you consider naming it `performance sanitizer` instead? I believe that it would be easier to misheard esan with asan, and psan would solve it. <br></p></blockquote><div>I call that E/<span style="font-size:large">ē</span>/san, which I feel is far enough from A/<span style="color:rgb(51,51,51);font-family:georgia,'times new roman',times,serif;font-size:15px;line-height:19.5px;background-color:rgb(252,250,243)">eɪ</span>/san.</div><div>Instead it may be misheard as T/<span style="font-size:large">tē</span>/san, but P/<span style="font-size:large">pē</span>/san won't help much there either.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><p dir="ltr">
Besides, looks like fun! Good luck</p>
<p dir="ltr">Piotr </p>
<div class="gmail_quote"><div><div class="gmail-gmail-gmail-gmail-gmail-h5">17.04.2016 11:46 PM "Derek Bruening via llvm-dev" <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> napisał(a):<br type="attribution"></div></div><blockquote style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div><div class="gmail-gmail-gmail-gmail-gmail-h5"><div dir="ltr"><div>TL;DR: We plan to build a suite of compiler-based dynamic instrumentation tools for analyzing targeted performance problems.  These tools will all live under a new "EfficiencySanitizer" (or "esan") sanitizer umbrella, as they will share significant portions of their implementations.</div><div><br></div><div>====================</div><div>Motivation</div><div>====================</div><div><br></div><div>Our goal is to build a suite of dynamic instrumentation tools for analyzing particular performance problems that are difficult to evaluate using other profiling methods.  Modern hardware performance counters provide insight into where time is spent and when micro-architectural events such as cache misses are occurring, but they are of limited effectiveness for contextual analysis: it is not easy to answer *why* a cache miss occurred.</div><div><br></div><div>Examples of tools that we have planned include: identifying wasted or redundant computation, identifying cache fragmentation, and measuring working sets.  See more details on these below.</div><div><br></div><div>====================</div><div>Approach</div><div>====================</div><div><br></div><div>We believe that tools with overhead beyond about 5x are simply too heavyweight to easily apply to large, industrial-sized applications running real-world workloads.  Our goal is for our tools to gather useful information with overhead less than 5x, and ideally closer to 3x, to facilitate deployment.  We would prefer to trade off accuracy and build a less-accurate tool below our overhead ceiling than to build a high-accuracy but slow tool.  We hope to hit a sweet spot of tools that gather trace-based contextual information not feasible with pure sampling yet are still practical to deploy.</div><div><br></div><div>In a similar vein, we would prefer a targeted tool that analyzes one particular aspect of performance with low overhead than a more general tool that can answer more questions but has high overhead.</div><div><br></div><div>Dynamic binary instrumentation is one option for these types of tools, but typically compiler-based instrumentation provides better performance, and we intend to focus only on analyzing applications for which source code is available.  Studying instruction cache behavior with compiler instrumentation can be challenging, however, so we plan to at least initially focus on data performance.</div><div><br></div><div>Many of our planned tools target specific performance issues with data accesses.  They employ the technique of *shadow memory* to store metadata about application data references, using the compiler to instrument loads and stores with code to update the shadow memory.  A companion runtime library intercepts libc calls if necessary to update shadow memory on non-application data references.  The runtime library also intercepts heap allocations and other key events in order to perform its analyses.  This is all very similar to how existing sanitizers such as AddressSanitizer, ThreadSanitizer, MemorySanitizer, etc. operate today.</div><div><br></div><div>====================</div><div>Example Tools</div><div>====================</div><div><br></div><div>We have several initial tools that we plan to build.  These are not necessarily novel ideas on their own: some of these have already been explored in academia.  The idea is to create practical, low-overhead, robust, and publicly available versions of these tools.</div><div><br></div><div>*Cache fragmentation*: this tool gather data structure field hotness information, looking for data layout optimization opportunities by grouping hot fields together to avoid data cache fragmentation.  Future enhancements may add field affinity information if it can be computed with low enough overhead.</div><div><br></div><div>*Working set measurement*: this tool measures the data working set size of an application at each snapshot during execution.  It can help to understand phased behavior as well as providing basic direction for further effort by the developer: e.g., knowing whether the working set is close to fitting in current L3 caches or is many times larger can help determine where to spend effort.</div><div><br></div><div>*Dead store detection*: this tool identifies dead stores (write-after-write patterns with no intervening read) as well as redundant stores (writes of the same value already in memory).  Xref the Deadspy paper from CGO 2012.</div><div><br></div><div>*Single-reference*: this tool identifies data cache lines brought in but only read once.  These could be candidates for non-temporal loads.</div><div><br></div><div>====================</div><div>EfficiencySanitizer</div><div>====================</div><div><br></div><div>We are proposing the name EfficiencySanitizer, or "esan" for short, to refer to this suite of dynamic instrumentation tools for improving program efficiency.  As we have a number of different tools that share quite a bit of their implementation we plan to consider them sub-tools under the EfficiencySanitizer umbrella, rather than adding a whole bunch of separate instrumentation and runtime library components.</div><div><br></div><div>While these tools are not addressing correctness issues like other sanitizers, they will be sharing a lot of the existing sanitizer runtime library support code.  Furthermore, users are already familiar with the sanitizer brand, and it seems better to extend that concept rather than add some new term.</div><div><br></div></div>
<br></div></div>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
<br></blockquote></div><span class="gmail-gmail-gmail-gmail-gmail-">

<p></p>

-- <br>
You received this message because you are subscribed to the Google Groups "efficiency-sanitizer" group.<br>
To unsubscribe from this group and stop receiving emails from it, send an email to <a href="mailto:efficiency-sanitizer+unsubscribe@google.com">efficiency-sanitizer+unsubscribe@google.com</a>.<br>
To post to this group, send email to <a href="mailto:efficiency-sanitizer@google.com">efficiency-sanitizer@google.com</a>.<br></span>
To view this discussion on the web visit <a href="https://groups.google.com/a/google.com/d/msgid/efficiency-sanitizer/CAEhrgAP28c6PnpQLsvvwECw-kRAK2EwFtScGVdxRcysZkiWENw%40mail.gmail.com?utm_medium=email&utm_source=footer">https://groups.google.com/a/google.com/d/msgid/efficiency-sanitizer/CAEhrgAP28c6PnpQLsvvwECw-kRAK2EwFtScGVdxRcysZkiWENw%40mail.gmail.com</a>.<br>
</blockquote></div><br></div></div>