1 |
16 |
HanySalah |
//
|
2 |
|
|
//----------------------------------------------------------------------
|
3 |
|
|
// Copyright 2007-2011 Mentor Graphics Corporation
|
4 |
|
|
// Copyright 2007-2011 Cadence Design Systems, Inc.
|
5 |
|
|
// Copyright 2010 Synopsys, Inc.
|
6 |
|
|
// All Rights Reserved Worldwide
|
7 |
|
|
//
|
8 |
|
|
// Licensed under the Apache License, Version 2.0 (the
|
9 |
|
|
// "License"); you may not use this file except in
|
10 |
|
|
// compliance with the License. You may obtain a copy of
|
11 |
|
|
// the License at
|
12 |
|
|
//
|
13 |
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
14 |
|
|
//
|
15 |
|
|
// Unless required by applicable law or agreed to in
|
16 |
|
|
// writing, software distributed under the License is
|
17 |
|
|
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
18 |
|
|
// CONDITIONS OF ANY KIND, either express or implied. See
|
19 |
|
|
// the License for the specific language governing
|
20 |
|
|
// permissions and limitations under the License.
|
21 |
|
|
//----------------------------------------------------------------------
|
22 |
|
|
|
23 |
|
|
|
24 |
|
|
//------------------------------------------------------------------------------
|
25 |
|
|
// Title: Analysis Ports
|
26 |
|
|
//------------------------------------------------------------------------------
|
27 |
|
|
//
|
28 |
|
|
// This section defines the port, export, and imp classes used for transaction
|
29 |
|
|
// analysis.
|
30 |
|
|
//
|
31 |
|
|
//------------------------------------------------------------------------------
|
32 |
|
|
|
33 |
|
|
|
34 |
|
|
//------------------------------------------------------------------------------
|
35 |
|
|
// Class: uvm_analysis_port
|
36 |
|
|
//
|
37 |
|
|
// Broadcasts a value to all subscribers implementing a .
|
38 |
|
|
//
|
39 |
|
|
//| class mon extends uvm_component;
|
40 |
|
|
//| uvm_analysis_port#(trans) ap;
|
41 |
|
|
//|
|
42 |
|
|
//| function new(string name = "sb", uvm_component parent = null);
|
43 |
|
|
//| super.new(name, parent);
|
44 |
|
|
//| ap = new("ap", this);
|
45 |
|
|
//| endfunction
|
46 |
|
|
//|
|
47 |
|
|
//| task run_phase(uvm_phase phase);
|
48 |
|
|
//| trans t;
|
49 |
|
|
//| ...
|
50 |
|
|
//| ap.write(t);
|
51 |
|
|
//| ...
|
52 |
|
|
//| endfunction
|
53 |
|
|
//| endclass
|
54 |
|
|
//------------------------------------------------------------------------------
|
55 |
|
|
|
56 |
|
|
class uvm_analysis_port # (type T = int)
|
57 |
|
|
extends uvm_port_base # (uvm_tlm_if_base #(T,T));
|
58 |
|
|
|
59 |
|
|
function new (string name, uvm_component parent);
|
60 |
|
|
super.new (name, parent, UVM_PORT, 0, UVM_UNBOUNDED_CONNECTIONS);
|
61 |
|
|
m_if_mask = `UVM_TLM_ANALYSIS_MASK;
|
62 |
|
|
endfunction
|
63 |
|
|
|
64 |
|
|
virtual function string get_type_name();
|
65 |
|
|
return "uvm_analysis_port";
|
66 |
|
|
endfunction
|
67 |
|
|
|
68 |
|
|
// Method: write
|
69 |
|
|
// Send specified value to all connected interface
|
70 |
|
|
function void write (input T t);
|
71 |
|
|
uvm_tlm_if_base # (T, T) tif;
|
72 |
|
|
for (int i = 0; i < this.size(); i++) begin
|
73 |
|
|
tif = this.get_if (i);
|
74 |
|
|
if ( tif == null )
|
75 |
|
|
uvm_report_fatal ("NTCONN", {"No uvm_tlm interface is connected to ", get_full_name(), " for executing write()"}, UVM_NONE);
|
76 |
|
|
tif.write (t);
|
77 |
|
|
end
|
78 |
|
|
endfunction
|
79 |
|
|
|
80 |
|
|
endclass
|
81 |
|
|
|
82 |
|
|
|
83 |
|
|
|
84 |
|
|
//------------------------------------------------------------------------------
|
85 |
|
|
// Class: uvm_analysis_imp
|
86 |
|
|
//
|
87 |
|
|
// Receives all transactions broadcasted by a . It serves as
|
88 |
|
|
// the termination point of an analysis port/export/imp connection. The component
|
89 |
|
|
// attached to the ~imp~ class--called a ~subscriber~-- implements the analysis
|
90 |
|
|
// interface.
|
91 |
|
|
//
|
92 |
|
|
// Will invoke the ~write(T)~ method in the parent component.
|
93 |
|
|
// The implementation of the ~write(T)~ method must not modify
|
94 |
|
|
// the value passed to it.
|
95 |
|
|
//
|
96 |
|
|
//| class sb extends uvm_component;
|
97 |
|
|
//| uvm_analysis_imp#(trans, sb) ap;
|
98 |
|
|
//|
|
99 |
|
|
//| function new(string name = "sb", uvm_component parent = null);
|
100 |
|
|
//| super.new(name, parent);
|
101 |
|
|
//| ap = new("ap", this);
|
102 |
|
|
//| endfunction
|
103 |
|
|
//|
|
104 |
|
|
//| function void write(trans t);
|
105 |
|
|
//| ...
|
106 |
|
|
//| endfunction
|
107 |
|
|
//| endclass
|
108 |
|
|
//------------------------------------------------------------------------------
|
109 |
|
|
|
110 |
|
|
class uvm_analysis_imp #(type T=int, type IMP=int)
|
111 |
|
|
extends uvm_port_base #(uvm_tlm_if_base #(T,T));
|
112 |
|
|
`UVM_IMP_COMMON(`UVM_TLM_ANALYSIS_MASK,"uvm_analysis_imp",IMP)
|
113 |
|
|
function void write (input T t);
|
114 |
|
|
m_imp.write (t);
|
115 |
|
|
endfunction
|
116 |
|
|
endclass
|
117 |
|
|
|
118 |
|
|
|
119 |
|
|
|
120 |
|
|
//------------------------------------------------------------------------------
|
121 |
|
|
// Class: uvm_analysis_export
|
122 |
|
|
//
|
123 |
|
|
// Exports a lower-level to its parent.
|
124 |
|
|
//------------------------------------------------------------------------------
|
125 |
|
|
|
126 |
|
|
class uvm_analysis_export #(type T=int)
|
127 |
|
|
extends uvm_port_base #(uvm_tlm_if_base #(T,T));
|
128 |
|
|
|
129 |
|
|
// Function: new
|
130 |
|
|
// Instantiate the export.
|
131 |
|
|
function new (string name, uvm_component parent = null);
|
132 |
|
|
super.new (name, parent, UVM_EXPORT, 1, UVM_UNBOUNDED_CONNECTIONS);
|
133 |
|
|
m_if_mask = `UVM_TLM_ANALYSIS_MASK;
|
134 |
|
|
endfunction
|
135 |
|
|
|
136 |
|
|
virtual function string get_type_name();
|
137 |
|
|
return "uvm_analysis_export";
|
138 |
|
|
endfunction
|
139 |
|
|
|
140 |
|
|
// analysis port differs from other ports in that it broadcasts
|
141 |
|
|
// to all connected interfaces. Ports only send to the interface
|
142 |
|
|
// at the index specified in a call to set_if (0 by default).
|
143 |
|
|
function void write (input T t);
|
144 |
|
|
uvm_tlm_if_base #(T, T) tif;
|
145 |
|
|
for (int i = 0; i < this.size(); i++) begin
|
146 |
|
|
tif = this.get_if (i);
|
147 |
|
|
if (tif == null)
|
148 |
|
|
uvm_report_fatal ("NTCONN", {"No uvm_tlm interface is connected to ", get_full_name(), " for executing write()"}, UVM_NONE);
|
149 |
|
|
tif.write (t);
|
150 |
|
|
end
|
151 |
|
|
endfunction
|
152 |
|
|
|
153 |
|
|
endclass
|
154 |
|
|
|
155 |
|
|
|