Initialize with unwind information from the contents of a .debug_frame or .eh_frame section.
If the .eh_frame_hdr section is available, consider instead using initEhFrameHdr, which
allows the implementation to use a search table embedded in that section if it is available.
pub fn initSection(section: Section, section_vaddr: u64, section_bytes: []const u8) Unwind
pub fn initSection(section: Section, section_vaddr: u64, section_bytes: []const u8) Unwind {
return .{
.frame_section = .{
.id = section,
.bytes = section_bytes,
.vaddr = section_vaddr,
},
.lookup = null,
.cie_list = .empty,
};
}