-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathexec-verilog.js
200 lines (164 loc) · 6.48 KB
/
exec-verilog.js
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
// exec-verilog.js
//
// - validate every IC device '*.v' by running it through its test bench '*-tb.v', and
// enforce that there is a test bench for every device
//
// - argument (optional): top level directory of the project
//
// © 2019 Tim Rudy
const fs = require('fs');
const walkSync = require('walk-sync');
const execSync = require('child_process').execSync;
const fsHelper = require('./fs-helper');
const rootDirectory = '../../';
const sourceDirectory = 'source-7400/';
const includesDirectory = 'includes/';
const osEOLStandard = '\n';
class VerilogTestBenchHelper {
execAll(fs, deviceFilePathList, includesDirectoryPath) {
const deviceReferenceRegExp = new RegExp('(.*?([0-9]+))\.v');
let cumulativeTestCount = 0;
let deviceTestCount = 0;
let subMatches, deviceTestOutput, resultMessage;
try {
deviceFilePathList.forEach((deviceFilePath) => {
// pull out the file name without extension, with and without its full path prefix
subMatches = deviceReferenceRegExp.exec(deviceFilePath);
if (!subMatches || subMatches.length < 3) {
throw 'Unexpected file: ' + deviceFilePath;
} else {
const testBenchFilePath = subMatches[1] + '-tb.v';
const deviceNumber = subMatches[2];
const vvpFileName = subMatches[2] + '-tb.vvp';
// validate there is a test bench file beside the device file (siblings)
if (!fs.existsSync(testBenchFilePath)) {
throw 'No test bench file: ' + testBenchFilePath;
}
// collect the logged output from executing command line iverilog and vvp
deviceTestOutput = this.execDeviceTests(testBenchFilePath,
deviceFilePath,
includesDirectoryPath,
vvpFileName);
// validate the output; accumulate the tests per device, and total devices
cumulativeTestCount += this.analyzeTestsPassed(deviceTestOutput,
deviceNumber);
deviceTestCount += 1;
}
});
resultMessage = 'Passed: ' + deviceTestCount + ' devices ' +
cumulativeTestCount + ' total tests';
} catch (errorMessage) {
resultMessage = 'Failed at: ' + errorMessage;
} finally {
console.log(resultMessage);
return resultMessage;
}
}
execDeviceTests(testBenchFilePath, deviceFilePath, includesDirectoryPath, vvpFileName) {
const iverilogCommand = 'iverilog -g2012' +
' -o' + vvpFileName +
' \"' + includesDirectoryPath + 'helper.v' + '\"' +
' \"' + includesDirectoryPath + 'tbhelper.v' + '\"' +
' \"' + testBenchFilePath + '\"' +
' \"' + deviceFilePath + '\"';
const vvpCommand = 'vvp ' + vvpFileName;
return execSync(iverilogCommand + ' && ' + vvpCommand, { encoding: 'utf8' }).toString();
}
analyzeTestsPassed(results, deviceNumber) {
const resultsSplitRegExp = new RegExp('[^' + osEOLStandard + ']+', 'g');
const resultLinePassedRegExp = new RegExp('Passed: (Test.*? (([0-9]+)-)?([0-9]+))[ ]*$', 'm');
const resultLineExtraVcdReport = 'vcd opened for output';
let testLineNumber = 0;
let testLineOuterCount = 0;
let testLineInnerCount = 0;
let resultLines, subMatches;
// split into array of lines
resultLines = results.match(resultsSplitRegExp);
resultLines.forEach((resultLine, resultLineIndex) => {
if (resultLine.length && resultLine.indexOf(resultLineExtraVcdReport) === -1) {
// parse the standard output line form of 'Passed: ___',
// which ends with either one index number or two dash-separated numbers,
// where the first is the inner index and the second is the outer or main index
subMatches = resultLinePassedRegExp.exec(resultLine);
// validate that if each line consists of 'Passed: ___' then its test index numbers
// are strictly incrementing (outer, and then inner if present) - from value '1'
if (!subMatches || subMatches.length < 3) {
this.reportUnexpectedLineError(deviceNumber, resultLineIndex, resultLine);
} else {
testLineNumber++;
if (!subMatches[3]) {
testLineOuterCount++;
testLineInnerCount = 0;
if (Number(subMatches[4]) !== testLineOuterCount) {
this.reportTestNumberSequenceError(deviceNumber,
resultLineIndex,
subMatches[1]);
}
} else {
if (!testLineInnerCount || Number(subMatches[4]) === testLineOuterCount + 1) {
testLineOuterCount++;
// validate that if inner test index number is starting over, it did not end
// at only '1' for previous outer index
if (testLineInnerCount === 1) {
// report the offending previous line, not current line
subMatches = resultLinePassedRegExp.exec(resultLines[resultLineIndex - 1]);
this.reportTestGroupNumberError(deviceNumber,
resultLineIndex - 1,
subMatches[1]);
}
testLineInnerCount = 1;
} else {
testLineInnerCount++;
}
if (Number(subMatches[4]) !== testLineOuterCount ||
Number(subMatches[3]) !== testLineInnerCount) {
this.reportTestNumberSequenceError(deviceNumber,
resultLineIndex,
subMatches[1]);
}
}
}
}
});
return testLineNumber;
}
reportTestNumberSequenceError(deviceNumber, outputLineNumber, outputLine) {
this.reportError('Test number sequence incorrect: ',
deviceNumber, outputLineNumber, outputLine);
}
reportTestGroupNumberError(deviceNumber, outputLineNumber, outputLine) {
this.reportError('Group consists of only one test (or minor/major index numbers are swapped): ',
deviceNumber, outputLineNumber, outputLine);
}
reportUnexpectedLineError(deviceNumber, outputLineNumber, outputLine) {
this.reportError('', deviceNumber, outputLineNumber, outputLine);
}
reportError(qualifierPrefix, deviceNumber, outputLineNumber, outputLine) {
throw qualifierPrefix +
'Device ' + deviceNumber +
' Output Line ' + outputLineNumber +
' ' + outputLine;
}
}
const testBenchHelper = new VerilogTestBenchHelper();
// main
const baseDirectory = fsHelper.getTargetDirectoryOrDefault(
process.argv.length > 2 && process.argv[2],
rootDirectory
);
const deviceDirectoryPath = baseDirectory + sourceDirectory;
const includesDirectoryPath = baseDirectory + includesDirectory;
let deviceFilePathList, testResult;
deviceFilePathList = walkSync(fsHelper.getBasePathFromDirectoryPath(deviceDirectoryPath), {
includeBasePath: true,
globs: [
'**/*.v'
],
ignore: [
'**/*-tb.v'
]
});
testResult = testBenchHelper.execAll(fs, deviceFilePathList, includesDirectoryPath);
if (!testResult.startsWith('Passed')) {
process.exit(1);
}