//===--------- SectCreate.cpp - Emulate ld64's -sectcreate option ---------===// // // 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 // //===----------------------------------------------------------------------===// #include "llvm/ExecutionEngine/Orc/SectCreate.h" #define DEBUG_TYPE … usingnamespacellvm::jitlink; namespace llvm::orc { void SectCreateMaterializationUnit::materialize( std::unique_ptr<MaterializationResponsibility> R) { … } void SectCreateMaterializationUnit::discard(const JITDylib &JD, const SymbolStringPtr &Name) { … } MaterializationUnit::Interface SectCreateMaterializationUnit::getInterface( const ExtraSymbolsMap &ExtraSymbols) { … } } // End namespace llvm::orc.