Home
last modified time | relevance | path

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

/art/compiler/
Dexception_test.cc203 uintptr_t native_pc = header->ToNativeQuickPc(method_g_, kDexPc); in TEST_F() local
207 native_pc = (native_pc & ((1ULL << 56) - 1)); in TEST_F()
209 fake_stack.push_back(native_pc); // return pc in TEST_F()
215 fake_stack.push_back(native_pc); // return pc. in TEST_F()
/art/runtime/
Dstack_map.h158 static uint32_t PackNativePc(uint32_t native_pc, InstructionSet isa) { in PackNativePc() argument
159 DCHECK_ALIGNED_PARAM(native_pc, GetInstructionSetInstructionAlignment(isa)); in PackNativePc()
160 return native_pc / GetInstructionSetInstructionAlignment(isa); in PackNativePc()
164 uint32_t native_pc = packed_native_pc * GetInstructionSetInstructionAlignment(isa); in UnpackNativePc() local
165 DCHECK_EQ(native_pc / GetInstructionSetInstructionAlignment(isa), packed_native_pc); in UnpackNativePc()
166 return native_pc; in UnpackNativePc()
/art/runtime/jit/
Djit.h210 const uint8_t* native_pc; member
219 return MemberOffset(OFFSETOF_MEMBER(OsrData, native_pc)); in NativePcOffset()
Djit.cc449 const uint8_t* native_pc,
538 osr_data->native_pc = stack_map.GetNativePcOffset(kRuntimeISA) + in PrepareForOsr()
543 << std::hex << reinterpret_cast<uintptr_t>(osr_data->native_pc); in PrepareForOsr()
596 osr_data->native_pc, in MaybeDoOnStackReplacement()
/art/compiler/optimizing/
Dcode_generator.cc1216 uint32_t native_pc, in RecordPcInfo() argument
1246 stack_map_stream->BeginStackMapEntry(dex_pc, native_pc); in RecordPcInfo()
1290 native_pc, in RecordPcInfo()
1376 uint32_t native_pc = GetAddressOf(block); in RecordCatchBlockInfo() local
1378 native_pc, in RecordCatchBlockInfo()
Dcode_generator.h363 uint32_t native_pc,