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

  /external/proguard/src/proguard/optimize/peephole/
GotoGotoReplacer.java 92 Instruction targetInstruction =
95 if (targetInstruction.opcode == InstructionConstants.OP_GOTO)
98 int targetBranchOffset = ((BranchInstruction)targetInstruction).branchOffset;
GotoReturnReplacer.java 88 Instruction targetInstruction = InstructionFactory.create(codeAttribute.code,
90 switch (targetInstruction.opcode)
100 new SimpleInstruction(targetInstruction.opcode);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 368 BuilderInstruction targetInstruction = targetLocation.instruction;
369 if (targetInstruction == null) {
374 if (targetInstruction.getOpcode() == Opcode.NOP) {
375 targetInstruction = getFirstNonNop(targetLocation.index+1);
377 if (targetInstruction == null || !(targetInstruction instanceof BuilderSwitchPayload)) {
383 targetInstruction.getOpcode() != Opcode.PACKED_SWITCH_PAYLOAD) ||
385 targetInstruction.getOpcode() != Opcode.SPARSE_SWITCH_PAYLOAD)) {
396 ((BuilderSwitchPayload)targetInstruction).referrer = location;
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java 474 AnalyzedInstruction targetInstruction = analyzedInstructions.get(instructionCodeAddress +
477 addPredecessorSuccessor(instruction, targetInstruction, exceptionHandlers,
482 AnalyzedInstruction targetInstruction = analyzedInstructions.get(instructionCodeAddress +
484 addPredecessorSuccessor(instruction, targetInstruction, exceptionHandlers, instructionsToProcess);
    [all...]

Completed in 746 milliseconds