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()
1395 int32_t abs_offset = cur_offset + offset; in CheckBranchTarget() local1396 if (UNLIKELY(abs_offset < 0 || in CheckBranchTarget()1397 (uint32_t) abs_offset >= code_item_accessor_.InsnsSizeInCodeUnits() || in CheckBranchTarget()1398 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckBranchTarget()1400 << reinterpret_cast<void*>(abs_offset) << ") at " in CheckBranchTarget()1404 GetModifiableInstructionFlags(abs_offset).SetBranchTarget(); in CheckBranchTarget()1541 int32_t abs_offset = cur_offset + offset; in CheckSwitchTargets() local1542 if (UNLIKELY(abs_offset < 0 || in CheckSwitchTargets()1543 abs_offset >= static_cast<int32_t>(insn_count) || in CheckSwitchTargets()1544 !GetInstructionFlags(abs_offset).IsOpcode())) { in CheckSwitchTargets()[all …]