clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
38 lines
1.7 KiB
C++
38 lines
1.7 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
|
|
|
|
// Reflection metadata.
|
|
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")
|
|
HANDLE_SWIFT_SECTION(mpenum, "__swift5_mpenum", "swift5_mpenum", ".sw5mpen$B")
|
|
|
|
// Debug info.
|
|
HANDLE_SWIFT_SECTION(swiftast, "__swift_ast", ".swift_ast", "swiftast")
|