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

2018-11-15 Thread Yang Guo
Hi, I found that at the only place Isolate::TerminateExecution is called from blink, V8 is not even running. That would mean that we don't have to worry about any o

[v8-users] using custom toolchain for V8 builds

2018-11-15 Thread madana gopal
Hi, We are building v8 using gyp and ninja. We have our own sysroot and toolchain which need to be used for building v8 instead of toolchain within v8. We are building for target architecture arm and it is using arm-linux-gnueabihf-g++ as compiler always. Do we have any way to configure it to

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

2018-11-15 Thread Kentaro Hara
> > I found that at the only place Isolate::TerminateExecution is called > > from > blink, V8 is not even running. That would mean that we don't have to worry > abo

[v8-users] v8 linker for android build on Mac is not support ?

2018-11-15 Thread wjxfhxy
I'm building on MacOSX 10.14 for Android and fixed third_party/android_ndk support mac , but it still error. Why? Is it v8 not support linker on mac? It look like about c++ error the error detail : FAILED: obj/torque_base/csa-generator.o ../../third_party/llvm-build/Release+Asserts/bin

[v8-users] Re: ChromeDevTools connected to Inspector, but error responses... missing native JS functions?

2018-11-15 Thread @soylentgraham
Ah that sounds more like the proper way to do it :) I've not tried interrupts yet, so I'm no use here :) On Wednesday, 14 November 2018 17:45:03 UTC, Konrad Piascik wrote: > > I have attached to node with the program executing in the middle of a > while/busy loop. > I think I found what node is d

[v8-users] Each bytecode is an object?

2018-11-15 Thread TLim
I'm trying to get the idea of how ignition generates the bytecode from the AST and handles it straight. My understanding is that when the Ignition walks through the AST from the parser, it generates bytecodes. Then, how it generates is that each bytecode is actually an object of bytecode class.

Re: [v8-users] Each bytecode is an object?

2018-11-15 Thread Jakob Kummerow
Everything on the heap is a heap object ;-) I guess the term "bytecode" is slightly overloaded. If you mean "the bytecode of a function", i.e. the entire bytecode representation of that function, then yes, that is indeed stored as an object on the heap (where/how else would it be stored?); and "By

[v8-users] Re: using custom toolchain for V8 builds

2018-11-15 Thread madana gopal
Hi Team, Please share if we have any way to point to custom toolchain for arm and build. Thanks. Regards, Madan -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-us