mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
without relying on spare bit information in the reflection metadata (which was added in #40906). As a result, we can remove the code from #40906. This is the first step in such removal. It removes the RemoteMirror code for looking up such metadata. It leaves behind: * Sufficient stubs for LLDB to continue to build. Once LLDB is updated, these stubs can be removed as well. * The compiler code to emit such metadata. This allows new binaries to still reflect MPEs on older runtimes. This will need to be kept for a transitional period.
33 lines
1.5 KiB
C++
33 lines
1.5 KiB
C++
//===- llvm/BinaryFormat/Swift.def - Swift definitions ---------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Macros for running through Swift enumerators.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#if !(defined HANDLE_SWIFT_SECTION)
|
|
#error "Missing macro definition of HANDLE_SWIFT_SECTION"
|
|
#endif
|
|
|
|
#ifndef HANDLE_SWIFT_SECTION
|
|
#define HANDLE_SWIFT_SECTION(KIND, MACHO, ELF, COFF)
|
|
#endif
|
|
|
|
HANDLE_SWIFT_SECTION(fieldmd, "__swift5_fieldmd", "swift5_fieldmd", ".sw5flmd")
|
|
HANDLE_SWIFT_SECTION(assocty, "__swift5_assocty", "swift5_assocty", ".sw5asty")
|
|
HANDLE_SWIFT_SECTION(builtin, "__swift5_builtin", "swift5_builtin", ".sw5bltn")
|
|
HANDLE_SWIFT_SECTION(capture, "__swift5_capture", "swift5_capture", ".sw5cptr")
|
|
HANDLE_SWIFT_SECTION(typeref, "__swift5_typeref", "swift5_typeref", ".sw5tyrf")
|
|
HANDLE_SWIFT_SECTION(reflstr, "__swift5_reflstr", "swift5_reflstr", ".sw5rfst")
|
|
HANDLE_SWIFT_SECTION(conform, "__swift5_proto", "swift5_protocol_conformances",
|
|
".sw5prtc$B")
|
|
HANDLE_SWIFT_SECTION(protocs, "__swift5_protos", "swift5_protocols",
|
|
".sw5prt$B")
|
|
HANDLE_SWIFT_SECTION(acfuncs, "__swift5_acfuncs", "swift5_accessible_functions",
|
|
".sw5acfn$B")
|