HomeSort by relevance Sort by last modified time
    Searched refs:startInsn (Results 1 - 4 of 4) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/program/
MTryBlock.java 25 public MInsn startInsn;
CodeTranslator.java 261 mTryBlock.startInsn = insnLocationMap.get(startLocation);
273 if (mTryBlock.startInsn == null) {
325 if (mTryBlock.startInsn.location > mTryBlock.endInsn.location) {
327 MInsn tempInsn = mTryBlock.startInsn;
328 mTryBlock.startInsn = mTryBlock.endInsn;
339 if (first.endInsn.location > second.startInsn.location) {
342 Log.debug("1st TryBlock goes from " + first.startInsn + " to " + first.endInsn);
343 Log.debug("2nd TryBlock goes from " + second.startInsn + " to " + second.endInsn);
347 MInsn newInsn = second.startInsn;
353 second.startInsn = newInsn
    [all...]
MutatableCode.java 178 if (mTryBlock.startInsn == before) {
180 mTryBlock.startInsn = after;
181 } else if (twoWay && mTryBlock.startInsn == after) {
183 mTryBlock.startInsn = before;
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
TryBlockShifter.java 128 oldInsn = tryBlock.startInsn;
189 tryBlock.startInsn = newInsn;

Completed in 211 milliseconds