Searched refs:native_pc_offset (Results 1 - 12 of 12) sorted by relevance

/art/runtime/
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);
61 void CheckOptimizedMethod(int* registers, int number_of_references, uint32_t native_pc_offset)
66 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
H A Dstack.cc116 uint32_t native_pc_offset = method_header->NativeQuickPcOffset(cur_quick_frame_pc_); local
119 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
273 uint32_t native_pc_offset = method_header->NativeQuickPcOffset(cur_quick_frame_pc_); local
274 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
800 uint32_t native_pc_offset = local
802 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
H A Dquick_exception_handler.cc264 << "native_pc_offset=" << stack_visitor->GetNativePcOffset() << ")";
384 uintptr_t native_pc_offset = method_header->NativeQuickPcOffset(GetCurrentQuickFramePc()); local
386 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
H A Dstack_map.h788 * [native_pc_offset, dex_pc, dex_register_map_offset, inlining_info_offset, register_mask,
810 ALWAYS_INLINE void SetNativePcOffset(const StackMapEncoding& encoding, uint32_t native_pc_offset) { argument
811 encoding.GetNativePcEncoding().Store(region_, native_pc_offset);
1228 StackMap GetStackMapForNativePcOffset(uint32_t native_pc_offset, argument
1230 // TODO: Safepoint stack maps are sorted by native_pc_offset but catch stack
1235 if (stack_map.GetNativePcOffset(encoding.stack_map_encoding) == native_pc_offset) {
H A Dthread.cc2776 uintptr_t native_pc_offset = method_header->NativeQuickPcOffset(GetCurrentQuickFramePc()); local
2779 StackMap map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);
/art/compiler/optimizing/
H A Dstack_map_stream.h98 uint32_t native_pc_offset; member in struct:art::StackMapStream::StackMapEntry
120 uint32_t native_pc_offset,
143 void SetStackMapNativePcOffset(size_t i, uint32_t native_pc_offset) { argument
144 stack_maps_[i].native_pc_offset = native_pc_offset;
H A Dstack_map_stream.cc21 uint32_t native_pc_offset,
29 current_entry_.native_pc_offset = native_pc_offset;
133 max_native_pc_offset = std::max(max_native_pc_offset, entry.native_pc_offset);
295 stack_map.SetNativePcOffset(stack_map_encoding_, entry.native_pc_offset);
511 DCHECK_EQ(stack_map.GetNativePcOffset(stack_map_encoding), entry.native_pc_offset);
20 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
H A Dcode_generator.cc808 DCHECK_NE(stack_map_stream_.GetStackMap(number_of_stack_maps - 1).native_pc_offset,
809 stack_map_stream_.GetStackMap(number_of_stack_maps - 2).native_pc_offset);
817 return count > 0 && stack_map_stream_.GetStackMap(count - 1).native_pc_offset == pc;
H A Dcode_generator_mips64.cc436 uint32_t old_position = stack_map_stream_.GetStackMap(i).native_pc_offset;
H A Dcode_generator_mips.cc490 uint32_t old_position = stack_map_stream_.GetStackMap(i).native_pc_offset;
H A Dcode_generator_arm.cc805 uint32_t old_position = stack_map_stream_.GetStackMap(i).native_pc_offset;
/art/runtime/entrypoints/
H A Dentrypoint_utils.cc277 uintptr_t native_pc_offset = current_code->NativeQuickPcOffset(caller_pc); local
280 StackMap stack_map = code_info.GetStackMapForNativePcOffset(native_pc_offset, encoding);

Completed in 856 milliseconds