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

/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.h31 /// ARMExSectionTuple - Tuple of associated exception handling sections
32 class ARMExSectionTuple { class in namespace:mcld
34 ARMExSectionTuple() function in class:mcld::ARMExSectionTuple
88 typedef std::map<LDSection*, std::unique_ptr<ARMExSectionTuple> > SectMap;
96 /// getByExSection - Get the ARMExSectionTuple by the address of the
98 ARMExSectionTuple* getByExSection(LDSection &pSect) const {
107 /// getOrCreate - Get an existing or create a new ARMExSectionTuple which is
109 ARMExSectionTuple* getOrCreateByExSection(LDSection &pSect) {
111 std::unique_ptr<ARMExSectionTuple>& result = m_SectToExData[&pSect];
113 result.reset(new ARMExSectionTuple());
[all...]

Completed in 56 milliseconds