Home
last modified time | relevance | path

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

/art/dexdump/
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()
/art/runtime/verifier/
Dmethod_verifier.cc1429 int32_t abs_offset = cur_offset + offset; in CheckBranchTarget() local
1430 if (UNLIKELY(abs_offset < 0 || in CheckBranchTarget()
1431 (uint32_t) abs_offset >= code_item_accessor_.InsnsSizeInCodeUnits() || in CheckBranchTarget()
1432 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckBranchTarget()
1434 << reinterpret_cast<void*>(abs_offset) << ") at " in CheckBranchTarget()
1438 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckBranchTarget()
1575 int32_t abs_offset = cur_offset + offset; in CheckSwitchTargets() local
1576 if (UNLIKELY(abs_offset < 0 || in CheckSwitchTargets()
1577 abs_offset >= static_cast<int32_t>(insn_count) || in CheckSwitchTargets()
1578 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckSwitchTargets()
[all …]