On Fri, Feb 27, 2015 at 6:56 PM, Deepak Subramanian <subudee...@gmail.com>
wrote:

> I am relatively new to v8. Please note, I would like this to run in
> un-modified d8 while modifying v8 only. Thanks.
>
>
> On Friday, February 27, 2015 at 6:52:18 PM UTC+1, Deepak Subramanian wrote:
>>
>> Query 1:
>> The v8natives.js seem to have a references to various functions created
>> by the macros in runtime.* and these are referenced by a %(FUNCTIONName)
>> kind of call. Is this a correct understanding ?
>>
>
Yes.


> And what do the capital functions in the same file mean.
>>
>
https://chromium.googlesource.com/v8/v8/+/master/src/macros.py#84


> Query 2:
>> I am looking for the best way to get the stackframe (the stackframe that
>> is getting printed when one uses console.trace) internally in v8 to make
>> some decisions based on which function in the stackframe created the
>> statement. This just needs to be internal.
>>
>
Does https://chromium.googlesource.com/v8/v8/+/master/src/frames.cc#815
help?


> Query 3:
>> What is the standard practice when creating custom JS functions ? Lets
>> say I want function.names to contain all the variables that can access the
>> function, how to do this (or any simple example would suffice on custom JS
>> functions pointing to custom c implementations)
>>
>
https://chromium.googlesource.com/v8/v8/+/master/src/d8.cc#911


> Query 4:
>> What is Zone,
>>
>
A custom memory management strategy:
https://chromium.googlesource.com/v8/v8/+/master/src/zone.h#36


> ZoneList
>>
>
A list that's allocated in the Zone.


> and what is the purpose of Hydrogen.
>>
>
http://wingolog.org/archives/2011/08/02/a-closer-look-at-crankshaft-v8s-optimizing-compiler


>
>> Thanks a lot.
>>
>> Sorry to post so many queries. If you prefer a small chat over irc let me
>> know the channel.
>>
>> Best Regards,
>> Deepak
>>
>>
>>
>>  --
> --
> 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 and stop receiving emails from it, send an
> email to v8-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
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 and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to