HomeSort by relevance Sort by last modified time
    Searched defs:low_pc (Results 1 - 8 of 8) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
gmon_out.h 63 char low_pc[sizeof (char *)]; /* base pc address of sample buffer */ member in struct:gmon_hist_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
gmon_out.h 63 char low_pc[sizeof (char *)]; /* base pc address of sample buffer */ member in struct:gmon_hist_hdr
  /art/compiler/debug/
elf_debug_loc_writer.h 77 uint32_t low_pc; // Relative to compilation unit. member in struct:art::debug::VariableLocation
103 std::map<uint32_t, uint32_t> stack_maps; // low_pc -> stack_map_index.
118 const uint32_t low_pc = dchecked_integral_cast<uint32_t>( local
120 stack_maps.emplace(low_pc, s);
125 const uint32_t low_pc = it->first; local
133 DCHECK_LE(low_pc, high_pc);
134 if (low_pc == high_pc) {
164 variable_locations.back().high_pc == low_pc) {
168 variable_locations.push_back({low_pc, high_pc, reg_lo, reg_hi});
270 debug_loc.PushUint64(variable_location.low_pc);
297 uint32_t low_pc = variable_locations[i].low_pc; local
    [all...]
elf_debug_info_writer.h 136 // The low_pc acts as base address for several other addresses/ranges.
144 uint64_t low_pc = mi->code_address - compilation_unit.code_address; local
145 uint64_t high_pc = low_pc + mi->code_size;
147 debug_ranges.PushUint64(low_pc);
150 debug_ranges.PushUint32(low_pc);
  /toolchain/binutils/binutils-2.27/bfd/
dwarf1.c 71 unsigned long low_pc; member in struct:dwarf1_unit
104 unsigned long low_pc; member in struct:dwarf1_func
113 unsigned long low_pc; member in struct:die_info
240 aDieInfo->low_pc = bfd_get_32 (abfd, (bfd_byte *) xptr);
370 aFunc->low_pc = eachDieInfo.low_pc;
398 if (aUnit->low_pc <= addr && addr < aUnit->high_pc)
433 if (eachFunc->low_pc <= addr
511 if (eachUnit->low_pc <= addr && addr < eachUnit->high_pc)
533 aUnit->low_pc = aDieInfo.low_pc
    [all...]
dwarf2.c 1236 bfd_vma low_pc; member in struct:line_sequence
1872 bfd_vma low_pc = (bfd_vma) -1; local
2420 bfd_vma low_pc; local
2477 bfd_vma low_pc = 0; local
2742 bfd_vma low_pc = 0; local
    [all...]
  /toolchain/binutils/binutils-2.27/gprof/
gmon_io.c 382 bfd_vma low_pc;
410 if (gmon_io_read_vma (ifp, &tmp.low_pc)
484 if (histograms && (tmp.low_pc != histograms->lowpc
497 histograms->lowpc = tmp.low_pc;
500 hist_scale = (double)((tmp.high_pc - tmp.low_pc) / sizeof (UNIT))
509 (unsigned long) tmp.low_pc, (unsigned long) tmp.high_pc,
381 bfd_vma low_pc; member in struct:hdr
  /toolchain/binutils/binutils-2.27/gold/
gdb-index.cc 833 off_t low_pc = die->address_attribute(elfcpp::DW_AT_low_pc, &shndx); local
838 high_pc += low_pc;
841 if ((low_pc != 0 || high_pc != 0) && low_pc != -1)
845 gold_warning(_("%s: DWARF info may be corrupt; low_pc and high_pc "
853 ranges->add(shndx, low_pc, high_pc);
    [all...]

Completed in 282 milliseconds