Searched refs:pTarget (Results 1 - 21 of 21) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
H A DTarget.cpp35 const llvm::Target& pTarget,
40 return TargetMachineCtorFn(pTarget, *this, pTM, pTriple);
74 Target::createDiagnosticLineInfo(const mcld::Target& pTarget, argument
79 return DiagnosticLineInfoCtorFn(pTarget, pTriple);
34 createTargetMachine(const std::string& pTriple, const llvm::Target& pTarget, llvm::TargetMachine& pTM) const argument
H A DTargetRegistry.cpp18 void TargetRegistry::RegisterTarget(Target& pTarget, argument
22 pTarget.Name = pName;
23 pTarget.TripleMatchQualityFn = pQualityFn;
25 s_TargetList.push_back(&pTarget);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Diagnostic.cpp20 DiagnosticLineInfo* createAArch64DiagLineInfo(const mcld::Target& pTarget, argument
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMDiagnostic.cpp19 DiagnosticLineInfo* createARMDiagLineInfo(const mcld::Target& pTarget, argument
H A DARMRelocator.cpp190 helper_extract_movw_movt_addend(Relocator::DWord pTarget) argument
193 return helper_sign_extend((((pTarget >> 4)) & 0xf000U) | (pTarget & 0xfffU),
198 helper_insert_val_movw_movt_inst(Relocator::DWord pTarget, argument
202 pTarget &= 0xfff0f000U;
203 pTarget |= pImm & 0x0fffU;
204 pTarget |= (pImm & 0xf000U) << 4;
205 return pTarget;
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonDiagnostic.cpp20 createHexagonDiagLineInfo(const Target& pTarget, const std::string &pTriple) argument
H A DHexagonRelocator.h118 void addCopyReloc(ResolveInfo& pSym, HexagonLDBackend& pTarget);
125 HexagonLDBackend& pTarget);
H A DHexagonRelocator.cpp222 HexagonLDBackend &pTarget) {
223 Relocation &rel_entry = *pTarget.getRelaDyn().create();
224 rel_entry.setType(pTarget.getCopyRelType());
399 IRBuilder &pBuilder, const ResolveInfo &pSym, HexagonLDBackend &pTarget) {
402 ELFFileFormat *file_format = pTarget.getOutputFormat();
221 addCopyReloc(ResolveInfo &pSym, HexagonLDBackend &pTarget) argument
398 defineSymbolforCopyReloc( IRBuilder &pBuilder, const ResolveInfo &pSym, HexagonLDBackend &pTarget) argument
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsDiagnostic.cpp19 mcld::DiagnosticLineInfo* createMipsDiagLineInfo(const mcld::Target& pTarget, argument
H A DMipsLA25Stub.cpp37 MipsLA25Stub::MipsLA25Stub(const MipsGNULDBackend& pTarget) argument
38 : m_Target(pTarget),
48 MipsLA25Stub::MipsLA25Stub(const MipsGNULDBackend& pTarget, argument
53 : m_Target(pTarget),
H A DMipsLA25Stub.h29 MipsLA25Stub(const MipsGNULDBackend& pTarget);
46 MipsLA25Stub(const MipsGNULDBackend& pTarget,
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Diagnostic.cpp19 DiagnosticLineInfo* createX86DiagLineInfo(const mcld::Target& pTarget, argument
H A DX86Relocator.h93 void addCopyReloc(ResolveInfo& pSym, X86GNULDBackend& pTarget);
100 X86GNULDBackend& pTarget);
H A DX86Relocator.cpp210 void X86Relocator::addCopyReloc(ResolveInfo& pSym, X86GNULDBackend& pTarget) argument
212 Relocation& rel_entry = *pTarget.getRelDyn().create();
213 rel_entry.setType(pTarget.getCopyRelType());
226 X86GNULDBackend& pTarget)
230 ELFFileFormat* file_format = pTarget.getOutputFormat();
224 defineSymbolforCopyReloc(IRBuilder& pBuilder, const ResolveInfo& pSym, X86GNULDBackend& pTarget) argument
/frameworks/compile/mclinker/include/mcld/Support/
H A DTargetRegistry.h53 static void RegisterTarget(Target& pTarget,
147 RegisterTarget(mcld::Target &pTarget, const char* pName) { argument
155 TargetRegistry::RegisterTarget(pTarget, pName, &getTripleMatchQuality);
H A DTarget.h70 const llvm::Target& pTarget,
87 DiagnosticLineInfo* createDiagnosticLineInfo(const mcld::Target& pTarget,
/frameworks/compile/mclinker/lib/ADT/GraphLite/
H A DDigraph.cpp60 Digraph::addArc(const Digraph::Node& pSource, const Digraph::Node& pTarget) argument
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp68 SymbolCategory& SymbolCategory::add(LDSymbol& pSymbol, Category::Type pTarget) argument
75 if (current->type == pTarget) {
105 Category::Type pTarget)
107 int distance = pTarget - pSource;
142 distance = pTarget - current->type;
159 if (current->type == pTarget) {
181 if (current->type == pTarget) {
103 arrange(LDSymbol& pSymbol, Category::Type pSource, Category::Type pTarget) argument
/frameworks/compile/mclinker/include/mcld/ADT/GraphLite/
H A DDigraph.h64 Arc addArc(const Node& pSource, const Node& pTarget);
/frameworks/compile/mclinker/include/mcld/MC/
H A DSymbolCategory.h172 SymbolCategory& add(LDSymbol& pSymbol, Category::Type pTarget);
176 Category::Type pTarget);
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolveInfo.h138 void setLink(const ResolveInfo* pTarget) { argument
139 m_Ptr.info_ptr = const_cast<ResolveInfo*>(pTarget);

Completed in 1239 milliseconds