Lines Matching refs:section
67 void PrintRegInformation(DwarfSection* section, Memory* memory, uint64_t pc, uint8_t class_type, in PrintRegInformation() argument
69 const DwarfFde* fde = section->GetFdeFromPc(pc); in PrintRegInformation()
76 if (!section->GetCfaLocationInfo(pc, fde, ®s, arch)) { in PrintRegInformation()
205 DwarfSection* section = interface->eh_frame(); in GetInfo() local
206 if (section != nullptr) { in GetInfo()
208 PrintRegInformation(section, elf.memory(), pc, elf.class_type(), elf.arch()); in GetInfo()
213 section = interface->debug_frame(); in GetInfo()
214 if (section != nullptr) { in GetInfo()
216 PrintRegInformation(section, elf.memory(), pc, elf.class_type(), elf.arch()); in GetInfo()
225 section = gnu_debugdata_interface->eh_frame(); in GetInfo()
226 if (section != nullptr) { in GetInfo()
228 PrintRegInformation(section, gnu_debugdata_interface->memory(), pc, elf.class_type(), in GetInfo()
235 section = gnu_debugdata_interface->debug_frame(); in GetInfo()
236 if (section != nullptr) { in GetInfo()
238 PrintRegInformation(section, gnu_debugdata_interface->memory(), pc, elf.class_type(), in GetInfo()