top | item 46145154

The Mysterious Realm of JavaScriptCore (2021)

35 points| program | 2 months ago |cyberark.com

6 comments

order

epolanski|2 months ago

I've often thought about the possibility of implementing a language that can compile directly to optimized byte code (either for V8 or JSC), in order to get "hot code" that does not need runtime optimization, has anybody explored this idea?

astrange|2 months ago

That's WebAssembly / asm.js. Well, that's the target, you could still design a language for it.

pizlonator|2 months ago

That won't work for JS because you need runtime profiling to be able to do any meaningful optimizations

N_Lens|2 months ago

Author used CodeQL to rediscover a CVE in JSC that was exploited by Pwn2Own in 2018. Very interesting. I guess now with increasing automation we'll see more CVE discovery through such tools.