Searched defs:pTarget (Results 1 - 14 of 14) sorted by relevance

/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsDiagnostic.cpp19 mcld::DiagnosticLineInfo* createMipsDiagLineInfo(const mcld::Target& pTarget, argument
H A DMipsLA25Stub.cpp30 MipsLA25Stub::MipsLA25Stub(const MipsGNULDBackend& pTarget) argument
31 : m_Target(pTarget),
40 MipsLA25Stub::MipsLA25Stub(const MipsGNULDBackend& pTarget, argument
45 : m_Target(pTarget), m_Name("pic"), m_pData(pData), m_Size(pSize) {
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Diagnostic.cpp18 DiagnosticLineInfo* createAArch64DiagLineInfo(const mcld::Target& pTarget, argument
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMDiagnostic.cpp17 DiagnosticLineInfo* createARMDiagLineInfo(const mcld::Target& pTarget, argument
H A DARMRelocator.cpp169 Relocator::DWord pTarget) {
171 return helper_sign_extend((((pTarget >> 4)) & 0xf000U) | (pTarget & 0xfffU),
176 Relocator::DWord pTarget,
179 pTarget &= 0xfff0f000U;
180 pTarget |= pImm & 0x0fffU;
181 pTarget |= (pImm & 0xf000U) << 4;
182 return pTarget;
168 helper_extract_movw_movt_addend( Relocator::DWord pTarget) argument
175 helper_insert_val_movw_movt_inst( Relocator::DWord pTarget, Relocator::DWord pImm) argument
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonDiagnostic.cpp19 DiagnosticLineInfo* createHexagonDiagLineInfo(const Target& pTarget, argument
H A DHexagonRelocator.cpp227 HexagonLDBackend& pTarget) {
228 Relocation& rel_entry = *pTarget.getRelaDyn().create();
229 rel_entry.setType(pTarget.getCopyRelType());
409 HexagonLDBackend& pTarget) {
412 ELFFileFormat* file_format = pTarget.getOutputFormat();
226 addCopyReloc(ResolveInfo& pSym, HexagonLDBackend& pTarget) argument
406 defineSymbolforCopyReloc( IRBuilder& pBuilder, const ResolveInfo& pSym, HexagonLDBackend& pTarget) argument
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Diagnostic.cpp17 DiagnosticLineInfo* createX86DiagLineInfo(const mcld::Target& pTarget, argument
H A DX86Relocator.cpp189 void X86Relocator::addCopyReloc(ResolveInfo& pSym, X86GNULDBackend& pTarget) { argument
190 Relocation& rel_entry = *pTarget.getRelDyn().create();
191 rel_entry.setType(pTarget.getCopyRelType());
204 X86GNULDBackend& pTarget) {
207 ELFFileFormat* file_format = pTarget.getOutputFormat();
202 defineSymbolforCopyReloc(IRBuilder& pBuilder, const ResolveInfo& pSym, X86GNULDBackend& pTarget) argument
/frameworks/compile/mclinker/lib/Support/
H A DTarget.cpp34 const llvm::Target& pTarget,
38 return TargetMachineCtorFn(pTarget, *this, pTM, pTriple);
68 const mcld::Target& pTarget,
72 return DiagnosticLineInfoCtorFn(pTarget, pTriple);
33 createTargetMachine(const std::string& pTriple, const llvm::Target& pTarget, llvm::TargetMachine& pTM) const argument
67 createDiagnosticLineInfo( const mcld::Target& pTarget, const std::string& pTriple) const argument
H A DTargetRegistry.cpp18 void TargetRegistry::RegisterTarget(Target& pTarget, argument
21 pTarget.Name = pName;
22 pTarget.TripleMatchQualityFn = pQualityFn;
24 s_TargetList.push_back(&pTarget);
/frameworks/compile/mclinker/include/mcld/Support/
H A DTargetRegistry.h53 static void RegisterTarget(Target& pTarget,
122 RegisterTarget(mcld::Target& pTarget, const char* pName) { argument
130 TargetRegistry::RegisterTarget(pTarget, pName, &getTripleMatchQuality);
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp67 SymbolCategory& SymbolCategory::add(LDSymbol& pSymbol, Category::Type pTarget) { argument
73 if (current->type == pTarget) {
100 Category::Type pTarget) {
101 int distance = pTarget - pSource;
136 distance = pTarget - current->type;
153 if (current->type == pTarget) {
173 if (current->type == pTarget) {
98 arrange(LDSymbol& pSymbol, Category::Type pSource, Category::Type pTarget) argument
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolveInfo.h122 void setLink(const ResolveInfo* pTarget) { argument
123 m_Ptr.info_ptr = const_cast<ResolveInfo*>(pTarget);

Completed in 193 milliseconds