Re: [webkit-dev] update GCC version?

2017-06-23 Thread Yusuke SUZUKI
ce to us because it means full C++14 support at least. [1]: https://bugs.webkit.org/show_bug.cgi?id=173582 [2]: https://bugs.webkit.org/show_bug.cgi?id=173582#c10 Regards, Yusuke Suzuki On Tue, Jan 10, 2017 at 4:44 AM, Alberto Garcia wrote: > On Mon, Jan 09, 2017 at 04:39:44PM +0100, Carlos

Re: [webkit-dev] WebKit nightly stops

2017-06-19 Thread Yusuke SUZUKI
Thanks! It works fine to me :D Regards, Yusuke Suzuki On Tue, Jun 20, 2017 at 9:05 AM, Ling Ho wrote: > Hello Yusuke, > > Thanks for reporting the problem! I believe the issue is now fixed. > > ... > ling > > > On 6/16/17 12:23 PM, Yusuke SUZUKI wrote: > > H

Re: [webkit-dev] Why does our std::optional lack the has_value() function?

2017-06-19 Thread Yusuke SUZUKI
Feel free to review it :) https://bugs.webkit.org/show_bug.cgi?id=173582 Regards, Yusuke Suzuki On Tue, Jun 20, 2017 at 1:48 PM, JF Bastien wrote: > Ours was imported from: https://github.com/akrzemi1/Optional > at: 727c729dd1d9f06f225868280e50154594d7e59d > > And it was subsequen

Re: [webkit-dev] Why does our std::optional lack the has_value() function?

2017-06-19 Thread Yusuke SUZUKI
I think it is just missing in the original code. Seeing the original repository, we can find that these things are added. We can rebaseline our copy by applying these changes. https://github.com/akrzemi1/Optional/commits/master Regards, Yusuke Suzuki On Tue, Jun 20, 2017 at 1:45 PM, Darin

[webkit-dev] WebKit nightly stops

2017-06-16 Thread Yusuke SUZUKI
Hi WebKittens! I've found that WebKit nightly build stops after June 13. Is there any issues? And thank you for maintainers of the buildbots! WebKit nigthly is very helpful to me :) Best regards, Yusuke Suzuki ___ webkit-dev mailing list webki

Re: [webkit-dev] Jiewen Tan is now a WebKit reviewer

2017-05-31 Thread Yusuke SUZUKI
Congrats! Regards, Yusuke Suzuki On Thu, Jun 1, 2017 at 6:18 AM, Mark Lam wrote: > Hi everyone, > > I would like to announce that Jiewen Tan (jiewen on #webkit) is now a > WebKit reviewer. Jiewen usually works on the WebCrypto API. > > Please join me in congratulating Ji

Re: [webkit-dev] Konstantin Tokarev is now a WebKit reviewer

2017-05-22 Thread Yusuke SUZUKI
onstantin, congratulations. > > Mark > ___ > webkit-dev mailing list > webkit-dev@lists.webkit.org > https://lists.webkit.org/mailman/listinfo/webkit-dev > -- Regards, Yusuke Suzuki ___ webkit-dev mailing

Re: [webkit-dev] Reminder: be careful when printing sized integer types

2017-05-11 Thread Yusuke SUZUKI
Or, alternative way is casting the value to `unsigned long long` and always using %llu for uint64_t. uint64_t value = ...; printf("%llu", (unsigned long long)value); Regards, Yusuke Suzuki On Wed, May 10, 2017 at 4:07 AM, Michael Catanzaro wrote: > Hi, > > This is just a

Re: [webkit-dev] nightly.webkit.org server transition this evening

2017-04-16 Thread Yusuke SUZUKI
Hi, Seems like nightly build stoped at March 29. Is that an known issue? Regards, Yusuke Suzuki On Wed, Mar 22, 2017 at 4:31 AM, Lucas Forschler wrote: > This should now be fixed. Please let me know if you notice any problems > with the nightly. > Lucas > > On Mar 21, 2017, at

Re: [webkit-dev] nightly.webkit.org server transition this evening

2017-03-21 Thread Yusuke SUZUKI
t; On Mar 21, 2017, at 1:09 AM, Yusuke SUZUKI wrote: > > Hi, > > it seems that WebKit nightly build stops. Is it related to this change? > > Regards, > Yusuke Suzuki > > On Tue, Mar 14, 2017 at 6:33 AM, Lucas Forschler > wrote: > >> Hello folks, >> >

Re: [webkit-dev] nightly.webkit.org server transition this evening

2017-03-21 Thread Yusuke SUZUKI
Hi, it seems that WebKit nightly build stops. Is it related to this change? Regards, Yusuke Suzuki On Tue, Mar 14, 2017 at 6:33 AM, Lucas Forschler wrote: > Hello folks, > > We are going to start transitioning nightly.webkit.org to new hardware > today. We expect the DNS change

Re: [webkit-dev] Port For Android

2017-03-18 Thread Yusuke SUZUKI
FYI, recently, android port is released by Naver WebKit team https://lists.webkit.org/pipermail/webkit-dev/2017-March/028836.html Regards, Yusuke Suzuki On Thu, Mar 16, 2017 at 5:38 PM, Sergio Villar Senin wrote: > O Mar, 07-03-2017 ás 20:07 -0500, Patrick Wright escribiu: > > > &

Re: [webkit-dev] Introduce WebKit Android port

2017-03-12 Thread Yusuke SUZUKI
> webkit-dev mailing list > webkit-dev@lists.webkit.org > https://lists.webkit.org/mailman/listinfo/webkit-dev > -- Regards, Yusuke Suzuki ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] Devin Rousso is now a WebKit reviewer

2017-03-09 Thread Yusuke SUZUKI
Congrats! :D Regards, Yusuke Suzuki On Fri, Mar 10, 2017 at 5:49 AM, Mark Lam wrote: > Hi everyone, > > I would like to announce that Devin Rousso (dcrousso on #webkit) is now a > WebKit reviewer. Devin has been contributing to Web Inspector for nearly > two years. Pl

Re: [webkit-dev] WebKit GPU rendering possibility

2017-01-26 Thread Yusuke SUZUKI
I and Kevin worked on removing boost dependencies in fastuidraw. And now, we completely remove its dependencies. Regards, Yusuke Suzuki On Wed, Nov 23, 2016 at 5:33 AM, Rogovin, Kevin wrote: > Hi, > > There is quite likely ways around using boost. It's main use is to &

Re: [webkit-dev] Thread naming policy in WebKit

2017-01-09 Thread Yusuke SUZUKI
Thank you for your suggestions! Based on our discussion, I've uploaded the patch[1] :) [1]: https://bugs.webkit.org/show_bug.cgi?id=166678 Regards, Yusuke Suzuki On Fri, Jan 6, 2017 at 2:50 PM, Yusuke SUZUKI wrote: > On Fri, Jan 6, 2017 at 2:43 PM, Maciej Stachowiak wrote: > >

Re: [webkit-dev] Thread naming policy in WebKit

2017-01-05 Thread Yusuke SUZUKI
On Fri, Jan 6, 2017 at 2:43 PM, Maciej Stachowiak wrote: > > On Jan 5, 2017, at 8:07 PM, Yusuke SUZUKI wrote: > > On Fri, Jan 6, 2017 at 10:37 AM, Maciej Stachowiak wrote: > >> >> On Jan 5, 2017, at 9:37 AM, Brady Eidson wrote: >> >> >> On J

Re: [webkit-dev] Thread naming policy in WebKit

2017-01-05 Thread Yusuke SUZUKI
On Fri, Jan 6, 2017 at 10:37 AM, Maciej Stachowiak wrote: > > On Jan 5, 2017, at 9:37 AM, Brady Eidson wrote: > > > On Jan 5, 2017, at 12:48 AM, Yusuke SUZUKI wrote: > > On Thu, Jan 5, 2017 at 5:43 PM, Darin Adler wrote: > >> I understand the appeal of “org.we

Re: [webkit-dev] Thread naming policy in WebKit

2017-01-05 Thread Yusuke SUZUKI
Regards, Yusuke Suzuki On Fri, Jan 6, 2017 at 5:34 AM, Yusuke SUZUKI wrote: > On Fri, Jan 6, 2017 at 2:37 AM, Brady Eidson wrote: > >> >> On Jan 5, 2017, at 12:48 AM, Yusuke SUZUKI wrote: >> >> On Thu, Jan 5, 2017 at 5:43 PM, Darin Adler wrote: >> >&g

Re: [webkit-dev] Thread naming policy in WebKit

2017-01-05 Thread Yusuke SUZUKI
On Fri, Jan 6, 2017 at 2:37 AM, Brady Eidson wrote: > > On Jan 5, 2017, at 12:48 AM, Yusuke SUZUKI wrote: > > On Thu, Jan 5, 2017 at 5:43 PM, Darin Adler wrote: > >> I understand the appeal of “org.webkit” and structured names but >> personally I would prefer t

Re: [webkit-dev] Thread naming policy in WebKit

2017-01-05 Thread Yusuke SUZUKI
On Thu, Jan 5, 2017 at 5:43 PM, Darin Adler wrote: > I understand the appeal of “org.webkit” and structured names but > personally I would prefer to read names that look like titles and are made > up of words with spaces, like these: > > “WebKit: Image Decoder”, rather than “org.webkit.ImageDecod

[webkit-dev] Thread naming policy in WebKit

2017-01-04 Thread Yusuke SUZUKI
ystem to normalize the above name to "NAME(15characters)". For example, when you specify "org.webkit.jsc.DFGCompiler", it will be shown as "DFGCompiler" in Linux. This naming policy meets (1) in macOS. And (2) in all the environments. In macOS, the name is not m

Re: [webkit-dev] Naming preference: SetForScope vs. TemporaryChange

2016-12-22 Thread Yusuke SUZUKI
Personally I like the name "SetForScope" since the name "scope" states that this value change is tied to C++ scope. On Fri, Dec 23, 2016 at 11:32 JF Bastien wrote: > "Scope" seems to capture the C++ nature better. > > "Temporary" isn't clear on how long it'll last IMO. > > > On Thu, Dec 22, 2016

[webkit-dev] ANN: ES6 Modules are enabled by default

2016-12-20 Thread Yusuke SUZUKI
le-worker-example [4]: https://bugs.webkit.org/show_bug.cgi?id=164425 [5]: http://webassembly.org/docs/modules/#integration-with-es6-modules Best regards, Yusuke Suzuki ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] Use LayoutTests/resources/ui-helper.js to tap or click an element regardless of platform

2016-12-13 Thread Yusuke SUZUKI
+ 25, shadowHost.offsetTop + 25); }); Regards, Yusuke Suzuki On Wed, Dec 14, 2016 at 3:55 PM, Ryosuke Niwa wrote: > Hi, > > I added a little helper class called UIHelper in https://trac.webkit.org/ > changeset/209780 to provide an abstraction around eventSender and > UIScriptCon

Re: [webkit-dev] What happened to WKR and webkitbot?

2016-11-18 Thread Yusuke SUZUKI
Great! Thank you. Best regards, Yusuke Suzuki On Fri, Nov 18, 2016 at 9:09 AM, Lucas Forschler wrote: > Hi Yusuke! > The nightly issue is different, I am escalating a fix now. > > Lucas > > On Nov 17, 2016, at 11:26 PM, Yusuke SUZUKI wrote: > > WebKit nightly build is

Re: [webkit-dev] What happened to WKR and webkitbot?

2016-11-17 Thread Yusuke SUZUKI
WebKit nightly build is also stopped. Is that the same issue? Regards, Yusuke Suzuki On Thu, Nov 17, 2016 at 10:57 AM, Simon Fraser wrote: > > On Nov 17, 2016, at 10:21 AM, Osztrogonác Csaba > wrote: > > > > Hi, > > > > it seems WKR and webkitbot left #webkit

Re: [webkit-dev] WebKit GPU rendering possibility

2016-11-03 Thread Yusuke SUZUKI
I'm not sure it is directly helpful or not. And maybe, I think you already know that. But I remember that Cairo has some trace data to test the performance. And it includes the traces on WebKit. https://cgit.freedesktop.org/cairo-traces/ Best regards, Yusuke Suzuki On Thu, Nov 3, 2016 at

Re: [webkit-dev] Are there any plans to upgrade SVN server on svn.webkit.org?

2016-06-19 Thread Yusuke SUZUKI
Great work, thanks. I've just noticed that the ToT git revision in git:// git.webkit.org/WebKit.git is r202198 while ToT SVN revision is r202223. On Mon, Jun 20, 2016 at 3:30 AM, Lucas Forschler wrote: > svn.webkit.org is back online. > Please let me know if you see any problems. > > I will be

Re: [webkit-dev] [ANN] JSCOnly port becomes dependency-free (except for ICU)

2016-04-21 Thread Yusuke SUZUKI
On Thu, Apr 21, 2016 at 3:12 AM, Eric Wing wrote: > On 4/18/16, Yusuke SUZUKI wrote: > > Hi folks, > > > > Thanks to Konstantin Tokavev and GTK guys, JSCOnly port becomes quickly > > mature. > > As of now, finally, JSCOnly port becomes completely dependency

[webkit-dev] [ANN] JSCOnly port becomes dependency-free (except for ICU)

2016-04-18 Thread Yusuke SUZUKI
d revision and build the old JSC. Best regards, Yusuke Suzuki ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] Keith Miller is now a WebKit reviewer

2016-04-05 Thread Yusuke SUZUKI
Congrats :D --- Regards, Yusuke Suzuki On Wed, Apr 6, 2016 at 5:11 AM, Saam Barati wrote: > Congrats! > > Saam > > > On Apr 5, 2016, at 12:32 PM, Mark Lam wrote: > > > > Hi everyone, > > > > Just want to announce that Keith Miller is now a reviewer.

Re: [webkit-dev] Sukolsak Sakshuwong is now a WebKit Reviewer

2016-03-08 Thread Yusuke SUZUKI
Congrats! --- Regards, Yusuke Suzuki On Wed, Mar 9, 2016 at 6:01 AM, Ryosuke Niwa wrote: > Congratulations, Sukolsak! > > - R. Niwa > > On Tue, Mar 8, 2016 at 11:33 AM, Mark Lam wrote: > >> Hi everyone, >> >> Just want to announce that Sukolsak Sakshuwong i

Re: [webkit-dev] JSCOnly port

2016-02-21 Thread Yusuke SUZUKI
And, now, I'm setting up a VPS server for the buildbot... --- Regards, Yusuke Suzuki On Sun, Feb 21, 2016 at 11:14 PM, Yusuke SUZUKI wrote: > If the name "JSCOnly" is accepted by WebKittens, I'll set r+ for that > patch :) > The other part looks good for the firs

Re: [webkit-dev] JSCOnly port

2016-02-21 Thread Yusuke SUZUKI
If the name "JSCOnly" is accepted by WebKittens, I'll set r+ for that patch :) The other part looks good for the first step! Regards, Yusuke Suzuki On Sun, Feb 21, 2016 at 10:50 PM, Konstantin Tokarev wrote: > > > 21.02.2016, 16:45, "Yusuke SUZUKI" : > >

Re: [webkit-dev] JSCOnly port

2016-02-21 Thread Yusuke SUZUKI
+1. Looks nice to me :) Now, B3 is working on Linux, we can drop LLVM dependencies while enabling aggressive JIT compilers (enabling LLInt, Baseline, DFG, FTL_B3). So, only the dependent library for JSCOnly port is ICU, that is desireble. Regards, Yusuke Suzuki On Sun, Feb 21, 2016 at 10:41 PM

Re: [webkit-dev] Preferred style for checking for undefined in our built-in JavaScript code?

2016-02-01 Thread Yusuke SUZUKI
I've just prototyped bytecode intrinsic constants; enhancing bytecode intrinsic mechanism to accept the form `@xxx`. (not `@xxx(...)`, it is already introduced). And implement @undefined with this. https://bugs.webkit.org/show_bug.cgi?id=153737 On Tue, Dec 1, 2015 at 7:00 AM, Geoffrey Garen wrot

Re: [webkit-dev] Some text about the B3 compiler

2016-01-30 Thread Yusuke SUZUKI
On Sun, Jan 31, 2016 at 8:36 AM, Michael Catanzaro wrote: > > I thought we could remove all the LLVM goo from the CMake build system, > but I see there is some code to support LLVM for the EFL port on > AArch64. (For the GTK port, FTL is only supported on x86_64). > > Do we want to continue to sup

Re: [webkit-dev] Some text about the B3 compiler

2016-01-30 Thread Yusuke SUZUKI
Now, https://bugs.webkit.org/show_bug.cgi?id=153647 and https://bugs.webkit.org/show_bug.cgi?id=153711 are landed. So, now, in GTK Linux x64 port, all the JSC tests pass! I think it's time to enable B3 in Linux x64 :D Regards, Yusuke Suzuki On Sat, Jan 30, 2016 at 8:09 AM, Filip Pizlo

Re: [webkit-dev] Some text about the B3 compiler

2016-01-28 Thread Yusuke SUZUKI
platforms looks approaching :D Regards, Yusuke Suzuki On Fri, Jan 29, 2016 at 9:49 AM, Andy Estes wrote: > I was just going to suggest something similar! 👍 > > Andy > > On Jan 28, 2016, at 4:48 PM, Filip Pizlo wrote: > > I guess we could put it in Websites/webkit.org/b3

Re: [webkit-dev] Thought about Nix JavaScriptCore port

2016-01-01 Thread Yusuke SUZUKI
Hi, sorry for my late reply. I'm now focusing on the Generator implementation in JSC. Once it is done, I can work on this :D On Fri, Jan 1, 2016 at 4:02 PM, Konstantin Tokarev wrote: > > > 01.01.16, 04:26, "Michael Catanzaro" : > > >On Thu, 2015-12-31 at 19:25 +0300, Konstantin Tokarev wrote: >

[webkit-dev] Thought about Nix JavaScriptCore port

2015-11-10 Thread Yusuke SUZUKI
Hello WebKittens, JavaScriptCore use in non-OSX environment looks emerging[1]. In addition to that, sometimes, people would like to build JavaScriptCore to see what is happning in JavaScriptCore development[2]. However, if you don't have an OSX machine, it is a little bit difficult. One possible s

Re: [webkit-dev] Mac CMake

2015-10-31 Thread Yusuke SUZUKI
Awesome! --- Regards, Yusuke Suzuki On Sat, Oct 31, 2015 at 6:32 AM, Geoffrey Garen wrote: > 👍 > > On Oct 30, 2015, at 2:17 PM, Alex Christensen > wrote: > > I got the Mac CMake build to the point where it can compile and link > frameworks successfully. We will get a

Re: [webkit-dev] Youenn Fablet is now a WebKit reviewer

2015-10-26 Thread Yusuke SUZUKI
Congrats! Regards, Yusuke Suzuki On Tue, Oct 27, 2015 at 11:15 AM, Mark Lam wrote: > Hello everyone, > > I would like to announce that Youenn Fablet is now a WebKit reviewer. > Please send him your congratulations, and some requests for patch reviews > too. :-) > > Yo

Re: [webkit-dev] Saam Barati is now a reviewer

2015-08-04 Thread Yusuke SUZUKI
Congrats!!! On Tue, Aug 4, 2015 at 12:00 PM, Michael Saboff wrote: > Congratulations Saam. > > I see you already r+’ed a patch! > > - Michael > > > On Aug 4, 2015, at 11:48 AM, Filip Pizlo wrote: > > > > Congrats Saam! > > > > -Filip > > > > > >> On Aug 4, 2015, at 11:47 AM, Mark Lam wrote: >

Re: [webkit-dev] JSC framework API proposal: setting a handler for enqueuing tasks

2015-07-07 Thread Yusuke SUZUKI
On Wed, Jul 8, 2015 at 4:07 AM, Maciej Stachowiak wrote: > > On Jul 7, 2015, at 3:36 AM, Yusuke SUZUKI wrote: > > On Tue, Jul 7, 2015 at 8:54 AM, Geoffrey Garen wrote: > >> I’m suggesting a default runloop for non-web content. >> >> I haven’t read through th

Re: [webkit-dev] JSC framework API proposal: setting a handler for enqueuing tasks

2015-07-07 Thread Yusuke SUZUKI
to handle micro tasks > natively. > > It’s not so great for each client to need to reinvent the microtask > runloop abstraction. > > Geoff > > On Jul 6, 2015, at 10:05 AM, Yusuke SUZUKI wrote: > > Hi WebKittens, > > I've landed the update of the ES6 Promise implem

[webkit-dev] JSC framework API proposal: setting a handler for enqueuing tasks

2015-07-06 Thread Yusuke SUZUKI
to the Realm in ECMA spec). Like, void JSContextGroupSetEnqueueJobCallback(JSContextGroupRef, JSEnqueueJobCallback, void* callbackData); What do you think about this? [1]: http://ecma-international.org/ecma-262/6.0/#sec-enqueuejob Best Regards, Yusuke Suzuki __

Re: [webkit-dev] *.webkit.org network issues

2015-05-18 Thread Yusuke SUZUKI
On Tue, May 19, 2015 at 2:00 AM, Ryosuke Niwa wrote: > On Mon, May 18, 2015 at 9:03 AM, Osztrogonác Csaba > wrote: > >> *.webkit.org sites (trac,bugs,build) are extremely slow >> from here (Europe/Hungary) and I didn't get any bugzilla >> mail 2 days ago, but I should have got many. >> >> Is it

Re: [webkit-dev] Yusuke Suzuki is now a WebKit Reviewer

2015-05-06 Thread Yusuke SUZUKI
Thanks a lot for all your support!!! I'm so happy :D ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] Alex Christensen is now a reviewer

2014-07-08 Thread Yusuke SUZUKI
Congrats! --- Regards, Yusuke Suzuki On Wed, Jul 2, 2014 at 9:44 AM, Benjamin Poulain wrote: > Hi WebKittens, > > After much deliberation around Alex's inability to eat his own head, Alex > is now becoming a WebKit reviewer. > > Alex is experienced in many core areas

<    1   2