vppinfra: numa vector placement support
[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 option(VPP_USE_DLMALLOC "Use dlmalloc memory allocator." ON)
21 if(VPP_USE_DLMALLOC)
22   set(DLMALLOC 1)
23 else(VPP_USE_DLMALLOC)
24   set(DLMALLOC 0)
25 endif(VPP_USE_DLMALLOC)
26
27 find_library(NUMA numa)
28 if (NUMA)
29   set(NUMA_LIBRARY_FOUND 1)
30 else(NUMA)
31   set(NUMA_LIBRARY_FOUND 0)
32 endif()
33
34 configure_file(
35   ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in
36   ${CMAKE_BINARY_DIR}/vppinfra/config.h
37 )
38
39 install(
40   FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h
41   DESTINATION include/vppinfra
42   COMPONENT vpp-dev
43 )
44
45 ##############################################################################
46 # vppinfra sources
47 ##############################################################################
48 set(VPPINFRA_SRCS
49   backtrace.c
50   bihash_all_vector.c
51   cpu.c
52   cuckoo_template.c
53   elf.c
54   elog.c
55   error.c
56   fheap.c
57   fifo.c
58   format.c
59   graph.c
60   hash.c
61   heap.c
62   longjmp.S
63   macros.c
64   maplog.c
65   mhash.c
66   mpcap.c
67   pcap.c
68   pmalloc.c
69   pool.c
70   ptclosure.c
71   random.c
72   random_buffer.c
73   random_isaac.c
74   rbtree.c
75   serialize.c
76   slist.c
77   socket.c
78   std-formats.c
79   string.c
80   time.c
81   time_range.c
82   timing_wheel.c
83   tw_timer_2t_1w_2048sl.c
84   tw_timer_16t_2w_512sl.c
85   tw_timer_16t_1w_2048sl.c
86   tw_timer_4t_3w_256sl.c
87   tw_timer_1t_3w_1024sl_ov.c
88   unformat.c
89   unix-formats.c
90   unix-misc.c
91   valloc.c
92   vec.c
93   vector.c
94   zvec.c
95 )
96
97 set(VPPINFRA_HEADERS
98   sanitizer.h
99   bihash_16_8.h
100   bihash_24_8.h
101   bihash_40_8.h
102   bihash_48_8.h
103   bihash_8_8.h
104   bihash_template.c
105   bihash_template.h
106   bihash_vec8_8.h
107   bitmap.h
108   bitops.h
109   byte_order.h
110   cache.h
111   callback.h
112   clib_error.h
113   clib.h
114   cpu.h
115   crc32.h
116   dlist.h
117   dlmalloc.h
118   elf_clib.h
119   elf.h
120   elog.h
121   error_bootstrap.h
122   error.h
123   fheap.h
124   fifo.h
125   file.h
126   flowhash_24_16.h
127   flowhash_8_8.h
128   flowhash_template.h
129   format.h
130   graph.h
131   hash.h
132   heap.h
133   lb_hash_hash.h
134   llist.h
135   lock.h
136   longjmp.h
137   macros.h
138   maplog.h
139   math.h
140   memcpy_avx2.h
141   memcpy_avx512.h
142   memcpy_sse3.h
143   mem.h
144   mhash.h
145   mheap_bootstrap.h
146   mheap.h
147   mpcap.h
148   os.h
149   pcap.h
150   pcap_funcs.h
151   pipeline.h
152   pmalloc.h
153   pool.h
154   pmc.h
155   ptclosure.h
156   random_buffer.h
157   random.h
158   random_isaac.h
159   rbtree.h
160   serialize.h
161   sha2.h
162   slist.h
163   smp.h
164   socket.h
165   sparse_vec.h
166   string.h
167   time.h
168   time_range.h
169   timing_wheel.h
170   tw_timer_16t_1w_2048sl.h
171   tw_timer_16t_2w_512sl.h
172   tw_timer_1t_3w_1024sl_ov.h
173   tw_timer_2t_1w_2048sl.h
174   tw_timer_4t_3w_256sl.h
175   tw_timer_template.c
176   tw_timer_template.h
177   types.h
178   atomics.h
179   unix.h
180   valloc.h
181   vec_bootstrap.h
182   vec.h
183   vector_altivec.h
184   vector_avx2.h
185   vector_avx512.h
186   vector_funcs.h
187   vector.h
188   vector_neon.h
189   vector_sse42.h
190   xxhash.h
191   xy.h
192   zvec.h
193   linux/syscall.h
194   linux/sysfs.h
195 )
196
197 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
198   list(APPEND VPPINFRA_SRCS
199     elf_clib.c
200     linux/mem.c
201     linux/sysfs.c
202    )
203 endif()
204
205
206 if(VPP_USE_DLMALLOC)
207   list(APPEND VPPINFRA_SRCS
208     dlmalloc.c
209     mem_dlmalloc.c
210   )
211 else(VPP_USE_DLMALLOC)
212   list(APPEND VPPINFRA_SRCS
213     mheap.c
214     mem_mheap.c
215   )
216 endif(VPP_USE_DLMALLOC)
217
218 add_vpp_library(vppinfra
219   SOURCES ${VPPINFRA_SRCS}
220   LINK_LIBRARIES m ${NUMA}
221   INSTALL_HEADERS ${VPPINFRA_HEADERS}
222   COMPONENT libvppinfra
223 )
224
225 ##############################################################################
226 # vppinfra headers
227 ##############################################################################
228 option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
229 if(VPP_BUILD_VPPINFRA_TESTS)
230   foreach(test
231     bihash_vec88
232     cuckoo_template
233     dlist
234     elf
235     elog
236     fifo
237     flowhash_template
238     format
239     fpool
240     hash
241     heap
242     longjmp
243     macros
244     maplog
245     pmalloc
246     pool_iterate
247     ptclosure
248     random
249     random_isaac
250     rwlock
251     serialize
252     slist
253     socket
254     spinlock
255     time
256     time_range
257     timing_wheel
258     tw_timer
259     valloc
260     vec
261     zvec
262   )
263     add_vpp_executable(test_${test}
264       SOURCES test_${test}.c
265       LINK_LIBRARIES vppinfra pthread
266       )
267   endforeach()
268
269   foreach(test bihash_template cuckoo_bihash)
270     add_vpp_executable(test_${test}
271       SOURCES test_${test}.c
272       LINK_LIBRARIES vppinfra Threads::Threads
273       )
274   endforeach()
275 endif(VPP_BUILD_VPPINFRA_TESTS)