WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
139384
Fix Build Warning in JavaScriptCore ControlFlowProfiler::dumpData() api
https://bugs.webkit.org/show_bug.cgi?id=139384
Summary
Fix Build Warning in JavaScriptCore ControlFlowProfiler::dumpData() api
Shivakumar J M
Reported
2014-12-07 21:27:16 PST
Fix Build Warning in JavaScriptCore ControlFlowProfiler::dumpData() api: Wpointer-arith -Wundef -Wwrite-strings -MMD -MT Source/JavaScriptCore/CMakeFiles/JavaScriptCore.dir/runtime/ControlFlowProfiler.cpp.o -MF "Source/JavaScriptCore/CMakeFiles/JavaScriptCore.dir/runtime/ControlFlowProfiler.cpp.o.d" -o Source/JavaScriptCore/CMakeFiles/JavaScriptCore.dir/runtime/ControlFlowProfiler.cpp.o -c ../../Source/JavaScriptCore/runtime/ControlFlowProfiler.cpp ../../Source/JavaScriptCore/runtime/ControlFlowProfiler.cpp: In member function ‘void JSC::ControlFlowProfiler::dumpData() const’: ../../Source/JavaScriptCore/runtime/ControlFlowProfiler.cpp:58:46: error: format ‘%ld’ expects argument of type ‘long int’, but argument 2 has type ‘int’ [-Werror=format=] dataLogF("SourceID: %ld\n", iter->key); ^ cc1plus: all warnings being treated as errors ninja: build stopped: subcommand failed.
Attachments
Patch
(1.40 KB, patch)
2014-12-07 22:33 PST
,
Shivakumar J M
mark.lam
: review-
Details
Formatted Diff
Diff
Patch-Updated-Review1
(1.40 KB, patch)
2014-12-08 00:13 PST
,
Shivakumar J M
mark.lam
: review-
Details
Formatted Diff
Diff
Patch-Updated-Review1
(1.41 KB, patch)
2014-12-08 19:36 PST
,
Shivakumar J M
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Shivakumar J M
Comment 1
2014-12-07 22:33:36 PST
Created
attachment 242785
[details]
Patch Fix Build Warning by using proper format argument for dataLogF() function.
Shivakumar J M
Comment 2
2014-12-07 22:39:00 PST
might have casued by bug:
https://bugs.webkit.org/show_bug.cgi?id=137785
Mark Lam
Comment 3
2014-12-07 22:53:32 PST
Comment on
attachment 242785
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=242785&action=review
> Source/JavaScriptCore/runtime/ControlFlowProfiler.cpp:58 > + dataLogF("SourceID: %d\n", iter->key);
Looks like the EFL port disagrees with this fix. Out of curiosity, what port are you seeing this build warning on? FYI, instead, I think the better fix is to do: dataLog("SourceID: “, iter->key, “\n”);
Shivakumar J M
Comment 4
2014-12-07 22:59:54 PST
(In reply to
comment #3
)
> Comment on
attachment 242785
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=242785&action=review
> > > Source/JavaScriptCore/runtime/ControlFlowProfiler.cpp:58 > > + dataLogF("SourceID: %d\n", iter->key); > > Looks like the EFL port disagrees with this fix. Out of curiosity, what > port are you seeing this build warning on? > > FYI, instead, I think the better fix is to do: > dataLog("SourceID: “, iter->key, “\n”);
Dear Mark, I am using EFL port, in my local build machine i got these error, but i am usng g++-4.8, std=c++11, is it some thing do with setup? Thanks
Mark Lam
Comment 5
2014-12-07 23:01:57 PST
(In reply to
comment #4
)
> (In reply to
comment #3
) > > Comment on
attachment 242785
[details]
> > Patch > > > > View in context: > >
https://bugs.webkit.org/attachment.cgi?id=242785&action=review
> > > > > Source/JavaScriptCore/runtime/ControlFlowProfiler.cpp:58 > > > + dataLogF("SourceID: %d\n", iter->key); > > > > Looks like the EFL port disagrees with this fix. Out of curiosity, what > > port are you seeing this build warning on? > > > > FYI, instead, I think the better fix is to do: > > dataLog("SourceID: “, iter->key, “\n”); > > > Dear Mark, > > I am using EFL port, in my local build machine i got these error, but i > am usng g++-4.8, std=c++11, is it some thing do with setup? > > Thanks
Probably something to do with your compiler/toolchain version or perhaps custom compiler flags that you are using (if any). Anyway, try the dataLog() version I suggested on the EWS bots. Every port should be happy with that.
Mark Lam
Comment 6
2014-12-07 23:03:40 PST
(In reply to
comment #5
)
> (In reply to
comment #4
) > > I am using EFL port, in my local build machine i got these error, but i > > am usng g++-4.8, std=c++11, is it some thing do with setup? > > > > Thanks > > Probably something to do with your compiler/toolchain version or perhaps > custom compiler flags that you are using (if any).
Or ... it’s probably a 32-bit vs 64-bit issue. But using dataLog() should take care of that.
Shivakumar J M
Comment 7
2014-12-08 00:13:46 PST
Created
attachment 242787
[details]
Patch-Updated-Review1 Fix Build Warning by using dataLog() function instead of dataLogF() function.
Mark Lam
Comment 8
2014-12-08 08:19:03 PST
Comment on
attachment 242787
[details]
Patch-Updated-Review1 View in context:
https://bugs.webkit.org/attachment.cgi?id=242787&action=review
> Source/JavaScriptCore/runtime/ControlFlowProfiler.cpp:58 > + dataLog("SourceID: %ld\n", iter->key);
This is wrong. dataLog() doesn’t take a format string. Instead, it should take a comma separated list or items to be printed. The correct way to do this is: dataLog(“SourceID: “, iter->key, “\n”);
Shivakumar J M
Comment 9
2014-12-08 19:36:26 PST
Created
attachment 242871
[details]
Patch-Updated-Review1 Updated the patch to properly use dataLog() function.
Mark Lam
Comment 10
2014-12-08 20:41:19 PST
Comment on
attachment 242871
[details]
Patch-Updated-Review1 r=me
WebKit Commit Bot
Comment 11
2014-12-08 21:24:05 PST
Comment on
attachment 242871
[details]
Patch-Updated-Review1 Clearing flags on attachment: 242871 Committed
r177009
: <
http://trac.webkit.org/changeset/177009
>
WebKit Commit Bot
Comment 12
2014-12-08 21:24:09 PST
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug