Searched defs:native_pc_offset (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dgc_map.h56 bool HasEntry(uintptr_t native_pc_offset) { argument
58 if (GetNativePcOffset(i) == native_pc_offset) {
66 const uint8_t* FindBitMap(uintptr_t native_pc_offset) { argument
68 size_t index = Hash(native_pc_offset) % num_entries;
70 while (GetNativePcOffset(index) != native_pc_offset) {
73 DCHECK_LT(misses, num_entries) << "Failed to find offset: " << native_pc_offset;
H A Dthread.cc2120 uintptr_t native_pc_offset = m->NativePcOffset(GetCurrentQuickFramePc(), entry_point); local
2121 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
/art/oatdump/
H A Doatdump.cc824 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
828 if (map.HasEntry(native_pc_offset)) {
830 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
823 DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t native_pc_offset) argument

Completed in 91 milliseconds