nvidia-texture-tools/src/nvcore/Prefetch.h

31 lines
632 B
C
Raw Normal View History

// This code is in the public domain -- castanyo@yahoo.es
#ifndef NV_CORE_PREFETCH_H
#define NV_CORE_PREFETCH_H
#include <nvcore/nvcore.h>
2007-04-17 08:49:19 +00:00
// nvPrefetch
#if NV_CC_GNUC
#define nvPrefetch(ptr) __builtin_prefetch(ptr)
#elif NV_CC_MSVC
// Uses SSE Intrinsics for both x86 and x86_64
#include <xmmintrin.h>
2007-04-17 08:49:19 +00:00
__forceinline void nvPrefetch(const void * mem)
{
_mm_prefetch(static_cast<const char*>(mem), _MM_HINT_T0); /* prefetcht0 */
// _mm_prefetch(static_cast<const char*>(mem), _MM_HINT_NTA); /* prefetchnta */
2007-04-17 08:49:19 +00:00
}
#else
2007-04-17 08:49:19 +00:00
// do nothing in other case.
#define nvPrefetch(ptr)
2007-04-17 08:49:19 +00:00
#endif // NV_CC_MSVC
#endif // NV_CORE_PREFETCH_H