5 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 4y 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 4y agoWhat's the difference between LoC and SLoC?
- zarkov99 4y agoComments, I believe.
- deleted 4y ago[deleted]
- arlort 4y 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 4y agoI bet you could do this with user space probes but it would be somewhat difficult so probably not worth the time.