Home
last modified time | relevance | path

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

/art/compiler/
Dexception_test.cc213 uintptr_t native_pc = header->ToNativeQuickPc(method_g_, kDexPc); in TEST_F() local
217 native_pc = (native_pc & ((1ULL << 56) - 1)); in TEST_F()
219 fake_stack.push_back(native_pc); // return pc in TEST_F()
225 fake_stack.push_back(native_pc); // return pc. in TEST_F()
/art/runtime/oat/
Dstack_map.h159 static uint32_t PackNativePc(uint32_t native_pc, InstructionSet isa) { in PackNativePc() argument
160 DCHECK_ALIGNED_PARAM(native_pc, GetInstructionSetInstructionAlignment(isa)); in PackNativePc()
161 return native_pc / GetInstructionSetInstructionAlignment(isa); in PackNativePc()
165 uint32_t native_pc = packed_native_pc * GetInstructionSetInstructionAlignment(isa); in UnpackNativePc() local
166 DCHECK_EQ(native_pc / GetInstructionSetInstructionAlignment(isa), packed_native_pc); in UnpackNativePc()
167 return native_pc; in UnpackNativePc()
/art/runtime/jit/
Djit.h89 const uint8_t* native_pc; member
98 return MemberOffset(OFFSETOF_MEMBER(OsrData, native_pc)); in NativePcOffset()
Djit.cc346 const uint8_t* native_pc,
435 osr_data->native_pc = stack_map.GetNativePcOffset(kRuntimeISA) + in PrepareForOsr()
440 << std::hex << reinterpret_cast<uintptr_t>(osr_data->native_pc); in PrepareForOsr()
493 osr_data->native_pc, in MaybeDoOnStackReplacement()
/art/compiler/optimizing/
Dcode_generator.cc1139 uint32_t native_pc, in RecordPcInfo() argument
1169 stack_map_stream->BeginStackMapEntry(dex_pc, native_pc); in RecordPcInfo()
1213 native_pc, in RecordPcInfo()
1299 uint32_t native_pc = GetAddressOf(block); in RecordCatchBlockInfo() local
1301 native_pc, in RecordCatchBlockInfo()
Dcode_generator.h343 uint32_t native_pc,