blob: 9e8bc3c442cec993dfde417bb69ac9297604458a [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
30 ${CMAKE_BINARY_DIR}/vppinfra/config.h
31)
32
33install(
34 FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h
35 DESTINATION include/vppinfra
Damjan Marion43b06062018-08-29 22:20:45 +020036 COMPONENT vpp-dev
Damjan Marion612dd6a2018-07-30 12:45:07 +020037)
38
39##############################################################################
40# vppinfra sources
41##############################################################################
42set(VPPINFRA_SRCS
Damjan Marion612dd6a2018-07-30 12:45:07 +020043 backtrace.c
Dave Barach32dcd3b2019-07-08 12:25:38 -040044 bihash_all_vector.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020045 cpu.c
Dave Barach2c8e0022020-02-11 15:06:34 -050046 dlmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020047 elf.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020048 elog.c
49 error.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020050 fifo.c
51 format.c
52 graph.c
53 hash.c
54 heap.c
55 longjmp.S
56 macros.c
57 maplog.c
Damjan Marion57d1ec02020-09-16 21:15:44 +020058 mem.c
Dave Barach2c8e0022020-02-11 15:06:34 -050059 mem_dlmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020060 mhash.c
Gary Boona9ed6f72019-07-22 10:57:56 -040061 mpcap.c
Dave Barach3ae28732018-11-16 17:19:00 -050062 pcap.c
Damjan Marion68b4da62018-09-30 18:26:20 +020063 pmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020064 pool.c
65 ptclosure.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020066 random_buffer.c
Dave Barach2c8e0022020-02-11 15:06:34 -050067 random.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020068 random_isaac.c
Florin Coras672d5fc2019-04-15 17:28:51 -070069 rbtree.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020070 serialize.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020071 socket.c
72 std-formats.c
73 string.c
74 time.c
75 time_range.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020076 timing_wheel.c
Dave Barachd7b828f2020-04-01 16:54:00 -040077 tw_timer_2t_2w_512sl.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020078 tw_timer_16t_1w_2048sl.c
Dave Barach2c8e0022020-02-11 15:06:34 -050079 tw_timer_16t_2w_512sl.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020080 tw_timer_1t_3w_1024sl_ov.c
Dave Barach2c8e0022020-02-11 15:06:34 -050081 tw_timer_2t_1w_2048sl.c
82 tw_timer_4t_3w_256sl.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020083 unformat.c
84 unix-formats.c
85 unix-misc.c
86 valloc.c
87 vec.c
88 vector.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020089)
90
Damjan Marion4553c952018-08-26 11:04:40 +020091set(VPPINFRA_HEADERS
Benoît Ganne9fb6d402019-04-15 15:28:21 +020092 sanitizer.h
Damjan Marion612dd6a2018-07-30 12:45:07 +020093 bihash_16_8.h
94 bihash_24_8.h
95 bihash_40_8.h
96 bihash_48_8.h
97 bihash_8_8.h
98 bihash_template.c
99 bihash_template.h
100 bihash_vec8_8.h
101 bitmap.h
102 bitops.h
103 byte_order.h
104 cache.h
Dave Barach5f2cfb22019-05-20 10:28:57 -0400105 callback.h
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000106 callback_data.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200107 clib_error.h
108 clib.h
109 cpu.h
110 crc32.h
111 dlist.h
112 dlmalloc.h
113 elf_clib.h
114 elf.h
115 elog.h
116 error_bootstrap.h
117 error.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200118 fifo.h
119 file.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200120 format.h
121 graph.h
122 hash.h
123 heap.h
124 lb_hash_hash.h
Florin Corasb957d802019-07-09 19:02:33 -0700125 llist.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200126 lock.h
127 longjmp.h
128 macros.h
129 maplog.h
130 math.h
131 memcpy_avx2.h
132 memcpy_avx512.h
133 memcpy_sse3.h
134 mem.h
135 mhash.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200136 mheap.h
Gary Boona9ed6f72019-07-22 10:57:56 -0400137 mpcap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200138 os.h
Dave Barach3ae28732018-11-16 17:19:00 -0500139 pcap.h
140 pcap_funcs.h
Damjan Marion68b4da62018-09-30 18:26:20 +0200141 pmalloc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200142 pool.h
Dave Barach4d1a8662018-09-10 12:31:15 -0400143 pmc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200144 ptclosure.h
145 random_buffer.h
146 random.h
147 random_isaac.h
Florin Coras672d5fc2019-04-15 17:28:51 -0700148 rbtree.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200149 serialize.h
Damjan Marioncf18ca92019-04-13 00:13:34 +0200150 sha2.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200151 smp.h
152 socket.h
153 sparse_vec.h
154 string.h
155 time.h
156 time_range.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200157 timing_wheel.h
Yu Sun6f5b72e2020-04-16 13:56:12 -0400158 tw_timer_2t_2w_512sl.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200159 tw_timer_16t_1w_2048sl.h
160 tw_timer_16t_2w_512sl.h
161 tw_timer_1t_3w_1024sl_ov.h
162 tw_timer_2t_1w_2048sl.h
163 tw_timer_4t_3w_256sl.h
164 tw_timer_template.c
165 tw_timer_template.h
166 types.h
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000167 atomics.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200168 unix.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200169 valloc.h
170 vec_bootstrap.h
171 vec.h
172 vector_altivec.h
173 vector_avx2.h
174 vector_avx512.h
175 vector_funcs.h
176 vector.h
177 vector_neon.h
178 vector_sse42.h
Benoît Gannebe7dbbb2020-04-24 14:37:10 +0200179 warnings.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200180 xxhash.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200181 linux/syscall.h
182 linux/sysfs.h
183)
184
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200185if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
186 list(APPEND VPPINFRA_SRCS
187 elf_clib.c
188 linux/mem.c
189 linux/sysfs.c
190 )
191endif()
192
Damjan Marion4553c952018-08-26 11:04:40 +0200193add_vpp_library(vppinfra
194 SOURCES ${VPPINFRA_SRCS}
Florin Coras4c959952020-02-09 18:09:31 +0000195 LINK_LIBRARIES m
Damjan Marion4553c952018-08-26 11:04:40 +0200196 INSTALL_HEADERS ${VPPINFRA_HEADERS}
Damjan Marion43b06062018-08-29 22:20:45 +0200197 COMPONENT libvppinfra
Damjan Marion4553c952018-08-26 11:04:40 +0200198)
199
200##############################################################################
201# vppinfra headers
202##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200203option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
204if(VPP_BUILD_VPPINFRA_TESTS)
Damjan Marion4553c952018-08-26 11:04:40 +0200205 foreach(test
Damjan Marion612dd6a2018-07-30 12:45:07 +0200206 bihash_vec88
Damjan Marion612dd6a2018-07-30 12:45:07 +0200207 dlist
208 elf
209 elog
210 fifo
Damjan Marion612dd6a2018-07-30 12:45:07 +0200211 format
212 fpool
213 hash
214 heap
215 longjmp
216 macros
217 maplog
Damjan Marion68b4da62018-09-30 18:26:20 +0200218 pmalloc
Damjan Marion612dd6a2018-07-30 12:45:07 +0200219 pool_iterate
220 ptclosure
221 random
222 random_isaac
jaszha0325ab6cf2019-07-01 17:20:52 -0500223 rwlock
Damjan Marion612dd6a2018-07-30 12:45:07 +0200224 serialize
Damjan Marion612dd6a2018-07-30 12:45:07 +0200225 socket
jaszha039a4e6312019-06-19 14:07:05 -0500226 spinlock
Damjan Marion612dd6a2018-07-30 12:45:07 +0200227 time
228 time_range
Damjan Marion612dd6a2018-07-30 12:45:07 +0200229 tw_timer
230 valloc
231 vec
Damjan Marion612dd6a2018-07-30 12:45:07 +0200232 )
Damjan Marion4553c952018-08-26 11:04:40 +0200233 add_vpp_executable(test_${test}
234 SOURCES test_${test}.c
Florin Coras4f944642019-08-01 10:54:06 -0700235 LINK_LIBRARIES vppinfra pthread
Damjan Marion4553c952018-08-26 11:04:40 +0200236 )
Damjan Marion612dd6a2018-07-30 12:45:07 +0200237 endforeach()
238
Dave Barach053d0932020-04-22 10:02:31 -0400239 foreach(test bihash_template)
Damjan Marion4553c952018-08-26 11:04:40 +0200240 add_vpp_executable(test_${test}
241 SOURCES test_${test}.c
242 LINK_LIBRARIES vppinfra Threads::Threads
243 )
244 endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200245endif(VPP_BUILD_VPPINFRA_TESTS)