Re: [v8-users] Unable to setup V8 build locally (//build/dotfile_settings.gni)

2023-12-20 Thread Camillo Bruni
root for clarity). > Are the instructions at https://v8.dev/docs/build missing a step ? Or am > I misreading them ? > > Le lundi 2 octobre 2023 à 18:00:19 UTC+2, Camillo Bruni a écrit : > >> For using the same checkout in chromium and standalone I suggest using >> g

Re: [v8-users] Unable to setup V8 build locally (//build/dotfile_settings.gni)

2023-10-02 Thread Camillo Bruni
ived this message because you are subscribed to the Google >>>> Groups "v8-users" group. >>>> To unsubscribe from this group and stop receiving emails from it, send >>>> an email to v8-users+u...@googlegroups.com. >>>> >>> To view

Re: [v8-users] Unable to setup V8 build locally (//build/dotfile_settings.gni)

2023-09-26 Thread Camillo Bruni
eived this message because you are subscribed to the Google Groups > "v8-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to v8-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.co

Re: [v8-users] lib size increasing a lot since 8.3

2022-02-15 Thread Camillo Bruni
/aca44c98-f816-4a2b-9502-7a7d64dfd3fcn%40googlegroups.com?utm_medium=email&utm_source=footer> >>> . >>> >> -- > -- > v8-users mailing list > v8-users@googlegroups.com > http://groups.google.com/group/v8-users > --- > You received this message because

Re: [v8-users] lib size increasing a lot since 8.3

2022-01-11 Thread Camillo Bruni
oogle.com/d/msgid/v8-users/aca44c98-f816-4a2b-9502-7a7d64dfd3fcn%40googlegroups.com?utm_medium=email&utm_source=footer> > . > Camillo Bruni | Software Engineer, V8 | Google Germany GmbH | Erika-Mann Str. 33, 80636 München Registergericht und -nummer: Hamburg, HRB 86891 | Sitz der Gesel

Re: [v8-users] JS Module can't see registered function template.

2021-09-15 Thread Camillo Bruni
> 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 and stop receiving emails from it, send an > email to v8-users+unsubscr...@googlegroups.com. &g

Re: [v8-users] How to retrieve a class defined in a module?

2020-11-17 Thread Camillo Bruni
isit > https://groups.google.com/d/msgid/v8-users/6e1f91bb-9d1b-4e3e-b772-c1cdf71afb06n%40googlegroups.com > <https://groups.google.com/d/msgid/v8-users/6e1f91bb-9d1b-4e3e-b772-c1cdf71afb06n%40googlegroups.com?utm_medium=email&utm_source=footer> > . > Camillo Bruni | Softwa

Re: [v8-users] Re: CpuProfiler sampling and multiple threads

2020-08-03 Thread Camillo Bruni
No worries, Rubberducking is quite efficient sometimes! ;) Feel free to send a pull request and we can have a look at it! cheers, Camillo On Mon, 3 Aug 2020 at 13:58, Alex Kodat wrote: > OK, now I'm replying to myself a second time. Really sorry. I realized we

Re: [v8-users] High CPU usage in v8::internal::Runtime_LoadIC_Miss

2020-07-27 Thread Camillo Bruni
Hi, Inline Caches are a crucial optimization to speed up property accesses. Usually, you get misses the first time an inline cache is used (for initialization) or when the shape of objects is different (different order, different types of properties).

Re: [v8-users] Re: V8 version to upgrade to

2020-06-09 Thread Camillo Bruni
Hi, The API changed quite a bit since 6.7, you can find the major changes in this document . Note that after 7.7 the changes are only minor and should be easy to handle. On Mon, 8 Jun 2020 at 20:28, Nupoor Ko

Re: [v8-users] Re: runtime crash with latest v8

2020-05-28 Thread Camillo Bruni
Hi, Could you try a debug build instead? See instructions here: https://v8.dev/docs/cross-compile-arm cheers, Camillo On Sat, 23 May 2020 at 19:13, ibon wrote: > Update: > I have tried compiling again the same exact version That did work before > (8.0.426.9) and I get the same error. > I run `

Re: [v8-users] How to instrument function creation and invocation in v8

2017-12-07 Thread Camillo Bruni
Hi Tobias, Most probably you would have to manually annotate all CodeStubAssembler builtins with a print statement to get the proper output. There are several macros where you might be able to inject a runtime call or a direct C++ call (see TF_BUILTIN and friends). The same counts for all C++ ru

[v8-users] Re: GC cost of adding to an object with 50,000+ keys

2017-11-28 Thread Camillo Bruni
and crashes Node.js. (I > experimented with increasing --max_old_space_size up to 1) There's also > a point (random strings of length 5, with N of 8,000,000) where even if > your heap is large enough to hold all the strings, the adding/appending to > an Object just seize

[v8-users] Re: GC cost of adding to an object with 50,000+ keys

2017-11-23 Thread Camillo Bruni
Hi Jonathan, this seems suspicious. Would it be possible for you to write a standalone repro? Without further information it is hard to asses what exactly might be going wrong here. Cheers, Camillo On Wednesday, November 22, 2017 at 1:29:50 AM UTC+1, Jonathan Otto wrote: > > I have a plain Ja

[v8-users] Re: How figure out v8 execute Javascript (real-world pages) in detail, i.e. when interpret? when compile?

2017-09-04 Thread Camillo Bruni
Hi Micheal, You have to enable additional tracing categories to get the detailed RuntimeCallStats, see this slidedeck for detailed instructions: https://docs.google.com/presentation/d/1Lq2DD28CGa7bxawVH_2OcmyiTiBn74dvC6vn2essroY/edit?usp=sharing As for the telemetry tests, I think you'd have t