blob: 4f0d16bd568f4373b80b119f48b93c9874cfd335 [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
66 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 asm_mips.h
91 asm_x86.h
92 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
104 clib_error.h
105 clib.h
106 cpu.h
107 crc32.h
108 dlist.h
109 dlmalloc.h
110 elf_clib.h
111 elf.h
112 elog.h
113 error_bootstrap.h
114 error.h
115 fheap.h
116 fifo.h
117 file.h
118 flowhash_24_16.h
119 flowhash_8_8.h
120 flowhash_template.h
121 format.h
122 graph.h
123 hash.h
124 heap.h
125 lb_hash_hash.h
126 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
136 mheap_bootstrap.h
137 mheap.h
138 os.h
Dave Barach3ae28732018-11-16 17:19:00 -0500139 pcap.h
140 pcap_funcs.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200141 pipeline.h
Damjan Marion68b4da62018-09-30 18:26:20 +0200142 pmalloc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200143 pool.h
Dave Barach4d1a8662018-09-10 12:31:15 -0400144 pmc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200145 ptclosure.h
146 random_buffer.h
147 random.h
148 random_isaac.h
149 serialize.h
150 slist.h
151 smp.h
152 socket.h
153 sparse_vec.h
154 string.h
155 time.h
156 time_range.h
157 timer.h
158 timing_wheel.h
159 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
169 valgrind.h
170 valloc.h
171 vec_bootstrap.h
172 vec.h
173 vector_altivec.h
174 vector_avx2.h
175 vector_avx512.h
176 vector_funcs.h
177 vector.h
178 vector_neon.h
179 vector_sse42.h
180 xxhash.h
181 xy.h
182 zvec.h
183 linux/syscall.h
184 linux/sysfs.h
185)
186
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200187if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
188 list(APPEND VPPINFRA_SRCS
189 elf_clib.c
190 linux/mem.c
191 linux/sysfs.c
192 )
193endif()
194
Damjan Marion4553c952018-08-26 11:04:40 +0200195
196if(VPP_USE_DLMALLOC)
197 list(APPEND VPPINFRA_SRCS
198 dlmalloc.c
199 mem_dlmalloc.c
200 )
201else(VPP_USE_DLMALLOC)
202 list(APPEND VPPINFRA_SRCS
203 mheap.c
204 mem_mheap.c
205 )
206endif(VPP_USE_DLMALLOC)
207
208add_vpp_library(vppinfra
209 SOURCES ${VPPINFRA_SRCS}
210 LINK_LIBRARIES m
211 INSTALL_HEADERS ${VPPINFRA_HEADERS}
Damjan Marion43b06062018-08-29 22:20:45 +0200212 COMPONENT libvppinfra
Damjan Marion4553c952018-08-26 11:04:40 +0200213)
214
215##############################################################################
216# vppinfra headers
217##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200218option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
219if(VPP_BUILD_VPPINFRA_TESTS)
Damjan Marion4553c952018-08-26 11:04:40 +0200220 foreach(test
Damjan Marion612dd6a2018-07-30 12:45:07 +0200221 bihash_vec88
Damjan Marion612dd6a2018-07-30 12:45:07 +0200222 cuckoo_template
223 dlist
224 elf
225 elog
226 fifo
227 flowhash_template
228 format
229 fpool
230 hash
231 heap
232 longjmp
233 macros
234 maplog
Damjan Marion68b4da62018-09-30 18:26:20 +0200235 pmalloc
Damjan Marion612dd6a2018-07-30 12:45:07 +0200236 pool_iterate
237 ptclosure
238 random
239 random_isaac
240 serialize
241 slist
242 socket
243 time
244 time_range
245 timing_wheel
246 tw_timer
247 valloc
248 vec
Damjan Marion612dd6a2018-07-30 12:45:07 +0200249 zvec
250 )
Damjan Marion4553c952018-08-26 11:04:40 +0200251 add_vpp_executable(test_${test}
252 SOURCES test_${test}.c
253 LINK_LIBRARIES vppinfra
254 )
Damjan Marion612dd6a2018-07-30 12:45:07 +0200255 endforeach()
256
Damjan Marion4553c952018-08-26 11:04:40 +0200257 foreach(test bihash_template cuckoo_bihash)
258 add_vpp_executable(test_${test}
259 SOURCES test_${test}.c
260 LINK_LIBRARIES vppinfra Threads::Threads
261 )
262 endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200263endif(VPP_BUILD_VPPINFRA_TESTS)