[PATCH] D100903: [dfsan] Enable origin tracking with fast8 mode

George Balatsouras via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 20 16:53:44 PDT 2021


gbalats marked an inline comment as done.
gbalats 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;
+
----------------
stephan.yichao.zhao wrote:
> Please define a function to be shared by the two cases.
Done.


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