Update generated llvm-project related version headers, config.h files

and add a newly generated lldb Plugins.def file too.
This commit is contained in:
Dimitry Andric 2020-08-06 19:27:03 +00:00
parent 82343267e3
commit 5f24ef21be
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/clang1100-import/; revision=363982
9 changed files with 109 additions and 30 deletions

View File

@ -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

View File

@ -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"
// <Upstream revision at import>-<Local identifier in __FreeBSD_version style>
#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"

View File

@ -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 "

View File

@ -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 */

View File

@ -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"

View File

@ -47,6 +47,8 @@
#define LLDB_ENABLE_PYTHON 0
#define LLDB_EMBED_PYTHON_HOME 0
/* #undef LLDB_PYTHON_HOME */
#define LLDB_LIBDIR_SUFFIX ""

View File

@ -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 */
@ -345,9 +342,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 */

View File

@ -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

View File

@ -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"