Re: [v8-users] Can "threading" be implemented by mapping v8 heap to shared memory in linux?

2018-01-08 Thread Bogdan Orlov
I understand that updating object in shared memory need synchronization and even with in-memory database task in general there will be a global lock (not per-object because transaction will spread by different tables and object) and only one process will write to memory so I think just global lock

[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