HomeSort by relevance Sort by last modified time
    Searched refs:native_pc (Results 1 - 5 of 5) sorted by null

  /art/compiler/optimizing/
stack_map_stream.h 50 T native_pc; member in struct:art::StackMapStream::StackMapEntry
69 T native_pc,
76 entry.native_pc = native_pc;
160 stack_map.SetNativePc(entry.native_pc);
code_generator.cc 283 uint32_t native_offset = pc_infos_.Get(i).native_pc;
292 uint32_t native_offset = pc_info.native_pc;
311 pc2dex_data_size += UnsignedLeb128Size(pc_info.native_pc - pc2dex_offset);
313 pc2dex_offset = pc_info.native_pc;
333 DCHECK(pc2dex_offset <= pc_info.native_pc);
334 write_pos = EncodeUnsignedLeb128(write_pos, pc_info.native_pc - pc2dex_offset);
336 pc2dex_offset = pc_info.native_pc;
351 CHECK_EQ(pc_info.native_pc, it.NativePcOffset());
code_generator.h 49 uintptr_t native_pc; member in struct:art::PcInfo
119 pc_info.native_pc = GetAssembler()->CodeSize();
  /art/runtime/
stack_map.h 130 * [dex_pc, native_pc, dex_register_map_offset, inlining_info_offset, register_mask, stack_mask].
152 void SetNativePc(T native_pc) {
153 return region_.Store<T>(kNativePcOffset, native_pc);
278 StackMap<T> GetStackMapForNativePc(T native_pc) {
282 if (stack_map.GetNativePc() == native_pc) {
  /art/oatdump/
oatdump.cc 755 const uint8_t* native_pc = reinterpret_cast<const uint8_t*>(quick_code) + local
757 os << StringPrintf("%p", native_pc);
    [all...]

Completed in 142 milliseconds