Searched refs:native_pc_offset (Results 1 - 9 of 9) 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 Dcheck_reference_map_visitor.h54 void CheckReferences(int* registers, int number_of_references, uint32_t native_pc_offset)
57 CheckOptimizedMethod(registers, number_of_references, native_pc_offset);
59 CheckQuickMethod(registers, number_of_references, native_pc_offset);
64 void CheckOptimizedMethod(int* registers, int number_of_references, uint32_t native_pc_offset)
68 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
105 void CheckQuickMethod(int* registers, int number_of_references, uint32_t native_pc_offset)
109 const uint8_t* ref_bitmap = map.FindBitMap(native_pc_offset);
H A Dstack_map.cc117 void StackMap::SetNativePcOffset(const CodeInfo& info, uint32_t native_pc_offset) { argument
118 StoreAt(region_, info.NumberOfBytesForNativePc(), info.ComputeStackMapNativePcOffset(), native_pc_offset);
216 << ", native_pc_offset=0x" << stack_map.GetNativePcOffset(*this)
H A Dstack.cc183 uintptr_t native_pc_offset = m->NativeQuickPcOffset(GetCurrentQuickFramePc(), entry_point); local
184 reg_bitmap = map.FindBitMap(native_pc_offset);
234 uint32_t native_pc_offset = m->NativeQuickPcOffset(cur_quick_frame_pc_); local
236 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
H A Dstack_map.h676 * [dex_pc, native_pc_offset, dex_register_map_offset, inlining_info_offset, register_mask,
696 void SetNativePcOffset(const CodeInfo& info, uint32_t native_pc_offset);
985 StackMap GetStackMapForNativePcOffset(uint32_t native_pc_offset) const {
989 if (stack_map.GetNativePcOffset(*this) == native_pc_offset) {
H A Dthread.cc2328 uintptr_t native_pc_offset = m->NativeQuickPcOffset(GetCurrentQuickFramePc(), entry_point); local
2330 StackMap map = code_info.GetStackMapForNativePcOffset(native_pc_offset);
2368 uintptr_t native_pc_offset = m->NativeQuickPcOffset(GetCurrentQuickFramePc(), entry_point); local
2369 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
/art/compiler/optimizing/
H A Dstack_map_stream.h89 uint32_t native_pc_offset; member in struct:art::StackMapStream::StackMapEntry
106 uint32_t native_pc_offset,
H A Dstack_map_stream.cc22 uint32_t native_pc_offset,
29 current_entry_.native_pc_offset = native_pc_offset;
53 native_pc_offset_max_ = std::max(native_pc_offset_max_, native_pc_offset);
232 stack_map.SetNativePcOffset(code_info, entry.native_pc_offset);
21 BeginStackMapEntry(uint32_t dex_pc, uint32_t native_pc_offset, uint32_t register_mask, BitVector* sp_mask, uint32_t num_dex_registers, uint8_t inlining_depth) argument
/art/oatdump/
H A Doatdump.cc1227 const DexFile::CodeItem* code_item, size_t native_pc_offset) {
1231 if (map.HasEntry(native_pc_offset)) {
1233 const uint8_t* reg_bitmap = map.FindBitMap(native_pc_offset);
1226 DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t native_pc_offset) argument

Completed in 178 milliseconds