3 ms·
note that it is measured in SLOC. You can do in 500 lines of rust what might take 5000 lines of C. I would be interested to see this as a stack chart showing
by jlrubin 5y ago
note that it is measured in SLOC.
You can do in 500 lines of rust what might take 5000 lines of C.
I would be interested to see this as a stack chart showing overall LoC.
- wodenokoto 5y agoWhat's the difference between LoC and SLoC?
- zarkov99 5y agoComments, I believe.
- deleted 5y ago[deleted]
- arlort 5y agoSomething that would be cool to do, though I'm not familiar enough with build systems and profilers to do it myself would be mark which portions of the generated binary comes from Rust/C++/C and then instrumenting the executable to measure how much time is spent in each of those areas for a typical use of the browser
- klysm 5y agoI bet you could do this with user space probes but it would be somewhat difficult so probably not worth the time.