File: jitdata-interpreter.dot

package info (click to toggle)
pypy3 7.3.11%2Bdfsg-2%2Bdeb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 201,024 kB
  • sloc: python: 1,950,308; ansic: 517,580; sh: 21,417; asm: 14,419; cpp: 4,263; makefile: 4,228; objc: 761; xml: 530; exp: 499; javascript: 314; pascal: 244; lisp: 45; csh: 11; awk: 4
file content (46 lines) | stat: -rw-r--r-- 1,777 bytes parent folder | download | duplicates (9)
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
digraph jitdata {
    shape=box;

    interpreter [label = "Interpreter", shape=box]
    jitstate [label = "JITState", shape=box]
    subgraph frames {
        rank=same
        frame0 [label = "           PC\nVirtualFrame 1", shape=box]
        frame1 [label = "\nVirtualFrame 2", shape=box]
        frame0 -> frame1 [label="back"]
        frame2 [label = "\nVirtualFrame 3", shape=box]
        frame1 -> frame2 [label="back"]
        frame3 [label = "...", color=white, shape=BUH]
        frame3 -> frame2 [label="back"]
    }
    gvars [label = "list of green vars\n(GenConsts)", shape=box]
    rvars [label = "list of red vars\n(RedBox)", shape=box]
    bc [label = "bytecode", shape=box]
    interpreter -> jitstate
    jitstate -> frame0
    frame0 -> gvars
    frame0 -> rvars
    frame0 -> bc

    rvars -> ptrbox [label = "contains"]
    ptrbox [label = "PtrBox", shape=box]
    rvars -> intbox [label = "contains"]
    intbox [label = "IntBox", shape=box]
    container [label = "VirtualContainer", shape=box]
    ptrbox -> container [label = "content"]
    ptrbox -> genvarorconst0 [label= "genvar"];
    intbox -> genvarorconst1 [label= "genvar"];
    genvarorconst0 [label = "GenVarOrConst", shape=box]
    genvarorconst1 [label = "GenVarOrConst", shape=box]
    container -> ptrbox [label = "ownbox"]
    contentboxes [label = "list of content\n(boxes)", shape=box]
    container -> contentboxes [label = "contentboxes"]
    contentboxes -> box0 [label = "contains"]
    contentboxes -> box1 [label = "contains"]
    contentboxes -> box2 [label = "contains"]
    contentboxes -> box3 [label = "contains"]
    box0 [label = "RedBox", shape=box]
    box1 [label = "RedBox", shape=box]
    box2 [label = "RedBox", shape=box]
    box3 [label = "RedBox", shape=box]
}