We recently added support for using the fast clock rdtsc instruction where it's available (most places). It's currently gated on checking some architectures specifically:
#if (defined __i386) || (defined __amd64)
We use that check in more than one place - it would be clearer if there was a HAVE_RDTSC define in wiredtiger_config.h instead.