summaryrefslogtreecommitdiff
path: root/vaporize/library/CFGSimp.java
blob: 3a612bd8fcabbc15117264eff2cbfec9ad41b141 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package vaporize.library;

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

public class CFGSimp extends VInstr.VisitorPR<String, String, RuntimeException> {

    private ControlFlowGraph cfg;

    public CFGSimp(VFunction n) {
        this.cfg = new ControlFlowGraph();
        CFGNode start = new CFGNode(n.body[0]);
        this.cfg.setStart(start);

        // nodes
        for (VInstr s : n.body)
            this.cfg.addNode(new CFGNode(s));

        // edges
        for (VInstr s : n.body)
            s.accept("", this);

        System.out.println(this.cfg.getNodes().toString());
    }

    public ControlFlowGraph getCFG() {
        return this.cfg;
    }

    public String visit(String p, VMemRead n) throws RuntimeException {
        return null;
    }

    public String visit(String p, VMemWrite n) throws RuntimeException {
        return null;
    }

    public String visit(String p, VAssign n) throws RuntimeException {
        return null;
    }

    public String visit(String p, VBranch n) throws RuntimeException {
        // two edges
        return null;
    }

    public String visit(String p, VGoto n) throws RuntimeException {
        return null;
    }

    public String visit(String p, VCall n) throws RuntimeException {
        return null;
    }

    public String visit(String p, VBuiltIn n) throws RuntimeException {
        return null;
    }

    public String visit(String p, VReturn n) throws RuntimeException {
        return null;
    }

}