[cfe-dev] how can i get ud-chain of variable in checker?

Kristóf Umann via cfe-dev cfe-dev at lists.llvm.org
Tue Feb 4 02:05:20 PST 2020


I tagged a few folks who could answer the first one :)

On Mon, 3 Feb 2020 at 16:40, 종모님 via cfe-dev <cfe-dev at lists.llvm.org> wrote:

> i did clang static analyzer checker guide and i build it. it works
> successfully.
>
> and i have a 2 question.
>
> Q1. I know that the Clang tool provides a du-chain. how can i get
> du(define-use)-chain in checker? - i need du-chain for analysis
>
> Q2. Analyze a file with the specified checker is fail. normal package
> checker is works.
>
> $clang --analyze -Xanalyzer -analyzer-checker=alpha test.c
>
> -> it works.
>
> $clang --analyze -Xanalyzer -analyzer-checker=alpha.core test.c
>
> -> it fail. (I guess the argument changed.)
>
> i <https://i.stack.imgur.com/XTY5r.png>mage ::
> https://i.stack.imgur.com/XTY5r.png
>
>
> The list of checkers need to be comma-separated.

clang --analyze -Xanalyzer -analyzer-checker=alpha,core test.c
---OR---
clang --analyze -Xanalyzer -analyzer-checker=alpha -Xanalyzer
-analyzer-checker=core test.c

Mind that if you don't invoke the analyzer through the frontend (using the
-cc1 flag), the core package is always be enabled. If you do, you
definitely should enable it by hand!



> my env is win 10/ LLVM,CLNAG 8.0/ include MinGW envPATH / vs2019
>
> thank you for reading :3
> _______________________________________________
> cfe-dev mailing list
> cfe-dev at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-dev/attachments/20200204/478e553c/attachment.html>


More information about the cfe-dev mailing list