Home
last modified time | relevance | path

Searched refs:ARMExSectionTuple (Results 1 – 2 of 2) sorted by relevance

/frameworks/compile/mclinker/lib/Target/ARM/
DARMException.h28 class ARMExSectionTuple {
30 ARMExSectionTuple() in ARMExSectionTuple() function
153 typedef std::map<std::string, std::unique_ptr<ARMExSectionTuple> > NameMap;
163 ARMExSectionTuple* get(const char* pName) const { in get()
171 ARMExSectionTuple* getByExSection(llvm::StringRef pName) const { in getByExSection()
178 ARMExSectionTuple* getByRelExSection(llvm::StringRef pName) const { in getByRelExSection()
188 ARMExSectionTuple* getOrCreate(const char* pName) { in getOrCreate()
189 std::unique_ptr<ARMExSectionTuple>& result = m_NameToExData[pName]; in getOrCreate()
191 result.reset(new ARMExSectionTuple()); in getOrCreate()
196 ARMExSectionTuple* getOrCreateByExSection(llvm::StringRef pName) { in getOrCreateByExSection()
[all …]
DARMException.cpp44 ARMExSectionTuple* exTuple = it->second.get(); in addInputMap()
80 ARMExSectionTuple* exTuple = exMap->getOrCreateByExSection(name); in scanInputExceptionSections()
84 ARMExSectionTuple* exTuple = exMap->getOrCreateByExSection(name); in scanInputExceptionSections()
87 ARMExSectionTuple* exTuple = exMap->getOrCreateByRelExSection(name); in scanInputExceptionSections()
90 ARMExSectionTuple* exTuple = exMap->getOrCreateByRelExSection(name); in scanInputExceptionSections()
100 ARMExSectionTuple* exTuple = it->second.get(); in scanInputExceptionSections()
183 ARMExSectionTuple* tupleA = m_ExData.getTupleByExIdx(&a); in operator ()()
184 ARMExSectionTuple* tupleB = m_ExData.getTupleByExIdx(&b); in operator ()()