Re: [v8-users] Re: How to build V8 on Raspberry Pi (3 model B) ?

2017-06-02 Thread aleReimondo
Thank you Jakob, I will try to read and build gn :-) On the paragraph: > Well, gn is a binary tool, that's by design... The Python scripts around > it are just for convenience. > > So, the use of build tools can impose security risks. Ale. -- -- v8-users mailing list

Re: [v8-users] Re: How to build V8 on Raspberry Pi (3 model B) ?

2017-06-02 Thread Jakob Kummerow
On Fri, Jun 2, 2017 at 5:37 PM, aleReimondo wrote: > Issue reported at https://bugs.chromium.org/p/v8/issues/detail?id=6458 > Don't hold your breath, but feel free to help ;-) -- -- v8-users mailing list v8-users@googlegroups.com

Re: [v8-users] Re: How to build V8 on Raspberry Pi (3 model B) ?

2017-06-02 Thread Jakob Kummerow
On Fri, Jun 2, 2017 at 5:10 PM, aleReimondo wrote: > Confirmed the malfunction of the build toolset on the Raspberry Pi. > It has been reproduced started from clean SDCard (Raspbian OS) and > following wiki procedures to build V8 without observing any other issues >

[v8-users] Re: How to build V8 on Raspberry Pi (3 model B) ?

2017-06-02 Thread aleReimondo
Issue reported at https://bugs.chromium.org/p/v8/issues/detail?id=6458 -- -- 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-users" group. To unsubscribe from this group

[v8-users] Re: How to build V8 on Raspberry Pi (3 model B) ?

2017-06-02 Thread aleReimondo
Confirmed the malfunction of the build toolset on the Raspberry Pi. It has been reproduced started from clean SDCard (Raspbian OS) and following wiki procedures to build V8 without observing any other issues during installation and setup. So, I will consider this a BUG of Chrome toolset and wait

[v8-users] Re: How to build V8 on Raspberry Pi (3 model B) ?

2017-06-02 Thread aleReimondo
Now starting from a new installation to ensure the malfunction of the tools download is reproducible on clean installation of Raspbian... Ale -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed

Re: [v8-users] How to dump jit code and its corresponding bytecode.

2017-06-02 Thread Jakob Kummerow
Look at the existing flags FLAG_print_opt_code and FLAG_print_bytecode, their implementations should help you figure out how to do this. On Fri, Jun 2, 2017 at 8:07 AM, Yuan Pinghai wrote: > I want to dump each piece of dynamically generated code. Meanwhile, if its >

[v8-users] How to dump jit code and its corresponding bytecode.

2017-06-02 Thread Yuan Pinghai
I want to dump each piece of dynamically generated code. Meanwhile, if its corresponding bytecode is available, I also dump the bytecode and record the starting line number of the script code (i.e. recording the script name and the line number). For this purpose, i inserted code snippets in