sgatev accepted this revision.
sgatev added inline comments.
This revision is now accepted and ready to land.


================
Comment at: 
clang/include/clang/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.h:44
 class TypeErasedDataflowAnalysis {
+  // Determines whether to apply the built-in transfer functions.
+  bool ApplyBuiltinTransfer;
----------------
We use `///` to start a doc comment.


================
Comment at: 
clang/include/clang/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.h:45
+  // Determines whether to apply the built-in transfer functions.
+  bool ApplyBuiltinTransfer;
+
----------------
Let's add a FIXME to consider removing this if the framework gains support for 
composite analyses.


================
Comment at: 
clang/include/clang/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.h:77
+
+  // Determines whether to apply the built-in transfer functions, which model
+  // the heap and stack in the `Environment`.
----------------
We use `///` to start a doc comment.


================
Comment at: 
clang/include/clang/Analysis/FlowSensitive/TypeErasedDataflowAnalysis.h:79
+  // the heap and stack in the `Environment`.
+  bool applyBuiltinTransfer() { return ApplyBuiltinTransfer; }
 };
----------------
Make this member const?


================
Comment at: clang/unittests/Analysis/FlowSensitive/NoopAnalysis.h:42
 public:
-  NoopAnalysis(ASTContext &Context)
-      : DataflowAnalysis<NoopAnalysis, NoopLattice>(Context) {}
+  // `ApplyBuiltinTransfer` controls whether to run the built-in transfer
+  // functions that model memory during the analysis.
----------------
We use `///` to start a doc comment.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D118178

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to