Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jadx
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
jadx
Commits
f02a33ac
Commit
f02a33ac
authored
Jun 19, 2019
by
Skylot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: ignore NOPs in try-catch (#668)
parent
9c34a315
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
79 additions
and
4 deletions
+79
-4
MethodNode.java
jadx-core/src/main/java/jadx/core/dex/nodes/MethodNode.java
+3
-4
SmaliTest.java
jadx-core/src/test/java/jadx/tests/api/SmaliTest.java
+7
-0
TestTryCatchLastInsn.java
...jadx/tests/integration/trycatch/TestTryCatchLastInsn.java
+35
-0
TestTryCatchLastInsn.smali
jadx-core/src/test/smali/trycatch/TestTryCatchLastInsn.smali
+34
-0
No files found.
jadx-core/src/main/java/jadx/core/dex/nodes/MethodNode.java
View file @
f02a33ac
...
...
@@ -29,6 +29,7 @@ import jadx.core.dex.info.MethodInfo;
import
jadx.core.dex.instructions.GotoNode
;
import
jadx.core.dex.instructions.IfNode
;
import
jadx.core.dex.instructions.InsnDecoder
;
import
jadx.core.dex.instructions.InsnType
;
import
jadx.core.dex.instructions.SwitchNode
;
import
jadx.core.dex.instructions.args.ArgType
;
import
jadx.core.dex.instructions.args.InsnArg
;
...
...
@@ -332,7 +333,7 @@ public class MethodNode extends LineAttrNode implements ILoadable, ICodeNode {
InsnNode
insn
=
null
;
while
(
offset
<=
end
&&
offset
>=
0
)
{
insn
=
insnByOffset
[
offset
];
if
(
insn
!=
null
)
{
if
(
insn
!=
null
&&
insn
.
getType
()
!=
InsnType
.
NOP
)
{
if
(
tryBlockStarted
)
{
catchBlock
.
addInsn
(
insn
);
}
else
if
(
insn
.
canThrowException
())
{
...
...
@@ -343,9 +344,7 @@ public class MethodNode extends LineAttrNode implements ILoadable, ICodeNode {
}
offset
=
InsnDecoder
.
getNextInsnOffset
(
insnByOffset
,
offset
);
}
if
(
insnByOffset
[
end
]
!=
null
)
{
insnByOffset
[
end
].
add
(
AFlag
.
TRY_LEAVE
);
}
else
if
(
insn
!=
null
)
{
if
(
tryBlockStarted
&&
insn
!=
null
)
{
insn
.
add
(
AFlag
.
TRY_LEAVE
);
}
}
...
...
jadx-core/src/test/java/jadx/tests/api/SmaliTest.java
View file @
f02a33ac
...
...
@@ -31,6 +31,13 @@ public abstract class SmaliTest extends IntegrationTest {
return
getClassNodeFromFile
(
outDex
,
clsName
);
}
/**
* Preferred method for one file smali test
*/
protected
ClassNode
getClassNodeFromSmali
()
{
return
getClassNodeFromSmaliWithPkg
(
getTestPkg
(),
getTestName
());
}
protected
ClassNode
getClassNodeFromSmali
(
String
clsName
)
{
return
getClassNodeFromSmali
(
clsName
,
clsName
);
}
...
...
jadx-core/src/test/java/jadx/tests/integration/trycatch/TestTryCatchLastInsn.java
0 → 100644
View file @
f02a33ac
package
jadx
.
tests
.
integration
.
trycatch
;
import
org.junit.jupiter.api.Test
;
import
jadx.core.dex.nodes.ClassNode
;
import
jadx.tests.api.SmaliTest
;
import
static
jadx
.
tests
.
api
.
utils
.
JadxMatchers
.
containsOne
;
import
static
org
.
hamcrest
.
MatcherAssert
.
assertThat
;
public
class
TestTryCatchLastInsn
extends
SmaliTest
{
// @formatter:off
/*
public Exception test() {
? r1 = "result"; // String
try {
r1 = call(); // Exception
} catch(Exception e) {
System.out.println(r1); // String
r1 = e;
}
return r1;
}
*/
// @formatter:on
@Test
public
void
test
()
{
ClassNode
cls
=
getClassNodeFromSmali
();
String
code
=
cls
.
getCode
().
toString
();
assertThat
(
code
,
containsOne
(
"return call();"
));
}
}
jadx-core/src/test/smali/trycatch/TestTryCatchLastInsn.smali
0 → 100644
View file @
f02a33ac
.class public Ltrycatch/TestTryCatchLastInsn;
.super Ljava/lang/Object;
.source "TestTryCatchLastInsn.java"
.method public test()Ljava/lang/Exception;
.registers 6
.prologue
const-string v1, "result"
:try_start
invoke-direct {p0}, Ltrycatch/TestTryCatchLastInsn;->call()Ljava/lang/Exception;
move-result-object v1
:try_end
.catch Ljava/lang/Exception; {:try_start .. :try_end} :catch
:goto_return
return-object v1
:catch
move-exception v4
sget-object v3, Ljava/lang/System;->out:Ljava/io/PrintStream;
invoke-virtual {v3, v1}, Ljava/io/PrintStream;->println(Ljava/lang/String;)V
move-object v1, v4
goto :goto_return
.end method
.method private call()Ljava/lang/Exception;
.registers 2
new-instance v0, Ljava/lang/Exception;
invoke-direct {v0}, Ljava/lang/Exception;-><init>()V
return-object v0
.end method
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment