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.cc1435 int32_t abs_offset = cur_offset + offset; in CheckBranchTarget() local
1436 if (UNLIKELY(abs_offset < 0 || in CheckBranchTarget()
1437 (uint32_t) abs_offset >= code_item_accessor_.InsnsSizeInCodeUnits() || in CheckBranchTarget()
1438 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckBranchTarget()
1440 << reinterpret_cast<void*>(abs_offset) << ") at " 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()
[all …]