This is an archive of the discontinued LLVM Phabricator instance.

[clang-tidy] Disable google-runtime-int in Objective-C++ 🔓
ClosedPublic

Authored by stephanemoore on Mar 13 2019, 3:15 PM.

Details

Summary

In contrast to Google C++, Objective-C often uses built-in integer types
other than int. In fact, the Objective-C runtime itself defines the
types NSInteger¹ and NSUInteger² which are variant types depending on
the target architecture. The Objective-C style guide indicates that
usage of system types with variant sizes is appropriate when handling
values provided by system interfaces³. Objective-C++ is commonly the
result of conversion from Objective-C to Objective-C++ for the purpose
of integrating C++ functionality. The opposite of Objective-C++ being
used to expose Objective-C functionality to C++ is less common,
potentially because Objective-C has a signficantly more uneven presence
on different platforms compared to C++. This generally predisposes
Objective-C++ to commonly being more Objective-C than C++. Forcing
Objective-C++ developers to perform conversions between variant system types
and fixed size integer types depending on target architecture when
Objective-C++ commonly uses variant system types from Objective-C is
likely to lead to more bugs and overhead than benefit. For that reason,
this change proposes to disable google-runtime-int in Objective-C++.

[1] https://developer.apple.com/documentation/objectivec/nsinteger?language=objc
[2] https://developer.apple.com/documentation/objectivec/nsuinteger?language=objc
[3] "Types long, NSInteger, NSUInteger, and CGFloat vary in size between
32- and 64-bit builds. Use of these types is appropriate when handling
values exposed by system interfaces, but they should be avoided for most
other computations."
https://github.com/google/styleguide/blob/gh-pages/objcguide.md#types-with-inconsistent-sizes

Diff Detail

Event Timeline

stephanemoore created this revision.Mar 13 2019, 3:15 PM
Herald added a project: Restricted Project. · View Herald TranscriptMar 13 2019, 3:15 PM

Document change in release notes.

Let me know if you think this change would benefit from added tests.

gribozavr accepted this revision.Mar 13 2019, 3:55 PM
gribozavr added a subscriber: gribozavr.
gribozavr added inline comments.
clang-tools-extra/clang-tidy/google/IntegerTypesCheck.cpp
57 ↗(On Diff #190520)

"Objective-C and Objective-C++"? Similarly in release notes.

This revision is now accepted and ready to land.Mar 13 2019, 3:55 PM
gribozavr marked an inline comment as done.Mar 13 2019, 3:56 PM
gribozavr added inline comments.
clang-tools-extra/clang-tidy/google/IntegerTypesCheck.cpp
57 ↗(On Diff #190520)

I see -- should have read the previous sentence, which you are not changing. Never mind.

stephanemoore marked 2 inline comments as done.Mar 13 2019, 5:04 PM

Thanks for the review!

clang-tools-extra/clang-tidy/google/IntegerTypesCheck.cpp
57 ↗(On Diff #190520)

Yup, the previous sentence indicates that the check targets C++ and this added sentence indicates that Objective-C++ is considered an exception.

aaron.ballman requested changes to this revision.Mar 14 2019, 10:48 AM

This is missing test cases that demonstrate the behavior is what we expect it to be for ObjC++ code vs C++ code.

This revision now requires changes to proceed.Mar 14 2019, 10:48 AM

This is missing test cases that demonstrate the behavior is what we expect it to be for ObjC++ code vs C++ code.

Looks like phab has again consumed the email comments.
Might be a good idea to add the backlogged test coverage too.

https://lists.llvm.org/pipermail/cfe-commits/Week-of-Mon-20190311/264471.html

test?

I was uncertain whether or not this change required new tests. A previous change which disabled this check in languages other than C++ did not include additional tests:
https://github.com/llvm/llvm-project/commit/ec3e5d6fd87862eb77a2b0320d79b9a4427d39df#diff-a491be84e1b831aeaea56c39b5eb898c
If there is a preference to add tests for this change, I can do so.

Add google-runtime-int tests for Objective-C and Objective-C++.

This is missing test cases that demonstrate the behavior is what we expect it to be for ObjC++ code vs C++ code.

Added tests for Objective-C and Objective-C++.

aaron.ballman added inline comments.Mar 15 2019, 7:26 AM
clang-tools-extra/test/clang-tidy/google-runtime-int.m
1 ↗(On Diff #190742)

We typically use | count 0 instead of an explicit grep. Also, do you really need to pass -x objective-c?

clang-tools-extra/test/clang-tidy/google-runtime-int.mm
1 ↗(On Diff #190742)

Given that the contents of the file are the same, I would just add this RUN line to the previous test case (changing to | count 0). You will still need the -x objective-c++ in that case.

stephanemoore marked 2 inline comments as done.

Updated with changes:
• Switched to using | count 0 instead of grep'ing for warnings.
• Merged Objective-C and Objective-C++ test cases into single file with multiple runs.

stephanemoore added inline comments.Mar 18 2019, 3:55 PM
clang-tools-extra/test/clang-tidy/google-runtime-int.m
1 ↗(On Diff #190742)

I had chosen to use grep and had explicitly specified the language to be consistent with google-runtime-int.c. I agree that | count 0 is more common and have switched to that approach.

I thought that I should be able to remove -x objective-c but when I try to I get an error loading the compilation database:

Error while trying to load a compilation database:
Could not auto-detect compilation database for file "path_to_llvm_project/clang-tools-extra/test/clang-tidy/google-runtime-int.m"
No compilation database found in path_to_llvm_project/clang-tools-extra/test/clang-tidy or any parent directory
fixed-compilation-database: Error while opening fixed database: No such file or directory
json-compilation-database: Error while opening JSON database: No such file or directory
Running without flags.

I am still investigating the underlying reason.

clang-tools-extra/test/clang-tidy/google-runtime-int.mm
1 ↗(On Diff #190742)

Makes sense. Done.

Remove redundant specification of -x objective-c.

stephanemoore marked 3 inline comments as done.Mar 18 2019, 5:40 PM
stephanemoore added inline comments.
clang-tools-extra/test/clang-tidy/google-runtime-int.m
1 ↗(On Diff #190742)

Apparently it was because I removed the -- as well 😅 I have now removed -x objective-c.

This revision is now accepted and ready to land.Mar 20 2019, 8:12 AM
stephanemoore marked an inline comment as done.Mar 20 2019, 4:03 PM

Thanks for the review!

This revision was automatically updated to reflect the committed changes.