Re: [v8-users] Re: Disabling All Of The Optimizations

2016-09-26 Thread PhistucK
Yes, but I could not provide a reproduction case. :( At least not without approvals from managers, I guess. Do you happen to know when the next stable patch release is planned (that includes the change)? I had to instruct the test teams to use --js-flags="--no-crankshaft" for now, which is not ide

[v8-users] where to start on implementing chrome debug-ability for a embedded v8 application?

2016-09-26 Thread Zac Hansen
I want to be able to debug the code running in my program, and in a previous thread, I was informed that there is currently no way to do this with over the network. Someone mentioned that this will be (re)added eventually, but when I asked for an estimate of a half-year that might happen, I got

Re: [v8-users] Re: Getting invalid (very high) line numbers from failed compile within v8::ScriptCompiler::CompileFunctionInContext

2016-09-26 Thread Jochen Eisinger
CompileFunctionInContext is equivalent to using with (context_extension) { } around your function which is different from pretending it was inside some other function. As for the odd line numbers, can you provide a complete repro case? On Sat, Sep 24, 2016 at 1:12 PM Zac Hansen wrote: > I'm a b

[v8-users] No libv8.a generated for either X64 or ARM64 build.

2016-09-26 Thread Nonny Mouse
I'm trying to build V8 for both X64 and ARM64 (by cross compiling). Both builds seem to run and complete without errors, but libv8.a, libplatform.a, etc. are not generated for either build. However, other static libraries are successfully built (e.g. libgmock.a). Build machine is X64 running

Re: [v8-users] JavaScript heap out of memory issue

2016-09-26 Thread Abhishek Singh
Hi Ben, It turned out to be memory leak in my C++ wrapper on top of V8 - fixed it. Thanks for the suggestion around using v8::HeapProfiler::TakeHeapSnapshot(). > On 24-Sep-2016, at 00:08, Ben Noordhuis wrote: > > On Fri, Sep 23, 2016 at 12:54 PM, Abhishek Singh > wrote: >> Hi, >> >> I notice