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

/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
/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);
/art/runtime/
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.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 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);

Completed in 1373 milliseconds