blob: 35fe28aff0621c202b7cd1baba15181ace97e59b [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 +020020option(VPP_USE_DLMALLOC "Use dlmalloc memory allocator." ON)
21if(VPP_USE_DLMALLOC)
22 set(DLMALLOC 1)
23else(VPP_USE_DLMALLOC)
24 set(DLMALLOC 0)
25endif(VPP_USE_DLMALLOC)
26
27configure_file(
28 ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in
29 ${CMAKE_BINARY_DIR}/vppinfra/config.h
30)
31
32install(
33 FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h
34 DESTINATION include/vppinfra
Damjan Marion43b06062018-08-29 22:20:45 +020035 COMPONENT vpp-dev
Damjan Marion612dd6a2018-07-30 12:45:07 +020036)
37
38##############################################################################
39# vppinfra sources
40##############################################################################
41set(VPPINFRA_SRCS
Damjan Marion612dd6a2018-07-30 12:45:07 +020042 backtrace.c
Dave Barach32dcd3b2019-07-08 12:25:38 -040043 bihash_all_vector.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020044 cpu.c
45 cuckoo_template.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020046 elf.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020047 elog.c
48 error.c
49 fheap.c
50 fifo.c
51 format.c
52 graph.c
53 hash.c
54 heap.c
55 longjmp.S
56 macros.c
57 maplog.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020058 mhash.c
Gary Boona9ed6f72019-07-22 10:57:56 -040059 mpcap.c
Dave Barach3ae28732018-11-16 17:19:00 -050060 pcap.c
Damjan Marion68b4da62018-09-30 18:26:20 +020061 pmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020062 pool.c
63 ptclosure.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020064 random.c
65 random_buffer.c
66 random_isaac.c
Florin Coras672d5fc2019-04-15 17:28:51 -070067 rbtree.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020068 serialize.c
69 slist.c
70 socket.c
71 std-formats.c
72 string.c
73 time.c
74 time_range.c
75 timer.c
76 timing_wheel.c
77 tw_timer_2t_1w_2048sl.c
78 tw_timer_16t_2w_512sl.c
79 tw_timer_16t_1w_2048sl.c
80 tw_timer_4t_3w_256sl.c
81 tw_timer_1t_3w_1024sl_ov.c
82 unformat.c
83 unix-formats.c
84 unix-misc.c
85 valloc.c
86 vec.c
87 vector.c
88 zvec.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020089)
90
Damjan Marion4553c952018-08-26 11:04:40 +020091set(VPPINFRA_HEADERS
Damjan Marion612dd6a2018-07-30 12:45:07 +020092 bihash_16_8.h
93 bihash_24_8.h
94 bihash_40_8.h
95 bihash_48_8.h
96 bihash_8_8.h
97 bihash_template.c
98 bihash_template.h
99 bihash_vec8_8.h
100 bitmap.h
101 bitops.h
102 byte_order.h
103 cache.h
Dave Barach5f2cfb22019-05-20 10:28:57 -0400104 callback.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200105 clib_error.h
106 clib.h
107 cpu.h
108 crc32.h
109 dlist.h
110 dlmalloc.h
111 elf_clib.h
112 elf.h
113 elog.h
114 error_bootstrap.h
115 error.h
116 fheap.h
117 fifo.h
118 file.h
119 flowhash_24_16.h
120 flowhash_8_8.h
121 flowhash_template.h
122 format.h
123 graph.h
124 hash.h
125 heap.h
126 lb_hash_hash.h
Florin Corasb957d802019-07-09 19:02:33 -0700127 llist.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200128 lock.h
129 longjmp.h
130 macros.h
131 maplog.h
132 math.h
133 memcpy_avx2.h
134 memcpy_avx512.h
135 memcpy_sse3.h
136 mem.h
137 mhash.h
138 mheap_bootstrap.h
139 mheap.h
Gary Boona9ed6f72019-07-22 10:57:56 -0400140 mpcap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200141 os.h
Dave Barach3ae28732018-11-16 17:19:00 -0500142 pcap.h
143 pcap_funcs.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200144 pipeline.h
Damjan Marion68b4da62018-09-30 18:26:20 +0200145 pmalloc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200146 pool.h
Dave Barach4d1a8662018-09-10 12:31:15 -0400147 pmc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200148 ptclosure.h
149 random_buffer.h
150 random.h
151 random_isaac.h
Florin Coras672d5fc2019-04-15 17:28:51 -0700152 rbtree.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200153 serialize.h
Damjan Marioncf18ca92019-04-13 00:13:34 +0200154 sha2.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200155 slist.h
156 smp.h
157 socket.h
158 sparse_vec.h
159 string.h
160 time.h
161 time_range.h
162 timer.h
163 timing_wheel.h
164 tw_timer_16t_1w_2048sl.h
165 tw_timer_16t_2w_512sl.h
166 tw_timer_1t_3w_1024sl_ov.h
167 tw_timer_2t_1w_2048sl.h
168 tw_timer_4t_3w_256sl.h
169 tw_timer_template.c
170 tw_timer_template.h
171 types.h
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000172 atomics.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200173 unix.h
174 valgrind.h
175 valloc.h
176 vec_bootstrap.h
177 vec.h
178 vector_altivec.h
179 vector_avx2.h
180 vector_avx512.h
181 vector_funcs.h
182 vector.h
183 vector_neon.h
184 vector_sse42.h
185 xxhash.h
186 xy.h
187 zvec.h
188 linux/syscall.h
189 linux/sysfs.h
190)
191
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200192if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
193 list(APPEND VPPINFRA_SRCS
194 elf_clib.c
195 linux/mem.c
196 linux/sysfs.c
197 )
198endif()
199
Damjan Marion4553c952018-08-26 11:04:40 +0200200
201if(VPP_USE_DLMALLOC)
202 list(APPEND VPPINFRA_SRCS
203 dlmalloc.c
204 mem_dlmalloc.c
205 )
206else(VPP_USE_DLMALLOC)
207 list(APPEND VPPINFRA_SRCS
208 mheap.c
209 mem_mheap.c
210 )
211endif(VPP_USE_DLMALLOC)
212
213add_vpp_library(vppinfra
214 SOURCES ${VPPINFRA_SRCS}
215 LINK_LIBRARIES m
216 INSTALL_HEADERS ${VPPINFRA_HEADERS}
Damjan Marion43b06062018-08-29 22:20:45 +0200217 COMPONENT libvppinfra
Damjan Marion4553c952018-08-26 11:04:40 +0200218)
219
220##############################################################################
221# vppinfra headers
222##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200223option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
224if(VPP_BUILD_VPPINFRA_TESTS)
Damjan Marion4553c952018-08-26 11:04:40 +0200225 foreach(test
Damjan Marion612dd6a2018-07-30 12:45:07 +0200226 bihash_vec88
Damjan Marion612dd6a2018-07-30 12:45:07 +0200227 cuckoo_template
228 dlist
229 elf
230 elog
231 fifo
232 flowhash_template
233 format
234 fpool
235 hash
236 heap
237 longjmp
238 macros
239 maplog
Damjan Marion68b4da62018-09-30 18:26:20 +0200240 pmalloc
Damjan Marion612dd6a2018-07-30 12:45:07 +0200241 pool_iterate
242 ptclosure
243 random
244 random_isaac
245 serialize
246 slist
247 socket
jaszha039a4e6312019-06-19 14:07:05 -0500248 spinlock
Damjan Marion612dd6a2018-07-30 12:45:07 +0200249 time
250 time_range
251 timing_wheel
252 tw_timer
253 valloc
254 vec
Damjan Marion612dd6a2018-07-30 12:45:07 +0200255 zvec
256 )
Damjan Marion4553c952018-08-26 11:04:40 +0200257 add_vpp_executable(test_${test}
258 SOURCES test_${test}.c
259 LINK_LIBRARIES vppinfra
260 )
Damjan Marion612dd6a2018-07-30 12:45:07 +0200261 endforeach()
262
Damjan Marion4553c952018-08-26 11:04:40 +0200263 foreach(test bihash_template cuckoo_bihash)
264 add_vpp_executable(test_${test}
265 SOURCES test_${test}.c
266 LINK_LIBRARIES vppinfra Threads::Threads
267 )
268 endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200269endif(VPP_BUILD_VPPINFRA_TESTS)