Home
last modified time | relevance | path

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

/art/runtime/
Dbytecode_utils.h36 bool IsLast() const { return code_ptr_ + CurrentInstruction().SizeInCodeUnits() >= code_end_; } in IsLast()
38 const Instruction& CurrentInstruction() const { return *Instruction::At(code_ptr_); } in CurrentInstruction() function
43 size_t instruction_size = CurrentInstruction().SizeInCodeUnits(); in Advance()
168 return CodeItemIterator(code_item, dex_pc).CurrentInstruction(); in GetDexInstructionAt()
Ddex_to_dex_decompiler.cc107 Instruction* inst = const_cast<Instruction*>(&it.CurrentInstruction()); in Decompile()
/art/compiler/optimizing/
Dblock_builder.cc80 const Instruction& instruction = it.CurrentInstruction(); in CreateBranchTargets()
112 MaybeCreateBlockAt(dex_pc + it.CurrentInstruction().SizeInCodeUnits()); in CreateBranchTargets()
146 const Instruction& instruction = it.CurrentInstruction(); in ConnectBasicBlocks()
Dinstruction_builder.cc327 if (current_block_->IsTryBlock() && IsThrowingDexInstruction(it.CurrentInstruction())) { in Build()
335 if (!ProcessDexInstruction(it.CurrentInstruction(), dex_pc)) { in Build()
/art/test/983-source-transform-verify/
Dsource_transform.cc92 const Instruction& inst = code_it.CurrentInstruction(); in CheckDexFileHook()
/art/profman/
Dprofman.cc663 if (it.CurrentInstruction().Opcode() == Instruction::INVOKE_VIRTUAL) { in HasSingleInvoke()