Home | History | Annotate | Download | only in debug

Lines Matching defs:high_pc

78   uint32_t high_pc;  // Relative to compilation unit.
129 const uint32_t high_pc = next_it != stack_maps.end()
132 DCHECK_LE(low_pc, high_pc);
133 if (low_pc == high_pc) {
162 variable_locations.back().high_pc == low_pc) {
164 variable_locations.back().high_pc = high_pc;
166 variable_locations.push_back({low_pc, high_pc, reg_lo, reg_hi});
265 debug_loc.PushUint64(variable_location.high_pc);
268 debug_loc.PushUint32(variable_location.high_pc);
292 uint32_t high_pc = variable_locations[i].high_pc;
293 while (i + 1 < variable_locations.size() && variable_locations[i+1].low_pc == high_pc) {
295 high_pc = variable_locations[++i].high_pc;
299 debug_ranges.PushUint64(high_pc);
302 debug_ranges.PushUint32(high_pc);