mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 14:41:42 +03:00
Fix all optimization-inhibiting integer-to-pointer casts
Following from PR #2481, we replace all integer-to-pointer casts [which hide pointer provenance information (and thus inhibit optimizations)](https://clang.llvm.org/extra/clang-tidy/checks/performance/no-int-to-ptr.html) with equivalent operations that preserve this information. I have enabled the corresponding clang-tidy check in our static analysis CI so that we do not get bitten by this again in the future.
This commit is contained in:
parent
4827bb17bd
commit
3e82f357bb
27 changed files with 116 additions and 66 deletions
|
|
@ -44,7 +44,8 @@ echo '-**/stdlib.h' > "$skipfile"
|
|||
CC_ANALYZERS_FROM_PATH=1 CodeChecker analyze compile_commands.json --jobs "$(nproc)" \
|
||||
--ctu --compile-uniqueing strict --output static_analysis_raw_results \
|
||||
--analyzers clangsa clang-tidy --skip "$skipfile" \
|
||||
--enable readability-inconsistent-declaration-parameter-name
|
||||
--enable readability-inconsistent-declaration-parameter-name \
|
||||
--enable performance-no-int-to-ptr
|
||||
# `--enable` is additive, the vast majority of the checks we want are
|
||||
# enabled by default.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue