Searched refs:abs_offset (Results 1 – 2 of 2) sorted by relevance
242 int32_t abs_offset = dex_pc + offset; in DumpMethodCFG() local243 auto target_it = dex_pc_to_node_id.find(abs_offset); in DumpMethodCFG()247 << " -> node" << target_it->second << ":p" << (abs_offset) in DumpMethodCFG()
1435 int32_t abs_offset = cur_offset + offset; in CheckBranchTarget() local1436 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() local1582 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 …]