-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate intraprocedural and interprocedural analysis modules and sep…
…arate interceptors into its own module
- Loading branch information
Showing
125 changed files
with
228 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<name>SootUp Intraprocedural Analysis</name> | ||
<artifactId>sootup.analysis.intraprocedural</artifactId> | ||
<packaging>jar</packaging> | ||
<parent> | ||
<groupId>org.soot-oss</groupId> | ||
<artifactId>sootup</artifactId> | ||
<version>1.3.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.soot-oss</groupId> | ||
<artifactId>sootup.core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.soot-oss</groupId> | ||
<artifactId>sootup.java.bytecode</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.soot-oss</groupId> | ||
<artifactId>sootup.java.sourcecode</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<repositories> | ||
<repository> | ||
<id>sonatype-snapshots</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
<releases> | ||
<enabled>false</enabled> | ||
</releases> | ||
</repository> | ||
</repositories> | ||
|
||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed
BIN
-343 Bytes
sootup.analysis/src/test/resources/icfg/binary/ICFGArrayListExample.class
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-331 Bytes
sootup.analysis/src/test/resources/icfg/binary/ICFGExample2.class
Binary file not shown.
Binary file removed
BIN
-445 Bytes
sootup.analysis/src/test/resources/icfg/binary/ICFGInterfaceExample.class
Binary file not shown.
Binary file removed
BIN
-239 Bytes
sootup.analysis/src/test/resources/icfg/binary/ICFGSubClass.class
Binary file not shown.
Binary file removed
BIN
-243 Bytes
sootup.analysis/src/test/resources/icfg/binary/ICFGSuperClass.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-451 Bytes
sootup.analysis/src/test/resources/taint/binary/FunctionTaint.class
Binary file not shown.
Binary file removed
BIN
-486 Bytes
sootup.analysis/src/test/resources/taint/binary/FunctionTaintPropagated.class
Binary file not shown.
Binary file removed
BIN
-497 Bytes
sootup.analysis/src/test/resources/taint/binary/FunctionTaintSanitized.class
Binary file not shown.
Binary file removed
BIN
-324 Bytes
sootup.analysis/src/test/resources/taint/binary/SimpleTaint.class
Binary file not shown.
Binary file removed
BIN
-367 Bytes
sootup.analysis/src/test/resources/taint/binary/SimpleTaintSanitized.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rceptors/Dex/AbstractNullTransformer.java → ...interceptors/AbstractNullTransformer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors.Dex; | ||
package interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
2 changes: 1 addition & 1 deletion
2
...e/interceptors/Dex/DexDefUseAnalysis.java → .../java/interceptors/DexDefUseAnalysis.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors.Dex; | ||
package interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
2 changes: 1 addition & 1 deletion
2
.../interceptors/Dex/DexNullTransformer.java → ...java/interceptors/DexNullTransformer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors.Dex; | ||
package interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
2 changes: 1 addition & 1 deletion
2
...interceptors/Dex/DexNumberTranformer.java → ...ava/interceptors/DexNumberTranformer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors.Dex; | ||
package interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
2 changes: 1 addition & 1 deletion
2
...core/interceptors/Dex/DexTransformer.java → ...ain/java/interceptors/DexTransformer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors.Dex; | ||
package interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<name>SootUp Interceptors</name> | ||
<parent> | ||
<groupId>org.soot-oss</groupId> | ||
<artifactId>sootup</artifactId> | ||
<version>1.3.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>sootup.interceptors</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<properties> | ||
<maven.compiler.source>8</maven.compiler.source> | ||
<maven.compiler.target>8</maven.compiler.target> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.soot-oss</groupId> | ||
<artifactId>sootup.java.core</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
</project> |
2 changes: 1 addition & 1 deletion
2
...up/java/core/interceptors/Aggregator.java → .../java/sootup/interceptors/Aggregator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nterceptors/BytecodeBodyInterceptors.java → ...nterceptors/BytecodeBodyInterceptors.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...re/interceptors/CastAndReturnInliner.java → ...up/interceptors/CastAndReturnInliner.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...interceptors/ConditionalBranchFolder.java → ...interceptors/ConditionalBranchFolder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...rceptors/ConstantPropagatorAndFolder.java → ...rceptors/ConstantPropagatorAndFolder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ava/core/interceptors/CopyPropagator.java → ...a/sootup/interceptors/CopyPropagator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nterceptors/DeadAssignmentEliminator.java → ...nterceptors/DeadAssignmentEliminator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...e/interceptors/EmptySwitchEliminator.java → ...p/interceptors/EmptySwitchEliminator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tup/java/core/interceptors/Evaluator.java → ...n/java/sootup/interceptors/Evaluator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors; | ||
package sootup.interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
2 changes: 1 addition & 1 deletion
2
.../interceptors/JimpleSemanticsChecker.java → .../interceptors/JimpleSemanticsChecker.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...e/interceptors/LocalLivenessAnalyser.java → ...p/interceptors/LocalLivenessAnalyser.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors; | ||
package sootup.interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...p/java/core/interceptors/LocalPacker.java → ...java/sootup/interceptors/LocalPacker.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...java/core/interceptors/LocalSplitter.java → ...va/sootup/interceptors/LocalSplitter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors; | ||
package sootup.interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
2 changes: 1 addition & 1 deletion
2
...java/core/interceptors/NopEliminator.java → ...va/sootup/interceptors/NopEliminator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors; | ||
package sootup.interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
2 changes: 1 addition & 1 deletion
2
...ceptors/StaticSingleAssignmentFormer.java → ...ceptors/StaticSingleAssignmentFormer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors; | ||
package sootup.interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
2 changes: 1 addition & 1 deletion
2
...java/core/interceptors/TrapTightener.java → ...va/sootup/interceptors/TrapTightener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package sootup.java.core.interceptors; | ||
package sootup.interceptors; | ||
|
||
/*- | ||
* #%L | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...terceptors/UnreachableCodeEliminator.java → ...terceptors/UnreachableCodeEliminator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...e/interceptors/UnusedLocalEliminator.java → ...p/interceptors/UnusedLocalEliminator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.