| /frameworks/compile/mclinker/lib/Core/ |
| LinkerScript.cpp | 1 //===- LinkerScript.cpp ---------------------------------------------------===// 9 #include <mcld/LinkerScript.h> 14 // LinkerScript 16 LinkerScript::LinkerScript() 20 LinkerScript::~LinkerScript() 24 const mcld::sys::fs::Path& LinkerScript::sysroot() const 29 void LinkerScript::setSysroot(const mcld::sys::fs::Path &pSysroot) 34 bool LinkerScript::hasSysroot() cons [all...] |
| Android.mk | 11 LinkerScript.cpp \
|
| Module.cpp | 26 Module::Module(LinkerScript& pScript) 30 Module::Module(const std::string& pName, LinkerScript& pScript)
|
| Linker.cpp | 46 bool Linker::emulate(LinkerScript& pScript, LinkerConfig& pConfig) 340 bool Linker::initEmulator(LinkerScript& pScript)
|
| IRBuilder.cpp | 461 const LinkerScript& script = m_Module.getScript(); 462 LinkerScript::SymbolRenameMap::const_iterator renameSym =
|
| /frameworks/compile/mclinker/include/mcld/Target/ |
| ELFEmulation.h | 18 class LinkerScript; 20 bool MCLDEmulateELF(LinkerScript& pScript, LinkerConfig& pConfig);
|
| GNULDBackend.h | 111 uint64_t getSegmentStartAddr(const LinkerScript& pScript) const; 314 void setupProgramHdrs(const LinkerScript& pScript);
|
| /frameworks/compile/mclinker/include/mcld/ |
| Linker.h | 21 class LinkerScript; 43 bool emulate(LinkerScript& pScript, LinkerConfig& pConfig); 76 bool initEmulator(LinkerScript& pScript);
|
| LinkerScript.h | 1 //===- LinkerScript.h -----------------------------------------------------===// 24 /** \class LinkerScript 27 class LinkerScript 43 LinkerScript(); 45 ~LinkerScript();
|
| Module.h | 23 #include <mcld/LinkerScript.h> 71 explicit Module(LinkerScript& pScript); 73 Module(const std::string& pName, LinkerScript& pScript); 81 const LinkerScript& getScript() const { return m_Script; } 83 LinkerScript& getScript() { return m_Script; } 175 LinkerScript& m_Script;
|
| /frameworks/compile/mclinker/lib/Target/Hexagon/ |
| HexagonEmulation.cpp | 10 #include <mcld/LinkerScript.h> 17 static bool MCLDEmulateHexagonELF(LinkerScript& pScript, LinkerConfig& pConfig) 41 bool emulateHexagonLD(LinkerScript& pScript, LinkerConfig& pConfig)
|
| /frameworks/compile/mclinker/lib/Target/Mips/ |
| MipsEmulation.cpp | 10 #include <mcld/LinkerScript.h> 17 static bool MCLDEmulateMipsELF(LinkerScript& pScript, LinkerConfig& pConfig) 41 bool emulateMipsLD(LinkerScript& pScript, LinkerConfig& pConfig)
|
| /frameworks/compile/mclinker/lib/Target/ |
| ELFEmulation.cpp | 10 #include <mcld/LinkerScript.h> 65 bool mcld::MCLDEmulateELF(LinkerScript& pScript, LinkerConfig& pConfig)
|
| GNULDBackend.cpp | 131 uint64_t GNULDBackend::getSegmentStartAddr(const LinkerScript& pScript) const 133 LinkerScript::AddressMap::const_iterator mapping = [all...] |
| /frameworks/compile/mclinker/unittests/ |
| ELFReaderTest.h | 14 #include <mcld/LinkerScript.h> 46 mcld::LinkerScript* m_pScript;
|
| LinkerTest.cpp | 54 LinkerScript script; 83 LinkerScript script; 145 LinkerScript script1; 196 LinkerScript script2; 242 LinkerScript script1; 298 LinkerScript script2; 345 LinkerScript script;
|
| ELFReaderTest.cpp | 35 m_pScript = new LinkerScript();
|
| /frameworks/compile/mclinker/tools/mcld/include/alone/Support/ |
| LinkerConfig.h | 16 #include <mcld/LinkerScript.h> 41 mcld::LinkerScript *mLDScript; 84 inline mcld::LinkerScript* getLDScript() 87 inline const mcld::LinkerScript* getLDScript() const
|
| /frameworks/compile/mclinker/lib/Target/ARM/ |
| ARMEmulation.cpp | 11 #include <mcld/LinkerScript.h> 17 static bool MCLDEmulateARMELF(LinkerScript& pScript, LinkerConfig& pConfig) 49 bool emulateARMLD(LinkerScript& pScript, LinkerConfig& pConfig)
|
| /frameworks/compile/mclinker/lib/Target/X86/ |
| X86Emulation.cpp | 11 #include <mcld/LinkerScript.h> 17 static bool MCLDEmulateX86ELF(LinkerScript& pScript, LinkerConfig& pConfig) 51 bool emulateX86LD(LinkerScript& pScript, LinkerConfig& pConfig)
|
| /frameworks/compile/mclinker/lib/Object/ |
| ObjectLinker.cpp | 334 const LinkerScript& script = m_pModule->getScript(); 335 LinkerScript::DefSymMap::const_entry_iterator it; 336 LinkerScript::DefSymMap::const_entry_iterator ie = script.defSymMap().end(); 488 const LinkerScript& script = m_pModule->getScript(); 489 LinkerScript::DefSymMap::const_entry_iterator it; 490 LinkerScript::DefSymMap::const_entry_iterator ie = script.defSymMap().end();
|
| /frameworks/compile/mclinker/tools/mcld/lib/Core/ |
| Linker.cpp | 106 const_cast<mcld::LinkerScript&>(*pConfig.getLDScript())); 112 mLinker->emulate(const_cast<mcld::LinkerScript&>(*pConfig.getLDScript()),
|
| /frameworks/compile/mclinker/include/mcld/Support/ |
| TargetRegistry.h | 26 class LinkerScript; 54 typedef bool (*EmulationFnTy)(LinkerScript&, LinkerConfig&); 97 bool emulate(LinkerScript& pScript, LinkerConfig& pConfig) const {
|
| /frameworks/compile/mclinker/tools/mcld/lib/Support/ |
| LinkerConfig.cpp | 133 mLDScript = new mcld::LinkerScript();
|
| /frameworks/compile/mclinker/tools/llvm-mcld/ |
| llvm-mcld.cpp | 11 #include <mcld/LinkerScript.h> [all...] |