Searched defs:targets (Results 1 - 4 of 4) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/
H A DMSwitchInsn.java23 * A subclass of the MInsnWithData, that also has multiple jump targets.
29 public List<MInsn> targets = new LinkedList<MInsn>(); field in class:MSwitchInsn
43 for (MInsn target : targets) {
44 newInsn.targets.add(target);
/art/runtime/interpreter/
H A Dinterpreter_common.h305 const int32_t* targets = reinterpret_cast<const int32_t*>(&switch_data[4]); local
306 DCHECK(IsAligned<4>(targets));
309 return targets[index];
/art/compiler/dex/quick/
H A Dcodegen_util.cc535 * the auto pc-advance. For other targets the reference point
952 * int targets[size] branch targets, relative to switch opcode
959 const int32_t* targets = &keys[entries]; local
963 LOG(INFO) << " Key[" << keys[i] << "] -> 0x" << std::hex << targets[i]; local
973 * int targets[size] branch targets, relative to switch opcode
978 const int32_t* targets = reinterpret_cast<const int32_t*>(&table[4]); local
985 << targets[i]; local
/art/runtime/
H A Ddex_instruction.h48 const int32_t targets[]; variable

Completed in 138 milliseconds