misc: add callback hooks and refactor pmc
[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 ##############################################################################
40 # vppinfra sources
41 ##############################################################################
42 set(VPPINFRA_SRCS
43   backtrace.c
44   bihash_all_vector.c
45   cpu.c
46   dlmalloc.c
47   elf.c
48   elog.c
49   error.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   mem_dlmalloc.c
59   mhash.c
60   mpcap.c
61   pcap.c
62   pmalloc.c
63   pool.c
64   ptclosure.c
65   random_buffer.c
66   random.c
67   random_isaac.c
68   rbtree.c
69   serialize.c
70   socket.c
71   std-formats.c
72   string.c
73   time.c
74   time_range.c
75   timing_wheel.c
76   tw_timer_2t_2w_512sl.c
77   tw_timer_16t_1w_2048sl.c
78   tw_timer_16t_2w_512sl.c
79   tw_timer_1t_3w_1024sl_ov.c
80   tw_timer_2t_1w_2048sl.c
81   tw_timer_4t_3w_256sl.c
82   unformat.c
83   unix-formats.c
84   unix-misc.c
85   valloc.c
86   vec.c
87   vector.c
88 )
89
90 set(VPPINFRA_HEADERS
91   sanitizer.h
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
104   callback.h
105   callback_data.h
106   clib_error.h
107   clib.h
108   cpu.h
109   crc32.h
110   dlist.h
111   dlmalloc.h
112   elf_clib.h
113   elf.h
114   elog.h
115   error_bootstrap.h
116   error.h
117   fifo.h
118   file.h
119   format.h
120   graph.h
121   hash.h
122   heap.h
123   lb_hash_hash.h
124   llist.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.h
136   mpcap.h
137   os.h
138   pcap.h
139   pcap_funcs.h
140   pmalloc.h
141   pool.h
142   pmc.h
143   ptclosure.h
144   random_buffer.h
145   random.h
146   random_isaac.h
147   rbtree.h
148   serialize.h
149   sha2.h
150   smp.h
151   socket.h
152   sparse_vec.h
153   string.h
154   time.h
155   time_range.h
156   timing_wheel.h
157   tw_timer_2t_2w_512sl.h
158   tw_timer_16t_1w_2048sl.h
159   tw_timer_16t_2w_512sl.h
160   tw_timer_1t_3w_1024sl_ov.h
161   tw_timer_2t_1w_2048sl.h
162   tw_timer_4t_3w_256sl.h
163   tw_timer_template.c
164   tw_timer_template.h
165   types.h
166   atomics.h
167   unix.h
168   valloc.h
169   vec_bootstrap.h
170   vec.h
171   vector_altivec.h
172   vector_avx2.h
173   vector_avx512.h
174   vector_funcs.h
175   vector.h
176   vector_neon.h
177   vector_sse42.h
178   warnings.h
179   xxhash.h
180   linux/syscall.h
181   linux/sysfs.h
182 )
183
184 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
185   list(APPEND VPPINFRA_SRCS
186     elf_clib.c
187     linux/mem.c
188     linux/sysfs.c
189    )
190 endif()
191
192 add_vpp_library(vppinfra
193   SOURCES ${VPPINFRA_SRCS}
194   LINK_LIBRARIES m
195   INSTALL_HEADERS ${VPPINFRA_HEADERS}
196   COMPONENT libvppinfra
197 )
198
199 ##############################################################################
200 # vppinfra headers
201 ##############################################################################
202 option(VPP_BUILD_VPPINFRA_TESTS "Build vppinfra tests." OFF)
203 if(VPP_BUILD_VPPINFRA_TESTS)
204   foreach(test
205     bihash_vec88
206     dlist
207     elf
208     elog
209     fifo
210     format
211     fpool
212     hash
213     heap
214     longjmp
215     macros
216     maplog
217     pmalloc
218     pool_iterate
219     ptclosure
220     random
221     random_isaac
222     rwlock
223     serialize
224     socket
225     spinlock
226     time
227     time_range
228     tw_timer
229     valloc
230     vec
231   )
232     add_vpp_executable(test_${test}
233       SOURCES test_${test}.c
234       LINK_LIBRARIES vppinfra pthread
235       )
236   endforeach()
237
238   foreach(test bihash_template)
239     add_vpp_executable(test_${test}
240       SOURCES test_${test}.c
241       LINK_LIBRARIES vppinfra Threads::Threads
242       )
243   endforeach()
244 endif(VPP_BUILD_VPPINFRA_TESTS)