Skip to content

Commit 73bb17c

Browse files
committed
Make RecoveredOnBailout distinguishable.
CSS property for moveable appearing last in style.css implies that recovered-on-bailout annotation was not displayed. Having an instruction flagged as recovered-on-bailout being more important than being moveable, moving the style definition later in the file make it take precedence. Text decoration is also added to make it clear that while the instruction remains in the SSA graph, it is effectively unused during the execution. This is denoted by using a wavy line-through.
1 parent 83829c4 commit 73bb17c

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

src/style.css

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
--ig-block-header-color: #0c0c0d;
2525
--ig-loop-header-color: #1fa411;
2626
--ig-movable-color: #1048af;
27-
--ig-rob-color: #444;
27+
--ig-rob-color: red;
2828
--ig-in-worklist-color: red;
2929

3030
--ig-block-selected: #ffc863;
@@ -427,10 +427,6 @@ a.ig-link-normal {
427427
padding-left: 4px;
428428
}
429429

430-
.ig-ins-att-RecoveredOnBailout {
431-
color: var(--ig-rob-color);
432-
}
433-
434430
.ig-ins-att-Movable {
435431
color: var(--ig-movable-color);
436432
}
@@ -439,6 +435,12 @@ a.ig-link-normal {
439435
text-decoration: underline;
440436
}
441437

438+
.ig-ins-att-RecoveredOnBailout {
439+
color: var(--ig-rob-color);
440+
text-decoration-style: wavy;
441+
text-decoration-line: line-through;
442+
}
443+
442444
.ig-ins-att-InWorklist {
443445
color: var(--ig-in-worklist-color);
444446
}

0 commit comments

Comments
 (0)