HomeSort by relevance Sort by last modified time
    Searched defs:branchOffset (Results 1 - 9 of 9) sorted by null

  /external/proguard/src/proguard/classfile/instruction/
BranchInstruction.java 35 public int branchOffset;
44 public BranchInstruction(byte opcode, int branchOffset)
47 this.branchOffset = branchOffset;
59 this.branchOffset = branchInstruction.branchOffset;
117 branchOffset = readSignedValue(code, offset, branchOffsetSize());
128 writeSignedValue(code, offset, branchOffset, branchOffsetSize());
146 return "["+offset+"] "+toString()+" (target="+(offset+branchOffset)+")";
154 return getName()+" "+(branchOffset >= 0 ? "+" : "")+branchOffset
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
GotoGotoReplacer.java 84 int branchOffset = branchInstruction.branchOffset;
85 int targetOffset = offset + branchOffset;
87 if (branchOffset != branchInstruction.length(offset) &&
97 int targetBranchOffset = ((BranchInstruction)targetInstruction).branchOffset;
101 (branchOffset + targetBranchOffset));
GotoCommonCodeReplacer.java 106 int branchOffset = branchInstruction.branchOffset;
107 int targetOffset = offset + branchOffset;
135 int newBranchOffset = branchOffset - commonCount;
  /external/webkit/JavaScriptCore/bytecode/
JumpTable.h 41 int32_t branchOffset;
60 return loc->second.branchOffset;
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java 735 int subroutineStart = offset + branchInstruction.branchOffset;
788 int branchOffset = branchTargets.instructionOffset(0) - offset;
789 if (branchOffset == instruction.length(offset))
798 branchOffset).shrink();
    [all...]
EvaluationShrinker.java 201 ((BranchInstruction)instruction).branchOffset == 0)
    [all...]
  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 308 int branchOffset = branchInstruction.branchOffset;
309 int branchTarget = offset + branchOffset;
334 branchOffset).shrink();
366 if (!exceptionInfo.isApplicable(offset + ((BranchInstruction)instruction).branchOffset))
  /dalvik/vm/compiler/codegen/arm/
Assemble.c     [all...]
  /external/proguard/lib/
proguard.jar 

Completed in 112 milliseconds