Skip to content
Snippets Groups Projects
Commit 3062d853 authored by Valentin Perrelle's avatar Valentin Perrelle
Browse files

[ivette] display three dots when all (backward) dependencies are not computed

parent a570e0e7
No related branches found
No related tags found
No related merge requests found
...@@ -243,11 +243,11 @@ class Dive { ...@@ -243,11 +243,11 @@ class Dive {
if (typeof node.range === 'number') if (typeof node.range === 'number')
node.stops = `0% ${node.range}% ${node.range}% 100%`; node.stops = `0% ${node.range}% ${node.range}% 100%`;
const previous = this.cy.$id(node.id); let ele = this.cy.$id(node.id);
if (previous.nonempty()) { if (ele.nonempty()) {
previous.removeData(); ele.removeData();
previous.data(node); ele.data(node);
previous.neighborhood('edge').remove(); ele.neighborhood('edge').remove();
} }
else { else {
let parent = null; let parent = null;
...@@ -256,9 +256,25 @@ class Dive { ...@@ -256,9 +256,25 @@ class Dive {
else else
parent = this.referenceFile(node.locality.file).id(); parent = this.referenceFile(node.locality.file).id();
const ele = this.cy.add({ data: { ...node, parent } }); ele = this.cy.add({ group: 'nodes', data: { ...node, parent } });
this.addTips(ele); this.addTips(ele);
newEles = this.cy.add(ele).union(newEles); newEles = ele.union(newEles);
}
// Add a node for the user to ask for more dependencies
const idmore = `${node.id}-more`;
this.cy.remove(`#${idmore}`);
if (node.backward_explored === 'partial') {
let elemore = this.cy.add({
group: 'nodes',
data: { id: idmore, parent: ele.data('parent') },
classes: ['more'] });
newEles = elemore.union(newEles);
let depmore = this.cy.add({
group: 'edges',
data: { source: idmore, target: node.id }
});
newEles = this.cy.add(depmore).union(newEles);
} }
} }
...@@ -400,7 +416,7 @@ class Dive { ...@@ -400,7 +416,7 @@ class Dive {
this.currentSelection = writes[index + 1 in writes ? index + 1 : 0]; this.currentSelection = writes[index + 1 in writes ? index + 1 : 0];
const hasOrigin = (ele: Cytoscape.NodeSingular) => ( const hasOrigin = (ele: Cytoscape.NodeSingular) => (
ele.data().origins.includes(this.currentSelection) ele.data().origins?.includes(this.currentSelection)
); );
node.select(); node.select();
......
...@@ -36,6 +36,16 @@ ...@@ -36,6 +36,16 @@
"selector": "node[label]", "selector": "node[label]",
"style": { "style": {
"label": "data(label)" "label": "data(label)"
}
},
{
"selector": "node.more",
"style": {
"background-opacity": 0,
"label": "...",
"padding" : "0",
"border-width": 0
} }
}, },
{ {
...@@ -122,7 +132,7 @@ ...@@ -122,7 +132,7 @@
} }
}, },
{ {
"selector": "node[kind][!explored]", "selector": "node[kind][backward_explored='no']",
"style": { "style": {
"opacity" : "0.3" "opacity" : "0.3"
} }
......
...@@ -467,7 +467,7 @@ let build_node_writes context node = ...@@ -467,7 +467,7 @@ let build_node_writes context node =
Graph.create_dependency context.graph kinstr dst kind node Graph.create_dependency context.graph kinstr dst kind node
in in
List.iter add_dep nodes; List.iter add_dep nodes;
if complete then Done else NotDone if complete then Done else Partial []
in in
let callstack = node.node_locality.loc_callstack in let callstack = node.node_locality.loc_callstack in
......
...@@ -306,6 +306,11 @@ struct ...@@ -306,6 +306,11 @@ struct
| Some cvalue when Cvalue.V.is_bottom cvalue -> `Null | Some cvalue when Cvalue.V.is_bottom cvalue -> `Null
| Some cvalue -> `String (Pretty_utils.to_string Cvalue.V.pretty cvalue) | Some cvalue -> `String (Pretty_utils.to_string Cvalue.V.pretty cvalue)
let output_computation = function
| Done -> `String "yes"
| Partial _ -> `String "partial"
| NotDone -> `String "no"
let output_node node = let output_node node =
let label = Pretty_utils.to_string Node_kind.pretty node.node_kind in let label = Pretty_utils.to_string Node_kind.pretty node.node_kind in
`Assoc ([ `Assoc ([
...@@ -313,7 +318,8 @@ struct ...@@ -313,7 +318,8 @@ struct
("label", `String label) ; ("label", `String label) ;
("kind", output_node_kind node.node_kind) ; ("kind", output_node_kind node.node_kind) ;
("locality", output_node_locality node.node_locality) ; ("locality", output_node_locality node.node_locality) ;
("explored", `Bool (node.node_writes_computation = Done)) ; ("backward_explored", output_computation node.node_writes_computation) ;
("forward_explored", output_computation node.node_reads_computation) ;
("writes", `List (List.map output_stmt node.node_writes_stmts)) ; ("writes", `List (List.map output_stmt node.node_writes_stmts)) ;
("values", output_node_values node.node_values) ; ("values", output_node_values node.node_values) ;
("range", output_range node.node_range) ; ("range", output_range node.node_range) ;
......
...@@ -199,7 +199,8 @@ struct ...@@ -199,7 +199,8 @@ struct
"label", Syntax.string; "label", Syntax.string;
"kind", Syntax.string; "kind", Syntax.string;
"locality", NodeLocality.syntax; "locality", NodeLocality.syntax;
"explored", Syntax.boolean; "backward_explored", Syntax.string;
"forward_explored", Syntax.string;
"writes", Syntax.array Kernel_ast.Marker.syntax; "writes", Syntax.array Kernel_ast.Marker.syntax;
"values", Syntax.option Syntax.string; "values", Syntax.option Syntax.string;
"range", Syntax.union [ Syntax.string ; Syntax.int ]; "range", Syntax.union [ Syntax.string ; Syntax.int ];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment