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

123

/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegmentFactory.h33 /// @param pType - p_type in ELF program header
34 ELFSegment* produce(uint32_t pType, uint32_t pFlag = llvm::ELF::PF_R);
37 find(uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear);
40 find(uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear) const;
H A DRelocator.h105 virtual const char* getName(Type pType) const = 0;
108 virtual Size getSize(Type pType) const = 0;
/frameworks/compile/mclinker/lib/LD/
H A DELFSegmentFactory.cpp27 /// @param pType - p_type in ELF program header
28 ELFSegment* ELFSegmentFactory::produce(uint32_t pType, uint32_t pFlag) argument
31 new (segment) ELFSegment(pType, pFlag);
36 ELFSegmentFactory::find(uint32_t pType, uint32_t pFlagSet, uint32_t pFlagClear) argument
40 if ((*segment).type() == pType &&
50 ELFSegmentFactory::find(uint32_t pType, argument
56 if ((*segment).type() == pType &&
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.cpp15 ELFSegment::ELFSegment(uint32_t pType, argument
24 : m_Type(pType),
H A DRelocationFactory.cpp33 Relocation* RelocationFactory::produce(RelocationFactory::Type pType, argument
75 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
/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),
131 void Relocation::setType(Type pType) argument
133 m_Type = pType;
/frameworks/compile/mclinker/lib/MC/
H A DMCLDInput.cpp43 unsigned int pType,
45 : m_Type(pType),
58 unsigned int pType,
60 : m_Type(pType),
41 Input(llvm::StringRef pName, const sys::fs::Path& pPath, unsigned int pType, off_t pFileOffset) argument
55 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.cpp76 mcld::sys::fs::Path* SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType) argument
78 assert(Input::DynObj == pType || Input::Archive == pType);
89 switch(pType) {
120 SearchDirs::find(const std::string& pNamespec, mcld::Input::Type pType) const
122 assert(Input::DynObj == pType || Input::Archive == pType);
133 switch(pType) {
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputBuilder.h62 unsigned int pType = Input::Unknown);
67 unsigned int pType = Input::Unknown,
111 unsigned int pType)
115 Input* input = createInput(pName, pPath, pType);
126 unsigned int pType)
130 Input* input = createInput(pName, pPath, pType);
109 createNode(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
124 createNode(const std::string& pName, const sys::fs::Path& pPath, unsigned int pType) argument
H A DMCLDInput.h55 unsigned int pType = Unknown,
61 unsigned int pType = Unknown,
78 void setType(unsigned int pType) argument
79 { m_Type = pType; }
/frameworks/compile/mclinker/include/mcld/
H A DIRBuilder.h98 /// @param pType [in] The type of the input file. MCLinker will parse the
99 /// input file to create sections only if pType is
104 Input::Type pType);
243 /// @param pType [in] The meaning of the content in the section. The
252 uint32_t pType,
388 /// @param [in] pType What the symbol refers to. May be a object,
406 ResolveInfo::Type pType,
442 /// @param [in] pType The type of the symbol
451 ResolveInfo::Type pType,
463 /// @param [in] pType Th
[all...]
H A DLinkerConfig.h89 void setCodeGenType(CodeGenType pType) { m_CodeGenType = pType; } argument
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp24 LDFileFormat::Kind GetELFSectionKind(uint32_t pType, const char* pName, argument
56 switch(pType) {
86 if ((pType >= llvm::ELF::SHT_LOPROC && pType <= llvm::ELF::SHT_HIPROC) ||
87 (pType >= llvm::ELF::SHT_LOOS && pType <= llvm::ELF::SHT_HIOS) ||
88 (pType >= llvm::ELF::SHT_LOUSER && pType <= llvm::ELF::SHT_HIUSER))
90 fatal(diag::err_unsupported_section) << pName << pType; local
128 const sys::fs::Path& pPath, Input::Type pType)
127 CreateInput(const std::string& pName, const sys::fs::Path& pPath, Input::Type pType) argument
307 CreateELFHeader(Input& pInput, const std::string& pName, uint32_t pType, uint32_t pFlag, uint32_t pAlign) argument
445 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
497 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
602 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
670 AddRelocation(LDSection& pSection, Relocation::Type pType, LDSymbol& pSym, uint32_t pOffset, Relocation::Address pAddend) argument
697 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
762 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
811 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
855 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/include/mcld/Fragment/
H A DRelocation.h43 Relocation(Type pType,
61 /// @param pType [in] the type of the relocation entry
64 static Relocation* Create(Type pType, FragmentRef& pFragRef,
106 void setType(Type pType);
H A DStub.h38 Fixup(DWord pOffset, SWord pAddend, Type pType) argument
39 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType)
117 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DObjectLoaderImpl.h46 ObjectLoader::SymbolType pType) const = 0;
H A DELFObjectLoaderImpl.cpp135 ObjectLoader::SymbolType pType) const {
141 switch (pType) {
161 if ((pType == ObjectLoader::kUnknownType) ||
H A DELFObjectLoaderImpl.h51 ObjectLoader::SymbolType pType) const;
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.h87 const char* getName(Relocation::Type pType) const;
89 Size getSize(Relocation::Type pType) const;
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocator.h80 const char* getName(Relocation::Type pType) const;
82 Size getSize(Relocation::Type pType) const;
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.h84 virtual const char* getName(Relocation::Type pType) const = 0;
152 const char* getName(Relocation::Type pType) const;
154 Size getSize(Relocation::Type pType) const;
206 const char* getName(Relocation::Type pType) const;
208 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 673 milliseconds

123