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 benja...@webkit.org 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 of WebKit

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] *.webkit.org network issues

2015-05-18 Thread Yusuke SUZUKI
On Tue, May 19, 2015 at 2:00 AM, Ryosuke Niwa rn...@webkit.org wrote: On Mon, May 18, 2015 at 9:03 AM, Osztrogonác Csaba o...@inf.u-szeged.hu 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

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

2015-07-06 Thread Yusuke SUZUKI
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 ___ webkit

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 m...@apple.com wrote: On Jul 7, 2015, at 3:36 AM, Yusuke SUZUKI utatane@gmail.com wrote: On Tue, Jul 7, 2015 at 8:54 AM, Geoffrey Garen gga...@apple.com wrote: I’m suggesting a default runloop for non-web content. I haven’t read

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 <mark@apple.com> 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 >

[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

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 <gga...@apple.com> wrote: >  > > On Oct 30, 2015, at 2:17 PM, Alex Christensen <achristen...@apple.com> > wrote: > > I got the Mac CMake build to the point where it can

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

2015-07-07 Thread Yusuke SUZUKI
client to need to reinvent the microtask runloop abstraction. Geoff On Jul 6, 2015, at 10:05 AM, Yusuke SUZUKI utatane@gmail.com wrote: Hi WebKittens, I've landed the update of the ES6 Promise implementation. Through this work, I've experimentally added the internal private function

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

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

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-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

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 <aes...@apple.com> wrote: > I was just going to suggest something similar!  > > Andy > > On Jan 28, 2016, at 4:48 PM, Filip Pizlo <fpi...@apple.com> wrote: > > I

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] 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 <annu...@yandex.ru> wrote: > > > 21.02.2016, 16:45, "Yusuke

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 <utatane@gmail.com> wrote: > If the name "JSCOnly" is accepted by WebKittens, I'll set r+ for that > patch :) > The other part look

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 <rn...@webkit.org> wrote: > Congratulations, Sukolsak! > > - R. Niwa > > On Tue, Mar 8, 2016 at 11:33 AM, Mark Lam <mark@apple.com> wrote: > >> Hi everyone, >> >>

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 <sbar...@apple.com> wrote: > Congrats! > > Saam > > > On Apr 5, 2016, at 12:32 PM, Mark Lam <mark@apple.com> wrote: > > > > Hi everyone, > > > > Jus

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 <ewmail...@gmail.com> wrote: > On 4/18/16, Yusuke SUZUKI <utatane@gmail.com> wrote: > > Hi folks, > > > > Thanks to Konstantin Tokavev and GTK guys, JSCOnly port becomes quickly > > mature. > > As of

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

2016-04-18 Thread Yusuke SUZUKI
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] 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

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 <kevin.rogo...@intel.com> wrote: > Hi, > > There is quite likely ways around using boost

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 <lforsch...@apple.com> 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 <u

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 <simon.fra...@apple.com> wrote: > > On Nov 17, 2016, at 10:21 AM, Osztrogonác Csaba <o...@inf.u-szeged.hu> > wrote: > > > > Hi, &

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 12:42

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 <rn...@webkit.org> wrote: > Hi, > > I added a little helper class called UIHelper in https://trac.webkit.org/ > changeset/209780 to provide an abstraction

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 <utatane@gmail.com> wrote: > On Fri, Jan 6, 2017 at 2:37 AM, Brady Eidson <beid...@apple.com> wrote: > >> >> On Jan 5, 2017, at 12:48 AM, Yusuke SUZUKI <utatane@gmail.com> wrote:

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 <beid...@apple.com> wrote: > > On Jan 5, 2017, at 12:48 AM, Yusuke SUZUKI <utatane@gmail.com> wrote: > > On Thu, Jan 5, 2017 at 5:43 PM, Darin Adler <da...@apple.com> wrote: > >> I understand the appe

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

[webkit-dev] Thread naming policy in WebKit

2017-01-04 Thread Yusuke SUZUKI
e 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 modified. So we can s

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 <utatane@gmail.com> wrote: > On Fri, Jan 6, 2017 at 2:43 PM, Maciej Stac

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 <m...@apple.com> wrote: > > On Jan 5, 2017, at 8:07 PM, Yusuke SUZUKI <utatane@gmail.com> wrote: > > On Fri, Jan 6, 2017 at 10:37 AM, Maciej Stachowiak <m...@apple.com> wrote: > >> >> On Jan 5, 2017

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 <m...@apple.com> wrote: > > On Jan 5, 2017, at 9:37 AM, Brady Eidson <beid...@apple.com> wrote: > > > On Jan 5, 2017, at 12:48 AM, Yusuke SUZUKI <utatane@gmail.com> wrote: > > On Thu, Jan 5, 2017 a

[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] 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. > > >

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 <svil...@igalia.com> wrote: > O Mar, 07-03-2017 ás 20:07 -0500, Patrick Wright

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 <lforsch...@apple.com> wrote: > Hello folks, > > We are going to start transitioning nightly.webkit.org to new hardware > today.

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 <lforsch...@apple.com> wrote: > This should now be fixed. Please let me know if you notice any problems > with the nightly. > Luca

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 <mark@apple.com> 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 &g

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] nightly.webkit.org server transition this evening

2017-03-21 Thread Yusuke SUZUKI
your help! > Lucas > > On Mar 21, 2017, at 1:09 AM, Yusuke SUZUKI <utatane@gmail.com> 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 Forsc

Re: [webkit-dev] Service workers

2017-08-03 Thread Yusuke SUZUKI
I've just seen some of initial work about service workers[1,2]. So, have we started experimenting with implementing service workers? [1]: https://bugs.webkit.org/show_bug.cgi?id=175115 [2]: https://bugs.webkit.org/show_bug.cgi?id=175053 Best regards, Yusuke Suzuki On Sat, Jul 15, 2017 at 4:55

Re: [webkit-dev] Does someone know how to fix WTF::Function on Windows

2017-07-15 Thread Yusuke SUZUKI
I'm not 100% confident, but can you try it `` instead? Regards, Yusuke Suzuki On Sun, Jul 16, 2017 at 1:13 AM, Darin Adler <da...@apple.com> wrote: > Hi folks. > > On Windows, WTF::Function doesn’t quite work right. Code that is something > like this: > > void addCal

Re: [webkit-dev] update GCC version?

2017-07-05 Thread Yusuke SUZUKI
I've just opened the bug for upgrading GCC version. https://bugs.webkit.org/show_bug.cgi?id=174155 Regards, Yusuke Suzuki On Tue, Jun 27, 2017 at 2:21 AM, Olmstead, Don <don.olmst...@sony.com> wrote: > Same for our WinCairo bots which embed it into a Docker image, > https://hub.

Re: [webkit-dev] update GCC version?

2017-07-05 Thread Yusuke SUZUKI
OK, I've just landed GCC upgrade in r219186! After upgrading Windows MSVC to 2017, we will get full C++14 environment! Regards, Yusuke Suzuki On Thu, Jul 6, 2017 at 12:10 AM, Michael Catanzaro <mcatanz...@igalia.com> wrote: > On Wed, Jul 5, 2017 at 6:32 AM, Carlos Alberto Lopez Pere

Re: [webkit-dev] C++17 is here. Should we use it?

2017-08-04 Thread Yusuke SUZUKI
=174155 Possibly, mcatanzaro and clopez know much about WebKitGTK+ compiler dependencies. Regards, Yusuke Suzuki On Sat, Aug 5, 2017 at 5:39 AM, JF Bastien <jfbast...@apple.com> wrote: > Hello WebKilters, > > Our Chrome-y friends are considering the use of C++14 > <http

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 <mcatanz...@igalia.com> wrote: > H

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

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 <jfbast...@apple.com> wrote: > Ours was imported from: https://github.com/akrzemi1/Optional > at: 727c729dd1d9f06f225868280e50

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 <lin...@apple.com> wrote: > Hello Yusuke, > > Thanks for reporting the problem! I believe the issue is now fixed. > > ... > ling > > > On 6/16/17 12:23 PM, Yusuk

Re: [webkit-dev] update GCC version?

2017-06-23 Thread Yusuke SUZUKI
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 <be...@igalia.com> wrote: > On Mon, Jan 09, 2017 at 04:39:4

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

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

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 <mark@apple.com> 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 j

[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 webkit-dev

[webkit-dev] Is git.webkit.org stopping?

2017-09-18 Thread Yusuke SUZUKI
Hi WebKittens, I've found that git.webkit.org is not in sync right now, is it known issue? Best regards, Yusuke Suzuki ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] Is git.webkit.org stopping?

2017-09-18 Thread Yusuke SUZUKI
git.webkit.org seems working now! Thank you for your tough work :D Regards, Yusuke Suzuki On Mon, Sep 18, 2017 at 11:49 PM, Lucas Forschler <lforsch...@apple.com> wrote: > I see that git is at 222138, and svn is at 222143. > I’ll start investigating, thanks for the heads u

Re: [webkit-dev] Bring back ARMv6 support to JSC

2017-09-07 Thread Yusuke SUZUKI
On Wed, Sep 6, 2017 at 3:24 AM, Filip Pizlo wrote: > > > > On Sep 5, 2017, at 10:51 AM, Olmstead, Don > wrote: > > > > We have plans to add a JSC-Only windows bot in the very near future. > Would that have any bearing on the state of JIT in Windows? > >

Re: [webkit-dev] SVN server broken?

2017-09-08 Thread Yusuke SUZUKI
ee this commits anywhere on the SVN. > > ___ > webkit-dev mailing list > webkit-dev@lists.webkit.org > https://lists.webkit.org/mailman/listinfo/webkit-dev > > ___ > webkit-dev mailing list &

Re: [webkit-dev] [Proposal] Removing OS(SOLARIS) support

2017-09-04 Thread Yusuke SUZUKI
Removed in r221600. On Tue, Sep 5, 2017 at 10:03 Yusuke SUZUKI <utatane@gmail.com> wrote: > In addition, I would like to note that our JSVALUE64 is broken in Solaris > + SPARC 64bit environment > because its address space includes non-48bit address[1]. > I filed the issue

Re: [webkit-dev] [Proposal] Removing OS(SOLARIS) support

2017-09-04 Thread Yusuke SUZUKI
In addition, I would like to note that our JSVALUE64 is broken in Solaris + SPARC 64bit environment because its address space includes non-48bit address[1]. I filed the issue to remove Solaris support from WebKit[2]. [1]: https://bugzilla.mozilla.org/show_bug.cgi?id=577056 [2]:

[webkit-dev] [Proposal] Removing OS(SOLARIS) support

2017-09-04 Thread Yusuke SUZUKI
COMPILER(SUNCC) too. What do you think of? Best reagards, Yusuke Suzuki ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] Heads up: Handling many minor CPUs as CPU(UNKNOWN)

2017-11-19 Thread Yusuke SUZUKI
FYI, explicitly supported CPUs are, X86, X86_64, ARM (including tranditional and thumb2), ARM64, PPC, PPC64, PPC64LE, MIPS, and MIPS64. Regards, Yusuke Suzuki On Mon, Nov 20, 2017 at 10:48 AM, Yusuke SUZUKI <utatane@gmail.com> wrote: > Hello WebKittens, > > I've just lan

[webkit-dev] Proposal: Do not support Windows fibers

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

Re: [webkit-dev] Proposal: Do not support Windows fibers

2017-12-06 Thread Yusuke SUZUKI
ged for iTunes on Windows such that we can eliminate > support for fibers? > > > > - Michael > > > > On Dec 5, 2017, at 10:16 AM, Ryosuke Niwa <rn...@webkit.org> wrote: > > > > Yeah, I don't think there is much need to support fibers. With features >

[webkit-dev] Question about ARMv7 JIT maintenance by Apple

2018-05-04 Thread Yusuke SUZUKI
. And I'm also wondering if ARMv7 can use it instead of our own disassembler. So my question is, is ARMv7 JIT maintained by Apple right now? Or is it maintained by the community? If Apple does not maintain it right now, I would like to drop ARMv7 disassembler and use capstone instead. Best regards, Yusuke

Re: [webkit-dev] Question about ARMv7 JIT maintenance by Apple

2018-05-04 Thread Yusuke SUZUKI
On Sat, May 5, 2018 at 11:27 AM Filip Pizlo <fpi...@apple.com> wrote: > We aren’t maintaining armv7. > OK, thanks. I'll replace ARMv7 disassembler with capstone based one once capstone is adopted :) > > -Filip > > > On May 4, 2018, at 7:01 PM, Yusuke SUZUKI &l

[webkit-dev] Proposal: Removing ENABLE(INTL)

2018-05-19 Thread Yusuke SUZUKI
are gurded separately with the compile flags (since some new features require new ICU). So, removing ENABLE(INTL) just enables Intl basic features, which are shipped more than 1 year ago and it is quite mature. Best regards, Yusuke Suzuki -- Regards, Yusuke Suzuki

Re: [webkit-dev] Request for upgrading xcode toolchains in Apple bots for C++17

2018-05-21 Thread Yusuke SUZUKI
uish these 8.3.3's clang from 9.2 - 9.3.1 clangs. In terms of the implementation status of C++17, it is not a problem. Even clang 4 shows good status compared to GCC 6. > > - Alexey > > > 21 мая 2018 г., в 6:44, Yusuke SUZUKI <utatane@gmail.com> написал(а): > > Hi WebKi

[webkit-dev] Request for upgrading xcode toolchains in Apple bots for C++17

2018-05-21 Thread Yusuke SUZUKI
`-std=c++1z`, this option causes trouble in the latest Xcode (e.g. mac-32bit uses the newer Xcode). Can we upgrade Xcodes in EWS and buildbots to the latest ones to accept C++17 option? Once it is done, WebKit starts using fancy C++17 features listed in GCC 6.0. Best regards, Yusuke Suzuki [1

Re: [webkit-dev] [jsc-dev] Proposal: Removing ENABLE(INTL)

2018-05-23 Thread Yusuke SUZUKI
Thanks all! OK, so ICU 54 is enough for ENABLE(INTL) and all of our supporting environment just has ICU 54. I'll open a bug for removing ENABLE(INTL) :) ___ webkit-dev mailing list webkit-dev@lists.webkit.org

Re: [webkit-dev] JavaScriptCore on Fuchsia

2018-06-26 Thread Yusuke SUZUKI
Sounds very cool! On Wed, Jun 27, 2018 at 6:01 AM Adam Barth wrote: > As part of developing Fuchsia [1] (a new open-source operating > system), we ported JavaScriptCore to run on Fuchsia [2]. At the time, > our intent was to use this code within the Fuchsia source tree but not > to make it

Re: [webkit-dev] bmalloc design question about relation with std malloc

2018-05-02 Thread Yusuke SUZUKI
> > If we have lots of small allocations, we should probably reconsider the > design. > > I’m not familiar with the new uses of std::vector inside bmalloc. That’s > not something I would recommend. > > Geoff > > > On Apr 30, 2018, at 3:35 AM, Yusuke SUZUKI <uta

[webkit-dev] bmalloc design question about relation with std malloc

2018-04-30 Thread Yusuke SUZUKI
allocation in bmalloc, shoud we use std::malloc? Or should we use mmap based allocator? Best regards, Yusuke Suzuki -- Regards, Yusuke Suzuki ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] Meltdown and Spectre attacks

2018-01-05 Thread Yusuke SUZUKI
ng 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] Test262 includes some tab characters

2018-02-05 Thread Yusuke SUZUKI
On Mon, Feb 5, 2018 at 5:24 AM, Alexey Proskuryakov <a...@webkit.org> wrote: > > > 4 февр. 2018 г., в 7:09, Yusuke SUZUKI <utatane@gmail.com> > написал(а): > > > > Hi WebKittens, > > > > Recently, I updated test262, and I found newly added test2

[webkit-dev] Test262 includes some tab characters

2018-02-04 Thread Yusuke SUZUKI
Hi WebKittens, Recently, I updated test262, and I found newly added test262 files include TAB characters (\t). IIRC, I need some help to import such files into WebKit tree. Can we make JSTests/test262 directory free from any SVN style checks? Best regards, Yusuke Suzuki

[webkit-dev] Be careful for using `new builtin[xxx]` / `make_unique<builtin[]>(num)`

2018-02-20 Thread Yusuke SUZUKI
it does not accept allocator for std::unique_ptr<char[], XXX>'s XXX. Please correct me if I'm wrong. Best regards, Yusuke Suzuki ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

[webkit-dev] Proposal: Not supporting x86 w/o SSE2

2018-07-29 Thread Yusuke SUZUKI
Hello WebKittens, To mitigate recent side-channel attacks, we added `lfence` in x86 WebKit. But this is supported in x86 SSE2. So the ToT WebKit is not usable with very old x86 CPUs which do not have SSE2[1]. According to [2], Mozilla Firefox 49 no longer supports x86 w/o SSE2. Since Firefox 45

Re: [webkit-dev] Proposal: Not supporting x86 w/o SSE2

2018-07-29 Thread Yusuke SUZUKI
On Mon, Jul 30, 2018 at 4:37 AM Darin Adler wrote: > Sounds good. > > There are clients of WebKit outside web browsing. A significant client > like that on Windows at Apple is iTunes. I checked < > https://www.apple.com/itunes/download/> and Windows versions of iTunes > require a processor with

Re: [webkit-dev] Can we drop supporting mixed Wasm::MemoryMode in one process?

2018-08-28 Thread Yusuke Suzuki
Posted this mail to webkit-dev mailing list too :) On Wed, Aug 29, 2018 at 3:19 AM Yusuke Suzuki wrote: > Hi JSC folks, > > In Wasm supported environment, our MemoryMode is a bit dynamic. > When we fail to allocate WasmMemory for signaling mode, we fall back to > the bound

Re: [webkit-dev] Can we drop supporting mixed Wasm::MemoryMode in one process?

2018-08-28 Thread Yusuke Suzuki
On Wed, Aug 29, 2018 at 4:10 Filip Pizlo wrote: > > On Aug 28, 2018, at 12:09 PM, Yusuke Suzuki > wrote: > > > > On Wed, Aug 29, 2018 at 3:58 Filip Pizlo wrote: > >> >> On Aug 28, 2018, at 11:56 AM, Yusuke Suzuki >> wrote: >> >> >

Re: [webkit-dev] Can we drop supporting mixed Wasm::MemoryMode in one process?

2018-08-28 Thread Yusuke Suzuki
On Wed, Aug 29, 2018 at 3:27 Filip Pizlo wrote: > > On Aug 28, 2018, at 11:25 AM, Yusuke Suzuki > wrote: > > Thanks! > > On Wed, Aug 29, 2018 at 3:22 Filip Pizlo wrote: > >> I don’t like this proposal. >> >> If we are running low on memory, we

Re: [webkit-dev] Can we drop supporting mixed Wasm::MemoryMode in one process?

2018-08-28 Thread Yusuke Suzuki
On Wed, Aug 29, 2018 at 3:49 Yusuke Suzuki wrote: > > > On Wed, Aug 29, 2018 at 3:27 Filip Pizlo wrote: > >> >> On Aug 28, 2018, at 11:25 AM, Yusuke Suzuki >> wrote: >> >> Thanks! >> >> On Wed, Aug 29, 2018 at 3:22 Filip Pizlo w

Re: [webkit-dev] Fujii Hironori is now a WebKit reviewer

2018-07-14 Thread Yusuke SUZUKI
ew! > > Michael > > ___ > 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://l

Re: [webkit-dev] [jsc-dev] [Deadline October 30] Dropping support for Arm traditional (no Thumb2)?

2018-11-02 Thread Yusuke Suzuki
ific to Arm traditional. > > > Cheers, > > Guij > > [1] > https://build.webkit.org/builders/JSCOnly%20Linux%20ARMv7%20Traditional%20Release > ___ > jsc-dev mailing list > jsc-...@lists.we

Re: [webkit-dev] [jsc-dev] Proposal: Using LLInt Asm in major architectures even if JIT is disabled

2018-09-20 Thread Yusuke Suzuki
y drawbacks. On Thu, Sep 20, 2018 at 3:08 PM Saam Barati wrote: > Interesting! I must have not run this experiment correctly when I did it. > > - Saam > > On Sep 19, 2018, at 7:31 PM, Yusuke Suzuki > wrote: > > On Thu, Sep 20, 2018 at 12:54 AM Saam Barati wrote: > >

Re: [webkit-dev] [jsc-dev] Proposal: Using LLInt Asm in major architectures even if JIT is disabled

2018-09-19 Thread Yusuke Suzuki
egExp. Best regards, Yusuke Suzuki > > - Saam > > On Sep 19, 2018, at 8:53 AM, Saam Barati wrote: > > Did you turn off the RegExp JIT? > > - Saam > > On Sep 18, 2018, at 11:23 PM, Yusuke Suzuki > wrote: > > Hi WebKittens! > > Recently, node-jsc is

Re: [webkit-dev] [jsc-dev] Proposal: Using LLInt Asm in major architectures even if JIT is disabled

2018-09-21 Thread Yusuke Suzuki
it. We’ll let JSVALUE32_64 stay in the tree so > > long as someone is maintaining it. > > Yes that's fine with us. I think that's the previous agreement, anyway. > :) > > Michael > > -- Best regards, Yusuke Suzuki ___

Re: [webkit-dev] node-jsc: A node.js port to the JavaScriptCore engine and iOS

2018-09-21 Thread Yusuke Suzuki
% performance win in Kraken benchmark[1]. Based on this fact, I've just enabled LLInt ASM interpreter when using `ENABLE_JIT=OFF` for x64 and ARM64 environments[2]. [1]: https://lists.webkit.org/pipermail/webkit-dev/2018-September/030157.html [2]: https://trac.webkit.org/r236381 > >

Re: [webkit-dev] JSCOnly bots on dashboard

2019-01-02 Thread Yusuke Suzuki
gt; https://lists.webkit.org/mailman/listinfo/webkit-dev > -- Best regards, Yusuke Suzuki ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] Don Olmstead and Ross Kirsling are now WebKit reviewers

2018-12-13 Thread Yusuke Suzuki
___ > webkit-dev mailing list > webkit-dev@lists.webkit.org > https://lists.webkit.org/mailman/listinfo/webkit-dev > -- Best regards, Yusuke Suzuki ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] node-jsc: A node.js port to the JavaScriptCore engine and iOS

2018-09-14 Thread Yusuke Suzuki
Really great! node-jsc sounds very exciting to me. From the users' view, t is nice if we run app constructed in node.js manner in iOS devices. In addition, from the JSC developers' view, it is also awesome. It allows us to easily run node.js libraries / benchmarks / tests on JSC, which is really

[webkit-dev] Proposal: Using LLInt Asm in major architectures even if JIT is disabled

2018-09-19 Thread Yusuke Suzuki
tures (x64 and ARM64)? Best regards, Yusuke Suzuki [1]: https://lists.webkit.org/pipermail/webkit-dev/2018-September/030140.html ___ webkit-dev mailing list webkit-dev@lists.webkit.org https://lists.webkit.org/mailman/listinfo/webkit-dev

Re: [webkit-dev] Tadeu and Robin are now WebKit reviewers

2019-06-10 Thread Yusuke Suzuki
Congrats! :D > On Jun 10, 2019, at 3:49 PM, Saam Barati wrote: > > Hi folks, > > Tadeu and Robin are both now WebKit reviewers. Join me in congratulating > them. Please ask them to review your code! They both have a focus in JSC. > > - Saam > ___ >

Re: [webkit-dev] Windows 32-bit support?

2019-06-25 Thread Yusuke Suzuki
> On Jun 25, 2019, at 9:13 AM, Adrian Perez de Castro wrote: > > I was mistaken about one thing (sorry!), please read below... > > On Tue, 25 Jun 2019 19:01:54 +0300, Adrian Perez de Castro > wrote: >> On Tue, 25 Jun 2019 10:42:04 -0500, Michael Catanzaro >>

Re: [webkit-dev] C++17 is here. Should we use it?

2019-05-10 Thread Yusuke Suzuki
Cool! So, 1. We can use GCC 7 2. We can use libstdc++7 Is my understanding correct? Basically, this means that we can use cool C++17 features super aggressively :) Best regards, Yusuke Suzuki > On May 7, 2019, at 1:14 PM, Michael Catanzaro wrote: > > On Tue, May 7, 2019 a

Re: [webkit-dev] Windows 32-bit support?

2019-06-27 Thread Yusuke Suzuki
strongly recommend using CLoop for now. -Yusuke > > Thanks & Regards, > Arun > > On Wed, 26 Jun 2019 at 12:10, Arunprasad Rajkumar <mailto:ararunpra...@gmail.com>> wrote: > Thank you all for your guidance. > > I understand that JIT and LLInt bytecode inte

[webkit-dev] Introducing WTF::makeUnique and WTF::makeUniqueWithoutFastMallocCheck

2019-08-19 Thread Yusuke Suzuki
Hello WebKit folks! I would like to announce that I’ve just landed the patch which introduces `WTF::makeUnique` and `WTF::makeUniqueWithoutFastMallocCheck` in https://trac.webkit.org/changeset/248846 . They are drop-in-replacement to std::make_unique,

Re: [webkit-dev] Introducing WTF::makeUnique and WTF::makeUniqueWithoutFastMallocCheck

2019-08-19 Thread Yusuke Suzuki
Note that style-checker change is landed now. -Yusuke > On Aug 19, 2019, at 00:24, Yusuke Suzuki wrote: > > Hello WebKit folks! > > I would like to announce that I’ve just landed the patch which introduces > `WTF::makeUnique` and `WTF::makeUniqueWithoutFastMalloc

  1   2   >