Home
last modified time | relevance | path

Searched refs:abs_offset (Results 1 – 2 of 2) sorted by relevance

/aosp12/art/dexdump/
H A Ddexdump_cfg.cc242 int32_t abs_offset = dex_pc + offset; in DumpMethodCFG() local
243 auto target_it = dex_pc_to_node_id.find(abs_offset); in DumpMethodCFG()
247 << " -> node" << target_it->second << ":p" << (abs_offset) in DumpMethodCFG()
/aosp12/art/runtime/verifier/
H A Dmethod_verifier.cc1435 int32_t abs_offset = cur_offset + offset; in CheckBranchTarget() local
1436 if (UNLIKELY(abs_offset < 0 || in CheckBranchTarget()
1438 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckBranchTarget()
1444 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckBranchTarget()
1581 int32_t abs_offset = cur_offset + offset; in CheckSwitchTargets() local
1582 if (UNLIKELY(abs_offset < 0 || in CheckSwitchTargets()
1583 abs_offset >= static_cast<int32_t>(insn_count) || in CheckSwitchTargets()
1584 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckSwitchTargets()
1591 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckSwitchTargets()
3514 uint32_t abs_offset; in CodeFlowVerifyInstruction() local
[all …]