Computed goto for efficient dispatch tables (2012)

eli.thegreenplace.net

34 points by firephox 3 days ago


variadix - 2 hours ago

You can probably eliminate the switch bounds check by making the default case execute __builtin_unreachable(). The switch version is safe for non-conforming opcodes where the computed goto version invokes UB.

jdw64 - 3 hours ago

I understood up to the comparison operations in this article, but I'm having trouble understanding branch prediction even after reading it. It seems like they used branch prediction optimization... Sometimes when I read articles like this, I start to question whether I can really call myself a programmer

nly - 4 hours ago

All well and good provided your opcodes are sequential/dense

kibwen - 3 hours ago

> Therefore, the standard forces the compiler to generate "safe" code for the switch. Safety, as usual, has cost, so the switch version ends up doing a bit more per loop iteration.

Safety only has a cost in this case because the switch is fundamentally just operating on an integer. With an actual enumerated type (rather than C's primitive "enums as numeric aliases"), which even a basic type system could trivially enforce, there would be no need for this check, because the domain of the value would be guaranteed at compile-time.

froh - 4 hours ago

(2012)

- 4 hours ago
[deleted]