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 | option(VPP_USE_DLMALLOC "Use dlmalloc memory allocator." ON) |
| 21 | if(VPP_USE_DLMALLOC) |
| 22 | set(DLMALLOC 1) |
| 23 | else(VPP_USE_DLMALLOC) |
| 24 | set(DLMALLOC 0) |
| 25 | endif(VPP_USE_DLMALLOC) |
| 26 | |
| 27 | configure_file( |
| 28 | ${CMAKE_SOURCE_DIR}/vppinfra/config.h.in |
| 29 | ${CMAKE_BINARY_DIR}/vppinfra/config.h |
| 30 | ) |
| 31 | |
| 32 | install( |
| 33 | FILES ${CMAKE_BINARY_DIR}/vppinfra/config.h |
| 34 | DESTINATION include/vppinfra |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 35 | COMPONENT vpp-dev |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 36 | ) |
| 37 | |
| 38 | ############################################################################## |
| 39 | # vppinfra sources |
| 40 | ############################################################################## |
| 41 | set(VPPINFRA_SRCS |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 42 | backtrace.c |
Dave Barach | 32dcd3b | 2019-07-08 12:25:38 -0400 | [diff] [blame] | 43 | bihash_all_vector.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 44 | cpu.c |
| 45 | cuckoo_template.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 46 | elf.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 47 | 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 Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 58 | mhash.c |
Gary Boon | a9ed6f7 | 2019-07-22 10:57:56 -0400 | [diff] [blame] | 59 | mpcap.c |
Dave Barach | 3ae2873 | 2018-11-16 17:19:00 -0500 | [diff] [blame] | 60 | pcap.c |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 61 | pmalloc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 62 | pool.c |
| 63 | ptclosure.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 64 | random.c |
| 65 | random_buffer.c |
| 66 | random_isaac.c |
Florin Coras | 672d5fc | 2019-04-15 17:28:51 -0700 | [diff] [blame] | 67 | rbtree.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 68 | serialize.c |
| 69 | slist.c |
| 70 | socket.c |
| 71 | std-formats.c |
| 72 | string.c |
| 73 | time.c |
| 74 | time_range.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 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 Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 88 | ) |
| 89 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 90 | set(VPPINFRA_HEADERS |
BenoƮt Ganne | 9fb6d40 | 2019-04-15 15:28:21 +0200 | [diff] [blame] | 91 | sanitizer.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 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 |
Dave Barach | 5f2cfb2 | 2019-05-20 10:28:57 -0400 | [diff] [blame] | 104 | callback.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 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 |
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 |
| 138 | mheap_bootstrap.h |
| 139 | mheap.h |
Gary Boon | a9ed6f7 | 2019-07-22 10:57:56 -0400 | [diff] [blame] | 140 | mpcap.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 141 | os.h |
Dave Barach | 3ae2873 | 2018-11-16 17:19:00 -0500 | [diff] [blame] | 142 | pcap.h |
| 143 | pcap_funcs.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 144 | pipeline.h |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 145 | pmalloc.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 146 | pool.h |
Dave Barach | 4d1a866 | 2018-09-10 12:31:15 -0400 | [diff] [blame] | 147 | pmc.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 148 | ptclosure.h |
| 149 | random_buffer.h |
| 150 | random.h |
| 151 | random_isaac.h |
Florin Coras | 672d5fc | 2019-04-15 17:28:51 -0700 | [diff] [blame] | 152 | rbtree.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 153 | serialize.h |
Damjan Marion | cf18ca9 | 2019-04-13 00:13:34 +0200 | [diff] [blame] | 154 | sha2.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 155 | slist.h |
| 156 | smp.h |
| 157 | socket.h |
| 158 | sparse_vec.h |
| 159 | string.h |
| 160 | time.h |
| 161 | time_range.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 162 | timing_wheel.h |
| 163 | tw_timer_16t_1w_2048sl.h |
| 164 | tw_timer_16t_2w_512sl.h |
| 165 | tw_timer_1t_3w_1024sl_ov.h |
| 166 | tw_timer_2t_1w_2048sl.h |
| 167 | tw_timer_4t_3w_256sl.h |
| 168 | tw_timer_template.c |
| 169 | tw_timer_template.h |
| 170 | types.h |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 171 | atomics.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 172 | unix.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 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 Marion | 4dffd1c | 2018-09-03 12:30:36 +0200 | [diff] [blame] | 190 | if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") |
| 191 | list(APPEND VPPINFRA_SRCS |
| 192 | elf_clib.c |
| 193 | linux/mem.c |
| 194 | linux/sysfs.c |
| 195 | ) |
| 196 | endif() |
| 197 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 198 | |
| 199 | if(VPP_USE_DLMALLOC) |
| 200 | list(APPEND VPPINFRA_SRCS |
| 201 | dlmalloc.c |
| 202 | mem_dlmalloc.c |
| 203 | ) |
| 204 | else(VPP_USE_DLMALLOC) |
| 205 | list(APPEND VPPINFRA_SRCS |
| 206 | mheap.c |
| 207 | mem_mheap.c |
| 208 | ) |
| 209 | endif(VPP_USE_DLMALLOC) |
| 210 | |
| 211 | add_vpp_library(vppinfra |
| 212 | SOURCES ${VPPINFRA_SRCS} |
Florin Coras | 4c95995 | 2020-02-09 18:09:31 +0000 | [diff] [blame^] | 213 | LINK_LIBRARIES m |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 214 | INSTALL_HEADERS ${VPPINFRA_HEADERS} |
Damjan Marion | 43b0606 | 2018-08-29 22:20:45 +0200 | [diff] [blame] | 215 | COMPONENT libvppinfra |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 216 | ) |
| 217 | |
| 218 | ############################################################################## |
| 219 | # vppinfra headers |
| 220 | ############################################################################## |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 221 | option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF) |
| 222 | if(VPP_BUILD_VPPINFRA_TESTS) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 223 | foreach(test |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 224 | bihash_vec88 |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 225 | 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 Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 238 | pmalloc |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 239 | pool_iterate |
| 240 | ptclosure |
| 241 | random |
| 242 | random_isaac |
jaszha03 | 25ab6cf | 2019-07-01 17:20:52 -0500 | [diff] [blame] | 243 | rwlock |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 244 | serialize |
| 245 | slist |
| 246 | socket |
jaszha03 | 9a4e631 | 2019-06-19 14:07:05 -0500 | [diff] [blame] | 247 | spinlock |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 248 | time |
| 249 | time_range |
| 250 | timing_wheel |
| 251 | tw_timer |
| 252 | valloc |
| 253 | vec |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 254 | zvec |
| 255 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 256 | add_vpp_executable(test_${test} |
| 257 | SOURCES test_${test}.c |
Florin Coras | 4f94464 | 2019-08-01 10:54:06 -0700 | [diff] [blame] | 258 | LINK_LIBRARIES vppinfra pthread |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 259 | ) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 260 | endforeach() |
| 261 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 262 | foreach(test bihash_template cuckoo_bihash) |
| 263 | add_vpp_executable(test_${test} |
| 264 | SOURCES test_${test}.c |
| 265 | LINK_LIBRARIES vppinfra Threads::Threads |
| 266 | ) |
| 267 | endforeach() |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 268 | endif(VPP_BUILD_VPPINFRA_TESTS) |