Lines Matching refs:end_offset
43 bool DwarfCfa<AddressType>::GetLocationInfo(uint64_t pc, uint64_t start_offset, uint64_t end_offset, in GetLocationInfo() argument
62 if ((cfa_offset = memory_->cur_offset()) >= end_offset) { in GetLocationInfo()
189 uint64_t end_offset = memory_->cur_offset(); in LogOffsetRegisterString() local
193 for (uint64_t i = cfa_offset; i < end_offset; i++) { in LogOffsetRegisterString()
224 uint64_t end_offset; in LogInstruction() local
225 if (!memory_->ReadULEB128(&end_offset)) { in LogInstruction()
228 log_string += " " + std::to_string(end_offset); in LogInstruction()
229 end_offset += memory_->cur_offset(); in LogInstruction()
232 op.GetLogInfo(memory_->cur_offset(), end_offset, &expression_lines); in LogInstruction()
233 memory_->set_cur_offset(end_offset); in LogInstruction()
245 uint64_t end_offset = memory_->cur_offset(); in LogInstruction() local
248 for (uint64_t i = 0; i < end_offset - cfa_offset; i++) { in LogInstruction()
277 uint64_t end_offset) { in Log() argument
282 while ((cfa_offset = memory_->cur_offset()) < end_offset && cur_pc <= pc) { in Log()