|
发表于 2004-10-18 11:41:56
|
显示全部楼层
请教CODE COVERAGE.
Code coverage is a methodology that has been in use in software engineering for quite some time. The problem with false positive answers (i.e. a bad design is thought to be good), is that they look identical to a true positive answer. It is impossible to know, with 100 percent certainty, that the design being verified is indeed func¬tionally correct. All of your testbenches simulate successfully, but is there a function or a combination of functions that you forgot to verify? That is the question that code coverage can help answer.
它包含:1.Statement Coverage; 2.Path Coverage; 3.Expression Coverage; 4.... 等等。关于这几种Coverage的详细含义和作用可以参考各种仿真、验证工具的说明文档。 |
|