blob: 7a73fe531d7f43c1f5ce27e1dd31cce5d99bb71f [file] [log] [blame]
Damjan Marion612dd6a2018-07-30 12:45:07 +02001# 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
14enable_language(ASM)
15
16##############################################################################
17# Generate vppinfra/config.h
18##############################################################################
Damjan Marionedc43872018-09-02 11:16:00 +020019set(LOG2_CACHE_LINE_BYTES ${VPP_LOG2_CACHE_LINE_SIZE})
Damjan Marion612dd6a2018-07-30 12:45:07 +020020
Dave Barach98bd7572020-02-10 10:16:40 -050021option(VPP_VECTOR_GROW_BY_ONE "Vectors grow by one, instead of 3/2" OFF)
22if(VPP_VECTOR_GROW_BY_ONE)
23 set(VECTOR_GROW_BY_ONE 1)
24else(VPP_VECTOR_GROW_BY_ONE)
25 set(VECTOR_GROW_BY_ONE 0)
26endif(VPP_VECTOR_GROW_BY_ONE)
27
Damjan Marion612dd6a2018-07-30 12:45:07 +020028configure_file(
29 ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in
Damjan Marion88b2e362021-04-29 18:47:25 +020030 ${CMAKE_CURRENT_BINARY_DIR}/config.h
Damjan Marion612dd6a2018-07-30 12:45:07 +020031)
32
33install(
Damjan Marion88b2e362021-04-29 18:47:25 +020034 FILES ${CMAKE_CURRENT_BINARY_DIR}/config.h
Nick Browne3cf4d02021-09-15 14:25:40 +010035 DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/vppinfra
Damjan Marion43b06062018-08-29 22:20:45 +020036 COMPONENT vpp-dev
Damjan Marion612dd6a2018-07-30 12:45:07 +020037)
38
Damjan Mariondae1c7e2020-10-17 13:32:25 +020039add_definitions(-fvisibility=hidden)
40
Ole Troandf87f802020-11-18 19:17:48 +010041# Ensure symbols from cJSON are exported
Filip Tehlar36217e32021-07-23 08:51:10 +000042set_source_files_properties( cJSON.c jsonformat.c PROPERTIES
Ole Troandf87f802020-11-18 19:17:48 +010043 COMPILE_DEFINITIONS " CJSON_API_VISIBILITY " )
44
45
Damjan Marion612dd6a2018-07-30 12:45:07 +020046##############################################################################
47# vppinfra sources
48##############################################################################
49set(VPPINFRA_SRCS
Damjan Marion612dd6a2018-07-30 12:45:07 +020050 backtrace.c
Damjan Marion7f57f502021-04-15 16:13:20 +020051 bitmap.c
Dave Barach32dcd3b2019-07-08 12:25:38 -040052 bihash_all_vector.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020053 cpu.c
Dave Barach2c8e0022020-02-11 15:06:34 -050054 dlmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020055 elf.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020056 elog.c
57 error.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020058 fifo.c
59 format.c
Nathan Skrzypczak0e658402021-09-17 11:51:46 +020060 format_table.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020061 graph.c
62 hash.c
63 heap.c
Damjan Marion94100532020-11-06 23:25:57 +010064 interrupt.c
Filip Tehlar36217e32021-07-23 08:51:10 +000065 jsonformat.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020066 longjmp.S
67 macros.c
68 maplog.c
Damjan Marion57d1ec02020-09-16 21:15:44 +020069 mem.c
Damjan Marion0da81682020-12-22 14:58:56 +010070 mem_bulk.c
Dave Barach2c8e0022020-02-11 15:06:34 -050071 mem_dlmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020072 mhash.c
Gary Boona9ed6f72019-07-22 10:57:56 -040073 mpcap.c
Dave Barach3ae28732018-11-16 17:19:00 -050074 pcap.c
Damjan Marion68b4da62018-09-30 18:26:20 +020075 pmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020076 pool.c
77 ptclosure.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020078 random_buffer.c
Dave Barach2c8e0022020-02-11 15:06:34 -050079 random.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020080 random_isaac.c
Florin Coras672d5fc2019-04-15 17:28:51 -070081 rbtree.c
Benoît Ganned4721b22021-06-09 17:20:16 +020082 sanitizer.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020083 serialize.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020084 socket.c
85 std-formats.c
86 string.c
87 time.c
88 time_range.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020089 timing_wheel.c
Dave Barachd7b828f2020-04-01 16:54:00 -040090 tw_timer_2t_2w_512sl.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020091 tw_timer_16t_1w_2048sl.c
Dave Barach2c8e0022020-02-11 15:06:34 -050092 tw_timer_16t_2w_512sl.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020093 tw_timer_1t_3w_1024sl_ov.c
Dave Barach2c8e0022020-02-11 15:06:34 -050094 tw_timer_2t_1w_2048sl.c
95 tw_timer_4t_3w_256sl.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020096 unformat.c
97 unix-formats.c
98 unix-misc.c
99 valloc.c
100 vec.c
101 vector.c
Ole Troandf87f802020-11-18 19:17:48 +0100102 cJSON.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200103)
104
Damjan Marion4553c952018-08-26 11:04:40 +0200105set(VPPINFRA_HEADERS
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200106 sanitizer.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200107 bihash_16_8.h
108 bihash_24_8.h
Matthew Smithf613a442021-01-20 08:59:10 -0600109 bihash_32_8.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200110 bihash_40_8.h
111 bihash_48_8.h
112 bihash_8_8.h
jiangxiaoming498889a2020-10-22 09:08:04 +0800113 bihash_8_16.h
114 bihash_24_16.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200115 bihash_template.c
116 bihash_template.h
117 bihash_vec8_8.h
118 bitmap.h
119 bitops.h
120 byte_order.h
121 cache.h
Dave Barach5f2cfb22019-05-20 10:28:57 -0400122 callback.h
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000123 callback_data.h
Ole Troandf87f802020-11-18 19:17:48 +0100124 cJSON.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200125 clib_error.h
126 clib.h
127 cpu.h
128 crc32.h
129 dlist.h
130 dlmalloc.h
131 elf_clib.h
132 elf.h
133 elog.h
134 error_bootstrap.h
135 error.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200136 fifo.h
137 file.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200138 format.h
Nathan Skrzypczak0e658402021-09-17 11:51:46 +0200139 format_table.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200140 graph.h
141 hash.h
142 heap.h
Damjan Marion94100532020-11-06 23:25:57 +0100143 interrupt.h
Filip Tehlar36217e32021-07-23 08:51:10 +0000144 jsonformat.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200145 lb_hash_hash.h
Florin Corasb957d802019-07-09 19:02:33 -0700146 llist.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200147 lock.h
148 longjmp.h
149 macros.h
150 maplog.h
151 math.h
Damjan Marion856d0622021-04-21 21:11:35 +0200152 memcpy.h
Damjan Marion56f54af2021-10-12 20:30:02 +0200153 memcpy_x86_64.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200154 mem.h
155 mhash.h
Gary Boona9ed6f72019-07-22 10:57:56 -0400156 mpcap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200157 os.h
Dave Barach3ae28732018-11-16 17:19:00 -0500158 pcap.h
159 pcap_funcs.h
Damjan Marion68b4da62018-09-30 18:26:20 +0200160 pmalloc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200161 pool.h
162 ptclosure.h
163 random_buffer.h
164 random.h
165 random_isaac.h
Florin Coras672d5fc2019-04-15 17:28:51 -0700166 rbtree.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200167 serialize.h
Damjan Marioncf18ca92019-04-13 00:13:34 +0200168 sha2.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200169 smp.h
170 socket.h
171 sparse_vec.h
172 string.h
173 time.h
174 time_range.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200175 timing_wheel.h
Yu Sun6f5b72e2020-04-16 13:56:12 -0400176 tw_timer_2t_2w_512sl.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200177 tw_timer_16t_1w_2048sl.h
178 tw_timer_16t_2w_512sl.h
179 tw_timer_1t_3w_1024sl_ov.h
180 tw_timer_2t_1w_2048sl.h
181 tw_timer_4t_3w_256sl.h
182 tw_timer_template.c
183 tw_timer_template.h
184 types.h
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000185 atomics.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200186 unix.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200187 valloc.h
188 vec_bootstrap.h
189 vec.h
190 vector_altivec.h
191 vector_avx2.h
192 vector_avx512.h
Mohsin Kazmi0ec7dad2021-07-15 10:34:36 +0000193 vector/array_mask.h
Damjan Marion4c276f02021-11-06 13:17:31 +0100194 vector/compress.h
195 vector/count_equal.h
Damjan Marion4c53ff42021-10-28 23:03:04 +0200196 vector/index_to_ptr.h
Damjan Marionaa63bc62021-11-08 11:18:30 +0000197 vector/ip_csum.h
Damjan Marion4c276f02021-11-06 13:17:31 +0100198 vector/mask_compare.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200199 vector.h
200 vector_neon.h
201 vector_sse42.h
Benoît Gannebe7dbbb2020-04-24 14:37:10 +0200202 warnings.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200203 xxhash.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200204 linux/sysfs.h
205)
206
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200207if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
208 list(APPEND VPPINFRA_SRCS
209 elf_clib.c
210 linux/mem.c
211 linux/sysfs.c
Nathan Skrzypczak4cef6de2021-07-19 18:21:43 +0200212 linux/netns.c
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200213 )
214endif()
215
Nathan Moos67d7acd2021-01-15 15:50:59 -0800216option(VPP_USE_EXTERNAL_LIBEXECINFO "Use external libexecinfo (useful for non-glibc targets)." OFF)
217if(VPP_USE_EXTERNAL_LIBEXECINFO)
218 set(EXECINFO_LIB execinfo)
219endif()
Damjan Marion4553c952018-08-26 11:04:40 +0200220add_vpp_library(vppinfra
221 SOURCES ${VPPINFRA_SRCS}
Nathan Moos67d7acd2021-01-15 15:50:59 -0800222 LINK_LIBRARIES m ${EXECINFO_LIB}
Damjan Marion4553c952018-08-26 11:04:40 +0200223 INSTALL_HEADERS ${VPPINFRA_HEADERS}
Damjan Marion43b06062018-08-29 22:20:45 +0200224 COMPONENT libvppinfra
Damjan Marionaf7892c2020-10-22 14:23:47 +0200225 LTO
Damjan Marion4553c952018-08-26 11:04:40 +0200226)
227
228##############################################################################
229# vppinfra headers
230##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200231option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
232if(VPP_BUILD_VPPINFRA_TESTS)
Damjan Marion4553c952018-08-26 11:04:40 +0200233 foreach(test
Damjan Marion612dd6a2018-07-30 12:45:07 +0200234 bihash_vec88
Damjan Marion612dd6a2018-07-30 12:45:07 +0200235 dlist
236 elf
237 elog
238 fifo
Damjan Marion612dd6a2018-07-30 12:45:07 +0200239 format
240 fpool
241 hash
242 heap
243 longjmp
244 macros
245 maplog
Damjan Marion68b4da62018-09-30 18:26:20 +0200246 pmalloc
Damjan Marion612dd6a2018-07-30 12:45:07 +0200247 pool_iterate
248 ptclosure
249 random
250 random_isaac
jaszha0325ab6cf2019-07-01 17:20:52 -0500251 rwlock
Damjan Marion612dd6a2018-07-30 12:45:07 +0200252 serialize
Damjan Marion612dd6a2018-07-30 12:45:07 +0200253 socket
jaszha039a4e6312019-06-19 14:07:05 -0500254 spinlock
Damjan Marion612dd6a2018-07-30 12:45:07 +0200255 time
256 time_range
Damjan Marion612dd6a2018-07-30 12:45:07 +0200257 tw_timer
258 valloc
259 vec
Damjan Marion612dd6a2018-07-30 12:45:07 +0200260 )
Damjan Marion4553c952018-08-26 11:04:40 +0200261 add_vpp_executable(test_${test}
262 SOURCES test_${test}.c
Florin Coras4f944642019-08-01 10:54:06 -0700263 LINK_LIBRARIES vppinfra pthread
Damjan Marion4553c952018-08-26 11:04:40 +0200264 )
Damjan Marion612dd6a2018-07-30 12:45:07 +0200265 endforeach()
266
Dave Barach053d0932020-04-22 10:02:31 -0400267 foreach(test bihash_template)
Damjan Marion4553c952018-08-26 11:04:40 +0200268 add_vpp_executable(test_${test}
269 SOURCES test_${test}.c
270 LINK_LIBRARIES vppinfra Threads::Threads
271 )
272 endforeach()
Damjan Marione3e35552021-05-06 17:34:49 +0200273
274set(test_files
Mohsin Kazmi0ec7dad2021-07-15 10:34:36 +0000275 vector/test/array_mask.c
Damjan Marion66b057e2021-11-06 13:26:58 +0100276 vector/test/compress.c
277 vector/test/count_equal.c
Damjan Marion4c53ff42021-10-28 23:03:04 +0200278 vector/test/index_to_ptr.c
Damjan Marionaa63bc62021-11-08 11:18:30 +0000279 vector/test/ip_csum.c
Damjan Marion66b057e2021-11-06 13:26:58 +0100280 vector/test/mask_compare.c
Damjan Marion56f54af2021-10-12 20:30:02 +0200281 vector/test/memcpy_x86_64.c
Damjan Marione3e35552021-05-06 17:34:49 +0200282)
283
284add_vpp_executable(test_vector_funcs
285 SOURCES
Damjan Mariond154a172021-07-13 21:12:41 +0200286 vector/test/test.c
Damjan Marione3e35552021-05-06 17:34:49 +0200287 ${test_files}
288 LINK_LIBRARIES vppinfra
289)
290
291vpp_library_set_multiarch_sources(test_vector_funcs
292 SOURCES
293 ${test_files}
294)
295
Damjan Marion612dd6a2018-07-30 12:45:07 +0200296endif(VPP_BUILD_VPPINFRA_TESTS)