/frameworks/compile/mclinker/lib/MC/ |
D | SearchDirs.cpp | 78 assert(Input::DynObj == pType || Input::Archive == pType); in find() 90 case Input::DynObj: { in find() 122 assert(Input::DynObj == pType || Input::Archive == pType); in find() 134 case Input::DynObj: { in find()
|
D | FileAction.cpp | 34 input->type() == Input::DynObj || in activate() 60 input->type() == Input::DynObj || in activate()
|
D | CommandAction.cpp | 57 path = m_SearchDirs.find(namespec(), Input::DynObj); in activate()
|
/frameworks/compile/mclinker/unittests/ |
D | LinkerTest.cpp | 56 config.setCodeGenType(LinkerConfig::DynObj); in TEST_F() 97 config.setCodeGenType(LinkerConfig::DynObj); ///< --shared in TEST_F() 155 config1.setCodeGenType(LinkerConfig::DynObj); ///< --shared in TEST_F() 204 config2.setCodeGenType(LinkerConfig::DynObj); ///< --shared in TEST_F() 252 config1.setCodeGenType(LinkerConfig::DynObj); ///< --shared in TEST_F() 306 config2.setCodeGenType(LinkerConfig::DynObj); ///< --shared in TEST_F() 351 config.setCodeGenType(LinkerConfig::DynObj); ///< --shared in TEST_F()
|
/frameworks/compile/mclinker/lib/Target/ |
D | ELFDynamic.cpp | 101 if (LinkerConfig::DynObj == m_Config.codeGenType()) { in reserveEntries() 173 (LinkerConfig::DynObj == m_Config.codeGenType())) in reserveEntries() 190 ((LinkerConfig::DynObj == m_Config.codeGenType()) && in reserveEntries() 203 if (LinkerConfig::DynObj == m_Config.codeGenType() && in applyEntries() 276 LinkerConfig::DynObj == m_Config.codeGenType()) in applyEntries() 290 (LinkerConfig::DynObj == m_Config.codeGenType())) in applyEntries() 312 if (LinkerConfig::DynObj == m_Config.codeGenType()) { in applyEntries()
|
D | GNULDBackend.cpp | 174 case LinkerConfig::DynObj: { in initStdSections() 686 case LinkerConfig::DynObj: in getOutputFormat() 705 case LinkerConfig::DynObj: in getOutputFormat() 761 case LinkerConfig::DynObj: { in sizeNamePools() 1119 if (LinkerConfig::DynObj == config().codeGenType()) { in emitDynNamePools() 1127 if (LinkerConfig::DynObj == config().codeGenType()) { in emitDynNamePools() 2339 if (LinkerConfig::DynObj == config().codeGenType() || in isDynamicSymbol() 2360 if (LinkerConfig::DynObj == config().codeGenType() || in isDynamicSymbol() 2403 if (LinkerConfig::DynObj != config().codeGenType()) in isSymbolPreemptible() 2458 LinkerConfig::DynObj != config().codeGenType()) in symbolNeedsPLT()
|
/frameworks/compile/mclinker/lib/LD/ |
D | GroupReader.cpp | 73 if (Input::DynObj == (*input)->type()) { in readGroup() 107 (*input)->setType(Input::DynObj); in readGroup()
|
D | ELFObjectWriter.cpp | 119 bool is_dynobj = m_Config.codeGenType() == LinkerConfig::DynObj; in writeObject() 215 case LinkerConfig::DynObj: in writeELFHeader() 258 LinkerConfig::DynObj != pConfig.codeGenType()); in getEntryPoint() 449 if(LinkerConfig::DynObj == pConfig.codeGenType() || in emitRel() 490 if(LinkerConfig::DynObj == pConfig.codeGenType() || in emitRela()
|
D | ELFReader.cpp | 89 bool is_dyn_obj = (pInput.type()==Input::DynObj); in readSymbols() 320 return Input::DynObj; in fileType() 515 result->setSource(pInput.type() == Input::DynObj); in readSignature() 531 assert(pInput.type() == Input::DynObj); in readDynamic() 650 bool is_dyn_obj = (pInput.type()==Input::DynObj); in readSymbols() 876 return Input::DynObj; in fileType() 1071 result->setSource(pInput.type() == Input::DynObj); in readSignature() 1087 assert(pInput.type() == Input::DynObj); in readDynamic()
|
D | ELFDynObjReader.cpp | 65 else if (Input::DynObj != m_pELFReader->fileType(ELF_hdr)) in isMyFormat()
|
D | ELFReaderIf.cpp | 107 if (Input::DynObj == pInput.type()) in getSymFragmentRef()
|
D | DiagnosticInfos.cpp | 132 case LinkerConfig::DynObj: in process()
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86PLT.cpp | 63 assert(LinkerConfig::DynObj == m_Config.codeGenType() || in X86PLT() 68 if (LinkerConfig::DynObj == m_Config.codeGenType()) { in X86PLT() 137 if (LinkerConfig::DynObj == m_Config.codeGenType()) in reserveEntry()
|
D | X86Relocator.cpp | 253 if (LinkerConfig::DynObj == in scanLocalReloc() 308 if (LinkerConfig::DynObj == config().codeGenType()) { in scanLocalReloc() 343 if (LinkerConfig::DynObj == config().codeGenType()) { in scanLocalReloc() 456 if (LinkerConfig::DynObj == in scanGlobalReloc() 472 LinkerConfig::DynObj != config().codeGenType()) { in scanGlobalReloc() 525 if (LinkerConfig::DynObj == config().codeGenType()) { in scanGlobalReloc() 562 if (LinkerConfig::DynObj == config().codeGenType()) { in scanGlobalReloc() 1249 if (LinkerConfig::DynObj == in scanLocalReloc() 1329 if (LinkerConfig::DynObj == in scanGlobalReloc() 1373 LinkerConfig::DynObj != config().codeGenType()) { in scanGlobalReloc()
|
D | X86LDBackend.cpp | 395 if (LinkerConfig::DynObj == config().codeGenType() || in setGOTSectionSize() 543 if (LinkerConfig::DynObj == config().codeGenType() || in setGOTSectionSize()
|
/frameworks/compile/mclinker/include/mcld/ |
D | LinkerConfig.h | 39 DynObj, enumerator
|
/frameworks/compile/mclinker/lib/Core/ |
D | Linker.cpp | 117 case Input::DynObj: in normalize() 136 if (LinkerConfig::DynObj == m_pConfig->codeGenType() || in normalize()
|
D | IRBuilder.cpp | 174 path = m_Module.getScript().directories().find(pNameSpec, Input::DynObj); in ReadInput() 486 case Input::DynObj: { in AddSymbol()
|
/frameworks/compile/mclinker/include/mcld/MC/ |
D | MCLDInput.h | 40 DynObj, enumerator
|
/frameworks/compile/mclinker/tools/mcld/lib/Support/ |
D | LinkerConfig.cpp | 150 return (mcld::LinkerConfig::DynObj == mLDConfig->codeGenType()); in isShared() 155 mLDConfig->setCodeGenType(mcld::LinkerConfig::DynObj); in setShared()
|
/frameworks/compile/mclinker/lib/Object/ |
D | ObjectLinker.cpp | 141 if (Input::DynObj == (*input)->type()) { in normalize() 162 (*input)->setType(Input::DynObj); in normalize()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonPLT.cpp | 44 assert(LinkerConfig::DynObj == m_Config.codeGenType() || in HexagonPLT()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMLDBackend.cpp | 212 if (LinkerConfig::DynObj == config().codeGenType() || in doPreLayout() 259 if (LinkerConfig::DynObj == config().codeGenType()) in doPostLayout()
|
/frameworks/compile/mclinker/lib/CodeGen/ |
D | MCLDTargetMachine.cpp | 251 pConfig.setCodeGenType(LinkerConfig::DynObj); in addPassesToEmitFile()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLDBackend.cpp | 122 if (LinkerConfig::DynObj == config().codeGenType() || in doPreLayout()
|