[PATCH] D20483: [esan] EfficiencySanitizer working set tool fastpath

Derek Bruening via llvm-commits llvm-commits at lists.llvm.org
Tue May 24 15:04:45 PDT 2016


bruening marked an inline comment as done.

================
Comment at: lib/Transforms/Instrumentation/EfficiencySanitizer.cpp:414
@@ +413,3 @@
+        (Alignment % (TypeSize / 8)) == 0))
+    return false;
+
----------------
aizatsky wrote:
> NumFastpaths is not incremented though.
It is incremented by the caller based on the return value.  The number of slowpaths is also available by computing (NumInstrumentedStores + NumInstrumentedLoads) - NumFastpaths.


http://reviews.llvm.org/D20483





More information about the llvm-commits mailing list