/art/runtime/ |
D | mapping_table.h | 70 native_pc_offset_(0), dex_pc_(0) { in DexToPcIterator() 76 dex_pc_ = static_cast<uint32_t>(DecodeSignedLeb128(&encoded_table_ptr_)); in DexToPcIterator() 86 return dex_pc_; in DexPc() 93 dex_pc_ += static_cast<uint32_t>(DecodeSignedLeb128(&encoded_table_ptr_)); 111 uint32_t dex_pc_; // The current value of dex pc. variable 147 native_pc_offset_(0), dex_pc_(0) { in PcToDexIterator() 153 dex_pc_ = static_cast<uint32_t>(DecodeSignedLeb128(&encoded_table_ptr_)); in PcToDexIterator() 163 return dex_pc_; in DexPc() 170 dex_pc_ += static_cast<uint32_t>(DecodeSignedLeb128(&encoded_table_ptr_)); 188 uint32_t dex_pc_; // The current value of dex pc. variable
|
D | profiler.h | 53 parent_(parent), method_(method), dex_pc_(dex_pc), in StackTrieNode() 57 dex_pc_(0), count_(0), method_size_(0) { in StackTrieNode() 62 uint32_t GetDexPC() { return dex_pc_; } in GetDexPC() 90 uint32_t dex_pc_; variable
|
D | stack.h | 160 return (dex_pc_ptr_ == nullptr) ? dex_pc_ : dex_pc_ptr_ - code_item_->insns_; in GetDexPC() 180 dex_pc_ = dex_pc; in SetDexPC() 366 return OFFSETOF_MEMBER(ShadowFrame, dex_pc_); in DexPCOffset() 418 code_item_(nullptr), number_of_vregs_(num_vregs), dex_pc_(dex_pc) { in ShadowFrame() 447 uint32_t dex_pc_; variable
|
D | monitor.cc | 225 dex_pc_(0), in NthCallerWithDexPcVisitor() 238 dex_pc_ = GetDexPc(false /* abort_on_error*/); in VisitFrame() 248 uint32_t dex_pc_; member 273 TranslateLocation(visitor.method_, visitor.dex_pc_, &filename, &line_number); in AtraceMonitorLockImpl()
|
D | profiler.cc | 73 uint32_t dex_pc_ = GetDexPc(); in VisitFrame() local 74 stack_->push_back(std::make_pair(m, dex_pc_)); in VisitFrame()
|
D | thread.cc | 2636 dex_pc_(0), in CurrentMethodVisitor() 2648 dex_pc_ = GetDexPc(abort_on_error_); in VisitFrame() 2653 uint32_t dex_pc_; member 2661 *dex_pc = visitor.dex_pc_; in GetCurrentMethod()
|
D | debugger.cc | 90 dex_pc_(dex_pc), in Breakpoint() 99 dex_pc_(other.dex_pc_), in SHARED_REQUIRES() 109 return dex_pc_; in DexPc() 125 uint32_t dex_pc_; member in art::Breakpoint
|
/art/compiler/optimizing/ |
D | bytecode_utils.h | 32 dex_pc_(start_dex_pc) {} 38 uint32_t CurrentDexPc() const { return dex_pc_; } in CurrentDexPc() 44 dex_pc_ += instruction_size; in Advance() 50 uint32_t dex_pc_; variable 59 dex_pc_(dex_pc), in DexSwitchTable() 90 return dex_pc_ + in GetDexPcForIndex() 114 const uint32_t dex_pc_; variable
|
D | nodes.h | 823 dex_pc_(dex_pc), in graph_() 883 uint32_t GetDexPc() const { return dex_pc_; } in GetDexPc() 1152 const uint32_t dex_pc_; variable 1660 dex_pc_(dex_pc), in HEnvironment() 1717 return dex_pc_; in GetDexPc() 1747 const uint32_t dex_pc_; variable 1764 dex_pc_(dex_pc), in HInstruction() 1814 uint32_t GetDexPc() const { return dex_pc_; } in GetDexPc() 2127 const uint32_t dex_pc_; variable
|
D | code_generator_mips64.cc | 176 : SlowPathCodeMIPS64(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) { in LoadClassSlowPathMIPS64() 191 mips64_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this); in EmitNativeCode() 221 const uint32_t dex_pc_; member in art::mips64::LoadClassSlowPathMIPS64
|
D | code_generator_arm64.cc | 282 : SlowPathCodeARM64(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) { in LoadClassSlowPathARM64() 297 arm64_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this); in EmitNativeCode() 327 const uint32_t dex_pc_; member in art::arm64::LoadClassSlowPathARM64
|
D | code_generator_mips.cc | 217 : SlowPathCodeMIPS(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) { in LoadClassSlowPathMIPS() 236 mips_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this, direct); in EmitNativeCode() 266 const uint32_t dex_pc_; member in art::mips::LoadClassSlowPathMIPS
|
D | code_generator_x86_64.cc | 227 : SlowPathCode(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) { in LoadClassSlowPathX86_64() 244 dex_pc_, in EmitNativeCode() 274 const uint32_t dex_pc_; member in art::x86_64::LoadClassSlowPathX86_64
|
D | code_generator_arm.cc | 197 : SlowPathCode(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) { in LoadClassSlowPathARM() 213 arm_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this); in EmitNativeCode() 241 const uint32_t dex_pc_; member in art::arm::LoadClassSlowPathARM
|
D | code_generator_x86.cc | 243 : SlowPathCode(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) { in LoadClassSlowPathX86() 257 at_, dex_pc_, this); in EmitNativeCode() 286 const uint32_t dex_pc_; member in art::x86::LoadClassSlowPathX86
|
/art/runtime/gc/ |
D | allocation_record.h | 46 dex_pc_(dex_pc) {} in AllocRecordStackTraceElement() 57 return dex_pc_; in GetDexPc() 61 dex_pc_ = pc; in SetDexPc() 65 return method_ == other.method_ && dex_pc_ == other.dex_pc_; 70 uint32_t dex_pc_ = 0; variable
|
D | allocation_record.cc | 32 return method_->GetLineNumFromDexPC(dex_pc_); in ComputeLineNumber()
|
/art/runtime/jit/ |
D | profiling_info.h | 79 uint32_t dex_pc_; 178 cache_[i].dex_pc_ = entries[i]; in ProfilingInfo()
|
D | profiling_info.cc | 69 if (cache_[i].dex_pc_ == dex_pc) { in GetInlineCache()
|