vppinfra: allocate bihash virtual space on demand
[vpp.git] / src / vppinfra / CMakeLists.txt
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 ##############################################################################
19 set(LOG2_CACHE_LINE_BYTES ${VPP_LOG2_CACHE_LINE_SIZE})
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
35   COMPONENT vpp-dev
36 )
37
38 ##############################################################################
39 # vppinfra sources
40 ##############################################################################
41 set(VPPINFRA_SRCS
42   backtrace.c
43   bihash_all_vector.c
44   cpu.c
45   cuckoo_template.c
46   elf.c
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
58   mhash.c
59   pcap.c
60   pmalloc.c
61   pool.c
62   ptclosure.c
63   random.c
64   random_buffer.c
65   random_isaac.c
66   rbtree.c
67   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
88 )
89
90 set(VPPINFRA_HEADERS
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   callback.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
139   pcap.h
140   pcap_funcs.h
141   pipeline.h
142   pmalloc.h
143   pool.h
144   pmc.h
145   ptclosure.h
146   random_buffer.h
147   random.h
148   random_isaac.h
149   rbtree.h
150   serialize.h
151   sha2.h
152   slist.h
153   smp.h
154   socket.h
155   sparse_vec.h
156   string.h
157   time.h
158   time_range.h
159   timer.h
160   timing_wheel.h
161   tw_timer_16t_1w_2048sl.h
162   tw_timer_16t_2w_512sl.h
163   tw_timer_1t_3w_1024sl_ov.h
164   tw_timer_2t_1w_2048sl.h
165   tw_timer_4t_3w_256sl.h
166   tw_timer_template.c
167   tw_timer_template.h
168   types.h
169   atomics.h
170   unix.h
171   valgrind.h
172   valloc.h
173   vec_bootstrap.h
174   vec.h
175   vector_altivec.h
176   vector_avx2.h
177   vector_avx512.h
178   vector_funcs.h
179   vector.h
180   vector_neon.h
181   vector_sse42.h
182   xxhash.h
183   xy.h
184   zvec.h
185   linux/syscall.h
186   linux/sysfs.h
187 )
188
189 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
190   list(APPEND VPPINFRA_SRCS
191     elf_clib.c
192     linux/mem.c
193     linux/sysfs.c
194    )
195 endif()
196
197
198 if(VPP_USE_DLMALLOC)
199   list(APPEND VPPINFRA_SRCS
200     dlmalloc.c
201     mem_dlmalloc.c
202   )
203 else(VPP_USE_DLMALLOC)
204   list(APPEND VPPINFRA_SRCS
205     mheap.c
206     mem_mheap.c
207   )
208 endif(VPP_USE_DLMALLOC)
209
210 add_vpp_library(vppinfra
211   SOURCES ${VPPINFRA_SRCS}
212   LINK_LIBRARIES m
213   INSTALL_HEADERS ${VPPINFRA_HEADERS}
214   COMPONENT libvppinfra
215 )
216
217 ##############################################################################
218 # vppinfra headers
219 ##############################################################################
220 option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
221 if(VPP_BUILD_VPPINFRA_TESTS)
222   foreach(test
223     bihash_vec88
224     cuckoo_template
225     dlist
226     elf
227     elog
228     fifo
229     flowhash_template
230     format
231     fpool
232     hash
233     heap
234     longjmp
235     macros
236     maplog
237     pmalloc
238     pool_iterate
239     ptclosure
240     random
241     random_isaac
242     serialize
243     slist
244     socket
245     time
246     time_range
247     timing_wheel
248     tw_timer
249     valloc
250     vec
251     zvec
252   )
253     add_vpp_executable(test_${test}
254       SOURCES test_${test}.c
255       LINK_LIBRARIES vppinfra
256       )
257   endforeach()
258
259   foreach(test bihash_template cuckoo_bihash)
260     add_vpp_executable(test_${test}
261       SOURCES test_${test}.c
262       LINK_LIBRARIES vppinfra Threads::Threads
263       )
264   endforeach()
265 endif(VPP_BUILD_VPPINFRA_TESTS)