Searched refs:mcld (Results 51 - 75 of 533) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/lib/Script/
H A DOutputArchCmd.cpp9 #include <mcld/Script/OutputArchCmd.h>
10 #include <mcld/Support/raw_ostream.h>
12 using namespace mcld;
29 mcld::outs() << "OUTPUT_ARCH ( " << m_Arch << " )\n";
H A DEntryCmd.cpp9 #include <mcld/Script/EntryCmd.h>
10 #include <mcld/Support/raw_ostream.h>
11 #include <mcld/LinkerScript.h>
12 #include <mcld/Module.h>
14 using namespace mcld;
31 mcld::outs() << "ENTRY ( " << m_Entry << " )\n";
H A DInputSectDesc.cpp9 #include <mcld/Script/InputSectDesc.h>
10 #include <mcld/Script/WildcardPattern.h>
11 #include <mcld/Support/raw_ostream.h>
12 #include <mcld/LinkerScript.h>
13 #include <mcld/Module.h>
16 using namespace mcld;
38 mcld::outs() << "KEEP (";
42 mcld::outs() << "SORT (";
44 mcld::outs() << m_Spec.file().name();
47 mcld
[all...]
H A DOutputSectDesc.cpp9 #include <mcld/Script/OutputSectDesc.h>
10 #include <mcld/Script/RpnExpr.h>
11 #include <mcld/Script/StringList.h>
12 #include <mcld/Script/StrToken.h>
13 #include <mcld/Script/InputSectDesc.h>
14 #include <mcld/Support/raw_ostream.h>
15 #include <mcld/LinkerScript.h>
16 #include <mcld/Module.h>
20 using namespace mcld;
43 mcld
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64ELFMCLinker.cpp11 #include <mcld/LinkerConfig.h>
12 #include <mcld/Object/SectionMap.h>
14 using namespace mcld;
17 mcld::Module &pModule,
H A DAArch64MCLinker.cpp13 #include <mcld/Module.h>
14 #include <mcld/Support/TargetRegistry.h>
16 using namespace mcld;
18 namespace mcld { namespace
25 mcld::Module& pModule,
41 } // namespace of mcld
48 mcld::TargetRegistry::RegisterMCLinker(TheAArch64Target,
/frameworks/compile/mclinker/unittests/
H A DSystemUtilsTest.cpp9 #include <mcld/Support/SystemUtils.h>
12 using namespace mcld;
13 using namespace mcld::test;
40 ASSERT_TRUE(NULL != mcld::sys::strerror(0));
H A DStaticResolverTest.h13 #include <mcld/LinkerConfig.h>
15 namespace mcld { namespace
21 } // namespace for mcld
47 mcld::StaticResolver* m_pResolver;
48 mcld::LinkerConfig* m_pConfig;
49 mcld::DiagnosticPrinter* m_pPrinter;
H A DELFBinaryReaderTest.cpp9 #include <mcld/LD/ELFBinaryReader.h>
10 #include <mcld/Module.h>
11 #include <mcld/LinkerScript.h>
12 #include <mcld/LinkerConfig.h>
13 #include <mcld/IRBuilder.h>
14 #include <mcld/GeneralOptions.h>
15 #include <mcld/MC/Input.h>
19 using namespace mcld;
20 using namespace mcld::test;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMMCLinker.cpp13 #include <mcld/Module.h>
14 #include <mcld/Support/TargetRegistry.h>
16 using namespace mcld;
18 namespace mcld { namespace
24 mcld::Module& pModule,
40 } // namespace of mcld
47 mcld::TargetRegistry::RegisterMCLinker(TheARMTarget, createARMMCLinker);
48 mcld::TargetRegistry::RegisterMCLinker(TheThumbTarget, createARMMCLinker);
H A DARMELFMCLinker.cpp11 using namespace mcld;
14 mcld::Module &pModule,
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86MCLinker.cpp11 #include <mcld/Module.h>
12 #include <mcld/Support/TargetRegistry.h>
15 using namespace mcld;
17 namespace mcld { namespace
24 mcld::Module& pModule,
40 } // namespace of mcld
47 mcld::TargetRegistry::RegisterMCLinker(TheX86_32Target, createX86MCLinker);
48 mcld::TargetRegistry::RegisterMCLinker(TheX86_64Target, createX86MCLinker);
H A DX86ELFMCLinker.cpp11 using namespace mcld;
14 mcld::Module& pModule,
/frameworks/compile/mclinker/lib/Support/
H A DFileSystem.cpp9 #include <mcld/Config/Config.h>
10 #include <mcld/Support/FileSystem.h>
11 #include <mcld/Support/Path.h>
16 bool mcld::sys::fs::exists(const Path &pPath)
18 mcld::sys::fs::FileStatus file_status;
19 mcld::sys::fs::detail::status(pPath, file_status);
20 return (file_status.type() != mcld::sys::fs::StatusError) &&
21 (file_status.type() != mcld::sys::fs::FileNotFound);
24 bool mcld::sys::fs::is_directory(const Path &pPath)
28 return (file_status.type() == mcld
[all...]
H A DMsgHandling.cpp9 #include <mcld/LD/DiagnosticEngine.h>
10 #include <mcld/LD/DiagnosticLineInfo.h>
11 #include <mcld/LD/DiagnosticPrinter.h>
12 #include <mcld/LD/TextDiagnosticPrinter.h>
13 #include <mcld/LD/MsgHandler.h>
14 #include <mcld/Support/MsgHandling.h>
15 #include <mcld/Support/raw_ostream.h>
23 using namespace mcld;
31 mcld::InitializeDiagnosticEngine(const mcld
[all...]
H A Draw_ostream.cpp9 #include <mcld/Config/Config.h>
10 #include <mcld/Support/raw_ostream.h>
33 using namespace mcld;
38 mcld::raw_fd_ostream::raw_fd_ostream(const char *pFilename,
46 mcld::raw_fd_ostream::raw_fd_ostream(int pFD,
54 mcld::raw_fd_ostream::~raw_fd_ostream()
58 void mcld::raw_fd_ostream::setColor(bool pEnable)
65 mcld::raw_fd_ostream::changeColor(enum llvm::raw_ostream::Colors pColor,
74 llvm::raw_ostream& mcld::raw_fd_ostream::resetColor()
81 llvm::raw_ostream& mcld
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DPathCache.h12 #include <mcld/ADT/HashEntry.h>
13 #include <mcld/ADT/HashTable.h>
14 #include <mcld/ADT/StringHash.h>
15 #include <mcld/Support/Path.h>
17 namespace mcld { namespace
23 mcld::sys::fs::Path,
31 } // namespace of mcld
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonMCLinker.cpp11 #include <mcld/Module.h>
12 #include <mcld/Support/TargetRegistry.h>
15 using namespace mcld;
17 namespace mcld { namespace
23 mcld::Module& pModule,
43 } // namespace of mcld
50 mcld::TargetRegistry::RegisterMCLinker(TheHexagonTarget,
H A DHexagonELFMCLinker.cpp11 using namespace mcld;
14 mcld::Module& pModule,
H A DHexagonEmulation.cpp10 #include <mcld/LinkerScript.h>
11 #include <mcld/LinkerConfig.h>
12 #include <mcld/Target/ELFEmulation.h>
13 #include <mcld/Support/TargetRegistry.h>
15 namespace mcld { namespace
55 } // namespace of mcld
62 mcld::TargetRegistry::RegisterEmulation(mcld::TheHexagonTarget,
63 mcld::emulateHexagonLD);
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFDynObjFileFormat.h11 #include <mcld/LD/ELFFileFormat.h>
13 namespace mcld { namespace
27 } // namespace of mcld
H A DELFExecFileFormat.h11 #include <mcld/LD/ELFFileFormat.h>
13 namespace mcld { namespace
27 } // namespace of mcld
H A DELFObjectFileFormat.h11 #include <mcld/LD/ELFFileFormat.h>
13 namespace mcld { namespace
28 } // namespace of mcld
/frameworks/compile/mclinker/lib/LD/
H A DLDFileFormat.cpp9 #include <mcld/LD/LDFileFormat.h>
11 using namespace mcld;
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsELFMCLinker.cpp11 using namespace mcld;
14 mcld::Module& pModule,

Completed in 511 milliseconds

1234567891011>>