forked from OSchip/llvm-project
[analyzer][docs][NFC] Document the ento namespace in the llvm/Lexicon
Document the `ento` namespace in the Lexicon according to @nicolas17 on the mailing list (http://lists.llvm.org/pipermail/cfe-dev/2020-August/066577.html). The analyzer lived at different namespaces at different times. Originally lived at the `GR` aka. (Graph Reachability) namespace [7], later it moved under the `ento` namespace [9]. The Static Analyzer's code lived at many other places as well: `Analysis` -[2]-> `Checker` -[5]-> `GR` -[10]> `entoSA` -[11]-> `StaticAnalyzer` The relevant code motion, refactor commits, cfe-dev mailing in chronological order: 1) 2008-03-15 Make a major restructuring of the clang tree: introduce a ...7a51313d8a
2) 2010-01-25 Split libAnalysis into two libraries: libAnalysis and libCheckerd6b8708643
3) 2010-12-21 Reorganization of Checker files http://lists.llvm.org/pipermail/cfe-dev/2010-December/012694.html 4) 2010-12-22 Refactoring: include/clang/Checker -> include/clang/GR8d602a8aa8
5) 2010-12-22 Refactoring: lib/Checker -> lib/GR2ff5ab1516
6) 2010-12-22 Refactoring: Move checkers into lib/GR/Checkers and their owna700e976b6
7) 2010-12-22 Refactoring: Move stuff into namespace 'GR'ca08fba414
8) 2010-12-22 Refactoring: Drop the 'GR' prefix.1696f508e2
9) 2010-12-23 Rename static analyzer namespace 'GR' to 'ento'98857c9860
10) 2010-12-23 Rename headers: 'clang/GR' 'clang/EntoSA' and update Makefileef33f0996c
11) 2010-12-23 Chris Lattner has strong opinions about directoryd99bd55a5e
12) 2010-12-24 Remove the EntoSA directories.9d6af5328e
Reviewed By: Szelethus,martong,ASDenysPetrov,xazax.hun Differential Revision: https://reviews.llvm.org/D86446
This commit is contained in:
parent
163863604f
commit
d7ae9696e3
|
@ -92,6 +92,19 @@ D
|
|||
**DSE**
|
||||
Dead Store Elimination
|
||||
|
||||
E
|
||||
-
|
||||
|
||||
**ento**
|
||||
This namespace houses the
|
||||
`Clang Static Analyzer <https://clang.llvm.org/docs/ClangStaticAnalyzer.html>`_.
|
||||
It is an abbreviaton of `entomology <https://en.wikipedia.org/wiki/Entomology>`_.
|
||||
|
||||
*"Entomology is the scientific study of insects."*
|
||||
|
||||
In the past, this namespace had not only the name `GR` (aka. Graph Reachability)
|
||||
but also `entoSA`.
|
||||
|
||||
F
|
||||
-
|
||||
|
||||
|
|
Loading…
Reference in New Issue