←back to thread

462 points jakevoytko | 4 comments | | HN request time: 0.001s | source
1. gpvos ◴[] No.43491170[source]
It seems to me that V8 had very bad unit tests if this wasn't caught before release. Making sure all operators act the same way when optimized and not is a no-brainer.
replies(1): >>43493216 #
2. sgarland ◴[] No.43493216[source]
Maybe, but I can also understand someone rationalizing that they don’t need to test abs(), because what could possibly go wrong?
replies(2): >>43494040 #>>43495482 #
3. gpvos ◴[] No.43494040[source]
Fair enough, it's busywork and easy to postpone. But code optimization is something that needs this kind of double-checking, so in the end you should have it for all opcodes, and then including the easy ones like abs isn't much extra work.
4. gwern ◴[] No.43495482[source]
It sounds like their unit-tests cover abs(), but they weren't covering all of abs(), and were not reliably triggering the optimized codepath:

> When doing the refactoring, they needed to provide new implementations for every opcode. Someone accidentally turned Math.abs() into the identity function for the super-optimized level. But nobody noticed because it almost never ran — and was right half of the time when it did.

If it never was tested, plain and simple as that, then it couldn't matter that it 'almost never ran' or 'was right half the time'.

So the root problem here is that their test-suite neither exercised all optimized levels appropriately, nor flagged the omission as a fatal problem breaking 100% branch coverage (which for a simple primitive like abs you'd definitely want). This meant that they could break lots of other things too without noticing. OP doesn't discuss if the JS team dealt with it appropriately; one hopes they did.