Home
last modified time | relevance | path

Searched refs:DexPc (Results 1 – 17 of 17) sorted by relevance

/art/libdexfile/dex/
Ddex_instruction_iterator.h32 return *Instruction::At(instructions_ + DexPc()); in Inst()
39 ALWAYS_INLINE uint32_t DexPc() const { in DexPc() function
74 ALWAYS_INLINE uint32_t DexPc() const { in DexPc() function
75 return data_.DexPc(); in DexPc()
90 return lhs.DexPc() == rhs.DexPc();
101 return lhs.DexPc() < rhs.DexPc();
128 : DexInstructionIterator(pair.Instructions(), pair.DexPc()) {} in DexInstructionIterator()
152 ALWAYS_INLINE uint32_t DexPc() const { in DexPc() function
153 return data_.DexPc(); in DexPc()
163 : DexInstructionIteratorBase(&start.Inst(), start.DexPc()) in SafeDexInstructionIterator()
[all …]
/art/dexdump/
Ddexdump_cfg.cc48 dex_pc_is_branch_target.insert(pair.DexPc() + inst->GetTargetOffset()); in DumpMethodCFG()
66 dex_pc_is_branch_target.insert(pair.DexPc() + offset); in DumpMethodCFG()
80 const uint32_t dex_pc = pair.DexPc(); in DumpMethodCFG()
165 const uint32_t dex_pc = pair.DexPc(); in DumpMethodCFG()
272 old_dex_pc = pair.DexPc(); in DumpMethodCFG()
Ddexdump.cc1147 const u4 dexPc = pair.DexPc(); in dumpBytecodes()
/art/compiler/optimizing/
Dblock_builder.cc103 const uint32_t dex_pc = pair.DexPc(); in CreateBranchTargets()
139 MaybeCreateBlockAt(next.DexPc()); in CreateBranchTargets()
155 const uint32_t dex_pc = pair.DexPc(); in ConnectBasicBlocks()
214 block->AddSuccessor(GetBlockAt(std::next(DexInstructionIterator(pair)).DexPc())); in ConnectBasicBlocks()
405 const uint32_t dex_pc = pair.DexPc(); in InsertSynthesizedLoopsForOsr()
Dinstruction_builder.cc371 const uint32_t dex_pc = pair.DexPc(); in Build()
488 locations->ClearBit(inst.DexPc()); in FindNativeDebugInfoLocations()
490 DCHECK(next.DexPc() != inst.DexPc()); in FindNativeDebugInfoLocations()
492 locations->SetBit(next.DexPc()); in FindNativeDebugInfoLocations()
Dcode_generator.cc1054 const uint32_t dex_pc = pair.DexPc(); in CheckLoopEntriesCanBeUsedForOsr()
/art/test/983-source-transform-verify/
Dsource_transform_art.cc64 << " [Dex PC: 0x" << std::hex << pair.DexPc() << std::dec << "] : " in VerifyClassData()
/art/runtime/
Dmapping_table.h85 uint32_t DexPc() const { in DexPc() function
162 uint32_t DexPc() const { in DexPc() function
Dstack_map.h134 BIT_TABLE_COLUMN(2, DexPc)
179 BIT_TABLE_COLUMN(1, DexPc)
Dart_method.cc572 if (pair.DexPc() == dex_pc) { in GetIndexFromQuickening()
/art/compiler/dex/
Dverified_method.cc73 const uint32_t dex_pc = pair.DexPc(); in GenerateSafeCastSet()
/art/runtime/jit/
Dprofiling_info.cc56 entries.push_back(inst.DexPc()); in Create()
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc215 const uint32_t dex_pc = it.DexPc(); in Compile()
/art/tools/veridex/
Dflow_analysis.cc89 const uint32_t dex_pc = pair.DexPc(); in FindBranches()
/art/dexlayout/
Ddexlayout.cc1042 LOG(WARNING) << "GLITCH: zero-width instruction at idx=0x" << std::hex << inst.DexPc(); in DumpBytecodes()
1045 DumpInstruction(code, code_offset, inst.DexPc(), insn_width, &inst.Inst()); in DumpBytecodes()
/art/profman/
Dprofman.cc1016 *dex_pc = inst.DexPc(); in HasSingleInvoke()
/art/oatdump/
Doatdump.cc1148 vios->Stream() << StringPrintf("0x%04x: ", inst.DexPc()) << inst->DumpHexLE(5) in DumpOatMethod()