OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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)