OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:analyzedInstruction
(Results
1 - 5
of
5
) sorted by null
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PostInstructionRegisterInfoMethodItem.java
32
import org.jf.dexlib2.analysis.
AnalyzedInstruction
;
42
@Nonnull private final
AnalyzedInstruction
analyzedInstruction
;
45
@Nonnull
AnalyzedInstruction
analyzedInstruction
,
49
this.
analyzedInstruction
=
analyzedInstruction
;
60
int registerCount =
analyzedInstruction
.getRegisterCount();
78
if (!
analyzedInstruction
.getPreInstructionRegisterType(registerNum).equals(
79
analyzedInstruction
.getPostInstructionRegisterType(registerNum)))
[
all
...]
PreInstructionRegisterInfoMethodItem.java
32
import org.jf.dexlib2.analysis.
AnalyzedInstruction
;
46
@Nonnull private final
AnalyzedInstruction
analyzedInstruction
;
51
@Nonnull
AnalyzedInstruction
analyzedInstruction
,
57
this.
analyzedInstruction
=
analyzedInstruction
;
67
int registerCount =
analyzedInstruction
.getRegisterCount();
81
if (
analyzedInstruction
.isBeginningInstruction()) {
87
(
analyzedInstruction
.isBeginningInstruction()))
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
MethodAnalyzer.java
83
// This contains all the
AnalyzedInstruction
instances, keyed by the code unit address of the instruction
84
@Nonnull private final SparseArray<
AnalyzedInstruction
> analyzedInstructions =
85
new SparseArray<
AnalyzedInstruction
>(0);
96
private final
AnalyzedInstruction
startOfMethod;
113
//override
AnalyzedInstruction
and provide custom implementations of some of the methods, so that we don't
115
startOfMethod = new
AnalyzedInstruction
(null, -1, methodImpl.getRegisterCount()) {
182
for (
AnalyzedInstruction
successor: startOfMethod.successors) {
197
AnalyzedInstruction
instructionToAnalyze = analyzedInstructions.valueAt(i);
225
for (
AnalyzedInstruction
successor: instructionToAnalyze.successors) {
250
AnalyzedInstruction
analyzedInstruction = analyzedInstructions.valueAt(i)
[
all
...]
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliInstruction.java
41
import org.jf.dexlib2.analysis.
AnalyzedInstruction
;
193
private
AnalyzedInstruction
analyzedInstruction
= null;
196
private
AnalyzedInstruction
getAnalyzedInstructionFromMethod() {
207
for (
AnalyzedInstruction
instruction: analyzer.getAnalyzedInstructions()) {
220
public
AnalyzedInstruction
getAnalyzedInstruction() {
221
if (
analyzedInstruction
== null) {
222
analyzedInstruction
= getAnalyzedInstructionFromMethod();
224
return
analyzedInstruction
;
229
analyzedInstruction
= null
[
all
...]
/prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar
Completed in 1436 milliseconds