Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1 | # 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 | |||||
14 | enable_language(ASM) | ||||
15 | |||||
16 | ############################################################################## | ||||
17 | # Generate vppinfra/config.h | ||||
18 | ############################################################################## | ||||
Damjan Marion | edc4387 | 2018-09-02 11:16:00 +0200 | [diff] [blame] | 19 | set(LOG2_CACHE_LINE_BYTES ${VPP_LOG2_CACHE_LINE_SIZE}) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 20 | |
Dave Barach | 98bd757 | 2020-02-10 10:16:40 -0500 | [diff] [blame] | 21 | option(VPP_VECTOR_GROW_BY_ONE "Vectors grow by one, instead of 3/2" OFF) |
22 | if(VPP_VECTOR_GROW_BY_ONE) | ||||
23 | set(VECTOR_GROW_BY_ONE 1) | ||||
24 | else(VPP_VECTOR_GROW_BY_ONE) | ||||
25 | set(VECTOR_GROW_BY_ONE 0) | ||||
26 | endif(VPP_VECTOR_GROW_BY_ONE) | ||||
27 | |||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 28 | configure_file( |
29 | ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in | ||||
30 | ${CMAKE_BINARY_DIR}/vppinfra/config.h | ||||
31 | ) | ||||
32 | |||||
33 | install( | ||||
34 | FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h | ||||
35 | DESTINATION include/vppinfra | ||||
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 36 | COMPONENT vpp-dev |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 37 | ) |
38 | |||||
Damjan Marion | dae1c7e | 2020-10-17 13:32:25 +0200 | [diff] [blame^] | 39 | add_definitions(-fvisibility=hidden) |
40 | |||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 41 | ############################################################################## |
42 | # vppinfra sources | ||||
43 | ############################################################################## | ||||
44 | set(VPPINFRA_SRCS | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 45 | backtrace.c |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 46 | bihash_all_vector.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 47 | cpu.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 48 | dlmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 49 | elf.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 50 | elog.c |
51 | error.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 52 | fifo.c |
53 | format.c | ||||
54 | graph.c | ||||
55 | hash.c | ||||
56 | heap.c | ||||
57 | longjmp.S | ||||
58 | macros.c | ||||
59 | maplog.c | ||||
Damjan Marion | 57d1ec0 | 2020-09-16 21:15:44 +0200 | [diff] [blame] | 60 | mem.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 61 | mem_dlmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 62 | mhash.c |
Gary Boon | a9ed6f7 | 2019-07-22 10:57:56 -0400 | [diff] [blame] | 63 | mpcap.c |
Dave Barach | 3ae2873 | 2018-11-16 17:19:00 -0500 | [diff] [blame] | 64 | pcap.c |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 65 | pmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 66 | pool.c |
67 | ptclosure.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 68 | random_buffer.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 69 | random.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 70 | random_isaac.c |
Florin Coras | 672d5fc | 2019-04-15 17:28:51 -0700 | [diff] [blame] | 71 | rbtree.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 72 | serialize.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 73 | socket.c |
74 | std-formats.c | ||||
75 | string.c | ||||
76 | time.c | ||||
77 | time_range.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 78 | timing_wheel.c |
Dave Barach | d7b828f | 2020-04-01 16:54:00 -0400 | [diff] [blame] | 79 | tw_timer_2t_2w_512sl.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 80 | tw_timer_16t_1w_2048sl.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 81 | tw_timer_16t_2w_512sl.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 82 | tw_timer_1t_3w_1024sl_ov.c |
Dave Barach | 2c8e002 | 2020-02-11 15:06:34 -0500 | [diff] [blame] | 83 | tw_timer_2t_1w_2048sl.c |
84 | tw_timer_4t_3w_256sl.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 85 | unformat.c |
86 | unix-formats.c | ||||
87 | unix-misc.c | ||||
88 | valloc.c | ||||
89 | vec.c | ||||
90 | vector.c | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 91 | ) |
92 | |||||
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 93 | set(VPPINFRA_HEADERS |
Benoît Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 94 | sanitizer.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 95 | bihash_16_8.h |
96 | bihash_24_8.h | ||||
97 | bihash_40_8.h | ||||
98 | bihash_48_8.h | ||||
99 | bihash_8_8.h | ||||
100 | bihash_template.c | ||||
101 | bihash_template.h | ||||
102 | bihash_vec8_8.h | ||||
103 | bitmap.h | ||||
104 | bitops.h | ||||
105 | byte_order.h | ||||
106 | cache.h | ||||
Dave Barach | 5f2cfb2 | 2019-05-20 10:28:57 -0400 | [diff] [blame] | 107 | callback.h |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 108 | callback_data.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 109 | clib_error.h |
110 | clib.h | ||||
111 | cpu.h | ||||
112 | crc32.h | ||||
113 | dlist.h | ||||
114 | dlmalloc.h | ||||
115 | elf_clib.h | ||||
116 | elf.h | ||||
117 | elog.h | ||||
118 | error_bootstrap.h | ||||
119 | error.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 120 | fifo.h |
121 | file.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 122 | format.h |
123 | graph.h | ||||
124 | hash.h | ||||
125 | heap.h | ||||
126 | lb_hash_hash.h | ||||
Florin Coras | b957d80 | 2019-07-09 19:02:33 -0700 | [diff] [blame] | 127 | llist.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 128 | 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 | ||||
Gary Boon | a9ed6f7 | 2019-07-22 10:57:56 -0400 | [diff] [blame] | 138 | mpcap.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 139 | os.h |
Dave Barach | 3ae2873 | 2018-11-16 17:19:00 -0500 | [diff] [blame] | 140 | pcap.h |
141 | pcap_funcs.h | ||||
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 142 | pmalloc.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 143 | pool.h |
Dave Barach | 4d1a866 | 2018-09-10 12:31:15 -0400 | [diff] [blame] | 144 | pmc.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 145 | ptclosure.h |
146 | random_buffer.h | ||||
147 | random.h | ||||
148 | random_isaac.h | ||||
Florin Coras | 672d5fc | 2019-04-15 17:28:51 -0700 | [diff] [blame] | 149 | rbtree.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 150 | serialize.h |
Damjan Marion | cf18ca9 | 2019-04-13 00:13:34 +0200 | [diff] [blame] | 151 | sha2.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 152 | smp.h |
153 | socket.h | ||||
154 | sparse_vec.h | ||||
155 | string.h | ||||
156 | time.h | ||||
157 | time_range.h | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 158 | timing_wheel.h |
Yu Sun | 6f5b72e | 2020-04-16 13:56:12 -0400 | [diff] [blame] | 159 | tw_timer_2t_2w_512sl.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 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 Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 168 | atomics.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 169 | unix.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 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 | ||||
Benoît Ganne | be7dbbb | 2020-04-24 14:37:10 +0200 | [diff] [blame] | 180 | warnings.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 181 | xxhash.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 182 | linux/syscall.h |
183 | linux/sysfs.h | ||||
184 | ) | ||||
185 | |||||
Damjan Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 186 | if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") |
187 | list(APPEND VPPINFRA_SRCS | ||||
188 | elf_clib.c | ||||
189 | linux/mem.c | ||||
190 | linux/sysfs.c | ||||
191 | ) | ||||
192 | endif() | ||||
193 | |||||
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 194 | add_vpp_library(vppinfra |
195 | SOURCES ${VPPINFRA_SRCS} | ||||
Florin Coras | 4c95995 | 2020-02-09 18:09:31 +0000 | [diff] [blame] | 196 | LINK_LIBRARIES m |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 197 | INSTALL_HEADERS ${VPPINFRA_HEADERS} |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 198 | COMPONENT libvppinfra |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 199 | ) |
200 | |||||
201 | ############################################################################## | ||||
202 | # vppinfra headers | ||||
203 | ############################################################################## | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 204 | option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF) |
205 | if(VPP_BUILD_VPPINFRA_TESTS) | ||||
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 206 | foreach(test |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 207 | bihash_vec88 |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 208 | dlist |
209 | elf | ||||
210 | elog | ||||
211 | fifo | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 212 | format |
213 | fpool | ||||
214 | hash | ||||
215 | heap | ||||
216 | longjmp | ||||
217 | macros | ||||
218 | maplog | ||||
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 219 | pmalloc |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 220 | pool_iterate |
221 | ptclosure | ||||
222 | random | ||||
223 | random_isaac | ||||
jaszha03 | 25ab6cf | 2019-07-01 17:20:52 -0500 | [diff] [blame] | 224 | rwlock |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 225 | serialize |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 226 | socket |
jaszha03 | 9a4e631 | 2019-06-19 14:07:05 -0500 | [diff] [blame] | 227 | spinlock |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 228 | time |
229 | time_range | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 230 | tw_timer |
231 | valloc | ||||
232 | vec | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 233 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 234 | add_vpp_executable(test_${test} |
235 | SOURCES test_${test}.c | ||||
Florin Coras | 4f94464 | 2019-08-01 10:54:06 -0700 | [diff] [blame] | 236 | LINK_LIBRARIES vppinfra pthread |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 237 | ) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 238 | endforeach() |
239 | |||||
Dave Barach | 053d093 | 2020-04-22 10:02:31 -0400 | [diff] [blame] | 240 | foreach(test bihash_template) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 241 | add_vpp_executable(test_${test} |
242 | SOURCES test_${test}.c | ||||
243 | LINK_LIBRARIES vppinfra Threads::Threads | ||||
244 | ) | ||||
245 | endforeach() | ||||
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 246 | endif(VPP_BUILD_VPPINFRA_TESTS) |