[PATCH] D86587: wq[WIP][Attributor] Per function iteration and memory tracking.

Kuter Dinel via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 25 21:16:34 PDT 2020


kuter added a comment.

Thank you I will update the commit message.



================
Comment at: llvm/include/llvm/Transforms/IPO/Attributor.h:164
+  /// The bit encodes if it is optional.
+  SmallVector<DepTy, 4> Deps;
 
----------------
jdoerfert wrote:
> Unrelated.
I had to make this a `SmallVector`


================
Comment at: llvm/lib/Transforms/IPO/Attributor.cpp:1360-1361
+        // queried, and in some cases using the result of AAs that did not
+        // recive a update on creation can cause problems.
+        InitPeriod = true;
+        for (AbstractAttribute *AA : AttributesToSeed)
----------------
This is no longer used.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D86587/new/

https://reviews.llvm.org/D86587



More information about the llvm-commits mailing list