Lines Matching refs:end_offset
41 bool DwarfCfa<AddressType>::GetLocationInfo(uint64_t pc, uint64_t start_offset, uint64_t end_offset, in GetLocationInfo() argument
60 if ((cfa_offset = memory_->cur_offset()) >= end_offset) { in GetLocationInfo()
187 uint64_t end_offset = memory_->cur_offset(); in LogOffsetRegisterString() local
191 for (uint64_t i = cfa_offset; i < end_offset; i++) { in LogOffsetRegisterString()
218 uint64_t end_offset; in LogInstruction() local
219 if (!memory_->ReadULEB128(&end_offset)) { in LogInstruction()
222 log_string += " " + std::to_string(end_offset); in LogInstruction()
223 end_offset += memory_->cur_offset(); in LogInstruction()
226 op.GetLogInfo(memory_->cur_offset(), end_offset, &expression_lines); in LogInstruction()
227 memory_->set_cur_offset(end_offset); in LogInstruction()
239 uint64_t end_offset = memory_->cur_offset(); in LogInstruction() local
242 for (uint64_t i = 0; i < end_offset - cfa_offset; i++) { in LogInstruction()
271 uint64_t end_offset) { in Log() argument
276 while ((cfa_offset = memory_->cur_offset()) < end_offset && cur_pc <= pc) { in Log()