blob: 702f6fdcae59c46f8cd883dba6da3e7ee2bd8401 [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
42 asm_x86.c
43 backtrace.c
44 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
Dave Barach3ae28732018-11-16 17:19:00 -050059 pcap.c
Damjan Marion68b4da62018-09-30 18:26:20 +020060 pmalloc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020061 pool.c
62 ptclosure.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020063 random.c
64 random_buffer.c
65 random_isaac.c
Florin Coras672d5fc2019-04-15 17:28:51 -070066 rbtree.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020067 serialize.c
68 slist.c
69 socket.c
70 std-formats.c
71 string.c
72 time.c
73 time_range.c
74 timer.c
75 timing_wheel.c
76 tw_timer_2t_1w_2048sl.c
77 tw_timer_16t_2w_512sl.c
78 tw_timer_16t_1w_2048sl.c
79 tw_timer_4t_3w_256sl.c
80 tw_timer_1t_3w_1024sl_ov.c
81 unformat.c
82 unix-formats.c
83 unix-misc.c
84 valloc.c
85 vec.c
86 vector.c
87 zvec.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020088)
89
Damjan Marion4553c952018-08-26 11:04:40 +020090set(VPPINFRA_HEADERS
Damjan Marion612dd6a2018-07-30 12:45:07 +020091 asm_mips.h
92 asm_x86.h
93 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
105 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
127 lock.h
128 longjmp.h
129 macros.h
130 maplog.h
131 math.h
132 memcpy_avx2.h
133 memcpy_avx512.h
134 memcpy_sse3.h
135 mem.h
136 mhash.h
137 mheap_bootstrap.h
138 mheap.h
139 os.h
Dave Barach3ae28732018-11-16 17:19:00 -0500140 pcap.h
141 pcap_funcs.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200142 pipeline.h
Damjan Marion68b4da62018-09-30 18:26:20 +0200143 pmalloc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200144 pool.h
Dave Barach4d1a8662018-09-10 12:31:15 -0400145 pmc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200146 ptclosure.h
147 random_buffer.h
148 random.h
149 random_isaac.h
Florin Coras672d5fc2019-04-15 17:28:51 -0700150 rbtree.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200151 serialize.h
Damjan Marioncf18ca92019-04-13 00:13:34 +0200152 sha2.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200153 slist.h
154 smp.h
155 socket.h
156 sparse_vec.h
157 string.h
158 time.h
159 time_range.h
160 timer.h
161 timing_wheel.h
162 tw_timer_16t_1w_2048sl.h
163 tw_timer_16t_2w_512sl.h
164 tw_timer_1t_3w_1024sl_ov.h
165 tw_timer_2t_1w_2048sl.h
166 tw_timer_4t_3w_256sl.h
167 tw_timer_template.c
168 tw_timer_template.h
169 types.h
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000170 atomics.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200171 unix.h
172 valgrind.h
173 valloc.h
174 vec_bootstrap.h
175 vec.h
176 vector_altivec.h
177 vector_avx2.h
178 vector_avx512.h
179 vector_funcs.h
180 vector.h
181 vector_neon.h
182 vector_sse42.h
183 xxhash.h
184 xy.h
185 zvec.h
186 linux/syscall.h
187 linux/sysfs.h
188)
189
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200190if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
191 list(APPEND VPPINFRA_SRCS
192 elf_clib.c
193 linux/mem.c
194 linux/sysfs.c
195 )
196endif()
197
Damjan Marion4553c952018-08-26 11:04:40 +0200198
199if(VPP_USE_DLMALLOC)
200 list(APPEND VPPINFRA_SRCS
201 dlmalloc.c
202 mem_dlmalloc.c
203 )
204else(VPP_USE_DLMALLOC)
205 list(APPEND VPPINFRA_SRCS
206 mheap.c
207 mem_mheap.c
208 )
209endif(VPP_USE_DLMALLOC)
210
211add_vpp_library(vppinfra
212 SOURCES ${VPPINFRA_SRCS}
213 LINK_LIBRARIES m
214 INSTALL_HEADERS ${VPPINFRA_HEADERS}
Damjan Marion43b06062018-08-29 22:20:45 +0200215 COMPONENT libvppinfra
Damjan Marion4553c952018-08-26 11:04:40 +0200216)
217
218##############################################################################
219# vppinfra headers
220##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200221option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
222if(VPP_BUILD_VPPINFRA_TESTS)
Damjan Marion4553c952018-08-26 11:04:40 +0200223 foreach(test
Damjan Marion612dd6a2018-07-30 12:45:07 +0200224 bihash_vec88
Damjan Marion612dd6a2018-07-30 12:45:07 +0200225 cuckoo_template
226 dlist
227 elf
228 elog
229 fifo
230 flowhash_template
231 format
232 fpool
233 hash
234 heap
235 longjmp
236 macros
237 maplog
Damjan Marion68b4da62018-09-30 18:26:20 +0200238 pmalloc
Damjan Marion612dd6a2018-07-30 12:45:07 +0200239 pool_iterate
240 ptclosure
241 random
242 random_isaac
243 serialize
244 slist
245 socket
246 time
247 time_range
248 timing_wheel
249 tw_timer
250 valloc
251 vec
Damjan Marion612dd6a2018-07-30 12:45:07 +0200252 zvec
253 )
Damjan Marion4553c952018-08-26 11:04:40 +0200254 add_vpp_executable(test_${test}
255 SOURCES test_${test}.c
256 LINK_LIBRARIES vppinfra
257 )
Damjan Marion612dd6a2018-07-30 12:45:07 +0200258 endforeach()
259
Damjan Marion4553c952018-08-26 11:04:40 +0200260 foreach(test bihash_template cuckoo_bihash)
261 add_vpp_executable(test_${test}
262 SOURCES test_${test}.c
263 LINK_LIBRARIES vppinfra Threads::Threads
264 )
265 endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200266endif(VPP_BUILD_VPPINFRA_TESTS)