vppinfra: add tw_timer_2t_2w_512sl variant
[vpp.git] / src / vppinfra / CMakeLists.txt
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 enable_language(ASM)
15
16 ##############################################################################
17 # Generate vppinfra/config.h
18 ##############################################################################
19 set(LOG2_CACHE_LINE_BYTES ${VPP_LOG2_CACHE_LINE_SIZE})
20
21 option(VPP_VECTOR_GROW_BY_ONE "Vectors grow by one, instead of 3/2" OFF)
22 if(VPP_VECTOR_GROW_BY_ONE)
23   set(VECTOR_GROW_BY_ONE 1)
24 else(VPP_VECTOR_GROW_BY_ONE)
25   set(VECTOR_GROW_BY_ONE 0)
26 endif(VPP_VECTOR_GROW_BY_ONE)
27
28 configure_file(
29   ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in
30   ${CMAKE_BINARY_DIR}/vppinfra/config.h
31 )
32
33 install(
34   FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h
35   DESTINATION include/vppinfra
36   COMPONENT vpp-dev
37 )
38
39 ##############################################################################
40 # vppinfra sources
41 ##############################################################################
42 set(VPPINFRA_SRCS
43   backtrace.c
44   bihash_all_vector.c
45   cpu.c
46   dlmalloc.c
47   elf.c
48   elog.c
49   error.c
50   fheap.c
51   fifo.c
52   format.c
53   graph.c
54   hash.c
55   heap.c
56   longjmp.S
57   macros.c
58   maplog.c
59   mem_dlmalloc.c
60   mhash.c
61   mpcap.c
62   pcap.c
63   pmalloc.c
64   pool.c
65   ptclosure.c
66   random_buffer.c
67   random.c
68   random_isaac.c
69   rbtree.c
70   serialize.c
71   slist.c
72   socket.c
73   std-formats.c
74   string.c
75   time.c
76   time_range.c
77   timing_wheel.c
78   tw_timer_16t_1w_2048sl.c
79   tw_timer_16t_2w_512sl.c
80   tw_timer_1t_3w_1024sl_ov.c
81   tw_timer_2t_1w_2048sl.c
82   tw_timer_4t_3w_256sl.c
83   unformat.c
84   unix-formats.c
85   unix-misc.c
86   valloc.c
87   vec.c
88   vector.c
89   zvec.c
90 )
91
92 set(VPPINFRA_HEADERS
93   sanitizer.h
94   bihash_16_8.h
95   bihash_24_8.h
96   bihash_40_8.h
97   bihash_48_8.h
98   bihash_8_8.h
99   bihash_template.c
100   bihash_template.h
101   bihash_vec8_8.h
102   bitmap.h
103   bitops.h
104   byte_order.h
105   cache.h
106   callback.h
107   clib_error.h
108   clib.h
109   cpu.h
110   crc32.h
111   cuckoo_8_8.h
112   cuckoo_16_8.h
113   cuckoo_template.h
114   cuckoo_template.c
115   dlist.h
116   dlmalloc.h
117   elf_clib.h
118   elf.h
119   elog.h
120   error_bootstrap.h
121   error.h
122   fheap.h
123   fifo.h
124   file.h
125   flowhash_24_16.h
126   flowhash_8_8.h
127   flowhash_template.h
128   format.h
129   graph.h
130   hash.h
131   heap.h
132   lb_hash_hash.h
133   llist.h
134   lock.h
135   longjmp.h
136   macros.h
137   maplog.h
138   math.h
139   memcpy_avx2.h
140   memcpy_avx512.h
141   memcpy_sse3.h
142   mem.h
143   mhash.h
144   mheap.h
145   mpcap.h
146   os.h
147   pcap.h
148   pcap_funcs.h
149   pipeline.h
150   pmalloc.h
151   pool.h
152   pmc.h
153   ptclosure.h
154   random_buffer.h
155   random.h
156   random_isaac.h
157   rbtree.h
158   serialize.h
159   sha2.h
160   slist.h
161   smp.h
162   socket.h
163   sparse_vec.h
164   string.h
165   time.h
166   time_range.h
167   timing_wheel.h
168   tw_timer_2t_2w_512sl.c
169   tw_timer_16t_1w_2048sl.h
170   tw_timer_16t_2w_512sl.h
171   tw_timer_1t_3w_1024sl_ov.h
172   tw_timer_2t_1w_2048sl.h
173   tw_timer_4t_3w_256sl.h
174   tw_timer_template.c
175   tw_timer_template.h
176   types.h
177   atomics.h
178   unix.h
179   valloc.h
180   vec_bootstrap.h
181   vec.h
182   vector_altivec.h
183   vector_avx2.h
184   vector_avx512.h
185   vector_funcs.h
186   vector.h
187   vector_neon.h
188   vector_sse42.h
189   xxhash.h
190   xy.h
191   zvec.h
192   linux/syscall.h
193   linux/sysfs.h
194 )
195
196 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
197   list(APPEND VPPINFRA_SRCS
198     elf_clib.c
199     linux/mem.c
200     linux/sysfs.c
201    )
202 endif()
203
204 add_vpp_library(vppinfra
205   SOURCES ${VPPINFRA_SRCS}
206   LINK_LIBRARIES m
207   INSTALL_HEADERS ${VPPINFRA_HEADERS}
208   COMPONENT libvppinfra
209 )
210
211 ##############################################################################
212 # vppinfra headers
213 ##############################################################################
214 option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
215 if(VPP_BUILD_VPPINFRA_TESTS)
216   foreach(test
217     bihash_vec88
218     cuckoo_template
219     dlist
220     elf
221     elog
222     fifo
223     flowhash_template
224     format
225     fpool
226     hash
227     heap
228     longjmp
229     macros
230     maplog
231     pmalloc
232     pool_iterate
233     ptclosure
234     random
235     random_isaac
236     rwlock
237     serialize
238     slist
239     socket
240     spinlock
241     time
242     time_range
243     timing_wheel
244     tw_timer
245     valloc
246     vec
247     zvec
248   )
249     add_vpp_executable(test_${test}
250       SOURCES test_${test}.c
251       LINK_LIBRARIES vppinfra pthread
252       )
253   endforeach()
254
255   foreach(test bihash_template cuckoo_bihash)
256     add_vpp_executable(test_${test}
257       SOURCES test_${test}.c
258       LINK_LIBRARIES vppinfra Threads::Threads
259       )
260   endforeach()
261 endif(VPP_BUILD_VPPINFRA_TESTS)