From patchwork Fri Aug 11 19:20:42 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 46 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E269143037; Fri, 11 Aug 2023 21:21:13 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 58FED4325F; Fri, 11 Aug 2023 21:21:05 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id BE59440144 for ; Fri, 11 Aug 2023 21:21:00 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 1814020FCF69; Fri, 11 Aug 2023 12:21:00 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1814020FCF69 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1691781660; bh=U/Hg+3Y4PSsIpOE5EQAw8J/Jh8OdNXH18CgHN5J+ZsY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cmfvIGCDNW8NueUGF7dDvaycO0iyw+mutYGVqED8RS7XypRxqagFWFv1suJ17LUFL JXaKFDpKZou+yyclAtTWpbOP/2lTGv5qXYiJKsR4eXoYFaf1slCt3DKtpBLOxN1nIT BzzK3vr2wydlQA4SJMDgE5PJQ3MRugvvdpb/q/yA= From: Tyler Retzlaff To: dev@dpdk.org Cc: Bruce Richardson , Konstantin Ananyev , Ciara Power , thomas@monjalon.net, david.marchand@redhat.com, mb@smartsharesystems.com, Tyler Retzlaff Subject: [PATCH v11 00/16] msvc integration changes Date: Fri, 11 Aug 2023 12:20:42 -0700 Message-Id: <1691781658-32520-1-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1680558751-17931-1-git-send-email-roretzla@linux.microsoft.com> References: <1680558751-17931-1-git-send-email-roretzla@linux.microsoft.com> MIME-Version: 1.0 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 In accordance with draft plan http://mails.dpdk.org/archives/web/2023-February/002023.html introduces conditionally compiled code to enable building with MSVC that _does not_ require C99/C11 meaning it can be integrated now. This series covers minimal changes for item #2 in draft plan for EAL dependencies log, kvargs, telemetry and consumed EAL public headers. Note if any patch in the series requires in-depth discussion I'll detach it from this series for separate submission & more focused discussion so it doesn't block the entire series. Note other "common" intrinsics were investigated for viability but were not adopted either because they were not available on older versions of GCC or because they generate different code for msvc vs GCC. v11: * rebase for log lib split: introduces 2 patches to convert to portable use of ternary operator * rebase for log lib split: introduce MSVC versions of RTE_INIT_PRIO and RTE_FINI_PRIO since it is needed by log v10: * rebase series post 23.07 release. no changes except telemetry: avoid expanding versioned symbol macros on MSVC has been dropped from the series as 23.11 has removed the versioned symbols v9: * invert macro conditional evaluation and use to be #ifdef RTE_TOOLCHAIN_MSVC instead of #ifndef RTE_TOOLCHAIN_MSVC wherever it doesn't make evaluation more complex than it already is v8: * use waitpkg intrinsics if __WAITPKG__ is defined by the compiler v7: * remove patch typedef of rte_cpuflags_t as an int. for now we will just allow warning to be emitted to avoid adding conditional compilation v6: * convert / expand likely/unlikely macros to _Bool type * expand __extension__ empty it's cleaner to do this for now instead of modifying the whole tree * provide msvc container_of not based on gcc expression statement extension * add patch that stops defining typeof (C23 keyword) when building with msvc v5: * remove accidental line removal in barrier patch * update prefetch patch to use intrinsics for all toolchains * remove x86 specific changes for byte swap patch since msvc intrinsics are processor agnostic always use intrinsics from generic include * expand __rte_packed empty for msvc packing will be addressed in a separate series v4: * update rdtsc patch to use gcc intrinsics * update rtm patch to use gcc intrinsics * drop patch disable json print formatting, we will utilize series removing VLAs from Bruce * added patch using prefetch intrinsics for msvc * added patch using byte swap intrinsics for msvc * added patch hiding typdefs for msvc using gcc vector extension * added patch defining MSVC as little endian always v3: * v3 does not group together conditional blocks when experimented with it didn't reduce conditionals enough to make it worth while. once msvc tests are at a running point i suggest a narrow targeted discussion about code organization without blocking this series * v3 does not attempt to refactor to use intrinsics for non-msvc compilers. again this should be done as a separate follow-up series later if desired * fix expansion of likely and unlikely macros * remove unnecessary define for rte_smp_{r,w}mb it is sufficient for these to be compiler barriers on x86 * add a new patch to use __cpuid and __cpuidex intrinsics when building with msvc * add a new patch to use _umonitor, _umwait and _tpause intrinsics when building with msvc v2: * use _mm_{l,s,m}fence intrinsics for rte_smp_{r,w,}mb macros are intended to be memory barriers not compiler barriers on x86_64 Tyler Retzlaff (16): eal: use rdtsc intrinsic eal: use rtm and xtest intrinsics eal: use barrier intrinsics eal: use cpuid and cpuidex intrinsics eal: use umonitor umwait and tpause intrinsics eal: use prefetch intrinsics eal: use byte swap intrinsics eal: hide GCC extension based alignment markers eal: hide typedefs based on GCC vector extensions eal: expand most macros to empty when using MSVC eal: exclude exposure of rte atomic APIs for MSVC builds eal: always define MSVC as little endian eal: do not define typeof macro when building with MSVC log: use standard ternary operator instead of GCC extension eal: use standard ternary operator instead of GCC extension eal: define priority based ctor dtor for MSVC config/x86/meson.build | 6 ++ lib/eal/common/eal_common_hexdump.c | 2 +- lib/eal/include/generic/rte_atomic.h | 11 ++++ lib/eal/include/generic/rte_byteorder.h | 13 +++++ lib/eal/include/generic/rte_vect.h | 4 ++ lib/eal/include/rte_branch_prediction.h | 8 +++ lib/eal/include/rte_common.h | 97 +++++++++++++++++++++++++++++++++ lib/eal/include/rte_compat.h | 20 +++++++ lib/eal/x86/include/rte_atomic.h | 8 +++ lib/eal/x86/include/rte_byteorder.h | 4 ++ lib/eal/x86/include/rte_cycles.h | 14 +++-- lib/eal/x86/include/rte_prefetch.h | 25 +++++++-- lib/eal/x86/include/rte_rtm.h | 18 ++---- lib/eal/x86/rte_cpuflags.c | 6 +- lib/eal/x86/rte_cpuid.h | 7 +++ lib/eal/x86/rte_cycles.c | 36 ++++++++++++ lib/eal/x86/rte_hypervisor.c | 4 ++ lib/eal/x86/rte_power_intrinsics.c | 12 ++++ lib/log/log.c | 2 +- 19 files changed, 271 insertions(+), 26 deletions(-)