f-stack/dpdk/lib/librte_table/rte_lru_arm64.h

61 lines
1.5 KiB
C
Raw Normal View History

2019-06-25 11:12:58 +00:00
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2017 Cavium, Inc
*/
2017-04-21 10:43:26 +00:00
#ifndef __RTE_LRU_ARM64_H__
#define __RTE_LRU_ARM64_H__
2017-04-21 10:43:26 +00:00
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#include <rte_vect.h>
2017-04-21 10:43:26 +00:00
#ifndef RTE_TABLE_HASH_LRU_STRATEGY
#ifdef RTE_MACHINE_CPUFLAG_NEON
#define RTE_TABLE_HASH_LRU_STRATEGY 3
#else /* if no NEON, use simple scalar version */
#define RTE_TABLE_HASH_LRU_STRATEGY 1
#endif
#endif
2017-04-21 10:43:26 +00:00
#if RTE_TABLE_HASH_LRU_STRATEGY == 3
2017-04-21 10:43:26 +00:00
#define lru_init(bucket) \
{ bucket->lru_list = ~0LLU; }
2017-04-21 10:43:26 +00:00
static inline int
f_lru_pos(uint64_t lru_list)
2017-04-21 10:43:26 +00:00
{
/* Compare the vector to zero vector */
uint16x4_t lru_vec = vld1_u16((uint16_t *)&lru_list);
uint16x4_t min_vec = vmov_n_u16(vminv_u16(lru_vec));
uint64_t mask = vget_lane_u64(vreinterpret_u64_u16(
vceq_u16(min_vec, lru_vec)), 0);
return __builtin_clzl(mask) >> 4;
2017-04-21 10:43:26 +00:00
}
#define lru_pos(bucket) f_lru_pos(bucket->lru_list)
2017-04-21 10:43:26 +00:00
#define lru_update(bucket, mru_val) \
do { \
const uint64_t orvals[] = {0xFFFFLLU, 0xFFFFLLU << 16, \
0xFFFFLLU << 32, 0xFFFFLLU << 48, 0LLU}; \
const uint64_t decs[] = {0x1000100010001LLU, 0}; \
uint64x1_t lru = vdup_n_u64(bucket->lru_list); \
uint64x1_t vdec = vdup_n_u64(decs[mru_val>>2]); \
bucket->lru_list = vget_lane_u64(vreinterpret_u64_u16( \
vsub_u16(vreinterpret_u16_u64(lru), \
vreinterpret_u16_u64(vdec))), \
0); \
bucket->lru_list |= orvals[mru_val]; \
} while (0)
2017-04-21 10:43:26 +00:00
#endif
2017-04-21 10:43:26 +00:00
#ifdef __cplusplus
}
#endif
#endif