blob: 6e1a4fd861a901cf761a25c22315aee9810c5128 [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
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
65 serialize.c
66 slist.c
67 socket.c
68 std-formats.c
69 string.c
70 time.c
71 time_range.c
72 timer.c
73 timing_wheel.c
74 tw_timer_2t_1w_2048sl.c
75 tw_timer_16t_2w_512sl.c
76 tw_timer_16t_1w_2048sl.c
77 tw_timer_4t_3w_256sl.c
78 tw_timer_1t_3w_1024sl_ov.c
79 unformat.c
80 unix-formats.c
81 unix-misc.c
82 valloc.c
83 vec.c
84 vector.c
85 zvec.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020086)
87
Damjan Marion4553c952018-08-26 11:04:40 +020088set(VPPINFRA_HEADERS
Damjan Marion612dd6a2018-07-30 12:45:07 +020089 asm_mips.h
90 asm_x86.h
91 bihash_16_8.h
92 bihash_24_8.h
93 bihash_40_8.h
94 bihash_48_8.h
95 bihash_8_8.h
96 bihash_template.c
97 bihash_template.h
98 bihash_vec8_8.h
99 bitmap.h
100 bitops.h
101 byte_order.h
102 cache.h
103 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
138 pipeline.h
Damjan Marion68b4da62018-09-30 18:26:20 +0200139 pmalloc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200140 pool.h
Dave Barach4d1a8662018-09-10 12:31:15 -0400141 pmc.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200142 ptclosure.h
143 random_buffer.h
144 random.h
145 random_isaac.h
146 serialize.h
147 slist.h
148 smp.h
149 socket.h
150 sparse_vec.h
151 string.h
152 time.h
153 time_range.h
154 timer.h
155 timing_wheel.h
156 tw_timer_16t_1w_2048sl.h
157 tw_timer_16t_2w_512sl.h
158 tw_timer_1t_3w_1024sl_ov.h
159 tw_timer_2t_1w_2048sl.h
160 tw_timer_4t_3w_256sl.h
161 tw_timer_template.c
162 tw_timer_template.h
163 types.h
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000164 atomics.h
Damjan Marion612dd6a2018-07-30 12:45:07 +0200165 unix.h
166 valgrind.h
167 valloc.h
168 vec_bootstrap.h
169 vec.h
170 vector_altivec.h
171 vector_avx2.h
172 vector_avx512.h
173 vector_funcs.h
174 vector.h
175 vector_neon.h
176 vector_sse42.h
177 xxhash.h
178 xy.h
179 zvec.h
180 linux/syscall.h
181 linux/sysfs.h
182)
183
Damjan Marion4dffd1c2018-09-03 12:30:36 +0200184if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
185 list(APPEND VPPINFRA_SRCS
186 elf_clib.c
187 linux/mem.c
188 linux/sysfs.c
189 )
190endif()
191
Damjan Marion4553c952018-08-26 11:04:40 +0200192
193if(VPP_USE_DLMALLOC)
194 list(APPEND VPPINFRA_SRCS
195 dlmalloc.c
196 mem_dlmalloc.c
197 )
198else(VPP_USE_DLMALLOC)
199 list(APPEND VPPINFRA_SRCS
200 mheap.c
201 mem_mheap.c
202 )
203endif(VPP_USE_DLMALLOC)
204
205add_vpp_library(vppinfra
206 SOURCES ${VPPINFRA_SRCS}
207 LINK_LIBRARIES m
208 INSTALL_HEADERS ${VPPINFRA_HEADERS}
Damjan Marion43b06062018-08-29 22:20:45 +0200209 COMPONENT libvppinfra
Damjan Marion4553c952018-08-26 11:04:40 +0200210)
211
212##############################################################################
213# vppinfra headers
214##############################################################################
Damjan Marion612dd6a2018-07-30 12:45:07 +0200215option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
216if(VPP_BUILD_VPPINFRA_TESTS)
Damjan Marion4553c952018-08-26 11:04:40 +0200217 foreach(test
Damjan Marion612dd6a2018-07-30 12:45:07 +0200218 bihash_vec88
Damjan Marion612dd6a2018-07-30 12:45:07 +0200219 cuckoo_template
220 dlist
221 elf
222 elog
223 fifo
224 flowhash_template
225 format
226 fpool
227 hash
228 heap
229 longjmp
230 macros
231 maplog
Damjan Marion68b4da62018-09-30 18:26:20 +0200232 pmalloc
Damjan Marion612dd6a2018-07-30 12:45:07 +0200233 pool_iterate
234 ptclosure
235 random
236 random_isaac
237 serialize
238 slist
239 socket
240 time
241 time_range
242 timing_wheel
243 tw_timer
244 valloc
245 vec
Damjan Marion612dd6a2018-07-30 12:45:07 +0200246 zvec
247 )
Damjan Marion4553c952018-08-26 11:04:40 +0200248 add_vpp_executable(test_${test}
249 SOURCES test_${test}.c
250 LINK_LIBRARIES vppinfra
251 )
Damjan Marion612dd6a2018-07-30 12:45:07 +0200252 endforeach()
253
Damjan Marion4553c952018-08-26 11:04:40 +0200254 foreach(test bihash_template cuckoo_bihash)
255 add_vpp_executable(test_${test}
256 SOURCES test_${test}.c
257 LINK_LIBRARIES vppinfra Threads::Threads
258 )
259 endforeach()
Damjan Marion612dd6a2018-07-30 12:45:07 +0200260endif(VPP_BUILD_VPPINFRA_TESTS)