Home
last modified time | relevance | path

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

/art/dexdump/
Ddexdump_cfg.cc51 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16); in DumpMethodCFG() local
52 const uint16_t* switch_insns = insns + switch_offset; in DumpMethodCFG()
224 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16); in DumpMethodCFG() local
226 const uint16_t* switch_insns = insns + switch_offset; in DumpMethodCFG()
/art/runtime/verifier/
Dmethod_verifier.cc1488 int32_t switch_offset = insns[1] | (static_cast<int32_t>(insns[2]) << 16); in CheckSwitchTargets() local
1489 if (UNLIKELY(static_cast<int32_t>(cur_offset) + switch_offset < 0 || in CheckSwitchTargets()
1490 cur_offset + switch_offset + 2 > insn_count)) { in CheckSwitchTargets()
1492 << ", switch offset " << switch_offset in CheckSwitchTargets()
1497 const uint16_t* switch_insns = insns + switch_offset; in CheckSwitchTargets()
1501 << ", switch offset " << switch_offset; in CheckSwitchTargets()
1506 if (UNLIKELY(!GetInstructionFlags(cur_offset + switch_offset).IsOpcode())) { in CheckSwitchTargets()
1508 << ", switch offset " << switch_offset in CheckSwitchTargets()
1535 if (UNLIKELY(cur_offset + switch_offset + table_size > (uint32_t) insn_count)) { in CheckSwitchTargets()
1537 << ", switch offset " << switch_offset in CheckSwitchTargets()
[all …]