From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D777646427; Wed, 19 Mar 2025 18:30:14 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9508740612; Wed, 19 Mar 2025 18:30:11 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.15]) by mails.dpdk.org (Postfix) with ESMTP id ABB324026B for ; Wed, 19 Mar 2025 18:30:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1742405409; x=1773941409; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=1c4aALzCVR1B4jYBiVDd6WSE4S5f8dPDZ+gbEt4GH7w=; b=LavI6r3dF9sDyY0OoRzi2K1l4oDpZSP2QhrlFqSJdYoee37zeFYBLcUW OxLkV2kcZ6Hw0Fe/IbJj6f4dcVMFitHARQHhbUtzh5nUrfrkHMXoBjTa4 bhVMIsQEJpugR/KkxJjwXd53sf6wt9SvtQtTeHGAO+OdNRq2Me/dllupn Ifyw7dIQBAsfMYnQgVK/aSwHe3Cckyd4QviLAa7Ts0kTJRMmB6jYuwKi6 UTONO12PK4oCH2lh5mVZ1tJKbcHXNVIGSICzGSKztWsHWruwhJ4dv4j6C 4vImR38GSxitX8oBe0XPDP+DaOpc/9T1D7/J+Q4MF96fl4PVziLcrmYLE w==; X-CSE-ConnectionGUID: EjO9yH43SpSGp5qAmdAbgA== X-CSE-MsgGUID: uoAz9q5ATayoC2v0sGzfow== X-IronPort-AV: E=McAfee;i="6700,10204,11378"; a="43741956" X-IronPort-AV: E=Sophos;i="6.14,259,1736841600"; d="scan'208";a="43741956" Received: from fmviesa001.fm.intel.com ([10.60.135.141]) by fmvoesa109.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Mar 2025 10:30:07 -0700 X-CSE-ConnectionGUID: v2Oex1tOTBuGbwC75kPh8g== X-CSE-MsgGUID: qKt5jhUfQ76ms7UJyKDn9Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.14,259,1736841600"; d="scan'208";a="153722456" Received: from unknown (HELO silpixa00401385.ir.intel.com) ([10.237.214.28]) by fmviesa001.fm.intel.com with ESMTP; 19 Mar 2025 10:30:06 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: david.marchand@redhat.com, Bruce Richardson Subject: [PATCH v4 01/11] drivers: add generalized AVX build handling Date: Wed, 19 Mar 2025 17:29:31 +0000 Message-ID: <20250319172942.2992053-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250319172942.2992053-1-bruce.richardson@intel.com> References: <20250314172339.12777-1-bruce.richardson@intel.com> <20250319172942.2992053-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Add support to the top-level driver build file for AVX2 and AVX512 specific sources. This should simplify driver builds by avoiding the need to constantly reimplement the same build logic Signed-off-by: Bruce Richardson --- drivers/meson.build | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/drivers/meson.build b/drivers/meson.build index 05391a575d..c15319dc24 100644 --- a/drivers/meson.build +++ b/drivers/meson.build @@ -126,6 +126,8 @@ foreach subpath:subdirs name = drv annotate_locks = true sources = [] + sources_avx2 = [] + sources_avx512 = [] headers = [] driver_sdk_headers = [] # public headers included by drivers objs = [] @@ -235,6 +237,34 @@ foreach subpath:subdirs dpdk_includes += include_directories(drv_path) endif + # handle avx2 and avx512 source files + if arch_subdir == 'x86' + if sources_avx2.length() > 0 + avx2_lib = static_library(lib_name + '_avx2_lib', + sources_avx2, + dependencies: static_deps, + include_directories: includes, + c_args: [cflags, cc_avx2_flags]) + objs += avx2_lib.extract_objects(sources_avx2) + endif + if sources_avx512.length() > 0 and cc_has_avx512 + cflags += '-DCC_AVX512_SUPPORT' + avx512_args = [cflags, cc_avx512_flags] + if not target_has_avx512 and cc.has_argument('-march=skylake-avx512') + avx512_args += '-march=skylake-avx512' + if cc.has_argument('-Wno-overriding-option') + avx512_args += '-Wno-overriding-option' + endif + endif + avx512_lib = static_library(lib_name + '_avx512_lib', + sources_avx512, + dependencies: static_deps, + include_directories: includes, + c_args: avx512_args) + objs += avx512_lib.extract_objects(sources_avx512) + endif + endif + # generate pmdinfo sources by building a temporary # lib and then running pmdinfogen on the contents of # that lib. The final lib reuses the object files and -- 2.43.0