summaryrefslogtreecommitdiffstats
path: root/tests/new/FactorialCflow.java
blob: 63c2723f39edbb2a46aeaa586452d1cad6845b5f (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
public class FactorialCflow {
    static int fact(int i) {
        return (i == 0 ? 1 : i * fact(i-1));
    }
    public static void main(String args[]) {
        System.err.println(expect);
        System.err.println("---------- actual ");
        System.err.println(720 == fact(6) ? "pass" : "fail");
    }

    static final String expect = "---------- expect "
        // most-recent
        + "\n5-6"
        + "\n4-5"
        + "\n3-4"
        + "\n2-3"
        + "\n1-2"
        + "\n0-1"
        // top
        + "\n5@6"
        + "\n4@6"
        + "\n3@6"
        + "\n2@6"
        + "\n1@6"
        + "\n0@6"
            ;
}

aspect A {
    pointcut f(int i) : call(int fact(int)) && args(i);

    // most-recent
    int around(int i, final int j) : f(i) && cflowbelow(f(j)) { 
        System.err.println(i + "-" + j);
        int r = proceed(i, j);
        return r;
    }

    // top
    int around(int i, final int j) : f(i) 
        && cflowbelow(cflow(f(j)) && !cflowbelow(f(int))) { 
        System.err.println(i + "@" + j);
        int r = proceed(i, j);
        return r;
    }
}