Home
last modified time | relevance | path

Searched refs:targ (Results 1 – 5 of 5) sorted by relevance

/art/dexdump/
Ddexdump_cfg.cc62 for (uint32_t targ = 0; targ < switch_count; targ++) { in DumpMethodCFG() local
64 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in DumpMethodCFG()
65 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in DumpMethodCFG()
238 for (uint32_t targ = 0; targ < switch_count; targ++) { in DumpMethodCFG() local
240 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in DumpMethodCFG()
241 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in DumpMethodCFG()
Ddexdump.cc982 const s4 targ = (s4) pDecInsn->VRegA(); in dumpInstruction() local
984 insnIdx + targ, in dumpInstruction()
985 (targ < 0) ? '-' : '+', in dumpInstruction()
986 (targ < 0) ? -targ : targ); in dumpInstruction()
993 const s4 targ = (s4) pDecInsn->VRegB(); in dumpInstruction() local
995 insnIdx + targ, in dumpInstruction()
996 (targ < 0) ? '-' : '+', in dumpInstruction()
997 (targ < 0) ? -targ : targ); in dumpInstruction()
1030 const s4 targ = (s4) pDecInsn->VRegC(); in dumpInstruction() local
1033 insnIdx + targ, in dumpInstruction()
[all …]
/art/dexlayout/
Ddexlayout.cc876 const int32_t targ = (int32_t) dec_insn->VRegA(); in DumpInstruction() local
878 insn_idx + targ, in DumpInstruction()
879 (targ < 0) ? '-' : '+', in DumpInstruction()
880 (targ < 0) ? -targ : targ); in DumpInstruction()
887 const int32_t targ = (int32_t) dec_insn->VRegB(); in DumpInstruction() local
889 insn_idx + targ, in DumpInstruction()
890 (targ < 0) ? '-' : '+', in DumpInstruction()
891 (targ < 0) ? -targ : targ); in DumpInstruction()
924 const int32_t targ = (int32_t) dec_insn->VRegC(); in DumpInstruction() local
927 insn_idx + targ, in DumpInstruction()
[all …]
/art/runtime/verifier/
Dmethod_verifier.cc1517 for (uint32_t targ = 1; targ < switch_count; targ++) { in CheckSwitchTargets() local
1519 static_cast<int32_t>(switch_insns[keys_offset + targ * 2]) | in CheckSwitchTargets()
1520 static_cast<int32_t>(switch_insns[keys_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()
1531 for (uint32_t targ = 0; targ < switch_count; targ++) { in CheckSwitchTargets() local
1532 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in CheckSwitchTargets()
1533 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()
1541 << "[" << targ << "]"; in CheckSwitchTargets()
3547 int offset_to_targets, targ; in CodeFlowVerifyInstruction() local
3559 for (targ = 0; targ < switch_count; targ++) { in CodeFlowVerifyInstruction()
3564 offset = switch_insns[offset_to_targets + targ * 2] | in CodeFlowVerifyInstruction()
[all …]
/art/test/046-reflect/src/
DMain.java371 Target targ; in run() local
377 targ = cons.newInstance(args); in run()
378 targ.myMethod(17); in run()