HackerTrans
TopNewTrendsCommentsPastAskShowJobs

vitaut

no profile record

Submissions

Open Access to Standards Documents

discourse.llvm.org
3 points·by vitaut·vor 2 Monaten·1 comments

[untitled]

1 points·by vitaut·vor 3 Monaten·0 comments

Astrological CPU Scheduler

github.com
4 points·by vitaut·vor 5 Monaten·0 comments

Bitwise conversion of doubles using only FP multiplication and addition (2020)

dougallj.wordpress.com
57 points·by vitaut·vor 6 Monaten·6 comments

LLVM: The bad parts

npopov.com
389 points·by vitaut·vor 6 Monaten·77 comments

Hardening the C++ Standard Library at massive scale

queue.acm.org
1 points·by vitaut·vor 8 Monaten·0 comments

Making the Clang AST Leaner and Faster

cppalliance.org
50 points·by vitaut·vor 8 Monaten·9 comments

C++ Memory Safety in WebKit [video]

youtube.com
3 points·by vitaut·vor 10 Monaten·0 comments

CLion Introduces Constexpr Debugger

blog.jetbrains.com
3 points·by vitaut·vor 10 Monaten·0 comments

comments

vitaut
·vor 2 Monaten·discuss
Interviewer: Mr. Musk, I understand the wheels fell off the Cybertruck.

Musk: Well, that’s not very typical. Most vehicles are designed so the wheels don’t fall off.

Interviewer: But these ones did.

Musk: Well obviously. That’s why we recalled them. But wheel retention remains a very high priority at Tesla.

Interviewer: What caused it?

Musk: A minor component interaction that generated maximum freedom.

Interviewer: Freedom?

Musk: For the wheel.
vitaut
·vor 4 Monaten·discuss
The binary bloat is also caused by unnecessary inlining and the linker eliminates most of it (but it's still annoying e.g. for godbolt). {fmt} supports a superset of std::format and std::print features including localization. stringstream's bloat is unrelated and mostly caused by large per-call binary code from concatenation-based API.
vitaut
·vor 4 Monaten·discuss
std::print author here. Indeed, std::print shouldn't be expensive to compile, it's just a thin wrapper around a single type-erased function. The only reason why it is expensive in libstdc++ is that the type-erased function is inlined which goes against the proposed design but unfortunately can't be enforced via the standard wording and remains a Quality of Implementation (QoI) issue.

Fortunately, libstdc++ is fixing this: https://gcc.gnu.org/pipermail/gcc-patches/2026-March/710275..... There is still more work to optimize the includes but it's a good start.
vitaut
·vor 5 Monaten·discuss
Modules have been working reasonably well in clang for a while now but MSVC support is indeed buggy.
vitaut
·vor 5 Monaten·discuss
This style is used in {fmt} and is great for documentation, especially on smaller screens: https://fmt.dev/12.0/api/#format_to_n
vitaut
·vor 5 Monaten·discuss
We did see build time improvements from deploying modules at Meta.
vitaut
·vor 6 Monaten·discuss
The main effect of this is that some of the conversions between char and char8_t are inefficient.
vitaut
·vor 6 Monaten·discuss
I was impressed how fast the Rust folks adopted this! Kudos to David Tolnay and others.
vitaut
·vor 6 Monaten·discuss
Note that ~3-6ns is on modern desktop CPUs where extra few kB matter less. On microcontrollers it will be larger in absolute terms but I would expect the relative difference to also be moderate.
vitaut
·vor 6 Monaten·discuss
I don't have exact numbers but from measuring perf changes per commit it seemed that most improvements came from "printing" (e.g. switching to BCD and SIMD, branchless exponent output) and microoptimizations rather than algorithmic improvements.
vitaut
·vor 6 Monaten·discuss
If you compress the table (see my earlier comment) and use plain Schubfach then you can get really small binary size and decent perf. IIRC Dragonbox with the compressed table was ~30% slower which is a reasonable price to pay and still faster than most algorithms including Ryu.
vitaut
·vor 6 Monaten·discuss
It is possible to compress the table using the technique from Dragonbox (https://github.com/fmtlib/fmt/blob/8b8fccdad40decf68687ec038...) at the cost of some perf. It's on my TODO list for zmij.
vitaut
·vor 6 Monaten·discuss
Note that it has the same table of powers of 10: https://github.com/rsc/fpfmt/blob/main/bench/uscalec/pow10.h
vitaut
·vor 6 Monaten·discuss
Somewhat notable is that `char8_t` is banned with very reasonable motivation that applies to most codebases:

> Use char and unprefixed character literals. Non-UTF-8 encodings are rare enough in Chromium that the value of distinguishing them at the type level is low, and char8_t* is not interconvertible with char* (what ~all Chromium, STL, and platform-specific APIs use), so using u8 prefixes would obligate us to insert casts everywhere. If you want to declare at a type level that a block of data is string-like and not an arbitrary binary blob, prefer std::string[_view] over char*.
vitaut
·vor 6 Monaten·discuss
The shortest double-to-string algorithm is basically Schubfach or, rather, it's variation Tejú Jaguá with digit output from Dragonbox. Schubfach is a beautiful algorithm: I implemented and wrote about it in https://vitaut.net/posts/2025/smallest-dtoa/. However, in terms of performance you can do much better nowadays. For example, https://github.com/vitaut/zmij does 1 instead of 2-3 costly 128x64-bit multiplications in the common case and has much more efficient digit output.
vitaut
·vor 6 Monaten·discuss
Other examples are CTRE (https://github.com/hanickadot/compile-time-regular-expressio...) and format string compilation (https://fmt.dev/12.0/api/#compile-api). The closest C counterpart is re2c which also requires external tooling.
vitaut
·vor 6 Monaten·discuss
It's easier to write faster code in a language with compile-time facilities such as C++ or Rust than in C. For example, doing this sort of platform-specific optimization in C is a nightmare https://github.com/vitaut/zmij/blob/91f07497a3f6e2fb3a9f999a... (likely impossible without an external pass to generate multiple lookup tables).
vitaut
·vor 7 Monaten·discuss
Please note that there is some error in your port:

Error: roundtrip fail 4.9406564584124654e-324 -> '5.e-309' -> 4.9999999999999995e-309

Error: roundtrip fail 6.6302941479442929e-310 -> '6.6302941479443e-309' -> 6.6302941479442979e-309

Error: roundtrip fail -1.9153028533493997e-310 -> '-1.9153028533494e-309' -> -1.9153028533493997e-309

Error: roundtrip fail -2.5783653320086361e-312 -> '-2.57836533201e-309' -> -2.5783653320099997e-309
vitaut
·vor 7 Monaten·discuss
Yeah, that's what I meant.
vitaut
·vor 7 Monaten·discuss
Should be fixed now.