RESOLVED FIXED 204834
Clang 10 reports -Wimplicit-int-float-conversion compilation warnings
https://bugs.webkit.org/show_bug.cgi?id=204834
Summary Clang 10 reports -Wimplicit-int-float-conversion compilation warnings
Fujii Hironori
Reported 2019-12-03 20:13:38 PST
Clang 10 reports a compilation warning: > wtf/MathExtras.h(401,43): warning: implicit conversion from 'unsigned long long' to 'double' changes value from 18446744073709551615 to 18446744073709551616 [-Wimplicit-int-float-conversion] > double fmodValue = fmod(trunc(d), std::numeric_limits<unsigned long long>::max() + 1.0); doubleToInteger was added in Bug 67980.
Attachments
WIP patch (740 bytes, patch)
2019-12-03 20:35 PST, Fujii Hironori
no flags
Patch (11.27 KB, patch)
2020-04-01 15:45 PDT, Fujii Hironori
no flags
Fujii Hironori
Comment 1 2019-12-03 20:25:39 PST
More warnings: > [20/129] Building CXX object Source\WTF\wtf\CMakeFiles\WTF.dir\MediaTime.cpp.obj > ..\..\Source\WTF\wtf\MediaTime.cpp(117,21): warning: implicit conversion from 'long long' to 'float' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-int-float-conversion] > if (floatTime > std::numeric_limits<int64_t>::max()) > ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > ..\..\Source\WTF\wtf\MediaTime.cpp(124,36): warning: implicit conversion from 'long long' to 'float' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-int-float-conversion] > while (floatTime * timeScale > std::numeric_limits<int64_t>::max()) > ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > ..\..\Source\WTF\wtf\MediaTime.cpp(147,22): warning: implicit conversion from 'long long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-int-float-conversion] > if (doubleTime > std::numeric_limits<int64_t>::max()) > ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > ..\..\Source\WTF\wtf\MediaTime.cpp(154,37): warning: implicit conversion from 'long long' to 'double' changes value from 9223372036854775807 to 9223372036854775808 [-Wimplicit-int-float-conversion] > while (doubleTime * timeScale > std::numeric_limits<int64_t>::max()) > ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > 4 warnings generated.
Fujii Hironori
Comment 2 2019-12-03 20:35:54 PST
Created attachment 384784 [details] WIP patch
Fujii Hironori
Comment 3 2019-12-03 21:05:12 PST
Umm, there are more. Here is full compilation log after applying the WIP patch. https://gist.github.com/fujii/160ae6e66138d6b48dc4e342f58837b6
Don Olmstead
Comment 4 2020-03-26 10:31:35 PDT
https://bugzilla.mozilla.org/show_bug.cgi?id=1577236 Here's Mozilla's work to fix this warning in their codebase
Fujii Hironori
Comment 5 2020-04-01 15:45:30 PDT
Darin Adler
Comment 6 2020-04-01 16:26:12 PDT
Comment on attachment 395215 [details] Patch We don’t use typically function style casts in WebKit. We should look for other ways to do the conversion. These warnings suggest there are mistakes in some of these places. I am not sure that just quieting the warning without a behavior change is good.
Fujii Hironori
Comment 7 2020-04-01 22:53:30 PDT
https://stackoverflow.com/a/17822304 This is interesting. They uses an idea using ldexp which is similar approach with my WIP patch (comment 2).
Fujii Hironori
Comment 8 2020-04-03 01:23:34 PDT
Filed: Bug 209955 – [Clang 10] Fix -Wimplicit-int-float-conversion compilation warnings in WTF
Fujii Hironori
Comment 9 2024-11-18 17:18:07 PST
No more tasks. Closed.
Note You need to log in before you can comment on or make changes to this bug.