New upstream version 17.08
[deb_dpdk.git] / examples / l3fwd / l3fwd_em_hlm_neon.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2016 Intel Corporation. All rights reserved.
5  *   Copyright(c) 2017, Linaro Limited
6  *   All rights reserved.
7  *
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  *
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of Intel Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #ifndef __L3FWD_EM_HLM_NEON_H__
36 #define __L3FWD_EM_HLM_NEON_H__
37
38 #include <arm_neon.h>
39
40 static inline void
41 get_ipv4_5tuple(struct rte_mbuf *m0, int32x4_t mask0,
42                 union ipv4_5tuple_host *key)
43 {
44         int32x4_t tmpdata0 = vld1q_s32(rte_pktmbuf_mtod_offset(m0, int32_t *,
45                                 sizeof(struct ether_hdr) +
46                                 offsetof(struct ipv4_hdr, time_to_live)));
47
48         key->xmm = vandq_s32(tmpdata0, mask0);
49 }
50
51 static inline void
52 get_ipv6_5tuple(struct rte_mbuf *m0, int32x4_t mask0,
53                 int32x4_t mask1, union ipv6_5tuple_host *key)
54 {
55         int32x4_t tmpdata0 = vld1q_s32(
56                         rte_pktmbuf_mtod_offset(m0, int *,
57                                 sizeof(struct ether_hdr) +
58                                 offsetof(struct ipv6_hdr, payload_len)));
59
60         int32x4_t tmpdata1 = vld1q_s32(
61                         rte_pktmbuf_mtod_offset(m0, int *,
62                                 sizeof(struct ether_hdr) +
63                                 offsetof(struct ipv6_hdr, payload_len) + 8));
64
65         int32x4_t tmpdata2 = vld1q_s32(
66                         rte_pktmbuf_mtod_offset(m0, int *,
67                                 sizeof(struct ether_hdr) +
68                                 offsetof(struct ipv6_hdr, payload_len) + 16));
69
70         key->xmm[0] = vandq_s32(tmpdata0, mask0);
71         key->xmm[1] = tmpdata1;
72         key->xmm[2] = vandq_s32(tmpdata2, mask1);
73 }
74 #endif /* __L3FWD_EM_HLM_NEON_H__ */