mirror of
https://github.com/github/codeql.git
synced 2026-04-28 10:15:14 +02:00
f8318ef96ffbff9529348dc80c0c99e2df478641
The `SSAConstruction.getNewIRVariable` was very slow on Wireshark. This was probably because it couldn't join on multiple columns simultaneously. Instead of improving the join, I observed that the `TIRVariable` type was the same between all three IR stages except for a few occurrences of `FunctionIR` that could easily be changed to `Function`. By sharing `TIRVariable` between all the stages, we avoid recomputing it and translating it between every stage, turning the slow `getNewIRVariable` predicate into a no-op. This change means that later stages of the IR can't introduce new variables, but that was already the case because `config/identical-files.json` forced all three `IRVariable.qll` files to be identical.
Semmle QL
This open source repository contains the standard QL libraries and queries that power LGTM, and the other products that Semmle makes available to its customers worldwide.
How do I learn QL and run queries?
LGTM has extensive documentation on getting started with writing QL. You can use the interactive query console or the QL for Eclipse plugin to try out your queries on any open-source project that's currently being analyzed.
Contributing
We welcome contributions to our standard library and standard checks. Do you have an idea for a new check, or how to improve an existing query? Then please go ahead and open a pull request! Before you do, though, please take the time to read our contributing guidelines and QL style guide.
License
The LGTM queries are licensed under Apache License 2.0 by Semmle.
Languages
CodeQL
32.3%
Kotlin
27.4%
C#
17.1%
Java
7.7%
Python
4.6%
Other
10.7%