←back to thread

92 points endorphine | 1 comments | | HN request time: 0.225s | source
Show context
dataflow ◴[] No.43536838[source]
It's not really that they prioritize performance over correctness (your code becomes no more correct if out-of-bounds write was well-defined to reboot the machine...), it's that they give unnecessary latitude to UB instead of constraining the valid behaviors to the minimal set that are plausibly useful for maximizing performance. E.g. it is just complete insanity to allow signed integer overflow to format your drive. Simply reducing it to "produces an undefined result" would seem plenty adequate for performance.
replies(1): >>43536958 #
hn-acct ◴[] No.43536958[source]
The author points out near the bottom that “performance” was not one of the original justifications for its UB decisions, afatct.

Your example is a slippery slope but I get your point. I agree that there needs to be a “reasonable UB”

But I’ve moved on from c++.

replies(1): >>43537203 #
1. tialaramex ◴[] No.43537203[source]
> I agree that there needs to be a “reasonable UB”

What could you possibly want "reasonable UB" for? If what you want is actually just Implementation Defined that already exists and is fine, no need to invent some notion of "reasonable UB".