Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • opensrc/libehp
1 result
Show changes
Commits on Source (1)
......@@ -147,6 +147,7 @@ class EHFrameParser_t
virtual void print() const=0;
virtual const shared_ptr<FDEVector_t> getFDEs() const =0;
virtual const shared_ptr<CIEVector_t> getCIEs() const =0;
virtual const shared_ptr<FDEContents_t> findFDE(uint64_t addr) const =0;
static unique_ptr<const EHFrameParser_t> factory(const string filename);
static unique_ptr<const EHFrameParser_t> factory(
......
......@@ -1675,8 +1675,16 @@ const shared_ptr<CIEVector_t> split_eh_frame_impl_t<ptrsize>::getCIEs() const
[](const cie_contents_t<ptrsize> &a){ return shared_ptr<CIEContents_t>(new cie_contents_t<ptrsize>(a));});
return ret;
}
template <int ptrsize>
const shared_ptr<FDEContents_t> split_eh_frame_impl_t<ptrsize>::findFDE(uint64_t addr) const
{
const auto tofind=fde_contents_t<ptrsize>( addr, addr+1);
const auto fde_it=fdes.find(tofind);
const auto raw_ret_ptr = (fde_it==fdes.end()) ? nullptr : new fde_contents_t<ptrsize>(*fde_it);
return shared_ptr<FDEContents_t>(raw_ret_ptr);
}
unique_ptr<const EHFrameParser_t> EHFrameParser_t::factory(const string filename)
{
......
......@@ -403,6 +403,8 @@ class split_eh_frame_impl_t : public EHFrameParser_t
virtual const shared_ptr<FDEVector_t> getFDEs() const;
virtual const shared_ptr<CIEVector_t> getCIEs() const;
virtual const shared_ptr<FDEContents_t> findFDE(uint64_t addr) const;
};
......