]> git.droids-corp.org - dpdk.git/commitdiff
eal: introduce non-temporal prefetch
authorJerin Jacob <jerin.jacob@caviumnetworks.com>
Fri, 12 Feb 2016 11:13:50 +0000 (16:43 +0530)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 16 Feb 2016 06:19:19 +0000 (07:19 +0100)
non-temporal/transient/stream version of rte_prefetch0()

The non-temporal prefetch is intended as a prefetch hint that processor
will use the prefetched data only once or short period,
unlike the rte_prefetch0() function which imply that
prefetched data to use repeatedly.

Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
Acked-by: Jan Viktorin <viktorin@rehivetech.com>
lib/librte_eal/common/include/arch/arm/rte_prefetch_32.h
lib/librte_eal/common/include/arch/arm/rte_prefetch_64.h
lib/librte_eal/common/include/arch/ppc_64/rte_prefetch.h
lib/librte_eal/common/include/arch/tile/rte_prefetch.h
lib/librte_eal/common/include/arch/x86/rte_prefetch.h
lib/librte_eal/common/include/generic/rte_prefetch.h

index b716384ac50edf4ce6083d4d5673047ce0a9db69..5aeed22d057447ad34424496c731154a4253e018 100644 (file)
@@ -54,6 +54,12 @@ static inline void rte_prefetch2(const volatile void *p)
        asm volatile ("pld [%0]" : : "r" (p));
 }
 
+static inline void rte_prefetch_non_temporal(const volatile void *p)
+{
+       /* non-temporal version not available, fallback to rte_prefetch0 */
+       rte_prefetch0(p);
+}
+
 #ifdef __cplusplus
 }
 #endif
index f9cc62ee8987824bbba63288b484726b8470a9bf..3ed46a46ffe70d24206871ac1f8f0e2dfc64b358 100644 (file)
@@ -54,6 +54,11 @@ static inline void rte_prefetch2(const volatile void *p)
        asm volatile ("PRFM PLDL3KEEP, [%0]" : : "r" (p));
 }
 
+static inline void rte_prefetch_non_temporal(const volatile void *p)
+{
+       asm volatile ("PRFM PLDL1STRM, [%0]" : : "r" (p));
+}
+
 #ifdef __cplusplus
 }
 #endif
index fea3be1a88589d5cdfb2ad38f50781e1cab2b64b..bcc7185c2b5557468286918966d57c2fe9b888b2 100644 (file)
@@ -54,6 +54,12 @@ static inline void rte_prefetch2(const volatile void *p)
        asm volatile ("dcbt 0,%[p],1" : : [p] "r" (p));
 }
 
+static inline void rte_prefetch_non_temporal(const volatile void *p)
+{
+       /* non-temporal version not available, fallback to rte_prefetch0 */
+       rte_prefetch0(p);
+}
+
 #ifdef __cplusplus
 }
 #endif
index c94075c60d511e6ef63104c58e6e3fc706314d86..7a1bb93e5c1f44030089b690678e7ead7bba3072 100644 (file)
@@ -54,6 +54,12 @@ static inline void rte_prefetch2(const volatile void *p)
        __builtin_prefetch((const void *)(uintptr_t)p, 0, 1);
 }
 
+static inline void rte_prefetch_non_temporal(const volatile void *p)
+{
+       /* non-temporal version not available, fallback to rte_prefetch0 */
+       rte_prefetch0(p);
+}
+
 #ifdef __cplusplus
 }
 #endif
index 8e6e02ccf5177f6aae2f9003d970ed0b1f772507..5dac47ebd44d20388a1a893c3ff4fa265c0e5574 100644 (file)
@@ -55,6 +55,11 @@ static inline void rte_prefetch2(const volatile void *p)
        asm volatile ("prefetcht2 %[p]" : : [p] "m" (*(const volatile char *)p));
 }
 
+static inline void rte_prefetch_non_temporal(const volatile void *p)
+{
+       asm volatile ("prefetchnta %[p]" : : [p] "m" (*(const volatile char *)p));
+}
+
 #ifdef __cplusplus
 }
 #endif
index 725715ff6e341a5d4ffb39680d1f4edb4e1d67d6..07e409ece75c57657b917cb973f94f35a2d78a48 100644 (file)
@@ -68,4 +68,16 @@ static inline void rte_prefetch1(const volatile void *p);
  */
 static inline void rte_prefetch2(const volatile void *p);
 
+/**
+ * Prefetch a cache line into all cache levels (non-temporal/transient version)
+ *
+ * The non-temporal prefetch is intended as a prefetch hint that processor will
+ * use the prefetched data only once or short period, unlike the
+ * rte_prefetch0() function which imply that prefetched data to use repeatedly.
+ *
+ * @param p
+ *   Address to prefetch
+ */
+static inline void rte_prefetch_non_temporal(const volatile void *p);
+
 #endif /* _RTE_PREFETCH_H_ */