Code quality day: Clang-Tidy #78535

Open
opened 2020-07-02 15:38:35 +02:00 by Sergey Sharybin · 16 comments

The goal of this little project is to allow developers to leverage Clang-Tidy to help spotting typical bugprone code and typical readability problems. The plan of attack is simple: a developer picks up a warning from the list, modifies the code base to address it, commits the work to the master Git branch.

Required setup:

  • Linux (unfortunately, it is not trivial to have Clang-Tidy outside of Linux)
  • Clang-Tidy installed (use package manager of your Linux distro)
  • Configure Blender's CMake using WITH_CLANG_TIDY=ON (optionally specify CLANG_TIDY_EXECUTABLE if automatic detection fails).

Both Clang and GCC toolchains are supposed to work. However, GCC+Clang-Tidy might need some polishing.

There is a command which works for me (tm): make developer debug BUILD_CMAKE_ARGS='-DWITH_CLANG_TIDY=ON'

Clang-Tidy is run as an extra compilation step, so it's warning are emitted as regular build process.

Workflow

  1. Put your name next to the warning once you start working on it.
  2. Remove corresponding line from the .clang-tidy file, make Blender compiled without this warning.
  3. Commit result of your work (if the warning is fully tackled, commit the change to .clang-tidy as well).

Some warnings happens in many areas, and many people can work on it. Use blender-chat to coordinate this.

List of warnings to be addressed

Documentation can be found in the Clang-Tidy v10 docs.

NOTE: This list is assembled based on thoughts "would be really nice to address those". Use common sense when it seems that addressing them goes too far. It might be best to ignore the warning rather than heavily modify codebase at this point.

NOTE: Some of the cleanup might discover actual bug in the code. Please separate fixing the bug from the cleanup commit.

  • -readability-else-after-return

  • -readability-braces-around-statements

  • -readability-inconsistent-declaration-parameter-name

  • -readability-non-const-parameter

  • -readability-redundant-preprocessor

  • -readability-redundant-control-flow

  • -readability-named-parameter

  • -readability-function-size (rule is enabled, but future parameter tweaks will likely reveal more areas of improvement)

  • -readability-static-definition-in-anonymous-namespace

  • -readability-delete-null-pointer

  • -readability-redundant-string-init

  • -readability-redundant-member-init

  • -readability-const-return-type

  • -readability-container-size-empty

  • -readability-redundant-string-cstr

  • -readability-static-accessed-through-instance

  • -readability-redundant-declaration

  • -readability-qualified-auto

  • -readability-function-cognitive-complexity

  • -readability-suspicious-call-argument

  • -bugprone-incorrect-roundings

  • -bugprone-suspicious-string-compare

  • -bugprone-too-small-loop-variable

  • -bugprone-misplaced-widening-cast

  • -bugprone-not-null-terminated-result

  • -bugprone-suspicious-missing-comma

  • -bugprone-argument-comment

  • -bugprone-assert-side-effect

  • -bugprone-parent-virtual-call

  • -bugprone-infinite-loop

  • -bugprone-copy-constructor-init

  • -bugprone-lambda-function-name

  • -bugprone-exception-escape (does not happen on Linux + clang-tidy-10) (Fixed with D9497)

  • -bugprone-redundant-branch-condition

  • -bugprone-easily-swappable-parameters

  • -bugprone-implicit-widening-of-multiplication-result

  • -modernize-deprecated-headers

  • -modernize-use-equals-default D9494

  • -modernize-use-nullptr

  • -modernize-concat-nested-namespaces

  • -modernize-use-emplace

  • -modernize-use-using

  • -modernize-redundant-void-arg

  • -modernize-use-bool-literals

  • -modernize-loop-convert (partially done in 11c4066159)

  • -modernize-pass-by-value (P1755)

  • -modernize-make-unique

  • -modernize-use-override

  • -modernize-use-transparent-functors D10323

  • -modernize-raw-string-literal D10322

  • -modernize-avoid-bind D10320

  • -modernize-use-default-member-init D9501

  • -modernize-return-braced-init-list

There is -readability-misleading-indentation explicitly silenced. Seems to be incompatible with Blender's clang-format rules.

Ignored for now:

  • -bugprone-sizeof-expression: It does not allow us to do the following: T **ptr_array = MEM_mallocN(sizeof(*ptr_array), AT). Also see this .
  • -bugprone-integer-division: It causes too many false-positives and fixing adds more noise.

Papercuts

  • ] Modifying .clang-tidy does not force re-compilation. For now run the clean target manually to make sure new warnings are enabled. This is something what was annoying initially, but is not that different from .clang-format. Lets not overthink/overcomplicate build process here and just leave it as is.
The goal of this little project is to allow developers to leverage Clang-Tidy to help spotting typical bugprone code and typical readability problems. The plan of attack is simple: a developer picks up a warning from the list, modifies the code base to address it, commits the work to the master Git branch. Required setup: * Linux (unfortunately, it is not trivial to have Clang-Tidy outside of Linux) * Clang-Tidy installed (use package manager of your Linux distro) * Configure Blender's CMake using `WITH_CLANG_TIDY=ON` (optionally specify `CLANG_TIDY_EXECUTABLE` if automatic detection fails). Both Clang and GCC toolchains are supposed to work. However, GCC+Clang-Tidy might need some polishing. There is a command which `works for me (tm)`: `make developer debug BUILD_CMAKE_ARGS='-DWITH_CLANG_TIDY=ON'` Clang-Tidy is run as an extra compilation step, so it's warning are emitted as regular build process. **Workflow** 1. Put your name next to the warning once you start working on it. 2. Remove corresponding line from the `.clang-tidy` file, make Blender compiled without this warning. 3. Commit result of your work (if the warning is fully tackled, commit the change to `.clang-tidy` as well). Some warnings happens in many areas, and many people can work on it. Use blender-chat to coordinate this. **List of warnings to be addressed** Documentation can be found in the [Clang-Tidy v10 docs](https://releases.llvm.org/10.0.0/tools/clang/tools/extra/docs/clang-tidy/checks/list.html). NOTE: This list is assembled based on thoughts "would be really nice to address those". Use common sense when it seems that addressing them goes too far. It might be best to ignore the warning rather than heavily modify codebase at this point. NOTE: Some of the cleanup might discover actual bug in the code. Please separate fixing the bug from the cleanup commit. - [x] `-readability-else-after-return` - [x] `-readability-braces-around-statements` - [x] `-readability-inconsistent-declaration-parameter-name` - [x] `-readability-non-const-parameter` - [x] `-readability-redundant-preprocessor` - [x] `-readability-redundant-control-flow` - [x] `-readability-named-parameter` - [x] `-readability-function-size` (rule is enabled, but future parameter tweaks will likely reveal more areas of improvement) - [x] `-readability-static-definition-in-anonymous-namespace` - [x] `-readability-delete-null-pointer` - [x] `-readability-redundant-string-init` - [ ] `-readability-redundant-member-init` - [x] `-readability-const-return-type` - [x] `-readability-container-size-empty` - [x] `-readability-redundant-string-cstr` - [x] `-readability-static-accessed-through-instance` - [x] `-readability-redundant-declaration` - [x] `-readability-qualified-auto` - [ ] `-readability-function-cognitive-complexity` - [ ] `-readability-suspicious-call-argument` - [x] `-bugprone-incorrect-roundings` - [x] `-bugprone-suspicious-string-compare` - [x] `-bugprone-too-small-loop-variable` - [x] `-bugprone-misplaced-widening-cast` - [x] `-bugprone-not-null-terminated-result` - [x] `-bugprone-suspicious-missing-comma` - [x] `-bugprone-argument-comment` - [x] `-bugprone-assert-side-effect` - [x] `-bugprone-parent-virtual-call` - [x] `-bugprone-infinite-loop` - [x] `-bugprone-copy-constructor-init` - [x] `-bugprone-lambda-function-name` - [x] `-bugprone-exception-escape` (does not happen on Linux + clang-tidy-10) (Fixed with [D9497](https://archive.blender.org/developer/D9497)) - [ ] `-bugprone-redundant-branch-condition` - [ ] `-bugprone-easily-swappable-parameters` - [ ] `-bugprone-implicit-widening-of-multiplication-result` - [x] `-modernize-deprecated-headers` - [x] `-modernize-use-equals-default` [D9494](https://archive.blender.org/developer/D9494) - [x] `-modernize-use-nullptr` - [x] `-modernize-concat-nested-namespaces` - [x] `-modernize-use-emplace` - [x] `-modernize-use-using` - [x] `-modernize-redundant-void-arg` - [x] `-modernize-use-bool-literals` - [ ] `-modernize-loop-convert` (partially done in 11c4066159) - [ ] `-modernize-pass-by-value` ([P1755](https://archive.blender.org/developer/P1755.txt)) - [x] `-modernize-make-unique` - [x] `-modernize-use-override` - [x] `-modernize-use-transparent-functors` [D10323](https://archive.blender.org/developer/D10323) - [x] `-modernize-raw-string-literal` [D10322](https://archive.blender.org/developer/D10322) - [x] `-modernize-avoid-bind` [D10320](https://archive.blender.org/developer/D10320) - [x] `-modernize-use-default-member-init` [D9501](https://archive.blender.org/developer/D9501) - [ ] `-modernize-return-braced-init-list` There is `-readability-misleading-indentation` explicitly silenced. Seems to be incompatible with Blender's clang-format rules. Ignored for now: * `-bugprone-sizeof-expression`: It does not allow us to do the following: `T **ptr_array = MEM_mallocN(sizeof(*ptr_array), AT)`. Also see [this ](https://clang.llvm.org/extra/clang-tidy/checks/bugprone-sizeof-expression.html#suspicious-usage-of-sizeof-a). * `-bugprone-integer-division`: It causes too many false-positives and fixing adds more noise. **Papercuts** - ] Modifying .clang-tidy does not force re-compilation. For now run the `clean` target manually to make sure new warnings are enabled. This is something what was annoying initially, but is not that different from .clang-format. Lets not overthink/overcomplicate build process here and just leave it as is.
Sergey Sharybin self-assigned this 2020-07-02 15:38:35 +02:00
Author
Owner

Changed status from 'Needs Triage' to: 'Confirmed'

Changed status from 'Needs Triage' to: 'Confirmed'
Author
Owner

Added subscriber: @Sergey

Added subscriber: @Sergey

Added subscriber: @dr.sybren

Added subscriber: @dr.sybren
Member

Added subscriber: @JacquesLucke

Added subscriber: @JacquesLucke

Added subscriber: @ZedDB

Added subscriber: @ZedDB
Member

Added subscriber: @HooglyBoogly

Added subscriber: @HooglyBoogly

Added subscriber: @sebbas

Added subscriber: @sebbas
Member

Added subscriber: @ankitm

Added subscriber: @ankitm
Member

*Files in makesrna were left out of clang tidy by using it with compiler. Here's what works without actually compiling Blender:

 /usr/share/clang/run-clang-tidy.py  -j 4  -p ../path_to_compilation_database  -fix  files source/

03ded5497a/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py

*There are a few new(?) warnings: bugprone-exception-escape, readability-named-parameter, readability-function-cognitive-complexity, bugprone-redundant-branch-condition, readability-redundant-string-init

Log with readability-function-cognitive-complexity enabled: clang_tidy_log2.log.xz
Others generate very less errors:
clang_tidy_log.log

*Files in `makesrna` were left out of clang tidy by using it with compiler. Here's what works without actually compiling Blender: ``` /usr/share/clang/run-clang-tidy.py -j 4 -p ../path_to_compilation_database -fix files source/ ``` https://github.com/llvm/llvm-project/blob/03ded5497a2f458b6af054fa7bac0da0240e7b7a/clang-tools-extra/clang-tidy/tool/run-clang-tidy.py *There are a few new(?) warnings: `bugprone-exception-escape`, `readability-named-parameter`, `readability-function-cognitive-complexity`, `bugprone-redundant-branch-condition`, `readability-redundant-string-init` Log with `readability-function-cognitive-complexity` enabled: [clang_tidy_log2.log.xz](https://archive.blender.org/developer/F9024100/clang_tidy_log2.log.xz) Others generate very less errors: [clang_tidy_log.log](https://archive.blender.org/developer/F9024187/clang_tidy_log.log)

readability-function-cognitive-complexity requires Clang 12, which hasn't even been released yet. I really, really want to enable this rule, but I think we should wait until there is a stable version of Clang that supports it.

`readability-function-cognitive-complexity` requires Clang 12, which hasn't even been released yet. I really, really want to enable this rule, but I think we should wait until there is a stable version of Clang that supports it.
Author
Owner

I've expanded the modernize category in 3b77c670f0. Lets find out which of the points we want/plan to address!

Those I find are nice candidates to address:

  • modernize-deprecated-headers
  • modernize-use-equals-default
  • modernize-use-nullptr
  • modernize-concat-nested-namespaces
  • modernize-use-emplace
  • modernize-use-using
  • modernize-redundant-void-arg
  • modernize-use-bool-literals
  • modernize-loop-convert
  • modernize-pass-by-value
  • modernize-make-unique
  • modernize-use-override
  • modernize-use-transparent-functors

Something which seems interesting to investigate:

  • modernize-raw-string-literal
  • modernize-avoid-bind
  • modernize-use-default-member-init
I've expanded the modernize category in 3b77c670f0. Lets find out which of the points we want/plan to address! Those I find are nice candidates to address: * modernize-deprecated-headers * modernize-use-equals-default * modernize-use-nullptr * modernize-concat-nested-namespaces * modernize-use-emplace * modernize-use-using * modernize-redundant-void-arg * modernize-use-bool-literals * modernize-loop-convert * modernize-pass-by-value * modernize-make-unique * modernize-use-override * modernize-use-transparent-functors Something which seems interesting to investigate: * modernize-raw-string-literal * modernize-avoid-bind * modernize-use-default-member-init

Lets find out which of the points we want/plan to address!

All of them! Well, at least the ones you list here seem nice.

modernize-use-trailing-return-type and modernize-use-auto do some things I don't really agree with.

> Lets find out which of the points we want/plan to address! All of them! Well, at least the ones you list here seem nice. [modernize-use-trailing-return-type](https:*clang.llvm.org/extra/clang-tidy/checks/modernize-use-trailing-return-type.html) and [modernize-use-auto](https:*clang.llvm.org/extra/clang-tidy/checks/modernize-use-auto.html) do some things I don't really agree with.

Added subscriber: @jim-man

Added subscriber: @jim-man

Clang-Tidy 12 have been released

[Clang-Tidy 12](https://releases.llvm.org/12.0.0/tools/clang/tools/extra/docs/ReleaseNotes.html) have been released
Author
Owner

Would be nice to make a final effort and get this task fully done!

@dr.sybren, did you start looking into -readability-function-cognitive-complexity and -bugprone-redundant-branch-condition?

@JacquesLucke, any specific reason why -modernize-loop-convert and -modernize-pass-by-value are only partial and a non-committed patch? Something you didn't have time yet, or something you are not sure it's a good change?

Would be nice to make a final effort and get this task fully done! @dr.sybren, did you start looking into `-readability-function-cognitive-complexity` and `-bugprone-redundant-branch-condition`? @JacquesLucke, any specific reason why `-modernize-loop-convert` and `-modernize-pass-by-value` are only partial and a non-committed patch? Something you didn't have time yet, or something you are not sure it's a good change?
Member

Don't know about -modernize-loop-convert, but can check that.
We had inconclusive discussions about -modernize-pass-by-value in chat. I can update the patch to latest master and submit for review again.

Don't know about `-modernize-loop-convert`, but can check that. We had inconclusive discussions about `-modernize-pass-by-value` in chat. I can update the patch to latest master and submit for review again.
Philipp Oeser removed the
Interest
Development Management
label 2023-02-09 15:02:09 +01:00
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
8 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#78535
No description provided.