blob: d3bf6eb45fb5bf669c8e8492d44364f02f804d25 (
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
|
digraph TypeHierarchy {
graph [rankdir=BT bgcolor="transparent"]
{ node [style=filled,shape=box]
{ node [fillcolor="#f7fbff"]
Data
Element
Bits Num
Aggregate
VecLike
"Chisel Internal"
}
{ node [fillcolor="#e5f5e0"]
Bool UInt SInt FixedPoint
Reset
AsyncReset
Record
Bundle
Vec
"Chisel Types"
}
{ node [fillcolor="#fcbba1"]
"User Types"
Ellipsis [label="..."]
}
subgraph cluster_data_hierarchy {
color=transparent
Element
Bits Num
Reset
Bool UInt SInt FixedPoint
color=transparent
Aggregate
VecLike
Record
Bundle
Vec
{Aggregate Element} -> Data
{Bits Reset} -> Element
{FixedPoint SInt UInt} -> {Bits Num}
Bool -> {UInt Reset}
Ellipsis -> Bundle -> Record -> Aggregate
Vec -> {Aggregate VecLike}
AsyncReset -> {Element Reset}
}
subgraph cluster_legend {
label=Legend
"User Types" -> "Chisel Types" -> "Chisel Internal"
}
}
}
|