blob: a42bcb818a53dd3171934cb2ed9945c43616ed20 [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
43 cpu.c
44 cuckoo_template.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020045 elf.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020046 elog.c
47 error.c
48 fheap.c
49 fifo.c
50 format.c
51 graph.c
52 hash.c
53 heap.c
54 longjmp.S
55 macros.c
56 maplog.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020057 mhash.c
Dave Barach3ae28732018-11-16 17:19:00 -050058 pcap.c
Damjan Marion68b4da62018-09-30 18:26:20 +020059 pmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020060 pool.c
61 ptclosure.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020062 random.c
63 random_buffer.c
64 random_isaac.c
Florin Coras672d5fc2019-04-15 17:28:51 -070065 rbtree.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020066 serialize.c
67 slist.c
68 socket.c
69 std-formats.c
70 string.c
71 time.c
72 time_range.c
73 timer.c
74 timing_wheel.c
75 tw_timer_2t_1w_2048sl.c
76 tw_timer_16t_2w_512sl.c
77 tw_timer_16t_1w_2048sl.c
78 tw_timer_4t_3w_256sl.c
79 tw_timer_1t_3w_1024sl_ov.c
80 unformat.c
81 unix-formats.c
82 unix-misc.c
83 valloc.c
84 vec.c
85 vector.c
86 zvec.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020087)
88
Damjan Marion4553c952018-08-26 11:04:40 +020089set(VPPINFRA_HEADERS
Damjan Marion612dd6a2018-07-30 12:45:07 +020090 bihash_16_8.h
91 bihash_24_8.h
92 bihash_40_8.h
93 bihash_48_8.h
94 bihash_8_8.h
95 bihash_template.c
96 bihash_template.h
97 bihash_vec8_8.h
98 bitmap.h
99 bitops.h
100 byte_order.h
101 cache.h
Dave Barach5f2cfb22019-05-20 10:28:57 -0400102 callback.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200103 clib_error.h
104 clib.h
105 cpu.h
106 crc32.h
107 dlist.h
108 dlmalloc.h
109 elf_clib.h
110 elf.h
111 elog.h
112 error_bootstrap.h
113 error.h
114 fheap.h
115 fifo.h
116 file.h
117 flowhash_24_16.h
118 flowhash_8_8.h
119 flowhash_template.h
120 format.h
121 graph.h
122 hash.h
123 heap.h
124 lb_hash_hash.h
125 lock.h
126 longjmp.h
127 macros.h
128 maplog.h
129 math.h
130 memcpy_avx2.h
131 memcpy_avx512.h
132 memcpy_sse3.h
133 mem.h
134 mhash.h
135 mheap_bootstrap.h
136 mheap.h
137 os.h
Dave Barach3ae28732018-11-16 17:19:00 -0500138 pcap.h
139 pcap_funcs.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200140 pipeline.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 slist.h
152 smp.h
153 socket.h
154 sparse_vec.h
155 string.h
156 time.h
157 time_range.h
158 timer.h
159 timing_wheel.h
160 tw_timer_16t_1w_2048sl.h
161 tw_timer_16t_2w_512sl.h
162 tw_timer_1t_3w_1024sl_ov.h
163 tw_timer_2t_1w_2048sl.h
164 tw_timer_4t_3w_256sl.h
165 tw_timer_template.c
166 tw_timer_template.h
167 types.h
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000168 atomics.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200169 unix.h
170 valgrind.h
171 valloc.h
172 vec_bootstrap.h
173 vec.h
174 vector_altivec.h
175 vector_avx2.h
176 vector_avx512.h
177 vector_funcs.h
178 vector.h
179 vector_neon.h
180 vector_sse42.h
181 xxhash.h
182 xy.h
183 zvec.h
184 linux/syscall.h
185 linux/sysfs.h
186)
187
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200188if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
189 list(APPEND VPPINFRA_SRCS
190 elf_clib.c
191 linux/mem.c
192 linux/sysfs.c
193 )
194endif()
195
Damjan Marion4553c952018-08-26 11:04:40 +0200196
197if(VPP_USE_DLMALLOC)
198 list(APPEND VPPINFRA_SRCS
199 dlmalloc.c
200 mem_dlmalloc.c
201 )
202else(VPP_USE_DLMALLOC)
203 list(APPEND VPPINFRA_SRCS
204 mheap.c
205 mem_mheap.c
206 )
207endif(VPP_USE_DLMALLOC)
208
209add_vpp_library(vppinfra
210 SOURCES ${VPPINFRA_SRCS}
211 LINK_LIBRARIES m
212 INSTALL_HEADERS ${VPPINFRA_HEADERS}
Damjan Marion43b06062018-08-29 22:20:45 +0200213 COMPONENT libvppinfra
Damjan Marion4553c952018-08-26 11:04:40 +0200214)
215
216##############################################################################
217# vppinfra headers
218##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200219option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
220if(VPP_BUILD_VPPINFRA_TESTS)
Damjan Marion4553c952018-08-26 11:04:40 +0200221 foreach(test
Damjan Marion612dd6a2018-07-30 12:45:07 +0200222 bihash_vec88
Damjan Marion612dd6a2018-07-30 12:45:07 +0200223 cuckoo_template
224 dlist
225 elf
226 elog
227 fifo
228 flowhash_template
229 format
230 fpool
231 hash
232 heap
233 longjmp
234 macros
235 maplog
Damjan Marion68b4da62018-09-30 18:26:20 +0200236 pmalloc
Damjan Marion612dd6a2018-07-30 12:45:07 +0200237 pool_iterate
238 ptclosure
239 random
240 random_isaac
241 serialize
242 slist
243 socket
244 time
245 time_range
246 timing_wheel
247 tw_timer
248 valloc
249 vec
Damjan Marion612dd6a2018-07-30 12:45:07 +0200250 zvec
251 )
Damjan Marion4553c952018-08-26 11:04:40 +0200252 add_vpp_executable(test_${test}
253 SOURCES test_${test}.c
254 LINK_LIBRARIES vppinfra
255 )
Damjan Marion612dd6a2018-07-30 12:45:07 +0200256 endforeach()
257
Damjan Marion4553c952018-08-26 11:04:40 +0200258 foreach(test bihash_template cuckoo_bihash)
259 add_vpp_executable(test_${test}
260 SOURCES test_${test}.c
261 LINK_LIBRARIES vppinfra Threads::Threads
262 )
263 endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200264endif(VPP_BUILD_VPPINFRA_TESTS)