Home | History | Annotate | Download | only in debug

Lines Matching defs:low_pc

77   uint32_t low_pc;  // Relative to compilation unit.
102 std::map<uint32_t, uint32_t> stack_maps; // low_pc -> stack_map_index.
117 const uint32_t low_pc = dchecked_integral_cast<uint32_t>(
119 stack_maps.emplace(low_pc, s);
124 const uint32_t low_pc = it->first;
132 DCHECK_LE(low_pc, high_pc);
133 if (low_pc == high_pc) {
162 variable_locations.back().high_pc == low_pc) {
166 variable_locations.push_back({low_pc, high_pc, reg_lo, reg_hi});
264 debug_loc.PushUint64(variable_location.low_pc);
267 debug_loc.PushUint32(variable_location.low_pc);
291 uint32_t low_pc = variable_locations[i].low_pc;
293 while (i + 1 < variable_locations.size() && variable_locations[i+1].low_pc == high_pc) {
298 debug_ranges.PushUint64(low_pc);
301 debug_ranges.PushUint32(low_pc);