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.cc1021 const s4 targ = (s4) pDecInsn->VRegA(); in dumpInstruction() local
1023 insnIdx + targ, in dumpInstruction()
1024 (targ < 0) ? '-' : '+', in dumpInstruction()
1025 (targ < 0) ? -targ : targ); in dumpInstruction()
1032 const s4 targ = (s4) pDecInsn->VRegB(); in dumpInstruction() local
1034 insnIdx + targ, in dumpInstruction()
1035 (targ < 0) ? '-' : '+', in dumpInstruction()
1036 (targ < 0) ? -targ : targ); in dumpInstruction()
1069 const s4 targ = (s4) pDecInsn->VRegC(); in dumpInstruction() local
1072 insnIdx + targ, in dumpInstruction()
[all …]
/art/dexlayout/
Ddexlayout.cc877 const int32_t targ = (int32_t) dec_insn->VRegA(); in DumpInstruction() local
879 insn_idx + targ, in DumpInstruction()
880 (targ < 0) ? '-' : '+', in DumpInstruction()
881 (targ < 0) ? -targ : targ); in DumpInstruction()
888 const int32_t targ = (int32_t) dec_insn->VRegB(); in DumpInstruction() local
890 insn_idx + targ, in DumpInstruction()
891 (targ < 0) ? '-' : '+', in DumpInstruction()
892 (targ < 0) ? -targ : targ); in DumpInstruction()
925 const int32_t targ = (int32_t) dec_insn->VRegC(); in DumpInstruction() local
928 insn_idx + targ, in DumpInstruction()
[all …]
/art/runtime/verifier/
Dmethod_verifier.cc1558 for (uint32_t targ = 1; targ < switch_count; targ++) { in CheckSwitchTargets() local
1560 static_cast<int32_t>(switch_insns[keys_offset + targ * 2]) | in CheckSwitchTargets()
1561 static_cast<int32_t>(switch_insns[keys_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()
1572 for (uint32_t targ = 0; targ < switch_count; targ++) { in CheckSwitchTargets() local
1573 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in CheckSwitchTargets()
1574 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()
1582 << "[" << targ << "]"; in CheckSwitchTargets()
3556 int offset_to_targets, targ; in CodeFlowVerifyInstruction() local
3568 for (targ = 0; targ < switch_count; targ++) { in CodeFlowVerifyInstruction()
3573 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()