From: | Nathan Bossart <nathandbossart(at)gmail(dot)com> |
---|---|
To: | John Naylor <john(dot)naylor(at)enterprisedb(dot)com> |
Cc: | Andres Freund <andres(at)anarazel(dot)de>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Jelte Fennema <Jelte(dot)Fennema(at)microsoft(dot)com>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>, Merlin Moncure <mmoncure(at)gmail(dot)com>, Andrew Dunstan <andrew(dot)dunstan(at)2ndquadrant(dot)com>, Stephen Frost <sfrost(at)snowman(dot)net> |
Subject: | Re: [PATCH] Optimize json_lex_string by batching character copying |
Date: | 2022-08-15 21:23:04 |
Message-ID: | 20220815212304.GA251709@nathanxps13 |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Mon, Aug 15, 2022 at 08:33:21PM +0700, John Naylor wrote:
> The attached implements the above, more or less, using new pg_lfind8()
> and pg_lfind8_le(), which in turn are based on helper functions that
> act on a single vector. The pg_lfind* functions have regression tests,
> but I haven't done the same for json yet. I went the extra step to use
> bit-twiddling for non-SSE builds using uint64 as a "vector", which
> still gives a pretty good boost (test below, min of 3):
Looks pretty reasonable to me.
> +#ifdef USE_SSE2
> + chunk = _mm_loadu_si128((const __m128i *) &base[i]);
> +#else
> + memcpy(&chunk, &base[i], sizeof(chunk));
> +#endif /* USE_SSE2 */
> +#ifdef USE_SSE2
> + chunk = _mm_loadu_si128((const __m128i *) &base[i]);
> +#else
> + memcpy(&chunk, &base[i], sizeof(chunk));
> +#endif /* USE_SSE2 */
Perhaps there should be a macro or inline function for loading a vector so
that these USE_SSE2 checks can be abstracted away, too.
--
Nathan Bossart
Amazon Web Services: https://aws.amazon.com
From | Date | Subject | |
---|---|---|---|
Next Message | Jeremy Schneider | 2022-08-15 21:47:25 | Re: identifying the backend that owns a temporary schema |
Previous Message | Nathan Bossart | 2022-08-15 20:58:11 | identifying the backend that owns a temporary schema |