[PATCH] D62870: Experimantal dfsan mode "fast16labels=1"
Kostya Serebryany via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 7 17:21:23 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL362859: Experimantal dfsan mode "fast16labels=1" (authored by kcc, committed by ).
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D62870/new/
https://reviews.llvm.org/D62870
Files:
compiler-rt/trunk/lib/dfsan/dfsan.cc
compiler-rt/trunk/lib/dfsan/dfsan_flags.inc
compiler-rt/trunk/test/dfsan/fast16labels.c
Index: compiler-rt/trunk/test/dfsan/fast16labels.c
===================================================================
--- compiler-rt/trunk/test/dfsan/fast16labels.c
+++ compiler-rt/trunk/test/dfsan/fast16labels.c
@@ -0,0 +1,25 @@
+// RUN: %clang_dfsan %s -o %t && DFSAN_OPTIONS=fast16labels=1 %run %t
+//
+// Tests DFSAN_OPTIONS=fast16labels=1
+//
+#include <sanitizer/dfsan_interface.h>
+
+#include <assert.h>
+#include <stdio.h>
+
+int foo(int a, int b) {
+ return a + b;
+}
+
+int main() {
+ int a = 10;
+ int b = 20;
+ dfsan_set_label(8, &a, sizeof(a));
+ dfsan_set_label(512, &b, sizeof(b));
+ int c = foo(a, b);
+ printf("A: 0x%x\n", dfsan_get_label(a));
+ printf("B: 0x%x\n", dfsan_get_label(b));
+ dfsan_label l = dfsan_get_label(c);
+ printf("C: 0x%x\n", l);
+ assert(l == 520); // OR of the other two labels.
+}
Index: compiler-rt/trunk/lib/dfsan/dfsan_flags.inc
===================================================================
--- compiler-rt/trunk/lib/dfsan/dfsan_flags.inc
+++ compiler-rt/trunk/lib/dfsan/dfsan_flags.inc
@@ -29,3 +29,7 @@
DFSAN_FLAG(const char *, dump_labels_at_exit, "", "The path of the file where "
"to dump the labels when the "
"program terminates.")
+DFSAN_FLAG(bool, fast16labels, false,
+ "Enables experimental mode where DFSan supports only 16 power-of-2 labels "
+ "(1, 2, 4, 8, ... 32768) and the label union is computed as a bit-wise OR."
+)
Index: compiler-rt/trunk/lib/dfsan/dfsan.cc
===================================================================
--- compiler-rt/trunk/lib/dfsan/dfsan.cc
+++ compiler-rt/trunk/lib/dfsan/dfsan.cc
@@ -162,6 +162,8 @@
// this function (the instrumentation pass inlines the equality test).
extern "C" SANITIZER_INTERFACE_ATTRIBUTE
dfsan_label __dfsan_union(dfsan_label l1, dfsan_label l2) {
+ if (flags().fast16labels)
+ return l1 | l2;
DCHECK_NE(l1, l2);
if (l1 == 0)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D62870.203648.patch
Type: text/x-patch
Size: 1989 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190608/cdb26df2/attachment-0001.bin>
More information about the llvm-commits
mailing list