From owner-svn-src-projects@freebsd.org Thu Aug 6 19:27:05 2020 Return-Path: Delivered-To: svn-src-projects@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 99B243A9728 for ; Thu, 6 Aug 2020 19:27:05 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BMz5P3bCVz4VLG; Thu, 6 Aug 2020 19:27:05 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5B88FBE60; Thu, 6 Aug 2020 19:27:05 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 076JR5KS064884; Thu, 6 Aug 2020 19:27:05 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 076JR3lX064875; Thu, 6 Aug 2020 19:27:03 GMT (envelope-from dim@FreeBSD.org) Message-Id: <202008061927.076JR3lX064875@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Thu, 6 Aug 2020 19:27:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r363982 - in projects/clang1100-import/lib/clang/include: . Plugins clang/Basic clang/Config lld/Common lldb/Host llvm/Config llvm/Support X-SVN-Group: projects X-SVN-Commit-Author: dim X-SVN-Commit-Paths: in projects/clang1100-import/lib/clang/include: . Plugins clang/Basic clang/Config lld/Common lldb/Host llvm/Config llvm/Support X-SVN-Commit-Revision: 363982 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Aug 2020 19:27:05 -0000 Author: dim Date: Thu Aug 6 19:27:03 2020 New Revision: 363982 URL: https://svnweb.freebsd.org/changeset/base/363982 Log: Update generated llvm-project related version headers, config.h files and add a newly generated lldb Plugins.def file too. Added: projects/clang1100-import/lib/clang/include/Plugins/ projects/clang1100-import/lib/clang/include/Plugins/Plugins.def Modified: projects/clang1100-import/lib/clang/include/VCSVersion.inc projects/clang1100-import/lib/clang/include/clang/Basic/Version.inc projects/clang1100-import/lib/clang/include/clang/Config/config.h projects/clang1100-import/lib/clang/include/lld/Common/Version.inc projects/clang1100-import/lib/clang/include/lldb/Host/Config.h projects/clang1100-import/lib/clang/include/llvm/Config/config.h projects/clang1100-import/lib/clang/include/llvm/Config/llvm-config.h projects/clang1100-import/lib/clang/include/llvm/Support/VCSRevision.h Added: projects/clang1100-import/lib/clang/include/Plugins/Plugins.def ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/clang1100-import/lib/clang/include/Plugins/Plugins.def Thu Aug 6 19:27:03 2020 (r363982) @@ -0,0 +1,77 @@ +// $FreeBSD$ +/*===- lldb/source/Plugin/Plugins.def ---------------------------*- C++ -*-===*\ +|* *| +|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *| +|* Exceptions. *| +|* See https://llvm.org/LICENSE.txt for license information. *| +|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *| +|* *| +|*===----------------------------------------------------------------------===*| +|* *| +|* This file enumerates all of the plugins supported by this build of LLDB. *| +|* Clients of this file should define the LLDB_PLUGIN macro to be a *| +|* function-like macro with a single parameter (the name of the plugin) *| +|* including this file will then enumerate all of the plugins. Script *| +|* interpreter plugins can be enumerated separately by defining *| +|* LLDB_SCRIPT_PLUGIN in which case they are not part of LLDB_PLUGIN. *| +|* *| +|* *| +|* The set of plugins supported by LLDB is generated at configuration *| +|* time, at which point this header is generated. Do not modify this *| +|* header directly. *| +|* *| +\*===----------------------------------------------------------------------===*/ + +#ifndef LLDB_PLUGIN +# error Please define the macro LLDB_PLUGIN(PluginName) +#endif + +#ifndef LLDB_SCRIPT_PLUGIN +#define LLDB_SCRIPT_PLUGIN(p) LLDB_PLUGIN(p) +#endif + +LLDB_PLUGIN(ABIAArch64) +LLDB_PLUGIN(ABIARM) +LLDB_PLUGIN(ABIMips) +LLDB_PLUGIN(ABIPowerPC) +LLDB_PLUGIN(ABIX86) +LLDB_PLUGIN(ArchitectureArm) +LLDB_PLUGIN(ArchitectureMips) +LLDB_PLUGIN(ArchitecturePPC64) +LLDB_PLUGIN(DisassemblerLLVMC) +LLDB_PLUGIN(DynamicLoaderPosixDYLD) +LLDB_PLUGIN(DynamicLoaderStatic) +LLDB_PLUGIN(InstructionARM) +LLDB_PLUGIN(InstructionARM64) +LLDB_PLUGIN(InstructionMIPS) +LLDB_PLUGIN(InstructionMIPS64) +LLDB_PLUGIN(InstructionPPC64) +LLDB_PLUGIN(InstrumentationRuntimeASan) +LLDB_PLUGIN(InstrumentationRuntimeMainThreadChecker) +LLDB_PLUGIN(InstrumentationRuntimeTSan) +LLDB_PLUGIN(InstrumentationRuntimeUBSan) +LLDB_PLUGIN(JITLoaderGDB) +LLDB_PLUGIN(CPlusPlusLanguage) +LLDB_PLUGIN(CXXItaniumABI) +LLDB_PLUGIN(MemoryHistoryASan) +LLDB_PLUGIN(ObjectContainerBSDArchive) +LLDB_PLUGIN(ObjectFileBreakpad) +LLDB_PLUGIN(ObjectFileELF) +LLDB_PLUGIN(ObjectFileJIT) +LLDB_PLUGIN(PlatformFreeBSD) +LLDB_PLUGIN(PlatformGDB) +LLDB_PLUGIN(ProcessFreeBSD) +LLDB_PLUGIN(ProcessElfCore) +LLDB_SCRIPT_PLUGIN(ScriptInterpreterNone) +LLDB_SCRIPT_PLUGIN(ScriptInterpreterLua) +LLDB_PLUGIN(SymbolFileBreakpad) +LLDB_PLUGIN(SymbolFileDWARF) +LLDB_PLUGIN(SymbolFileSymtab) +LLDB_PLUGIN(SymbolVendorELF) +LLDB_PLUGIN(TypeSystemClang) +LLDB_PLUGIN(UnwindAssemblyInstEmulation) +LLDB_PLUGIN(UnwindAssemblyX86) +LLDB_PLUGIN(ProcessGDBRemote) + +#undef LLDB_PLUGIN +#undef LLDB_SCRIPT_PLUGIN Modified: projects/clang1100-import/lib/clang/include/VCSVersion.inc ============================================================================== --- projects/clang1100-import/lib/clang/include/VCSVersion.inc Thu Aug 6 19:24:17 2020 (r363981) +++ projects/clang1100-import/lib/clang/include/VCSVersion.inc Thu Aug 6 19:27:03 2020 (r363982) @@ -1,14 +1,14 @@ // $FreeBSD$ -#define LLVM_REVISION "llvmorg-10.0.1-0-gef32c611aa2" +#define LLVM_REVISION "llvmorg-11.0.0-rc1-25-g903c872b169" #define LLVM_REPOSITORY "git@github.com:llvm/llvm-project.git" -#define CLANG_REVISION "llvmorg-10.0.1-0-gef32c611aa2" +#define CLANG_REVISION "llvmorg-11.0.0-rc1-25-g903c872b169" #define CLANG_REPOSITORY "git@github.com:llvm/llvm-project.git" // - -#define LLD_REVISION "llvmorg-10.0.1-0-gef32c611aa2-1300007" +#define LLD_REVISION "llvmorg-11.0.0-rc1-25-g903c872b169-1300007" #define LLD_REPOSITORY "FreeBSD" -#define LLDB_REVISION "llvmorg-10.0.1-0-gef32c611aa2" +#define LLDB_REVISION "llvmorg-11.0.0-rc1-25-g903c872b169" #define LLDB_REPOSITORY "git@github.com:llvm/llvm-project.git" Modified: projects/clang1100-import/lib/clang/include/clang/Basic/Version.inc ============================================================================== --- projects/clang1100-import/lib/clang/include/clang/Basic/Version.inc Thu Aug 6 19:24:17 2020 (r363981) +++ projects/clang1100-import/lib/clang/include/clang/Basic/Version.inc Thu Aug 6 19:27:03 2020 (r363982) @@ -1,9 +1,9 @@ /* $FreeBSD$ */ -#define CLANG_VERSION 10.0.1 -#define CLANG_VERSION_STRING "10.0.1" -#define CLANG_VERSION_MAJOR 10 +#define CLANG_VERSION 11.0.0 +#define CLANG_VERSION_STRING "11.0.0" +#define CLANG_VERSION_MAJOR 11 #define CLANG_VERSION_MINOR 0 -#define CLANG_VERSION_PATCHLEVEL 1 +#define CLANG_VERSION_PATCHLEVEL 0 #define CLANG_VENDOR "FreeBSD " Modified: projects/clang1100-import/lib/clang/include/clang/Config/config.h ============================================================================== --- projects/clang1100-import/lib/clang/include/clang/Config/config.h Thu Aug 6 19:24:17 2020 (r363981) +++ projects/clang1100-import/lib/clang/include/clang/Config/config.h Thu Aug 6 19:27:03 2020 (r363982) @@ -36,6 +36,9 @@ /* Default architecture for OpenMP offloading to Nvidia GPUs. */ #define CLANG_OPENMP_NVPTX_DEFAULT_ARCH "sm_35" +/* Default architecture for SystemZ. */ +#define CLANG_SYSTEMZ_DEFAULT_ARCH "z10" + /* Multilib suffix for libdir. */ #define CLANG_LIBDIR_SUFFIX "" @@ -62,7 +65,7 @@ #define CLANG_HAVE_RLIMITS 1 /* The LLVM product name and version */ -#define BACKEND_PACKAGE_STRING "LLVM 10.0.1" +#define BACKEND_PACKAGE_STRING "LLVM 11.0.0" /* Linker version detected at compile time. */ /* #undef HOST_LINK_VERSION */ Modified: projects/clang1100-import/lib/clang/include/lld/Common/Version.inc ============================================================================== --- projects/clang1100-import/lib/clang/include/lld/Common/Version.inc Thu Aug 6 19:24:17 2020 (r363981) +++ projects/clang1100-import/lib/clang/include/lld/Common/Version.inc Thu Aug 6 19:27:03 2020 (r363982) @@ -1,6 +1,3 @@ // $FreeBSD$ -#define LLD_VERSION 10.0.1 -#define LLD_VERSION_STRING "10.0.1" -#define LLD_VERSION_MAJOR 10 -#define LLD_VERSION_MINOR 0 +#define LLD_VERSION_STRING "11.0.0" Modified: projects/clang1100-import/lib/clang/include/lldb/Host/Config.h ============================================================================== --- projects/clang1100-import/lib/clang/include/lldb/Host/Config.h Thu Aug 6 19:24:17 2020 (r363981) +++ projects/clang1100-import/lib/clang/include/lldb/Host/Config.h Thu Aug 6 19:27:03 2020 (r363982) @@ -47,6 +47,8 @@ #define LLDB_ENABLE_PYTHON 0 +#define LLDB_EMBED_PYTHON_HOME 0 + /* #undef LLDB_PYTHON_HOME */ #define LLDB_LIBDIR_SUFFIX "" Modified: projects/clang1100-import/lib/clang/include/llvm/Config/config.h ============================================================================== --- projects/clang1100-import/lib/clang/include/llvm/Config/config.h Thu Aug 6 19:24:17 2020 (r363981) +++ projects/clang1100-import/lib/clang/include/llvm/Config/config.h Thu Aug 6 19:27:03 2020 (r363982) @@ -2,6 +2,9 @@ #ifndef CONFIG_H #define CONFIG_H +// Include this header only under the llvm source tree. +// This is a private header. + /* Exported configuration */ #include "llvm/Config/llvm-config.h" @@ -105,10 +108,10 @@ #define HAVE_LIBPTHREAD 1 /* Define to 1 if you have the `pthread_getname_np' function. */ -/* #undef HAVE_PTHREAD_GETNAME_NP */ +#define HAVE_PTHREAD_GETNAME_NP 1 /* Define to 1 if you have the `pthread_setname_np' function. */ -/* #undef HAVE_PTHREAD_SETNAME_NP */ +#define HAVE_PTHREAD_SETNAME_NP 1 /* Define to 1 if you have the `z' library (-lz). */ #define HAVE_LIBZ 1 @@ -161,12 +164,6 @@ /* Define to 1 if you have the `setenv' function. */ #define HAVE_SETENV 1 -/* Define to 1 if you have the `sched_getaffinity' function. */ -/* #undef HAVE_SCHED_GETAFFINITY */ - -/* Define to 1 if you have the `CPU_COUNT' macro. */ -/* #undef HAVE_CPU_COUNT */ - /* Define to 1 if you have the `setrlimit' function. */ #define HAVE_SETRLIMIT 1 @@ -322,10 +319,10 @@ #define PACKAGE_NAME "LLVM" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "LLVM 10.0.1" +#define PACKAGE_STRING "LLVM 11.0.0" /* Define to the version of this package. */ -#define PACKAGE_VERSION "10.0.1" +#define PACKAGE_VERSION "11.0.0" /* Define to the vendor of this package. */ /* #undef PACKAGE_VENDOR */ @@ -344,9 +341,6 @@ /* Whether GlobalISel rule coverage is being collected */ #define LLVM_GISEL_COV_ENABLED 0 - -/* Define if we have z3 and want to build it */ -/* #undef LLVM_WITH_Z3 */ /* Define to the default GlobalISel coverage file prefix */ /* #undef LLVM_GISEL_COV_PREFIX */ Modified: projects/clang1100-import/lib/clang/include/llvm/Config/llvm-config.h ============================================================================== --- projects/clang1100-import/lib/clang/include/llvm/Config/llvm-config.h Thu Aug 6 19:24:17 2020 (r363981) +++ projects/clang1100-import/lib/clang/include/llvm/Config/llvm-config.h Thu Aug 6 19:27:03 2020 (r363982) @@ -64,20 +64,26 @@ #define LLVM_USE_PERF 0 /* Major version of the LLVM API */ -#define LLVM_VERSION_MAJOR 10 +#define LLVM_VERSION_MAJOR 11 /* Minor version of the LLVM API */ #define LLVM_VERSION_MINOR 0 /* Patch version of the LLVM API */ -#define LLVM_VERSION_PATCH 1 +#define LLVM_VERSION_PATCH 0 /* LLVM version string */ -#define LLVM_VERSION_STRING "10.0.1" +#define LLVM_VERSION_STRING "11.0.0" /* Whether LLVM records statistics for use with GetStatistics(), * PrintStatistics() or PrintStatisticsJSON() */ #define LLVM_FORCE_ENABLE_STATS 0 + +/* Define if we have z3 and want to build it */ +/* #undef LLVM_WITH_Z3 */ + +/* Define if LLVM was built with a dependency to the libtensorflow dynamic library */ +/* #undef LLVM_HAVE_TF_API */ #endif Modified: projects/clang1100-import/lib/clang/include/llvm/Support/VCSRevision.h ============================================================================== --- projects/clang1100-import/lib/clang/include/llvm/Support/VCSRevision.h Thu Aug 6 19:24:17 2020 (r363981) +++ projects/clang1100-import/lib/clang/include/llvm/Support/VCSRevision.h Thu Aug 6 19:27:03 2020 (r363982) @@ -1,3 +1,3 @@ /* $FreeBSD$ */ -#define LLVM_REVISION "llvmorg-10.0.1-0-gef32c611aa2" +#define LLVM_REVISION "llvmorg-11.0.0-rc1-25-g903c872b169" #define LLVM_REPOSITORY "git@github.com:llvm/llvm-project.git"