HomeSort by relevance Sort by last modified time
    Searched full:branchoffset (Results 1 - 25 of 35) sorted by null

1 2

  /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 != 0 &&
88 branchOffset != branchInstruction.length(offset) &&
98 int targetBranchOffset = ((BranchInstruction)targetInstruction).branchOffset;
102 (branchOffset + targetBranchOffset));
GotoCommonCodeReplacer.java 106 int branchOffset = branchInstruction.branchOffset;
107 int targetOffset = offset + branchOffset;
132 int newBranchOffset = branchOffset - commonCount;
GotoReturnReplacer.java 83 int targetOffset = offset + branchInstruction.branchOffset;
BranchTargetFinder.java 554 int branchOffset = branchInstruction.branchOffset;
555 int targetOffset = offset + branchOffset;
564 markBranchTarget(offset, branchOffset);
577 markBranchSubroutineStart(offset, branchOffset, targetOffset);
582 markBranchSubroutineStart(offset, branchOffset, currentSubroutineStart);
ReachableCodeMarker.java 151 offset + branchInstruction.branchOffset);
InstructionSequenceReplacer.java 295 branchInstruction.branchOffset));
  /external/proguard/src/proguard/optimize/info/
BackwardBranchMarker.java 46 markBackwardBranch(method, branchInstruction.branchOffset);
66 private void markBackwardBranch(Method method, int branchOffset)
68 if (branchOffset < 0)
  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 305 int branchOffset = branchInstruction.branchOffset;
306 int branchTarget = offset + branchOffset;
331 branchOffset);
363 if (!exceptionInfo.isApplicable(offset + ((BranchInstruction)instruction).branchOffset))
  /external/proguard/src/proguard/classfile/editor/
InstructionWriter.java 167 branchInstruction.branchOffset);
177 branchInstruction.branchOffset);
232 branchInstruction.branchOffset = 0;
CodeAttributeComposer.java 544 branchInstruction.branchOffset =
545 newBranchOffset(offset, branchInstruction.branchOffset);
    [all...]
CodeAttributeEditor.java 855 branchInstruction.branchOffset =
856 newBranchOffset(offset, branchInstruction.branchOffset, newOffset);
    [all...]
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 195 public int matchedBranchOffset(int offset, int branchOffset)
197 int argumentIndex = branchOffset - X;
199 branchOffset :
298 branchInstruction.branchOffset,
299 ((BranchInstruction)patternInstruction).branchOffset);
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp     [all...]
  /external/proguard/src/proguard/optimize/evaluation/
SimpleEnumUseSimplifier.java 361 branchInstruction.branchOffset));
374 branchInstruction.branchOffset));
388 branchInstruction.branchOffset));
401 branchInstruction.branchOffset));
EvaluationSimplifier.java 789 int subroutineStart = offset + branchInstruction.branchOffset;
    [all...]
EvaluationShrinker.java 236 ((BranchInstruction)instruction).branchOffset == 0)
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 201 branchInstruction.branchOffset);
  /art/tools/dexfuzz/src/dexfuzz/program/
CodeTranslator.java 183 int branchOffset = target.location - mInsn.location;
185 containsTarget.setTarget(mInsn.insn, branchOffset);
  /external/proguard/src/proguard/evaluation/
Processor.java 765 int branchTarget = offset + branchInstruction.branchOffset;
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.1/
proguard-base-5.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.1/
proguard-base-5.3.1.jar 
  /external/v8/src/mips/
assembler-mips.cc 933 int branch_offset = BranchOffset(instr);
994 int Assembler::BranchOffset(Instr instr) {
    [all...]
  /external/v8/src/mips64/
assembler-mips64.cc 898 int branch_offset = BranchOffset(instr);
962 int Assembler::BranchOffset(Instr instr) {
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 

Completed in 562 milliseconds

1 2