misc: deprecate old perfmon
[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
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
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
36   COMPONENT vpp-dev
37 )
38
39 add_definitions(-fvisibility=hidden)
40
41 # Ensure symbols from cJSON are exported
42 set_source_files_properties( cJSON.c PROPERTIES
43   COMPILE_DEFINITIONS " CJSON_API_VISIBILITY " )
44
45
46 ##############################################################################
47 # vppinfra sources
48 ##############################################################################
49 set(VPPINFRA_SRCS
50   backtrace.c
51   bihash_all_vector.c
52   cpu.c
53   dlmalloc.c
54   elf.c
55   elog.c
56   error.c
57   fifo.c
58   format.c
59   graph.c
60   hash.c
61   heap.c
62   longjmp.S
63   macros.c
64   maplog.c
65   mem.c
66   mem_dlmalloc.c
67   mhash.c
68   mpcap.c
69   pcap.c
70   pmalloc.c
71   pool.c
72   ptclosure.c
73   random_buffer.c
74   random.c
75   random_isaac.c
76   rbtree.c
77   serialize.c
78   socket.c
79   std-formats.c
80   string.c
81   time.c
82   time_range.c
83   timing_wheel.c
84   tw_timer_2t_2w_512sl.c
85   tw_timer_16t_1w_2048sl.c
86   tw_timer_16t_2w_512sl.c
87   tw_timer_1t_3w_1024sl_ov.c
88   tw_timer_2t_1w_2048sl.c
89   tw_timer_4t_3w_256sl.c
90   unformat.c
91   unix-formats.c
92   unix-misc.c
93   valloc.c
94   vec.c
95   vector.c
96   cJSON.c
97 )
98
99 set(VPPINFRA_HEADERS
100   sanitizer.h
101   bihash_16_8.h
102   bihash_24_8.h
103   bihash_40_8.h
104   bihash_48_8.h
105   bihash_8_8.h
106   bihash_8_16.h
107   bihash_24_16.h
108   bihash_template.c
109   bihash_template.h
110   bihash_vec8_8.h
111   bitmap.h
112   bitops.h
113   byte_order.h
114   cache.h
115   callback.h
116   callback_data.h
117   cJSON.h
118   clib_error.h
119   clib.h
120   cpu.h
121   crc32.h
122   dlist.h
123   dlmalloc.h
124   elf_clib.h
125   elf.h
126   elog.h
127   error_bootstrap.h
128   error.h
129   fifo.h
130   file.h
131   format.h
132   graph.h
133   hash.h
134   heap.h
135   lb_hash_hash.h
136   llist.h
137   lock.h
138   longjmp.h
139   macros.h
140   maplog.h
141   math.h
142   memcpy_avx2.h
143   memcpy_avx512.h
144   memcpy_sse3.h
145   mem.h
146   mhash.h
147   mpcap.h
148   os.h
149   pcap.h
150   pcap_funcs.h
151   pmalloc.h
152   pool.h
153   ptclosure.h
154   random_buffer.h
155   random.h
156   random_isaac.h
157   rbtree.h
158   serialize.h
159   sha2.h
160   smp.h
161   socket.h
162   sparse_vec.h
163   string.h
164   time.h
165   time_range.h
166   timing_wheel.h
167   tw_timer_2t_2w_512sl.h
168   tw_timer_16t_1w_2048sl.h
169   tw_timer_16t_2w_512sl.h
170   tw_timer_1t_3w_1024sl_ov.h
171   tw_timer_2t_1w_2048sl.h
172   tw_timer_4t_3w_256sl.h
173   tw_timer_template.c
174   tw_timer_template.h
175   types.h
176   atomics.h
177   unix.h
178   valloc.h
179   vec_bootstrap.h
180   vec.h
181   vector_altivec.h
182   vector_avx2.h
183   vector_avx512.h
184   vector_funcs.h
185   vector.h
186   vector_neon.h
187   vector_sse42.h
188   warnings.h
189   xxhash.h
190   linux/syscall.h
191   linux/sysfs.h
192 )
193
194 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
195   list(APPEND VPPINFRA_SRCS
196     elf_clib.c
197     linux/mem.c
198     linux/sysfs.c
199    )
200 endif()
201
202 add_vpp_library(vppinfra
203   SOURCES ${VPPINFRA_SRCS}
204   LINK_LIBRARIES m
205   INSTALL_HEADERS ${VPPINFRA_HEADERS}
206   COMPONENT libvppinfra
207   LTO
208 )
209
210 ##############################################################################
211 # vppinfra headers
212 ##############################################################################
213 option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
214 if(VPP_BUILD_VPPINFRA_TESTS)
215   foreach(test
216     bihash_vec88
217     dlist
218     elf
219     elog
220     fifo
221     format
222     fpool
223     hash
224     heap
225     longjmp
226     macros
227     maplog
228     pmalloc
229     pool_iterate
230     ptclosure
231     random
232     random_isaac
233     rwlock
234     serialize
235     socket
236     spinlock
237     time
238     time_range
239     tw_timer
240     valloc
241     vec
242   )
243     add_vpp_executable(test_${test}
244       SOURCES test_${test}.c
245       LINK_LIBRARIES vppinfra pthread
246       )
247   endforeach()
248
249   foreach(test bihash_template)
250     add_vpp_executable(test_${test}
251       SOURCES test_${test}.c
252       LINK_LIBRARIES vppinfra Threads::Threads
253       )
254   endforeach()
255 endif(VPP_BUILD_VPPINFRA_TESTS)