summaryrefslogtreecommitdiff
path: root/clang-r353983/include/lld/Core/Writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang-r353983/include/lld/Core/Writer.h')
-rw-r--r--clang-r353983/include/lld/Core/Writer.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/clang-r353983/include/lld/Core/Writer.h b/clang-r353983/include/lld/Core/Writer.h
new file mode 100644
index 00000000..0de5fca3
--- /dev/null
+++ b/clang-r353983/include/lld/Core/Writer.h
@@ -0,0 +1,46 @@
+//===- lld/Core/Writer.h - Abstract File Format Interface -----------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLD_CORE_WRITER_H
+#define LLD_CORE_WRITER_H
+
+#include "lld/Common/LLVM.h"
+#include "llvm/Support/Error.h"
+#include <memory>
+#include <vector>
+
+namespace lld {
+class File;
+class LinkingContext;
+class MachOLinkingContext;
+
+/// The Writer is an abstract class for writing object files, shared
+/// library files, and executable files. Each file format (e.g. mach-o, etc)
+/// has a concrete subclass of Writer.
+class Writer {
+public:
+ virtual ~Writer();
+
+ /// Write a file from the supplied File object
+ virtual llvm::Error writeFile(const File &linkedFile, StringRef path) = 0;
+
+ /// This method is called by Core Linking to give the Writer a chance
+ /// to add file format specific "files" to set of files to be linked. This is
+ /// how file format specific atoms can be added to the link.
+ virtual void createImplicitFiles(std::vector<std::unique_ptr<File>> &) {}
+
+protected:
+ // only concrete subclasses can be instantiated
+ Writer();
+};
+
+std::unique_ptr<Writer> createWriterMachO(const MachOLinkingContext &);
+std::unique_ptr<Writer> createWriterYAML(const LinkingContext &);
+} // end namespace lld
+
+#endif