OpenCores
URL https://opencores.org/ocsvn/socgen/socgen/trunk

Subversion Repositories socgen

[/] [socgen/] [trunk/] [tools/] [simulation/] [run_coverage] - Blame information for rev 131

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 119 jt_eaton
eval 'exec `which perl` -S $0 ${1+"$@"}'
2
   if 0;
3
 
4
#/**********************************************************************/
5
#/*                                                                    */
6
#/*             -------                                                */
7
#/*            /   SOC  \                                              */
8
#/*           /    GEN   \                                             */
9
#/*          /    TOOL    \                                            */
10
#/*          ==============                                            */
11
#/*          |            |                                            */
12
#/*          |____________|                                            */
13
#/*                                                                    */
14
#/*                                                                    */
15
#/*                                                                    */
16
#/*  Author(s):                                                        */
17
#/*      - John Eaton, jt_eaton@opencores.org                          */
18
#/*                                                                    */
19
#/**********************************************************************/
20
#/*                                                                    */
21
#/*    Copyright (C) <2010-2011>                */
22
#/*                                                                    */
23
#/*  This source file may be used and distributed without              */
24
#/*  restriction provided that this copyright statement is not         */
25
#/*  removed from the file and that any derivative work contains       */
26
#/*  the original copyright notice and the associated disclaimer.      */
27
#/*                                                                    */
28
#/*  This source file is free software; you can redistribute it        */
29
#/*  and/or modify it under the terms of the GNU Lesser General        */
30
#/*  Public License as published by the Free Software Foundation;      */
31
#/*  either version 2.1 of the License, or (at your option) any        */
32
#/*  later version.                                                    */
33
#/*                                                                    */
34
#/*  This source is distributed in the hope that it will be            */
35
#/*  useful, but WITHOUT ANY WARRANTY; without even the implied        */
36
#/*  warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR           */
37
#/*  PURPOSE.  See the GNU Lesser General Public License for more      */
38
#/*  details.                                                          */
39
#/*                                                                    */
40
#/*  You should have received a copy of the GNU Lesser General         */
41
#/*  Public License along with this source; if not, download it        */
42
#/*  from http://www.opencores.org/lgpl.shtml                          */
43
#/*                                                                    */
44
#/**********************************************************************/
45
 
46
 
47
############################################################################
48
# General PERL config
49
############################################################################
50
use Getopt::Long;
51
use English;
52
use File::Basename;
53
use Cwd;
54
use XML::LibXML;
55
use lib './tools';
56
use sys::lib;
57
use yp::lib;
58
 
59
$OUTPUT_AUTOFLUSH = 1; # set autoflush of stdout to TRUE.
60
 
61
 
62
############################################################################
63
### Process the options
64
############################################################################
65
Getopt::Long::config("require_order", "prefix=-");
66
GetOptions("h","help",
67
) || die "(use '$program_name -h' for help)";
68
 
69
 
70
 
71
 
72
##############################################################################
73
## Help option
74
##############################################################################
75
if ( $opt_h or $opt_help  )
76 131 jt_eaton
  { print "\n run_coverage vendor  library";
77 119 jt_eaton
    print "\n";
78
    exit 1;
79
  }
80
 
81
 
82
#/**********************************************************************/
83 131 jt_eaton
#/*  Process each library by finding any ip-xact file in any component */
84 119 jt_eaton
#/*                                                                    */
85
#/*  Each ip-xact file is parsed and it's filename and the names of any*/
86
#/*  modules that it uses are saved.                                   */
87
#/*                                                                    */
88
#/*                                                                    */
89
#/**********************************************************************/
90
 
91
 
92
my $home              = cwd();
93 128 jt_eaton
my $vendor   ;
94 131 jt_eaton
my $library  ;
95 119 jt_eaton
 
96 131 jt_eaton
 
97
my $prefix = yp::lib::get_workspace();
98
 
99 128 jt_eaton
$_               = $ARGV[0];
100 119 jt_eaton
 
101 128 jt_eaton
 
102 131 jt_eaton
 
103 128 jt_eaton
if(/(\S+)__(\S+)/)
104
     {
105
     $vendor           = $1;
106 131 jt_eaton
     $library          = $2;
107 128 jt_eaton
     }
108
 
109
 
110
 
111
 
112 131 jt_eaton
 
113 119 jt_eaton
my $parser = XML::LibXML->new();
114
 
115
 
116
 
117 131 jt_eaton
my @components   = yp::lib::find_components($vendor,$library);
118 119 jt_eaton
 
119
foreach my $component (@components)
120
   {
121 131 jt_eaton
 
122
   my $socgen_filename              = yp::lib::find_componentConfiguration($vendor,$library,$component);
123
   if($socgen_filename)
124
   {
125
 
126
   my $socgen_file              = $parser->parse_file($socgen_filename);
127 130 jt_eaton
   my $sim_library_path ;
128 131 jt_eaton
   my $lib_comp_sep             = yp::lib::find_lib_comp_sep($vendor,$library,$component);
129 130 jt_eaton
   my $sim_comp_path            = $socgen_file->findnodes("//socgen:componentConfiguration/socgen:sim/socgen:comp_path/text()")->to_literal;
130 119 jt_eaton
 
131 130 jt_eaton
   if ($sim_comp_path)
132
      {
133
      $sim_library_path            ="${lib_comp_sep}${sim_comp_path}";
134
      }
135
   else
136
      {
137
      $sim_library_path            = $socgen_file->findnodes("//socgen:componentConfiguration/socgen:sim/socgen:library_path/text()")->to_literal;
138
      }
139 128 jt_eaton
 
140 131 jt_eaton
   print "XXXX-   $vendor $library $component  $sim_library_path   \n";
141 130 jt_eaton
 
142 119 jt_eaton
   #/*********************************************************************************************/
143 128 jt_eaton
   #/   create coverage database .cdd file                                                       */
144 119 jt_eaton
   #/                                                                                            */
145
   #/*********************************************************************************************/
146
 
147 130 jt_eaton
   foreach  my   $i_name ($socgen_file->findnodes("//socgen:componentConfiguration/socgen:sim/socgen:testbenches/socgen:testbench/socgen:tools/socgen:tool"))
148 119 jt_eaton
      {
149 128 jt_eaton
      my($tb_tool)     = $i_name ->findnodes('./text()')->to_literal ;
150
      my($tb_variant)  = $i_name ->findnodes('../../socgen:variant/text()')->to_literal ;
151
      my($tb_version)  = $i_name ->findnodes('../../socgen:version/text()')->to_literal ;
152 119 jt_eaton
 
153 128 jt_eaton
      if($tb_tool eq "coverage")
154
          {
155
          print "  COVERAGEs   $tb_tool          $tb_variant  $tb_version \n";
156 131 jt_eaton
          chdir  "./${prefix}/${vendor}__${library}${sim_library_path}/cov/${tb_variant}";
157 119 jt_eaton
 
158 128 jt_eaton
          $cmd ="make build_cdd \n";
159
          if (system($cmd)) {}
160 119 jt_eaton
 
161
 
162
 
163 128 jt_eaton
 
164 130 jt_eaton
          foreach  my   $i_name ($socgen_file->findnodes("//socgen:test/socgen:variant"))
165 128 jt_eaton
              {
166
              my($test_variant)     = $i_name ->findnodes('./text()')->to_literal ;
167
              my($test_name)        = $i_name ->findnodes('../socgen:name/text()')->to_literal ;
168
 
169
              if($tb_variant eq $test_variant  )
170
                {
171
                print "  $tb_variant  $test_variant $test_name \n";
172
                $cmd ="make score_cov TEST=${test_name} \n";
173
                if (system($cmd)) {}
174
                }
175
 
176
              }
177
 
178
              $cmd ="make report_cov  \n";
179
              if (system($cmd)) {}
180
 
181
          }
182
 
183
 
184
 
185
 
186
 
187
          chdir $home;
188
 
189 119 jt_eaton
      }
190
 
191 128 jt_eaton
 
192
 
193
 
194
 
195
 
196
 
197
 
198 119 jt_eaton
   }
199
 
200 131 jt_eaton
}
201 119 jt_eaton
 
202
 
203 131 jt_eaton
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.