Skip to content

Commit 011aeee

Browse files
committed
Added results for Ser2
1 parent f94defa commit 011aeee

File tree

4 files changed

+2119
-2
lines changed

4 files changed

+2119
-2
lines changed

callgraphs/README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ This folder contains the visualization of the call graphs computed by `Salsa`.
55

66
- Each PDF provides the call graph computed with Salsa, where we can see it is capable of adding edges to call back methods;
77
- Nodes in light green are *application nodes*, nodes in light orange are *primordial nodes*, and underlined nodes are *synthetic nodes* added by Salsa to handle the call backs during serialization/deserialization;
8-
- Each node is preceded by an `id` number to avoid labels to be duplicated (when a same method is invoked multiple times in an application).
8+
- Each node is preceded by an `id` number to avoid labels to be duplicated (when a same method is invoked multiple times in an application);
9+
- Each method is preceded by its class name only (not the class' fully qualified name);
910
- Please notice that each PDF has only a **subset** of nodes and edges from the original call graph because each call graph includes many nodes from API calls.
1011

1112
For the sake of clarity, each PDF only includes nodes and edges if they fulfill the following criteria:
@@ -29,6 +30,14 @@ This folder contains the visualization of the call graphs computed by `Salsa`.
2930
### Ser1
3031

3132
- **Expected Output**: It expects a direct call from `ser.Demo.writeObject` to
32-
`java.io.ObjectOutputStream.defaultWriteObject`.
33+
`java.io.ObjectOutputStream.defaultWriteObject` at line 15.
3334

3435
- **Actual Output**:![Ser1-JRE1.8.jar.png](https://github.com/SoftwareDesignLab/Salsa/blob/master/callgraphs/Ser1-JRE1.8.jar.png)
36+
37+
38+
### Ser2
39+
40+
- **Expected Output**: It expects a direct call from `ser.Demo.writeObject` to
41+
`java.io.ObjectOutputStream.defaultWriteObject` at line 15.
42+
43+
- **Actual Output**:![Ser1-JRE1.8.jar.png](https://github.com/SoftwareDesignLab/Salsa/blob/master/callgraphs/Ser2-JRE1.8.jar.png)

0 commit comments

Comments
 (0)