Home
last modified time | relevance | path

Searched refs:native_pc (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dstack_map.h153 static uint32_t PackNativePc(uint32_t native_pc, InstructionSet isa) { in PackNativePc() argument
154 DCHECK_ALIGNED_PARAM(native_pc, GetInstructionSetInstructionAlignment(isa)); in PackNativePc()
155 return native_pc / GetInstructionSetInstructionAlignment(isa); in PackNativePc()
159 uint32_t native_pc = packed_native_pc * GetInstructionSetInstructionAlignment(isa); in UnpackNativePc() local
160 DCHECK_EQ(native_pc / GetInstructionSetInstructionAlignment(isa), packed_native_pc); in UnpackNativePc()
161 return native_pc; in UnpackNativePc()
/art/runtime/jit/
Djit.h212 const uint8_t* native_pc; member
221 return MemberOffset(OFFSETOF_MEMBER(OsrData, native_pc)); in NativePcOffset()
Djit.cc461 const uint8_t* native_pc,
550 osr_data->native_pc = stack_map.GetNativePcOffset(kRuntimeISA) + in PrepareForOsr()
555 << std::hex << reinterpret_cast<uintptr_t>(osr_data->native_pc); in PrepareForOsr()
604 osr_data->native_pc, in MaybeDoOnStackReplacement()
/art/compiler/optimizing/
Dcode_generator.cc1170 uint32_t native_pc, in RecordPcInfo() argument
1200 stack_map_stream->BeginStackMapEntry(dex_pc, native_pc); in RecordPcInfo()
1246 native_pc, in RecordPcInfo()
1310 uint32_t native_pc = GetAddressOf(block); in RecordCatchBlockInfo() local
1313 native_pc, in RecordCatchBlockInfo()
Dcode_generator.h342 uint32_t native_pc,