aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/block/ConditionalBlock.java
blob: 2f1621ef2fe73c7206ee23831257df5a20c5b1ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.checkerframework.dataflow.cfg.block;

import org.checkerframework.dataflow.analysis.Store;
import org.checkerframework.dataflow.cfg.node.Node;

/**
 * Represents a conditional basic block that contains exactly one boolean
 * {@link Node}.
 *
 * @author Stefan Heule
 *
 */
public interface ConditionalBlock extends Block {

    /**
     * @return the entry block of the then branch
     */
    Block getThenSuccessor();

    /**
     * @return the entry block of the else branch
     */
    Block getElseSuccessor();

    /**
     * @return the flow rule for information flowing from
     * this block to its then successor
     */
    Store.FlowRule getThenFlowRule();

    /**
     * @return the flow rule for information flowing from
     * this block to its else successor
     */
    Store.FlowRule getElseFlowRule();

    /**
     * Set the flow rule for information flowing from this block to
     * its then successor.
     */
    void setThenFlowRule(Store.FlowRule rule);

    /**
     * Set the flow rule for information flowing from this block to
     * its else successor.
     */
    void setElseFlowRule(Store.FlowRule rule);
}