Re: [webkit-dev] Anyone using NEON code on ARM builds?

2012-03-21 Thread Zoltan Herczeg
Hi, btw if anyone interested about the details of this optimization you can read more about it here: http://blogs.arm.com/software-enablement/699-using-arm-neon-to-accelerate-scalable-vector-graphics-in-webkit-by-up-to-4X/ Regards, Zoltan Hi Jonathan, On 21/03/2012, at 12:56 AM, Jonathan

[webkit-dev] ChangeLogs

2012-03-21 Thread Timothy Hatcher
Lately I have observed more and more and more changes going into WebKit that lack any details about why a particular change was made. It is intended that the ChangeLog (and commit message) contain some details about your change, not just the bug title and URL. The contributing information on

Re: [webkit-dev] ChangeLogs

2012-03-21 Thread Maciej Stachowiak
On Mar 21, 2012, at 2:29 PM, Timothy Hatcher wrote: Lately I have observed more and more and more changes going into WebKit that lack any details about why a particular change was made. It is intended that the ChangeLog (and commit message) contain some details about your change, not just

Re: [webkit-dev] ChangeLogs

2012-03-21 Thread Konrad Piascik
There are some changes which have bug descriptions which are complete enough to not need additional comments and any changes to existing scripts should keep this in mind. One way to do this is to check for the number of lines/files the diff has. Konrad Sent from my BlackBerry on the Rogers

Re: [webkit-dev] 2012 WebKit Contributors' meeting

2012-03-21 Thread Ryosuke Niwa
FYI, there's a wiki page to add potential topics and hackathon ideas for the meeting: http://trac.webkit.org/wiki/April%202012%20Meeting On Tue, Mar 20, 2012 at 4:22 PM, Sam Weinig wei...@apple.com wrote: Apple will once again be hosting a WebKit Contributors Meeting. It will be held at the

Re: [webkit-dev] ChangeLogs

2012-03-21 Thread Ryosuke Niwa
On Wed, Mar 21, 2012 at 2:41 PM, David Levin le...@chromium.org wrote: I think the challenge in part is to explain why the ChangeLog is useful. Comments in there hopefully explain why as a guide to reviewers to give the reviewers and future onlookers a guide to the change. I do agree that

Re: [webkit-dev] ChangeLogs

2012-03-21 Thread Dirk Pranke
On Wed, Mar 21, 2012 at 2:33 PM, Maciej Stachowiak m...@apple.com wrote: On Mar 21, 2012, at 2:29 PM, Timothy Hatcher wrote: Lately I have observed more and more and more changes going into WebKit that lack any details about why a particular change was made. It is intended that the ChangeLog

Re: [webkit-dev] ChangeLogs

2012-03-21 Thread Timothy Hatcher
On Mar 21, 2012, at 2:46 PM, Adam Barth wrote: On Wed, Mar 21, 2012 at 2:29 PM, Timothy Hatcher timo...@apple.com wrote: Lately I have observed more and more and more changes going into WebKit that lack any details about why a particular change was made. It is intended that the ChangeLog

Re: [webkit-dev] ChangeLogs

2012-03-21 Thread Adam Barth
On Wed, Mar 21, 2012 at 3:45 PM, Timothy Hatcher timo...@apple.com wrote: On Mar 21, 2012, at 2:46 PM, Adam Barth wrote: On Wed, Mar 21, 2012 at 2:29 PM, Timothy Hatcher timo...@apple.com wrote: Lately I have observed more and more and more changes going into WebKit that lack any details about

Re: [webkit-dev] ChangeLogs

2012-03-21 Thread Maciej Stachowiak
On Mar 21, 2012, at 3:14 PM, Dirk Pranke wrote: On Wed, Mar 21, 2012 at 2:33 PM, Maciej Stachowiak m...@apple.com wrote: On Mar 21, 2012, at 2:29 PM, Timothy Hatcher wrote: Lately I have observed more and more and more changes going into WebKit that lack any details about why a

Re: [webkit-dev] ChangeLogs

2012-03-21 Thread Timothy Hatcher
On Mar 21, 2012, at 3:14 PM, Dirk Pranke wrote: I think this is a reasonable suggestion, but I don't agree with it :). I would prefer that we try to get good changelogs through culture and convention rather than through good tooling. This is of course based on my experience in my changes

Re: [webkit-dev] ChangeLogs

2012-03-21 Thread Dirk Pranke
On Wed, Mar 21, 2012 at 4:18 PM, Timothy Hatcher timo...@apple.com wrote: On Mar 21, 2012, at 3:14 PM, Dirk Pranke wrote: I think this is a reasonable suggestion, but I don't agree with it :). I would prefer that we try to get good changelogs through culture and convention rather than

[webkit-dev] Documentation for WTF/JSC exports?

2012-03-21 Thread Eric Seidel
Do we have any documentation for how the current symbol export system for WTF/JSC is supposed to work? I'm hitting errors when trying to move WTF files to their own libwtf.a, such as: https://bugs.webkit.org/show_bug.cgi?id=81838 and http://pastebin.com/dVjV8UiR But looking at

Re: [webkit-dev] Documentation for WTF/JSC exports?

2012-03-21 Thread Hajime Morrita
I'll write a draft so that ports' expert can fill missing pieces. -- morrita On Thu, Mar 22, 2012 at 9:49 AM, Eric Seidel e...@webkit.org wrote: Do we have any documentation for how the current symbol export system for WTF/JSC is supposed to work? I'm hitting errors when trying to move WTF

Re: [webkit-dev] Documentation for WTF/JSC exports?

2012-03-21 Thread Eric Seidel
Thank you. Mark Rowe was kind enough to resolve https://bugs.webkit.org/show_bug.cgi?id=81838#c8 in http://trac.webkit.org/changeset/111634. I've found that some of the Weak External Symbol errors from http://pastebin.com/dVjV8UiR can be resolved by marking the functions in question as inline,

Re: [webkit-dev] Moving WTF out of JavaScriptCore

2012-03-21 Thread Eric Seidel
I've posted my first-draft patch to: https://bugs.webkit.org/show_bug.cgi?id=81844 If port maintainers would like to apply it locally and upload improved versions (or upload diffs on top of that version) that would be most welcome. svn-apply seems to be having trouble with the adds for the WTF

Re: [webkit-dev] New Feature - Resource Timing

2012-03-21 Thread James Simonsen
Sorry for taking so long to get back to this. I'm planning to start working on it again, so it's time to close the loop here. The main concern earlier in this thread was the ability to take advantage of the extra timing information. We forwarded these concerns to the W3C security group as well as

Re: [webkit-dev] Documentation for WTF/JSC exports?

2012-03-21 Thread Hajime Morrita
Done: https://trac.webkit.org/wiki/ExportingSymbols It doesn't looks this helps your WTF move though. On Thu, Mar 22, 2012 at 10:38 AM, Eric Seidel e...@webkit.org wrote: Thank you.  Mark Rowe was kind enough to resolve https://bugs.webkit.org/show_bug.cgi?id=81838#c8 in