[PATCH] D100903: [dfsan] Enable origin tracking with fast8 mode
stephan.yichao.zhao via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 20 16:02:36 PDT 2021
stephan.yichao.zhao added inline comments.
================
Comment at: llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp:2043
+ uint64_t ShadowSize = Size * DFS.ShadowWidthBytes;
+ bool HasSizeForFastPath = ShadowSize % 8 == 0 || ShadowSize == 4;
+
----------------
Please define a function to be shared by the two cases.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100903/new/
https://reviews.llvm.org/D100903
More information about the llvm-commits
mailing list