Home
last modified time | relevance | path

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

/art/runtime/
Dutils.cc1495 int32_t targets_offset; in DumpMethodCFGImpl() local
1498 targets_offset = 4; in DumpMethodCFGImpl()
1501 targets_offset = 2 + 2 * switch_count; in DumpMethodCFGImpl()
1505 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in DumpMethodCFGImpl()
1506 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in DumpMethodCFGImpl()
1672 int32_t targets_offset; in DumpMethodCFGImpl() local
1675 targets_offset = 4; in DumpMethodCFGImpl()
1678 targets_offset = 2 + 2 * switch_count; in DumpMethodCFGImpl()
1684 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in DumpMethodCFGImpl()
1685 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in DumpMethodCFGImpl()
/art/runtime/verifier/
Dmethod_verifier.cc1457 int32_t targets_offset; in CheckSwitchTargets() local
1461 targets_offset = 4; in CheckSwitchTargets()
1465 targets_offset = 2 + 2 * switch_count; in CheckSwitchTargets()
1468 uint32_t table_size = targets_offset + switch_count * 2; in CheckSwitchTargets()
1514 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in CheckSwitchTargets()
1515 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()