Searched refs:pType (Results 1 - 25 of 67) sorted by relevance

123

/frameworks/compile/mclinker/lib/Script/
H A DInputToken.cpp21 InputToken::InputToken(Type pType, const std::string& pName, bool pAsNeeded) argument
22 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded)
/frameworks/compile/mclinker/lib/LD/
H A DELFSegmentFactory.cpp19 ELFSegmentFactory::find(uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear) argument
23 if ((*segment)->type() == pType &&
33 ELFSegmentFactory::find(uint32_t pType, argument
39 if ((*segment)->type() == pType &&
49 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection) argument
53 if ((*segment)->type() == pType) {
65 ELFSegmentFactory::find(uint32_t pType, const LDSection* pSection) const argument
69 if ((*segment)->type() == pType) {
80 ELFSegment* ELFSegmentFactory::produce(uint32_t pType, uint32_t pFlag) argument
82 m_Segments.push_back(ELFSegment::Create(pType, pFla
[all...]
H A DLDSection.cpp41 uint32_t pType,
47 m_Type(pType),
70 uint32_t pType,
76 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr);
39 LDSection(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pAddr) argument
68 Create(const std::string& pName, LDFileFormat::Kind pKind, uint32_t pType, uint32_t pFlag, uint64_t pSize, uint64_t pAddr) argument
H A DELFSegment.cpp37 ELFSegment::ELFSegment(uint32_t pType, uint32_t pFlag) argument
38 : m_Type(pType),
89 ELFSegment* ELFSegment::Create(uint32_t pType, uint32_t pFlag) argument
92 new (seg) ELFSegment(pType, pFlag);
H A DRelocationFactory.cpp33 Relocation* RelocationFactory::produce(RelocationFactory::Type pType, argument
75 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegmentFactory.h46 iterator find(uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear);
49 find(uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear) const;
51 iterator find(uint32_t pType, const LDSection* pSection);
53 const_iterator find(uint32_t pType, const LDSection* pSection) const;
57 /// @param pType - p_type in ELF program header
58 ELFSegment* produce(uint32_t pType, uint32_t pFlag = llvm::ELF::PF_R);
H A DRelocator.h113 virtual const char* getName(Type pType) const = 0;
116 virtual Size getSize(Type pType) const = 0;
/frameworks/compile/mclinker/lib/Fragment/
H A DStub.cpp31 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) argument
34 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType));
H A DRelocation.cpp46 /// @param pType [in] the type of the relocation entry
49 Relocation* Relocation::Create(Type pType, FragmentRef& pFragRef, Address pAddend) argument
51 return g_RelocationFactory->produce(pType, pFragRef, pAddend);
68 Relocation::Relocation(Relocation::Type pType, argument
72 : m_Type(pType),
133 void Relocation::setType(Type pType) argument
135 m_Type = pType;
/frameworks/compile/mclinker/lib/MC/
H A DInput.cpp44 unsigned int pType,
46 : m_Type(pType),
60 unsigned int pType,
62 : m_Type(pType),
42 Input(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
57 Input(llvm::StringRef pName, const sys::fs::Path& pPath, const AttributeProxy& pProxy, unsigned int pType, off_t pFileOffset) argument
H A DInputFactory.cpp36 unsigned int pType,
40 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
34 produce(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
H A DSearchDirs.cpp77 SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType) argument
79 assert(Input::DynObj == pType ||
80 Input::Archive == pType ||
81 Input::Script == pType);
84 switch(pType) {
103 switch(pType) {
144 SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType) const
146 assert(Input::DynObj == pType ||
147 Input::Archive == pType ||
148 Input::Script == pType);
[all...]
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputBuilder.h58 unsigned int pType = Input::Unknown);
63 unsigned int pType = Input::Unknown,
107 unsigned int pType)
111 Input* input = createInput(pName, pPath, pType);
122 unsigned int pType)
126 Input* input = createInput(pName, pPath, pType);
105 createNode(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
120 createNode(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
H A DInput.h53 unsigned int pType = Unknown,
59 unsigned int pType = Unknown,
76 void setType(unsigned int pType) argument
77 { m_Type = pType; }
/frameworks/compile/mclinker/include/mcld/
H A DIRBuilder.h97 /// @param pType [in] The type of the input file. MCLinker will parse the
98 /// input file to create sections only if pType is
103 Input::Type pType);
229 /// @param pType [in] The meaning of the content in the section. The
238 uint32_t pType,
374 /// @param [in] pType What the symbol refers to. May be a object,
392 ResolveInfo::Type pType,
428 /// @param [in] pType The type of the symbol
437 ResolveInfo::Type pType,
449 /// @param [in] pType Th
[all...]
H A DLinkerConfig.h86 void setCodeGenType(CodeGenType pType) { m_CodeGenType = pType; } argument
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h40 Relocation(Type pType,
58 /// @param pType [in] the type of the relocation entry
61 static Relocation* Create(Type pType, FragmentRef& pFragRef,
103 void setType(Type pType);
H A DStub.h35 Fixup(DWord pOffset, SWord pAddend, Type pType) argument
36 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType)
114 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DObjectLoaderImpl.h46 ObjectLoader::SymbolType pType) const = 0;
/frameworks/compile/mclinker/include/mcld/Script/
H A DInputToken.h32 InputToken(Type pType, const std::string& pName, bool pAsNeeded);
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp27 LDFileFormat::Kind GetELFSectionKind(uint32_t pType, const char* pName, argument
59 switch(pType) {
94 if ((pType >= llvm::ELF::SHT_LOPROC && pType <= llvm::ELF::SHT_HIPROC) ||
95 (pType >= llvm::ELF::SHT_LOOS && pType <= llvm::ELF::SHT_HIOS) ||
96 (pType >= llvm::ELF::SHT_LOUSER && pType <= llvm::ELF::SHT_HIUSER))
98 fatal(diag::err_unsupported_section) << pName << pType; local
120 const sys::fs::Path& pPath, Input::Type pType)
119 CreateInput(const std::string& pName, const sys::fs::Path& pPath, Input::Type pType) argument
276 CreateELFHeader(Input& pInput, const std::string& pName, uint32_t pType, uint32_t pFlag, uint32_t pAlign) argument
407 AddSymbol(Input& pInput, const std::string& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBind, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, LDSection* pSection, ResolveInfo::Visibility pVis) argument
466 addSymbolFromObject(const std::string& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
541 addSymbolFromDynObj(Input& pInput, const std::string& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, ResolveInfo::Visibility pVisibility) argument
597 AddRelocation(LDSection& pSection, Relocation::Type pType, LDSymbol& pSym, uint32_t pOffset, Relocation::Address pAddend) argument
615 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
680 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
729 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
773 AddSymbol( const llvm::StringRef& pName, ResolveInfo::Type pType, ResolveInfo::Desc pDesc, ResolveInfo::Binding pBinding, ResolveInfo::SizeType pSize, LDSymbol::ValueType pValue, FragmentRef* pFragmentRef, ResolveInfo::Visibility pVisibility) argument
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.h37 bool needsLA25Stub(Relocation::Type pType, const mcld::ResolveInfo* pSym);
162 Relocation::Type& pType,
168 Relocation::Type& pType,
175 Relocation::Type& pType,
181 Relocation::Type& pType,
188 Relocation::Type pType,
194 Relocation::Type pType,
201 Relocation::Type pType,
207 Relocation::Type pType,
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttributeValue.h51 void setType(unsigned int pType) argument
52 { m_Type = pType; }
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.h73 virtual const char* getName(Relocation::Type pType) const = 0;
142 const char* getName(Relocation::Type pType) const;
144 Size getSize(Relocation::Type pType) const;
201 const char* getName(Relocation::Type pType) const;
203 Size getSize(Relocation::Type pType) const;
/frameworks/compile/libbcc/include/bcc/ExecutionEngine/
H A DObjectLoader.h62 // Get the symbol name where the symbol is of the type pType. If kUnknownType
65 SymbolType pType = kUnknownType) const;

Completed in 506 milliseconds

123