-
Notifications
You must be signed in to change notification settings - Fork 15
/
VendorScripts_RivieraPro.tcl
284 lines (246 loc) · 8.8 KB
/
VendorScripts_RivieraPro.tcl
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
# File Name: VendorScripts_RivieraPro.tcl
# Purpose: Scripts for running simulations
# Revision: OSVVM MODELS STANDARD VERSION
#
# Maintainer: Jim Lewis email: jim@synthworks.com
# Contributor(s):
# Jim Lewis email: jim@synthworks.com
#
# Description
# Tcl procedures with the intent of making running
# compiling and simulations tool independent
#
# Developed by:
# SynthWorks Design Inc.
# VHDL Training Classes
# OSVVM Methodology and Model Library
# 11898 SW 128th Ave. Tigard, Or 97223
# http://www.SynthWorks.com
#
# Revision History:
# Date Version Description
# 7/2024 2024.07 Added DoWaves capability
# 5/2024 2024.05 Added CloseAllFiles to vendor_end_previous_simulation. Added ToolVersion variable
# 5/2022 2022.05 Coverage report name based on TestCaseName rather than LibraryUnit
# Updated variable naming
# 2/2022 2022.02 Added Coverage Collection
# 12/2021 2021.12 Updated to use relative paths.
# 3/2021 2021.03 In Simulate, added optional scripts to run as part of simulate
# 2/2021 2021.02 Refactored variable settings to here from ToolConfiguration.tcl
# 7/2020 2020.07 Refactored tool execution for simpler vendor customization
# 1/2020 2020.01 Updated Licenses to Apache
# 2/2019 Beta Project descriptors in .pro which execute
# as TCL scripts in conjunction with the library
# procedures
# 11/2018 Alpha Project descriptors in .files and .dirs files
#
#
# This file is part of OSVVM.
#
# Copyright (c) 2018 - 2024 by SynthWorks Design Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# -------------------------------------------------
# Tool Settings
#
variable ToolType "simulator"
variable ToolVendor "Aldec"
variable ToolName "RivieraPRO"
variable simulator $ToolName ; # Variable simulator is deprecated. Use ToolName instead
# Could differentiate between RivieraPRO and VSimSA
variable ToolVersion [asimVersion]
variable ToolNameVersion ${ToolName}-${ToolVersion}
# puts $ToolNameVersion
if {[expr [string compare $ToolVersion "2021.04"] >= 0]} {
SetVHDLVersion 2019
}
if {[batch_mode]} {
variable NoGui "true"
} else {
variable NoGui "false"
}
# -------------------------------------------------
# StartTranscript / StopTranscxript
#
proc vendor_StartTranscript {FileName} {
transcript file ""
echo transcript file $FileName
transcript file $FileName
}
proc vendor_StopTranscript {FileName} {
transcript file -close $FileName
}
# -------------------------------------------------
# IsVendorCommand
#
proc IsVendorCommand {LineOfText} {
return [regexp {^alib |^amap |^acom |^alog |^asim |^vlib |^vmap |^vcom |^vlog |^vsim |^run |^acdb } $LineOfText]
}
# -------------------------------------------------
# SetCoverageAnalyzeOptions
# SetCoverageCoverageOptions
#
proc vendor_SetCoverageAnalyzeDefaults {} {
variable CoverageAnalyzeOptions
# set CoverageAnalyzeOptions "-coverage sbmec"
set CoverageAnalyzeOptions "-coverage sbm"
}
proc vendor_SetCoverageSimulateDefaults {} {
variable CoverageSimulateOptions
# set CoverageSimulateOptions "-acdb -acdb_cov sbmec -cc_all"
# set CoverageSimulateOptions "-acdb -acdb_cov sbm -cc_all"
set CoverageSimulateOptions "-acdb_cov sbm -cc_all"
}
# -------------------------------------------------
# Library
#
proc vendor_vlib {PathAndLib} {
after 1000
puts "vlib ${PathAndLib}"
vlib ${PathAndLib}
}
proc vendor_library {LibraryName PathToLib} {
set PathAndLib ${PathToLib}/${LibraryName}
if {![file exists ${PathAndLib}]} {
if {[catch {vendor_vlib $PathAndLib} LibraryErrMsg]} {
# if fails first try, wait and try again
after 10000
vendor_vlib $PathAndLib
}
} else {
vendor_LinkLibrary $LibraryName ${PathToLib}
}
}
proc vendor_LinkLibrary {LibraryName PathToLib} {
set PathAndLib ${PathToLib}/${LibraryName}
# Policy: If library is already in library list, then skip this for Riviera
if {[IsLibraryInList $LibraryName] < 0} {
if {[file exists ${PathAndLib}]} {
set ResolvedLib ${PathAndLib}
} else {
set ResolvedLib ${PathToLib}
}
puts "vmap $LibraryName ${ResolvedLib}"
vmap $LibraryName ${ResolvedLib}
}
}
proc vendor_UnlinkLibrary {LibraryName PathToLib} {
vmap -del -re ${LibraryName}
}
# -------------------------------------------------
# analyze
#
proc vendor_analyze_vhdl {LibraryName FileName args} {
variable VhdlVersion
set EffectiveCoverageAnalyzeEnable [expr $::osvvm::CoverageEnable && $::osvvm::CoverageAnalyzeEnable]
set EffectiveCoverageSimulateEnable [expr $::osvvm::CoverageEnable && $::osvvm::CoverageSimulateEnable]
if {$::osvvm::NoGui || !($::osvvm::Debug) || $EffectiveCoverageAnalyzeEnable || $EffectiveCoverageSimulateEnable} {
set DebugOptions ""
} else {
set DebugOptions "-dbg"
}
set AnalyzeOptions [concat -${VhdlVersion} {*}${DebugOptions} -relax -work ${LibraryName} {*}${args} ${FileName}]
puts "vcom $AnalyzeOptions"
vcom {*}$AnalyzeOptions
}
proc vendor_analyze_verilog {LibraryName FileName args} {
set AnalyzeOptions [concat [CreateVerilogLibraryParams "-l "] -work ${LibraryName} {*}${args} ${FileName}]
puts "vlog $AnalyzeOptions"
vlog {*}$AnalyzeOptions
}
# -------------------------------------------------
# End Previous Simulation
#
proc vendor_end_previous_simulation {} {
quit -sim
framework.documents.closeall -vhdl
::osvvm::CloseAllFiles
}
# -------------------------------------------------
# Simulate
#
proc vendor_simulate {LibraryName LibraryUnit args} {
variable SimulateTimeUnits
variable TestSuiteName
variable TestCaseFileName
variable SimulateOptions
variable WaveFiles
global aldec ; # required for matlab cosim
if {($::osvvm::Debug)} {
set DebugOptions "+access +r"
} else {
set DebugOptions ""
}
# puts "vendor_simulate LibraryName: $LibraryName LibraryUnit: $LibraryUnit args: $args"
set SimulateOptions [concat $DebugOptions -interceptcoutput -t $SimulateTimeUnits -lib ${LibraryName} ${LibraryUnit} ${::osvvm::SecondSimulationTopLevel} {*}${args} {*}${::osvvm::GenericOptions}]
puts "vsim ${SimulateOptions}"
vsim {*}${SimulateOptions}
SimulateRunScripts ${LibraryUnit}
if {$::osvvm::LogSignals} {
log -rec [env]/*
}
if {$WaveFiles ne ""} {
foreach wave $WaveFiles {
do $wave
}
}
set WaveFiles ""
run -all
# Save Coverage Information
if {$::osvvm::CoverageEnable && $::osvvm::CoverageSimulateEnable} {
acdb save -o ${::osvvm::CoverageDirectory}/${TestSuiteName}/${TestCaseFileName}.acdb -testname ${TestCaseFileName}
}
}
# -------------------------------------------------
proc vendor_DoWaves {args} {
variable WaveFiles
if {$args ne ""} {
foreach wave {*}$args {
lappend WaveFiles $wave
}
}
return ""
}
# -------------------------------------------------
proc vendor_generic {Name Value} {
return "-g${Name}=${Value}"
}
# -------------------------------------------------
# Merge Coverage
#
proc vendor_MergeCodeCoverage {TestSuiteName CoverageDirectory BuildName} {
set CoverageFileBaseName [file join ${CoverageDirectory} ${BuildName} ${TestSuiteName}]
set CovFiles [glob -nocomplain ${CoverageDirectory}/${TestSuiteName}/*.acdb]
if {$CovFiles ne ""} {
acdb merge -o ${CoverageFileBaseName}.acdb -i {*}[join $CovFiles " -i "]
}
}
proc vendor_ReportCodeCoverage {TestSuiteName CodeCoverageDirectory} {
set CodeCovResultsDir ${CodeCoverageDirectory}/${TestSuiteName}_code_cov
if {[file exists ${CodeCovResultsDir}.html]} {
file delete -force -- ${CodeCovResultsDir}.html
}
if {[file exists ${CodeCovResultsDir}_files]} {
file delete -force -- ${CodeCovResultsDir}_files
}
acdb report -html -i ${CodeCoverageDirectory}/${TestSuiteName}.acdb -o ${CodeCovResultsDir}.html
}
proc vendor_GetCoverageFileName {TestName} {
set CoverageFileName ${TestName}_code_cov.html
return $CoverageFileName
}
# proc vendor_OpenBuildHtml {BuildHtmlFile BuildName} {
# catch {framework.window.close -window $BuildName} Msg
# system.open "$BuildHtmlFile" -title $BuildName
# }