From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 1DB431B25D for ; Mon, 2 Oct 2017 18:15:17 +0200 (CEST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Oct 2017 09:15:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,470,1500966000"; d="scan'208";a="155733264" Received: from dpdk-lixiaoyun.sh.intel.com ([10.67.111.93]) by orsmga005.jf.intel.com with ESMTP; 02 Oct 2017 09:15:15 -0700 From: Xiaoyun Li To: konstantin.ananyev@intel.com, bruce.richardson@intel.com Cc: wenzhuo.lu@intel.com, helin.zhang@intel.com, dev@dpdk.org, Xiaoyun Li Date: Tue, 3 Oct 2017 00:13:13 +0800 Message-Id: <1506960796-71620-1-git-send-email-xiaoyun.li@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1506411689-94690-1-git-send-email-xiaoyun.li@intel.com> References: <1506411689-94690-1-git-send-email-xiaoyun.li@intel.com> Subject: [dpdk-dev] [PATCH v4 0/3] run-time Linking support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2017 16:15:18 -0000 This patchset dynamically selects functions at run-time based on CPU flags that current machine supports. This patchset modifies mempcy, memcpy perf test and x86 EFD, using function pointers and bind them at constructor time. Then in the cloud environment, users can compiler once for the minimum target such as 'haswell'(not 'native') and run on different platforms (equal or above haswell) and can get ISA optimization based on running CPU. Xiaoyun Li (3): eal/x86: run-time dispatch over memcpy app/test: run-time dispatch over memcpy perf test efd: run-time dispatch over x86 EFD functions --- v2 * Use gcc function multi-versioning to avoid compilation issues. * Add macros for AVX512 and AVX2. Only if users enable AVX512 and the compiler supports it, the AVX512 codes would be compiled. Only if the compiler supports AVX2, the AVX2 codes would be compiled. v3 * Reduce function calls via only keep rte_memcpy_xxx. * Add conditions that when copy size is small, use inline code path. Otherwise, use dynamic code path. * To support attribute target, clang version must be greater than 3.7. Otherwise, would choose SSE/AVX code path, the same as before. * Move two mocro functions to the top of the code since they would be used in inline SSE/AVX and dynamic SSE/AVX codes. v4 * Modify rte_memcpy.h to several .c files and modify makefiles to compile AVX2 and AVX512 files. lib/librte_eal/bsdapp/eal/Makefile | 17 + .../common/include/arch/x86/rte_memcpy.c | 59 ++ .../common/include/arch/x86/rte_memcpy.h | 861 +------------------ .../common/include/arch/x86/rte_memcpy_avx2.c | 291 +++++++ .../common/include/arch/x86/rte_memcpy_avx512f.c | 316 +++++++ .../common/include/arch/x86/rte_memcpy_internal.h | 909 +++++++++++++++++++++ .../common/include/arch/x86/rte_memcpy_sse.c | 585 +++++++++++++ lib/librte_eal/linuxapp/eal/Makefile | 17 + lib/librte_efd/rte_efd_x86.h | 41 +- mk/rte.cpuflags.mk | 14 + test/test/test_memcpy_perf.c | 40 +- 11 files changed, 2288 insertions(+), 862 deletions(-) create mode 100644 lib/librte_eal/common/include/arch/x86/rte_memcpy.c create mode 100644 lib/librte_eal/common/include/arch/x86/rte_memcpy_avx2.c create mode 100644 lib/librte_eal/common/include/arch/x86/rte_memcpy_avx512f.c create mode 100644 lib/librte_eal/common/include/arch/x86/rte_memcpy_internal.h create mode 100644 lib/librte_eal/common/include/arch/x86/rte_memcpy_sse.c -- 2.7.4