Searched refs:lld (Results 26 - 50 of 190) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DAbsoluteAtom.h12 #include "lld/Core/Atom.h"
14 namespace lld { namespace
40 } // namespace lld
H A DUndefinedAtom.h12 #include "lld/Core/Atom.h"
14 namespace lld { namespace
65 } // namespace lld
H A DError.h1 //===- Error.h - system_error extensions for lld ----------------*- C++ -*-===//
9 // This declares a new error_category for the lld library.
16 #include "lld/Common/LLVM.h"
21 namespace lld { namespace
61 } // end namespace lld
64 template <> struct is_error_code_enum<lld::YamlReaderError> : std::true_type {};
H A DArchiveLibraryFile.h12 #include "lld/Core/File.h"
15 namespace lld { namespace
44 } // namespace lld
H A DSharedLibraryAtom.h12 #include "lld/Core/Atom.h"
14 namespace lld { namespace
50 } // namespace lld
H A DReader.h1 //===- lld/Core/Reader.h - Abstract File Format Reading Interface ---------===//
12 #include "lld/Common/LLVM.h"
13 #include "lld/Core/Reference.h"
28 namespace lld { namespace
59 /// the YAML node. In lld, top level YAML documents can be in many YAML
72 /// YAML I/O, then convert the result into an lld::File* and return it.
73 virtual bool handledDocTag(llvm::yaml::IO &io, const lld::File *&f) const = 0;
102 /// the current document type process the yaml into an lld::File*.
103 bool handleTaggedDoc(llvm::yaml::IO &io, const lld::File *&file) const;
152 } // end namespace lld
[all...]
H A DPassManager.h1 //===- lld/Core/PassManager.h - Manage linker passes ----------------------===//
12 #include "lld/Common/LLVM.h"
13 #include "lld/Core/Pass.h"
18 namespace lld { namespace
45 } // end namespace lld
H A DWriter.h1 //===- lld/Core/Writer.h - Abstract File Format Interface -----------------===//
12 #include "lld/Common/LLVM.h"
17 namespace lld { namespace
44 } // end namespace lld
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DWriterMachO.cpp11 #include "lld/Core/File.h"
12 #include "lld/Core/Writer.h"
13 #include "lld/ReaderWriter/MachOLinkingContext.h"
21 using lld::mach_o::normalized::NormalizedFile;
23 namespace lld { namespace
30 llvm::Error writeFile(const lld::File &file, StringRef path) override {
67 return std::unique_ptr<Writer>(new lld::mach_o::MachOWriter(context));
70 } // namespace lld
H A DMachOPasses.h12 #include "lld/Core/PassManager.h"
13 #include "lld/ReaderWriter/MachOLinkingContext.h"
15 namespace lld { namespace
27 } // namespace lld
H A DMachONormalizedFileYAML.cpp18 #include "lld/Common/LLVM.h"
19 #include "lld/Core/Error.h"
20 #include "lld/ReaderWriter/YamlContext.h"
38 using namespace lld::mach_o::normalized;
39 using lld::YamlContext;
121 struct ScalarEnumerationTraits<lld::MachOLinkingContext::Arch> {
122 static void enumeration(IO &io, lld::MachOLinkingContext::Arch &value) {
123 io.enumCase(value, "unknown",lld::MachOLinkingContext::arch_unknown);
124 io.enumCase(value, "ppc", lld::MachOLinkingContext::arch_ppc);
125 io.enumCase(value, "x86", lld
752 namespace lld { namespace
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/
H A DTargetOptionsCommandFlags.h17 namespace lld { namespace
H A DStrings.h19 namespace lld { namespace
42 } // namespace lld
/freebsd-11-stable/contrib/llvm-project/lld/lib/Core/
H A DFile.cpp9 #include "lld/Core/File.h"
12 namespace lld { namespace
28 } // end namespace lld
H A DError.cpp1 //===- Error.cpp - system_error extensions for lld --------------*- C++ -*-===//
9 #include "lld/Core/Error.h"
16 using namespace lld;
22 return "lld.yaml.reader";
38 const std::error_category &lld::YamlReaderCategory() {
43 namespace lld { namespace
53 return "lld.dynamic_error";
92 } // namespace lld
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DMinGW.h14 #include "lld/Common/LLVM.h"
17 namespace lld { namespace
40 } // namespace lld
H A DLTO.h23 #include "lld/Common/LLVM.h"
36 namespace lld { namespace
H A DPDB.h22 namespace lld { namespace
36 } // namespace lld
H A DTypeMerger.h17 namespace lld { namespace
63 } // namespace lld
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DFilesystem.cpp13 #include "lld/Common/Filesystem.h"
14 #include "lld/Common/Threads.h"
24 using namespace lld;
41 void lld::unlinkAsync(StringRef path) {
93 std::error_code lld::tryCreateFile(StringRef path) {
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DAArch64ErrataFix.h12 #include "lld/Common/LLVM.h"
16 namespace lld { namespace
48 } // namespace lld
H A DARMErrataFix.h12 #include "lld/Common/LLVM.h"
17 namespace lld { namespace
49 } // namespace lld
H A DDriverUtils.cpp16 #include "lld/Common/ErrorHandler.h"
17 #include "lld/Common/Memory.h"
18 #include "lld/Common/Reproduce.h"
19 #include "lld/Common/Version.h"
33 namespace lld { namespace
62 lld::errs().enable_colors(true);
64 lld::errs().enable_colors(false);
68 lld::errs().enable_colors(true);
70 lld::errs().enable_colors(false);
148 lld
[all...]
H A DLTO.h23 #include "lld/Common/LLVM.h"
36 namespace lld { namespace
60 } // namespace lld
/freebsd-11-stable/usr.bin/clang/lld/
H A DMakefile1 # $FreeBSD: stable/11/usr.bin/clang/lld/Makefile 360784 2020-05-07 16:34:01Z dim $
7 LLD_SRCS= ${LLVM_BASE}/lld
9 PACKAGE= lld
10 PROG_CXX= ld.lld
16 MLINKS= ld.lld.1 ld.1
28 SRCDIR= lld
83 SRCS+= tools/lld/lld.cpp

Completed in 95 milliseconds

12345678