[v8-users] Re: How to rescue issues caused by v8::Isolate termination

2018-11-07 Thread Yuki Shiino
> > Are you assuming that the worker is terminated while it's calling > DoSomethingElseWithV8()? If yes, why does HasCaught() not return true? If > no, what's a problem of continuing execution? No, the worker is terminated while DoSomethingWithV8 (without "Else"), and Blink continues running

[v8-users] Re: Has V8 gone back to not producing full static libs again ?

2018-11-07 Thread YJ
Hi Terry, I did sort of figured out my original issue regarding linux. Not sure if the v8 team made any fixes yet but see my findings on this bug: https://bugs.chromium.org/p/v8/issues/detail?id=7959 My current project does not target windows at all though, I don't know much about windows.

[v8-users] Intent to ship: Intl.ListFormat

2018-11-07 Thread Frank Tang
Spec https://tc39.github.io/proposal-intl-list-format Summary A Stage 3 proposal that introduces a new formatter under Intl. Intl.ListFormat helps libraries and frameworks format a list in a localized fashion by providing internationalized messages using a customary local word or phrase when

[v8-users] Re: Has V8 gone back to not producing full static libs again ?

2018-11-07 Thread Terry Ridgway
I have a similar issue with Windows libraries in v6.9 and newer. I'm still looking for an answer, too. https://groups.google.com/forum/#!topic/v8-users/P5dHmxNm-TY --Terry On Thursday, July 19, 2018 at 1:33:03 AM UTC-7, YJ wrote: > > hi all, > > I am using the following gn args for x64 > >

[v8-users] Interpreter debugger

2018-11-07 Thread TLim
In the Ignition's document , it's explaining about the debugger, but the information is not really enough and the attached link for further debugging support within the

[v8-users] Ignition control flow building with d8

2018-11-07 Thread TLim
I'm wondering whether there's a flag for d8 that I can use to produce a CFG for the interpreter. Can anyone know about it whether it's possible or not and, if yes, how can I get it? Thanks! -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You

[v8-users] Re: How to rescue issues caused by v8::Isolate termination

2018-11-07 Thread Kentaro Hara
Sorry, I'm not sure if I understand your example... On Wed, Nov 7, 2018 at 2:21 AM Yutaka Hirano wrote: > +ricea@ > > On Wed, Nov 7, 2018 at 6:44 PM Yuki Shiino > wrote: > >> Hi V8-team and platform-architecture-dev, >> >> TL;DR: We'd like to extend v8::TryCatch APIs a little. >> >> We're

[v8-users] Re: How to rescue issues caused by v8::Isolate termination

2018-11-07 Thread Yutaka Hirano
+ricea@ On Wed, Nov 7, 2018 at 6:44 PM Yuki Shiino wrote: > Hi V8-team and platform-architecture-dev, > > TL;DR: We'd like to extend v8::TryCatch APIs a little. > > We're having an issue how to handle worker termination, i.e. v8::Isolate > termination. Roughly speaking, the situation is like

[v8-users] How to rescue issues caused by v8::Isolate termination

2018-11-07 Thread Yuki Shiino
Hi V8-team and platform-architecture-dev, TL;DR: We'd like to extend v8::TryCatch APIs a little. We're having an issue how to handle worker termination, i.e. v8::Isolate termination. Roughly speaking, the situation is like below. Main thread: v8::Isolate* worker_isolate = ...;