blob: 25e966dcf7ae2f2c999df32dc95f3a6dbd9d6f0a [file] [log] [blame]
Damjan Mariond16004d2018-08-26 10:14:52 +02001# 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
Damjan Marion24d65a12021-07-14 18:18:08 +020014macro(set_log2_cacheline_size var n)
15 if(${n} EQUAL 128)
16 set(${var} 7)
17 elseif(${n} EQUAL 64)
18 set(${var} 6)
19 else()
20 message(FATAL_ERROR "Cacheline size ${n} not supported")
21 endif()
22endmacro()
23
Damjan Mariond16004d2018-08-26 10:14:52 +020024##############################################################################
Damjan Marion24d65a12021-07-14 18:18:08 +020025# Cache line size
Damjan Marionedc43872018-09-02 11:16:00 +020026##############################################################################
Damjan Marionedc43872018-09-02 11:16:00 +020027
Damjan Marion01fe7ab2023-10-23 18:36:18 +020028if(DEFINED VPP_PLATFORM_CACHE_LINE_SIZE)
29 set(VPP_CACHE_LINE_SIZE ${VPP_PLATFORM_CACHE_LINE_SIZE})
30else()
31 if(DEFINED VPP_CACHE_LINE_SIZE)
32 # Cache line size assigned via cmake args
33 elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64.*|AARCH64.*)")
34 set(VPP_CACHE_LINE_SIZE 128)
35 else()
36 set(VPP_CACHE_LINE_SIZE 64)
37 endif()
38
39 set(VPP_CACHE_LINE_SIZE ${VPP_CACHE_LINE_SIZE}
40 CACHE STRING "Target CPU cache line size")
41endif()
Damjan Marion24d65a12021-07-14 18:18:08 +020042
43set_log2_cacheline_size(VPP_LOG2_CACHE_LINE_SIZE ${VPP_CACHE_LINE_SIZE})
Damjan Marionedc43872018-09-02 11:16:00 +020044
45##############################################################################
Damjan Marion6e39ff02020-04-29 15:15:45 +020046# Gnu Assembler AVX-512 bug detection
47# - see: https://sourceware.org/bugzilla/show_bug.cgi?id=23465
48##############################################################################
49if(CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*")
50 if (CMAKE_C_COMPILER_ID STREQUAL "GNU")
51 set(pfx ${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/gas_avx512_bug_test)
52 file(WRITE ${pfx}.s "vmovaps 0x40(,%rax), %zmm0\n")
53 execute_process(COMMAND ${CMAKE_C_COMPILER} -c ${pfx}.s -o ${pfx}.o)
54 execute_process(COMMAND objdump -s ${pfx}.o OUTPUT_VARIABLE _output)
55 if (NOT _output MATCHES "62f17c48 28040540 000000")
56 set(GNU_ASSEMBLER_AVX512_BUG 1)
57 endif()
58 endif()
59endif()
60
61##############################################################################
Damjan Mariond16004d2018-08-26 10:14:52 +020062# CPU optimizations and multiarch support
63##############################################################################
Damjan Marion45e05392022-04-25 12:38:40 +020064
Damjan Marion01fe7ab2023-10-23 18:36:18 +020065if(NOT DEFINED VPP_PLATFORM)
66 option(VPP_BUILD_NATIVE_ONLY "Build only for native CPU." OFF)
67endif()
Damjan Marion45e05392022-04-25 12:38:40 +020068
Damjan Marionc8983242021-04-30 19:31:09 +020069macro(add_vpp_march_variant v)
70 cmake_parse_arguments(ARG
71 "OFF"
Damjan Marion24d65a12021-07-14 18:18:08 +020072 "N_PREFETCHES;CACHE_PREFETCH_BYTES"
Damjan Marionc8983242021-04-30 19:31:09 +020073 "FLAGS"
74 ${ARGN}
75 )
76
77 if(ARG_FLAGS)
78 set(flags_ok 1)
79 set(fs "")
80 foreach(f ${ARG_FLAGS})
81 string(APPEND fs " ${f}")
82 string(REGEX REPLACE "[-=+]" "_" sfx ${f})
83 if(NOT DEFINED compiler_flag${sfx})
84 check_c_compiler_flag(${f} compiler_flag${sfx})
85 endif()
86 if(NOT compiler_flag${sfx})
87 unset(flags_ok)
88 endif()
89 endforeach()
90 if(ARG_N_PREFETCHES)
91 string(APPEND fs " -DCLIB_N_PREFETCHES=${ARG_N_PREFETCHES}")
92 endif()
Damjan Marion24d65a12021-07-14 18:18:08 +020093 if(ARG_CACHE_PREFETCH_BYTES)
94 set_log2_cacheline_size(log2 ${ARG_CACHE_PREFETCH_BYTES})
95 string(APPEND fs " -DCLIB_LOG2_CACHE_PREFETCH_BYTES=${log2}")
96 endif()
Damjan Marionc8983242021-04-30 19:31:09 +020097 if(flags_ok)
98 string(TOUPPER ${v} uv)
99 if(ARG_OFF)
100 option(VPP_MARCH_VARIANT_${uv} "Build ${v} multiarch variant." OFF)
101 else()
102 option(VPP_MARCH_VARIANT_${uv} "Build ${v} multiarch variant." ON)
103 endif()
104 if (VPP_MARCH_VARIANT_${uv})
105 list(APPEND MARCH_VARIANTS "${v}\;${fs}")
Damjan Marion45e05392022-04-25 12:38:40 +0200106 list(APPEND MARCH_VARIANTS_NAMES "${v}")
Damjan Marion312fb4d2021-05-06 20:48:34 +0200107 else()
108 list(APPEND MARCH_VARIANTS_DISABLED "${v}\;${fs}")
Damjan Marionc8983242021-04-30 19:31:09 +0200109 endif()
110 endif()
111 endif()
112endmacro()
113
Damjan Marion01fe7ab2023-10-23 18:36:18 +0200114if(DEFINED VPP_PLATFORM)
115 if(DEFINED VPP_PLATFORM_MARCH_FLAGS)
116 set(VPP_DEFAULT_MARCH_FLAGS ${VPP_PLATFORM_MARCH_FLAGS})
117 check_c_compiler_flag(${VPP_DEFAULT_MARCH_FLAGS} compiler_flag_march)
118 if(NOT compiler_flag_march)
119 message(FATAL_ERROR "platform build with ${VPP_DEFAULT_MARCH_FLAGS} is not supported by compiler")
120 endif()
121 else()
122 set(VPP_DEFAULT_MARCH_FLAGS "")
123 endif()
124 set(MARCH_VARIANTS_NAMES "platform-only")
125elseif(VPP_BUILD_NATIVE_ONLY)
Damjan Marionf0fc65a2023-08-31 17:00:16 +0200126 set(VPP_BUILD_NATIVE_ARCH "native" CACHE STRING "native CPU -march= value.")
127 set(VPP_DEFAULT_MARCH_FLAGS -march=${VPP_BUILD_NATIVE_ARCH})
Damjan Marion01fe7ab2023-10-23 18:36:18 +0200128 check_c_compiler_flag(${VPP_DEFAULT_MARCH_FLAGS} compiler_flag_march)
129 if(NOT compiler_flag_march)
130 message(FATAL_ERROR "Native-only build with ${VPP_DEFAULT_MARCH_FLAGS} is not supported by compiler")
Damjan Marionf0fc65a2023-08-31 17:00:16 +0200131 endif()
Damjan Marion45e05392022-04-25 12:38:40 +0200132 set(MARCH_VARIANTS_NAMES "native-only")
133elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*")
Damjan Marion0d39cba2021-05-10 14:51:44 +0200134 set(VPP_DEFAULT_MARCH_FLAGS -march=corei7 -mtune=corei7-avx)
Damjan Marionc8983242021-04-30 19:31:09 +0200135
136 add_vpp_march_variant(hsw
137 FLAGS -march=haswell -mtune=haswell
138 )
139
140 add_vpp_march_variant(trm
141 FLAGS -march=tremont -mtune=tremont
142 OFF
143 )
144
Damjan Marion15522282023-03-14 13:34:59 +0100145 add_vpp_march_variant(adl
146 FLAGS -march=alderlake -mtune=alderlake -mprefer-vector-width=256
147 OFF
148 )
149
Damjan Marion98f7f0a2023-04-17 09:38:11 +0000150 add_vpp_march_variant(scalar
151 FLAGS -march=core2 -mno-mmx -mno-sse
152 OFF
153 )
154
Sivaprasad Tummala206592b2023-04-17 05:05:15 -0700155 add_vpp_march_variant(znver3
156 FLAGS -march=znver3 -mtune=znver3 -mprefer-vector-width=256
157 OFF
158 )
159
Damjan Marion6e39ff02020-04-29 15:15:45 +0200160 if (GNU_ASSEMBLER_AVX512_BUG)
161 message(WARNING "AVX-512 multiarch variant(s) disabled due to GNU Assembler bug")
162 else()
Damjan Marionc8983242021-04-30 19:31:09 +0200163 add_vpp_march_variant(skx
164 FLAGS -march=skylake-avx512 -mtune=skylake-avx512 -mprefer-vector-width=256
165 )
166
167 add_vpp_march_variant(icl
168 FLAGS -march=icelake-client -mtune=icelake-client -mprefer-vector-width=512
169 )
Damjan Marion15522282023-03-14 13:34:59 +0100170
171 add_vpp_march_variant(spr
172 FLAGS -march=sapphirerapids -mtune=sapphirerapids -mprefer-vector-width=512
173 OFF
174 )
Sivaprasad Tummala206592b2023-04-17 05:05:15 -0700175
176 add_vpp_march_variant(znver4
177 FLAGS -march=znver4 -mtune=znver4 -mprefer-vector-width=512
178 OFF
179 )
Damjan Mariond16004d2018-08-26 10:14:52 +0200180 endif()
181elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64.*|AARCH64.*)")
Damjan Marion0d39cba2021-05-10 14:51:44 +0200182 set(VPP_DEFAULT_MARCH_FLAGS -march=armv8-a+crc)
Damjan Marionc8983242021-04-30 19:31:09 +0200183
184 add_vpp_march_variant(qdf24xx
185 FLAGS -march=armv8-a+crc+crypto -mtune=qdf24xx
186 N_PREFETCHES 8
Damjan Marion24d65a12021-07-14 18:18:08 +0200187 CACHE_PREFETCH_BYTES 64
Damjan Marionc8983242021-04-30 19:31:09 +0200188 OFF
189 )
190
191 add_vpp_march_variant(octeontx2
192 FLAGS -march=armv8.2-a+crc+crypto+lse
193 N_PREFETCHES 8
194 )
195
196 add_vpp_march_variant(thunderx2t99
197 FLAGS -march=armv8.1-a+crc+crypto -mtune=thunderx2t99
198 N_PREFETCHES 8
Damjan Marion24d65a12021-07-14 18:18:08 +0200199 CACHE_PREFETCH_BYTES 64
Damjan Marionc8983242021-04-30 19:31:09 +0200200 )
201
202 add_vpp_march_variant(cortexa72
203 FLAGS -march=armv8-a+crc+crypto -mtune=cortex-a72
204 N_PREFETCHES 6
Damjan Marion24d65a12021-07-14 18:18:08 +0200205 CACHE_PREFETCH_BYTES 64
Damjan Marionc8983242021-04-30 19:31:09 +0200206 )
207
208 add_vpp_march_variant(neoversen1
209 FLAGS -march=armv8.2-a+crc+crypto -mtune=neoverse-n1
210 N_PREFETCHES 6
Damjan Marion24d65a12021-07-14 18:18:08 +0200211 CACHE_PREFETCH_BYTES 64
Damjan Marionc8983242021-04-30 19:31:09 +0200212 )
Damjan Marion7bf8f5e2023-09-12 15:08:58 +0200213 add_vpp_march_variant(neoversen2
Jieqiang Wangbef2d6d2023-07-04 12:05:33 +0800214 FLAGS -march=armv9-a+crypto -mtune=neoverse-n2
215 N_PREFETCHES 6
Damjan Marion7bf8f5e2023-09-12 15:08:58 +0200216 CACHE_PREFETCH_BYTES 64
217 OFF
218 )
Damjan Mariond16004d2018-08-26 10:14:52 +0200219endif()
220
Ole Troan7d527a22020-12-02 14:19:49 +0100221macro(vpp_library_set_multiarch_sources lib)
222 cmake_parse_arguments(ARG
223 ""
224 ""
Damjan Marion312fb4d2021-05-06 20:48:34 +0200225 "SOURCES;DEPENDS;FORCE_ON"
Ole Troan7d527a22020-12-02 14:19:49 +0100226 ${ARGN}
227 )
228
Damjan Marion312fb4d2021-05-06 20:48:34 +0200229 set(VARIANTS "${MARCH_VARIANTS}")
230
231 if(ARG_FORCE_ON)
232 foreach(F ${ARG_FORCE_ON})
233 foreach(V ${MARCH_VARIANTS_DISABLED})
234 list(GET V 0 VARIANT)
235 if (VARIANT STREQUAL F)
236 list(GET V 1 VARIANT_FLAGS)
237 list(APPEND VARIANTS "${VARIANT}\;${VARIANT_FLAGS}")
238 endif()
239 endforeach()
240 endforeach()
241 endif()
242
243 foreach(V ${VARIANTS})
Damjan Mariond16004d2018-08-26 10:14:52 +0200244 list(GET V 0 VARIANT)
245 list(GET V 1 VARIANT_FLAGS)
246 set(l ${lib}_${VARIANT})
Ole Troan7d527a22020-12-02 14:19:49 +0100247 add_library(${l} OBJECT ${ARG_SOURCES})
248 if(ARG_DEPENDS)
249 add_dependencies(${l} ${ARG_DEPENDS})
Aloys Augustin2a658042020-10-13 15:43:00 +0200250 endif()
Damjan Mariond16004d2018-08-26 10:14:52 +0200251 set_target_properties(${l} PROPERTIES POSITION_INDEPENDENT_CODE ON)
Damjan Marion0d39cba2021-05-10 14:51:44 +0200252 target_compile_definitions(${l} PUBLIC CLIB_MARCH_VARIANT=${VARIANT})
Damjan Mariond16004d2018-08-26 10:14:52 +0200253 separate_arguments(VARIANT_FLAGS)
254 target_compile_options(${l} PUBLIC ${VARIANT_FLAGS})
255 target_sources(${lib} PRIVATE $<TARGET_OBJECTS:${l}>)
256 endforeach()
257endmacro()
258