summaryrefslogtreecommitdiff
path: root/vaporize/library/ControlFlowGraph.java
blob: 0153b3890469116587a3e3f7d3bc223ea3242e92 (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
package vaporize.library;

import cs132.vapor.ast.*;
import st.*;
import misc.*;
import java.util.*;

public class ControlFlowGraph<P, R> extends VInstr.VisitorPR<P, R, RuntimeException> {

    public R visit(P p, VMemRead r) throws RuntimeException {
        return null;
    }

    public R visit(P p, VMemWrite w) throws RuntimeException {
        return null;
    }

    public R visit(P p, VAssign a) throws RuntimeException {
        return null;
    }

    public R visit(P p, VBranch b) throws RuntimeException {
        return null;
    }

    public R visit(P p, VGoto g) throws RuntimeException {
        return null;
    }

    public R visit(P p, VCall c) throws RuntimeException {
        return null;
    }

    public R visit(P p, VBuiltIn c) throws RuntimeException {
        return null;
    }

    public R visit(P p, VReturn r) throws RuntimeException {
        return null;
    }

}