So I compiled V8 and D8 on my Windows machine and I have some very big javascript code that is pretty obfuscated and which I can run on my machine perfectly fine. I want to recompile my V8 so that I can track creation of certain string inside of this javascript. For example, I want to see if anywhere in the code, string named "_loopy" gets created or if any name property like this is being initialized. Where in /v8/src can i potentially look for such thing? Unfortunately monkey patching and doing manipulation on Javascript level is not possible for me due to integrity checks. Is there any way I can do such thing on V8 level and to recompile it accordingly so i can see if such thing gets created or not?
Im trying to find some type of String constructor and just print whatever it gets called inside of it. Is this possible?
Best regards