/frameworks/compile/mclinker/lib/Support/ |
D | Target.cpp | 34 const llvm::Target& pTarget, in createTargetMachine() argument 38 return TargetMachineCtorFn(pTarget, *this, pTM, pTriple); in createTargetMachine() 68 const mcld::Target& pTarget, in createDiagnosticLineInfo() argument 72 return DiagnosticLineInfoCtorFn(pTarget, pTriple); in createDiagnosticLineInfo()
|
D | TargetRegistry.cpp | 18 void TargetRegistry::RegisterTarget(Target& pTarget, in RegisterTarget() argument 21 pTarget.Name = pName; in RegisterTarget() 22 pTarget.TripleMatchQualityFn = pQualityFn; in RegisterTarget() 24 s_TargetList.push_back(&pTarget); in RegisterTarget()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLA25Stub.cpp | 30 MipsLA25Stub::MipsLA25Stub(const MipsGNULDBackend& pTarget) in MipsLA25Stub() argument 31 : m_Target(pTarget), in MipsLA25Stub() 40 MipsLA25Stub::MipsLA25Stub(const MipsGNULDBackend& pTarget, in MipsLA25Stub() argument 45 : m_Target(pTarget), m_Name("pic"), m_pData(pData), m_Size(pSize) { in MipsLA25Stub()
|
D | MipsLA25Stub.h | 27 explicit MipsLA25Stub(const MipsGNULDBackend& pTarget); 44 MipsLA25Stub(const MipsGNULDBackend& pTarget,
|
D | MipsDiagnostic.cpp | 19 mcld::DiagnosticLineInfo* createMipsDiagLineInfo(const mcld::Target& pTarget, in createMipsDiagLineInfo() argument
|
/frameworks/compile/mclinker/lib/MC/ |
D | SymbolCategory.cpp | 67 SymbolCategory& SymbolCategory::add(LDSymbol& pSymbol, Category::Type pTarget) { in add() argument 73 if (current->type == pTarget) { in add() 100 Category::Type pTarget) { in arrange() argument 101 int distance = pTarget - pSource; in arrange() 136 distance = pTarget - current->type; in arrange() 153 if (current->type == pTarget) { in arrange() 173 if (current->type == pTarget) { in arrange()
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | TargetRegistry.h | 53 static void RegisterTarget(Target& pTarget, 122 RegisterTarget(mcld::Target& pTarget, const char* pName) { in RegisterTarget() 130 TargetRegistry::RegisterTarget(pTarget, pName, &getTripleMatchQuality); in RegisterTarget()
|
D | Target.h | 68 const llvm::Target& pTarget, 86 const mcld::Target& pTarget,
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonRelocator.h | 119 void addCopyReloc(ResolveInfo& pSym, HexagonLDBackend& pTarget); 126 HexagonLDBackend& pTarget);
|
D | HexagonDiagnostic.cpp | 19 DiagnosticLineInfo* createHexagonDiagLineInfo(const Target& pTarget, in createHexagonDiagLineInfo() argument
|
D | HexagonRelocator.cpp | 227 HexagonLDBackend& pTarget) { in addCopyReloc() argument 228 Relocation& rel_entry = *pTarget.getRelaDyn().create(); in addCopyReloc() 229 rel_entry.setType(pTarget.getCopyRelType()); in addCopyReloc() 409 HexagonLDBackend& pTarget) { in defineSymbolforCopyReloc() argument 412 ELFFileFormat* file_format = pTarget.getOutputFormat(); in defineSymbolforCopyReloc()
|
/frameworks/compile/mclinker/include/mcld/MC/ |
D | SymbolCategory.h | 153 SymbolCategory& add(LDSymbol& pSymbol, Category::Type pTarget); 157 Category::Type pTarget);
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64Diagnostic.cpp | 18 DiagnosticLineInfo* createAArch64DiagLineInfo(const mcld::Target& pTarget, in createAArch64DiagLineInfo() argument
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86Diagnostic.cpp | 17 DiagnosticLineInfo* createX86DiagLineInfo(const mcld::Target& pTarget, in createX86DiagLineInfo() argument
|
D | X86Relocator.h | 89 void addCopyReloc(ResolveInfo& pSym, X86GNULDBackend& pTarget); 96 X86GNULDBackend& pTarget);
|
D | X86Relocator.cpp | 189 void X86Relocator::addCopyReloc(ResolveInfo& pSym, X86GNULDBackend& pTarget) { in addCopyReloc() argument 190 Relocation& rel_entry = *pTarget.getRelDyn().create(); in addCopyReloc() 191 rel_entry.setType(pTarget.getCopyRelType()); in addCopyReloc() 204 X86GNULDBackend& pTarget) { in defineSymbolforCopyReloc() argument 207 ELFFileFormat* file_format = pTarget.getOutputFormat(); in defineSymbolforCopyReloc()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMDiagnostic.cpp | 17 DiagnosticLineInfo* createARMDiagLineInfo(const mcld::Target& pTarget, in createARMDiagLineInfo() argument
|
D | ARMRelocator.cpp | 169 Relocator::DWord pTarget) { in helper_extract_movw_movt_addend() argument 171 return helper_sign_extend((((pTarget >> 4)) & 0xf000U) | (pTarget & 0xfffU), in helper_extract_movw_movt_addend() 176 Relocator::DWord pTarget, in helper_insert_val_movw_movt_inst() argument 179 pTarget &= 0xfff0f000U; in helper_insert_val_movw_movt_inst() 180 pTarget |= pImm & 0x0fffU; in helper_insert_val_movw_movt_inst() 181 pTarget |= (pImm & 0xf000U) << 4; in helper_insert_val_movw_movt_inst() 182 return pTarget; in helper_insert_val_movw_movt_inst()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | ResolveInfo.h | 122 void setLink(const ResolveInfo* pTarget) { in setLink() argument 123 m_Ptr.info_ptr = const_cast<ResolveInfo*>(pTarget); in setLink()
|