Lines Matching refs:info
77 const FdeInfo* info = GetFdeInfoFromIndex(index); in GetFdeFromIndex() local
78 if (info == nullptr) { in GetFdeFromIndex()
81 return this->GetFdeFromOffset(info->offset); in GetFdeFromIndex()
91 FdeInfo* info = &fde_info_[index]; in GetFdeInfoFromIndex() local
98 !memory_.template ReadEncodedValue<AddressType>(table_encoding_, &info->offset)) { in GetFdeInfoFromIndex()
103 info->pc = value; in GetFdeInfoFromIndex()
104 return info; in GetFdeInfoFromIndex()
117 const FdeInfo* info = GetFdeInfoFromIndex(current); in GetFdeOffsetBinary() local
118 if (pc == info->pc) { in GetFdeOffsetBinary()
119 *fde_offset = info->offset; in GetFdeOffsetBinary()
122 if (pc < info->pc) { in GetFdeOffsetBinary()
129 const FdeInfo* info = GetFdeInfoFromIndex(last - 1); in GetFdeOffsetBinary() local
130 *fde_offset = info->offset; in GetFdeOffsetBinary()
143 const FdeInfo* info = &fde_info_[fde_info_.size() - 1]; in GetFdeOffsetSequential() local
144 if (pc >= info->pc) { in GetFdeOffsetSequential()
145 *fde_offset = info->offset; in GetFdeOffsetSequential()
148 if (pc < info->pc) { in GetFdeOffsetSequential()
172 FdeInfo* info = &fde_info_[current]; in GetFdeOffsetSequential() local
173 if (!memory_.template ReadEncodedValue<AddressType>(table_encoding_, &info->offset)) { in GetFdeOffsetSequential()
178 info->pc = value; in GetFdeOffsetSequential()
180 if (pc < info->pc) { in GetFdeOffsetSequential()
188 prev_info = info; in GetFdeOffsetSequential()