I definitely agree with Jake but as a thought expe...
# announcements
k
I definitely agree with Jake but as a thought experiment, would performance really suffer if everything was inlined? If a lot of things were inlined you would definitely get instruction cache misses for function calls. But if all function calls were inlined? The binary would definitely be prohibitively large.
k
The JIT doesn't attempt to optimize large function bodies IIRC.
k
Ah. Makes sense.