Home
last modified time | relevance | path

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

/art/dexdump/
Ddexdump_cfg.cc53 uint32_t switch_count = switch_insns[1]; in DumpMethodCFG() local
60 targets_offset = 2 + 2 * switch_count; in DumpMethodCFG()
62 for (uint32_t targ = 0; targ < switch_count; targ++) { in DumpMethodCFG()
227 uint32_t switch_count = switch_insns[1]; in DumpMethodCFG() local
234 targets_offset = 2 + 2 * switch_count; in DumpMethodCFG()
238 for (uint32_t targ = 0; targ < switch_count; targ++) { in DumpMethodCFG()
/art/runtime/verifier/
Dmethod_verifier.cc1515 uint32_t switch_count = switch_insns[1]; in CheckSwitchTargets() local
1524 targets_offset = 2 + 2 * switch_count; in CheckSwitchTargets()
1527 uint32_t table_size = targets_offset + switch_count * 2; in CheckSwitchTargets()
1544 if (switch_count > 1) { in CheckSwitchTargets()
1549 std::numeric_limits<int32_t>::max() - (static_cast<int32_t>(switch_count) - 1); in CheckSwitchTargets()
1552 << ", switch_count=" << switch_count; in CheckSwitchTargets()
1558 for (uint32_t targ = 1; targ < switch_count; targ++) { in CheckSwitchTargets()
1572 for (uint32_t targ = 0; targ < switch_count; targ++) { in CheckSwitchTargets()
3555 int switch_count = switch_insns[1]; in CodeFlowVerifyInstruction() local
3564 offset_to_targets = 2 + 2 * switch_count; in CodeFlowVerifyInstruction()
[all …]