Nathan Bossart <nathandboss...@gmail.com> writes: > Like I said, I don't have any proposals yet, but assuming we do want to > support newer intrinsics, either open-coded or via auto-vectorization, I > suspect we'll need to gather consensus for a new policy/strategy.
Yeah. The function-pointer solution kind of sucks, because for the sort of operation we're considering here, adding a call and return is probably order-of-100% overhead. Worse, it adds similar overhead for everyone who doesn't get the benefit of the optimization. (One of the key things you want to be able to say, when trying to sell a maybe-it-helps-or-maybe-it-doesnt optimization to the PG community, is "it doesn't hurt anyone who's not able to benefit".) And you can't argue that that overhead is negligible either, because if it is then we're all wasting our time even discussing this. So we need a better technology, and I fear I have no good ideas about what. Your comment about vectorization hints at one answer: if you can amortize the overhead across multiple applications of the operation, then it doesn't hurt so much. But I'm not sure how often we can make that answer work. regards, tom lane