[v8-users] Can I manually fulfill feedback vector to achieve aot compilation?

2017-10-26 Thread Bogdan Orlov
Is it possible to compile js code with TurboFan without running it in interpreter mode by manually fulfilling feedback vector by informations of types getting from typescript compiler? I so, is it possible to compile v8 with my code without touching jit-system so I can run it on ios devices? I

Re: [v8-users] Can I manually fulfill feedback vector to achieve aot compilation?

2017-10-26 Thread Jakob Kummerow
No, it is not possible to populate the feedback vector manually. A lot of its contents are pointers to dynamically generated objects on the heap. On Thu, Oct 26, 2017 at 3:05 PM Bogdan Orlov wrote: > Is it possible to compile js code with TurboFan without running it in > interpreter mode by man