20260314 ready to test

This commit is contained in:
yangshenbo 2026-03-14 17:51:22 +08:00
parent 59487f9128
commit e908d3a088
359 changed files with 27833 additions and 12091 deletions

View File

@ -99,10 +99,10 @@ initial begin
rst_n = 1'b1;
//lvds_drv.do_drive();
lvds_drv.train_count = 100; // ÉèÖÃѵÁ·´ÎÊý
lvds_drv.send_training(); // ·¢ËÍѵÁ·ÐòÁÐ
lvds_drv.train_count = 100; //
lvds_drv.send_training(); //
lvds_drv.scrambler_en = 1;
lvds_drv.send_frame_from_file(LVDS_FILE); // ·¢ËÍÊý¾ÝÖ¡
lvds_drv.send_frame_from_file(LVDS_FILE); //
file_path = $fopen(DATA_O_FILE, "w");
my_drv.do_drive(file_path);
@ -137,6 +137,12 @@ initial begin
start = 1'b0;
# 30000;
start = 1'b1;
# PERIOD;
# PERIOD;
start = 1'b0;
# 30000;
$finish(0);
end
@ -156,8 +162,8 @@ logic [0 :0] lvds_clk = '0;
//DAC Data
logic [6 :0] MSB_OUT [63:0] ;
logic [4 :0] LSB_OUT [63:0] ;
logic MSB_DUM [63:0] ;
logic DEM_VLD ;
logic MSB_DUM [63:0] ;
logic DEM_VLD ;
//DAC Cfg Port
logic [3 :0] Rterm ;
logic [2 :0] CasAddr ;
@ -271,7 +277,7 @@ da4008_chip_top U_da4008_chip_top (
//DEM_Reverse_64CH
////////////////////////////////////////////////////////////////////////////////////////
logic vld_out ;
logic vld_out ;
logic [7 :0] data_out [63:0] ;
DEM_Reverse_64CH U_DEM_Reverse_64CH (
@ -284,7 +290,7 @@ DEM_Reverse_64CH U_DEM_Reverse_64CH (
);
logic [7 :0] data_out_r [63:0] ;
logic vld_out_r ;
logic vld_out_r ;
always @(posedge clk_40g) begin
data_out_r <= data_out ;

View File

@ -0,0 +1,396 @@
`include "../../rtl/define/chip_define.v"
`include "../../model/SPI_DRIVER.sv"
`include "../../model/LVDS_DRIVER.sv"
`timescale 1ns/1ps
module TB ();
//###################################
// Generate Clocks & Reset
//###################################
//Generate Clock
localparam PERIOD = 1.536;
logic clk ;
//clk
clock_tb #(
.PERIOD ( PERIOD )
,.PHASE ( 0 )
)clk_inst (
.clk_out ( clk )
);
//clk_40g
logic clk_40g;
clock_tb #(
.PERIOD ( 0.024)
,.PHASE ( 0 )
)clk_40g_inst (
.clk_out ( clk_40g )
);
//Generate Reset
logic rst_n;
int file_path;
string CONFIG_FILE = "";
string DATA_O_FILE = "";
parameter string CASE_TEMP = "../../case_temp.txt";
parameter string DATA_TEMP = "../../data_temp.txt";
parameter string LVDS_FILE = "../../../../case/lvds/0305/lvds.txt";
initial begin
file_path = $fopen(CASE_TEMP, "r");
if(file_path != 0) begin
$fscanf(file_path, "%s", CONFIG_FILE);
$display(CONFIG_FILE);
$fclose(file_path);
end
file_path = $fopen(DATA_TEMP, "r");
if(file_path != 0) begin
$fscanf(file_path, "%s", DATA_O_FILE);
$display(DATA_O_FILE);
$fclose(file_path);
end
$fsdbAutoSwitchDumpfile(500, "./verdplus.fsdb", 1000000);
$fsdbDumpvars();
$fsdbDumpMDA();
end
//###################################
// configure the dut
//###################################
virtual spi_if vif;
spi_if spi_bus(.clk(clk), .rstn(rst_n));
virtual lvds_if lvds_vif;
lvds_if lvds_bus(.clk(clk));
initial begin
spi_bus.sclk = 1'b1;
spi_bus.mosi = 1'b0;
spi_bus.csn = 1'b1;
vif = spi_bus;
lvds_vif = lvds_bus;
end
spi_driver my_drv;
lvds_driver lvds_drv;
logic start;
initial begin
rst_n = 1'b0;
start = 1'b0;
lvds_drv = new();
//lvds_drv.file_path = LVDS_FILE;
lvds_drv.drv_if = lvds_vif;
my_drv = new();
my_drv.file_path = CONFIG_FILE;
my_drv.itf = vif;
# 20;
rst_n = 1'b1;
//lvds_drv.do_drive();
lvds_drv.train_count = 100; //
lvds_drv.send_training(); //
lvds_drv.scrambler_en = 1;
lvds_drv.send_frame_from_file(LVDS_FILE); //
file_path = $fopen(DATA_O_FILE, "w");
my_drv.do_drive(file_path);
$fclose(file_path);
# 30;
start = 1'b1;
# PERIOD;
# PERIOD;
start = 1'b0;
# 30000;
file_path = $fopen(DATA_O_FILE, "w");
my_drv.do_drive(file_path);
$fclose(file_path);
start = 1'b1;
# PERIOD;
# PERIOD;
start = 1'b0;
# 30000;
file_path = $fopen(DATA_O_FILE, "w");
my_drv.do_drive(file_path);
$fclose(file_path);
start = 1'b1;
# PERIOD;
# PERIOD;
start = 1'b0;
# 30000;
start = 1'b1;
# PERIOD;
# PERIOD;
start = 1'b0;
# 30000;
$finish(0);
end
////////////////////////////////////////////////////////////////////////////////////////
//DUT
////////////////////////////////////////////////////////////////////////////////////////
//sync_out
logic sync_out ;
//irq
logic irq ;
//lvds rx
logic [3 :0] lvds_data = '0;
logic [0 :0] lvds_valid = '0;
logic [0 :0] lvds_clk = '0;
//DAC Data
logic [6 :0] MSB_OUT [63:0] ;
logic [4 :0] LSB_OUT [63:0] ;
logic MSB_DUM [63:0] ;
logic DEM_VLD ;
//DAC Cfg Port
logic [3 :0] Rterm ;
logic [2 :0] CasAddr ;
logic [2 :0] CasDw ;
logic [9 :0] IMainCtrl ;
logic [3 :0] IBleedCtrl ;
logic [3 :0] ICkCml ;
logic [31 :0] CurRsv0 ;
logic [31 :0] CurRsv1 ;
//CLK Cfg Port
logic [0 :0] CcalRstn ;
logic [3 :0] EnAllP ;
logic [0 :0] DccEn ;
logic [0 :0] CasGateCkCtrl ;
logic [0 :0] SpiEnPi ;
logic [0 :0] SpiEnQec ;
logic [0 :0] SpiEnDcc ;
logic [4 :0] SpiQecCtrlIp ;
logic [4 :0] SpiQecCtrlIn ;
logic [4 :0] SpiQecCtrlQp ;
logic [4 :0] SpiQecCtrlQn ;
logic [5 :0] SpiDccCtrlIup ;
logic [5 :0] SpiDccCtrlIdn ;
logic [5 :0] SpiDccCtrlQup ;
logic [5 :0] SpiDccCtrlQdn ;
logic [7 :0] SpiSiqNOut ;
logic [7 :0] SpiSiqPOut ;
logic [3 :0] SpiSiPOut ;
logic [3 :0] SpiSqPOut ;
logic [2 :0] CrtlCrossOverN ;
logic [2 :0] CrtlCrossOverP ;
logic [31 :0] CcalRsv0 ;
logic [31 :0] CcalRsv1 ;
logic [3 :0] SelCk10GDig ;
logic [3 :0] SelCk2p5GDig ;
logic [8 :0] SelCk625MDig ;
logic [15 :0] P2sDataEn ;
logic [15 :0] P2sEnAllP ;
logic [15 :0] EnPiP ;
logic [15 :0] CkDivRstn ;
logic [31 :0] p2srsv0 ;
logic [31 :0] p2srsv1 ;
logic [15 :0] CkRxSw ;
logic [15 :0] RstnCk ;
logic [15 :0] CtrlZin ;
da4008_chip_top U_da4008_chip_top (
.PI_sclk ( spi_bus.sclk )
,.PI_csn ( spi_bus.csn )
,.PI_mosi ( spi_bus.mosi )
,.PO_miso ( spi_bus.miso )
,.PO_irq ( irq )
,.PI_async_rstn ( rst_n )
,.PI_sync_in ( start )
,.PO_sync_out ( sync_out )
,.clk ( clk )
,.lvds_data ( lvds_bus.data )
,.lvds_valid ( lvds_bus.valid )
,.lvds_clk ( lvds_bus.clk )
,.MSB_OUT ( MSB_OUT )
,.LSB_OUT ( LSB_OUT )
,.MSB_DUM ( MSB_DUM )
,.DEM_VLD ( DEM_VLD )
,.Rterm ( Rterm )
,.CasAddr ( CasAddr )
,.CasDw ( CasDw )
,.IMainCtrl ( IMainCtrl )
,.IBleedCtrl ( IBleedCtrl )
,.ICkCml ( ICkCml )
,.CurRsv0 ( CurRsv0 )
,.CurRsv1 ( CurRsv1 )
,.CcalRstn ( CcalRstn )
,.EnAllP ( EnAllP )
,.DccEn ( DccEn )
,.CasGateCkCtrl ( CasGateCkCtrl )
,.SpiEnPi ( SpiEnPi )
,.SpiEnQec ( SpiEnQec )
,.SpiEnDcc ( SpiEnDcc )
,.SpiQecCtrlIp ( SpiQecCtrlIp )
,.SpiQecCtrlIn ( SpiQecCtrlIn )
,.SpiQecCtrlQp ( SpiQecCtrlQp )
,.SpiQecCtrlQn ( SpiQecCtrlQn )
,.SpiDccCtrlIup ( SpiDccCtrlIup )
,.SpiDccCtrlIdn ( SpiDccCtrlIdn )
,.SpiDccCtrlQup ( SpiDccCtrlQup )
,.SpiDccCtrlQdn ( SpiDccCtrlQdn )
,.SpiSiqNOut ( SpiSiqNOut )
,.SpiSiqPOut ( SpiSiqPOut )
,.SpiSiPOut ( SpiSiPOut )
,.SpiSqPOut ( SpiSqPOut )
,.CrtlCrossOverN ( CrtlCrossOverN )
,.CrtlCrossOverP ( CrtlCrossOverP )
,.CcalRsv0 ( CcalRsv0 )
,.CcalRsv1 ( CcalRsv1 )
,.SelCk10GDig ( SelCk10GDig )
,.SelCk2p5GDig ( SelCk2p5GDig )
,.SelCk625MDig ( SelCk625MDig )
,.P2sDataEn ( P2sDataEn )
,.P2sEnAllP ( P2sEnAllP )
,.EnPiP ( EnPiP )
,.CkDivRstn ( CkDivRstn )
,.p2srsv0 ( p2srsv0 )
,.p2srsv1 ( p2srsv1 )
,.CkRxSw ( CkRxSw )
,.RstnCk ( RstnCk )
,.CtrlZin ( CtrlZin )
);
////////////////////////////////////////////////////////////////////////////////////////
//DEM_Reverse_64CH
////////////////////////////////////////////////////////////////////////////////////////
logic vld_out ;
logic [7 :0] data_out [63:0] ;
DEM_Reverse_64CH U_DEM_Reverse_64CH (
.clk ( clk )
,.msb_in ( MSB_OUT )
,.lsb_in ( LSB_OUT )
,.vld_in ( DEM_VLD )
,.vld_out ( vld_out )
,.data_out ( data_out )
);
logic [7 :0] data_out_r [63:0] ;
logic vld_out_r ;
always @(posedge clk_40g) begin
data_out_r <= data_out ;
vld_out_r <= vld_out ;
end
///////////////////////////////////////////////////////////////////////
//DA4008 DEM output data save
///////////////////////////////////////////////////////////////////////
wire add_cnt = vld_out_r;
wire end_cnt = 1'b0;
logic [5 :0] cnt_c;
wire [5 :0] cnt_n = end_cnt ? 6'h0 :
add_cnt ? cnt_c + 1'b1 :
cnt_c ;
always @(posedge clk_40g or negedge rst_n) begin
if(rst_n==1'b0) begin
cnt_c <= 6'd0;
end
else begin
cnt_c <= cnt_n;
end
end
logic [7:0] cs_wave;
always @(posedge clk_40g or negedge rst_n) begin
if(rst_n==1'b0) begin
cs_wave <= 16'h0;
end
else begin
case(cnt_c)
6'd0 : cs_wave <= {~data_out_r[0 ][7],data_out_r[0 ][6:0]};
6'd1 : cs_wave <= {~data_out_r[1 ][7],data_out_r[1 ][6:0]};
6'd2 : cs_wave <= {~data_out_r[2 ][7],data_out_r[2 ][6:0]};
6'd3 : cs_wave <= {~data_out_r[3 ][7],data_out_r[3 ][6:0]};
6'd4 : cs_wave <= {~data_out_r[4 ][7],data_out_r[4 ][6:0]};
6'd5 : cs_wave <= {~data_out_r[5 ][7],data_out_r[5 ][6:0]};
6'd6 : cs_wave <= {~data_out_r[6 ][7],data_out_r[6 ][6:0]};
6'd7 : cs_wave <= {~data_out_r[7 ][7],data_out_r[7 ][6:0]};
6'd8 : cs_wave <= {~data_out_r[8 ][7],data_out_r[8 ][6:0]};
6'd9 : cs_wave <= {~data_out_r[9 ][7],data_out_r[9 ][6:0]};
6'd10 : cs_wave <= {~data_out_r[10][7],data_out_r[10][6:0]};
6'd11 : cs_wave <= {~data_out_r[11][7],data_out_r[11][6:0]};
6'd12 : cs_wave <= {~data_out_r[12][7],data_out_r[12][6:0]};
6'd13 : cs_wave <= {~data_out_r[13][7],data_out_r[13][6:0]};
6'd14 : cs_wave <= {~data_out_r[14][7],data_out_r[14][6:0]};
6'd15 : cs_wave <= {~data_out_r[15][7],data_out_r[15][6:0]};
6'd16 : cs_wave <= {~data_out_r[16][7],data_out_r[16][6:0]};
6'd17 : cs_wave <= {~data_out_r[17][7],data_out_r[17][6:0]};
6'd18 : cs_wave <= {~data_out_r[18][7],data_out_r[18][6:0]};
6'd19 : cs_wave <= {~data_out_r[19][7],data_out_r[19][6:0]};
6'd20 : cs_wave <= {~data_out_r[20][7],data_out_r[20][6:0]};
6'd21 : cs_wave <= {~data_out_r[21][7],data_out_r[21][6:0]};
6'd22 : cs_wave <= {~data_out_r[22][7],data_out_r[22][6:0]};
6'd23 : cs_wave <= {~data_out_r[23][7],data_out_r[23][6:0]};
6'd24 : cs_wave <= {~data_out_r[24][7],data_out_r[24][6:0]};
6'd25 : cs_wave <= {~data_out_r[25][7],data_out_r[25][6:0]};
6'd26 : cs_wave <= {~data_out_r[26][7],data_out_r[26][6:0]};
6'd27 : cs_wave <= {~data_out_r[27][7],data_out_r[27][6:0]};
6'd28 : cs_wave <= {~data_out_r[28][7],data_out_r[28][6:0]};
6'd29 : cs_wave <= {~data_out_r[29][7],data_out_r[29][6:0]};
6'd30 : cs_wave <= {~data_out_r[30][7],data_out_r[30][6:0]};
6'd31 : cs_wave <= {~data_out_r[31][7],data_out_r[31][6:0]};
6'd32 : cs_wave <= {~data_out_r[32][7],data_out_r[32][6:0]};
6'd33 : cs_wave <= {~data_out_r[33][7],data_out_r[33][6:0]};
6'd34 : cs_wave <= {~data_out_r[34][7],data_out_r[34][6:0]};
6'd35 : cs_wave <= {~data_out_r[35][7],data_out_r[35][6:0]};
6'd36 : cs_wave <= {~data_out_r[36][7],data_out_r[36][6:0]};
6'd37 : cs_wave <= {~data_out_r[37][7],data_out_r[37][6:0]};
6'd38 : cs_wave <= {~data_out_r[38][7],data_out_r[38][6:0]};
6'd39 : cs_wave <= {~data_out_r[39][7],data_out_r[39][6:0]};
6'd40 : cs_wave <= {~data_out_r[40][7],data_out_r[40][6:0]};
6'd41 : cs_wave <= {~data_out_r[41][7],data_out_r[41][6:0]};
6'd42 : cs_wave <= {~data_out_r[42][7],data_out_r[42][6:0]};
6'd43 : cs_wave <= {~data_out_r[43][7],data_out_r[43][6:0]};
6'd44 : cs_wave <= {~data_out_r[44][7],data_out_r[44][6:0]};
6'd45 : cs_wave <= {~data_out_r[45][7],data_out_r[45][6:0]};
6'd46 : cs_wave <= {~data_out_r[46][7],data_out_r[46][6:0]};
6'd47 : cs_wave <= {~data_out_r[47][7],data_out_r[47][6:0]};
6'd48 : cs_wave <= {~data_out_r[48][7],data_out_r[48][6:0]};
6'd49 : cs_wave <= {~data_out_r[49][7],data_out_r[49][6:0]};
6'd50 : cs_wave <= {~data_out_r[50][7],data_out_r[50][6:0]};
6'd51 : cs_wave <= {~data_out_r[51][7],data_out_r[51][6:0]};
6'd52 : cs_wave <= {~data_out_r[52][7],data_out_r[52][6:0]};
6'd53 : cs_wave <= {~data_out_r[53][7],data_out_r[53][6:0]};
6'd54 : cs_wave <= {~data_out_r[54][7],data_out_r[54][6:0]};
6'd55 : cs_wave <= {~data_out_r[55][7],data_out_r[55][6:0]};
6'd56 : cs_wave <= {~data_out_r[56][7],data_out_r[56][6:0]};
6'd57 : cs_wave <= {~data_out_r[57][7],data_out_r[57][6:0]};
6'd58 : cs_wave <= {~data_out_r[58][7],data_out_r[58][6:0]};
6'd59 : cs_wave <= {~data_out_r[59][7],data_out_r[59][6:0]};
6'd60 : cs_wave <= {~data_out_r[60][7],data_out_r[60][6:0]};
6'd61 : cs_wave <= {~data_out_r[61][7],data_out_r[61][6:0]};
6'd62 : cs_wave <= {~data_out_r[62][7],data_out_r[62][6:0]};
6'd63 : cs_wave <= {~data_out_r[63][7],data_out_r[63][6:0]};
endcase
end
end
endmodule

View File

@ -10,7 +10,46 @@ Warning-[LCA_FEATURES_ENABLED] Usage warning
information regarding list of LCA features please refer to Chapter "LCA
features" in the VCS/VCS-MX Release Notes
The design hasn't changed and need not be recompiled.
If you really want to, delete file simv.daidir/.vcs.timestamp and
run VCS again.
Warning-[RVOSFD] Return value discarded
../../model/SPI_DRIVER.sv, 50
System function '$fscanf' is invoked as task, its return value is discarded.
"../../model/SPI_DRIVER.sv", 50
Source info: $fscanf(file_id,"%h\n",value);
Warning-[RVOSFD] Return value discarded
../../model/LVDS_DRIVER.sv, 41
System function '$fscanf' is invoked as task, its return value is discarded.
"../../model/LVDS_DRIVER.sv", 41
Source info: $fscanf(file_id, "%h\n", value);
Warning-[RVOSFD] Return value discarded
../../sim/chip_top/TB.sv, 46
System function '$fscanf' is invoked as task, its return value is discarded.
"../../sim/chip_top/TB.sv", 46
Source info: $fscanf(file_path, "%s", CONFIG_FILE);
Warning-[RVOSFD] Return value discarded
../../sim/chip_top/TB.sv, 52
System function '$fscanf' is invoked as task, its return value is discarded.
"../../sim/chip_top/TB.sv", 52
Source info: $fscanf(file_path, "%s", DATA_O_FILE);
Lint-[TFIPC-L] Too few instance port connections
../../sim/chip_top/TB.sv, 214
TB, "da4008_chip_top U_da4008_chip_top( .PI_sclk (spi_bus.sclk), .PI_csn (spi_bus.csn), .PI_mosi (spi_bus.mosi), .PO_miso (spi_bus.miso), .PO_irq (irq), .PI_async_rstn (rst_n), .PI_sync_in (start), .PO_sync_out (sync_out), .clk (clk), .lvds_data (lvds_bus.data), .lvds_valid (lvds_bus.valid), .lvds_clk (lvds_bus.clk), .MSB_OUT (MSB_OUT), .LSB_OUT (LSB_OUT), .MSB_DUM (MSB_DUM), .DEM_VLD (DEM_VLD), .Rterm (Rterm), .CasAddr (CasAddr), .CasDw (CasDw), .IMainCtrl (IMainCtrl), .IBleedCtrl (IBleedCtrl), .ICkCml (ICkCml), .CurRsv0 (CurRsv0), .CurRsv1 (CurRsv1), .CcalRstn (CcalRstn), .EnAllP (EnAllP), .DccEn (DccEn), .CasGateCkCtrl (CasGateCkCtrl), .SpiEnPi (SpiEnPi), .SpiEnQec (SpiEnQec), .SpiEnDcc (SpiEnDcc), .SpiQecCtrlIp (SpiQecCtrlI ... "
The above instance has fewer port connections than the module definition,
output port 'phase_tap' is not connected.
VCS Coverage Metrics Release O-2018.09-SP2_Full64 Copyright (c) 1991-2018 by Synopsys Inc.
Notice: Ports coerced to inout, use -notice for details
Note-[VCS_PARAL] Parallel code-gen enabled
VCS is running with parallel code generation(-j)...
147 modules and 0 UDP read.
../simv up to date

View File

@ -1,6 +1,6 @@
// Synopsys, Inc.
// User: shbyang
// Date: Fri Mar 13 14:54:44 2026
// Date: Sat Mar 14 17:19:26 2026
// ==================================================================================================
// This config file prototype is produced from the last run using the complete list of extracted fsms.

View File

@ -0,0 +1 @@
.//../simv.daidir//_64094_archive_1.so

View File

@ -0,0 +1 @@
.//../simv.daidir//_64123_archive_1.so

View File

@ -0,0 +1 @@
.//../simv.daidir//_csrc0.so

View File

@ -0,0 +1 @@
.//../simv.daidir//_prev_archive_1.so

File diff suppressed because it is too large Load Diff

View File

@ -1,20 +0,0 @@
ircEj_d.o
FgDcH_d.o
zVfcK_d.o
CjC7H_d.o
N1ndr_d.o
ebe78_d.o
UxPrL_d.o
qePm9_d.o
zIUFF_d.o
VJ8Wg_d.o
psjSY_d.o
EZF3t_d.o
dviib_d.o
qn6Yx_d.o
LSxxn_d.o
ZmPik_d.o
fMI2k_d.o
VSdee_d.o
bEAZ8_d.o
amcQwB.o

View File

@ -1,19 +0,0 @@
UJ4u7_d.o
jAdLC_d.o
dc6nH_d.o
reYIK_d.o
Z62Gy_d.o
atFKr_d.o
YTwQz_d.o
HYpLe_d.o
swWa5_d.o
EEqKt_d.o
hpMjC_d.o
Q3Wk7_d.o
IHYdB_d.o
bhWYh_d.o
fEWTj_d.o
avdwk_d.o
EZJLH_d.o
TqmdJ_d.o
B0f3F_d.o

View File

@ -1,19 +0,0 @@
yeRHW_d.o
AyqFm_d.o
bghMB_d.o
aJYLF_d.o
sZaSM_d.o
eR5Zz_d.o
QGhk6_d.o
NkwYe_d.o
ZZxj5_d.o
Jztd6_d.o
pucZW_d.o
BM4bj_d.o
nS0i0_d.o
wpYca_d.o
BL1m7_d.o
urn8Q_d.o
I7RzE_d.o
YBQ1m_d.o
i0k2A_d.o

View File

@ -1,19 +0,0 @@
LR0zI_d.o
qcK8J_d.o
qLaCg_d.o
q09PC_d.o
CQ4ek_d.o
KpuhN_d.o
wGYhm_d.o
uKPxf_d.o
S90qD_d.o
V63WF_d.o
EkH6u_d.o
UTi0b_d.o
UyGax_d.o
uQmb5_d.o
Eie6s_d.o
DTJPF_d.o
HtwuV_d.o
g8kcb_d.o
rq1J0_d.o

View File

@ -1,19 +0,0 @@
YnCHV_d.o
J5zQK_d.o
gzftm_d.o
anuMN_d.o
J6fGD_d.o
Pzaun_d.o
mJZpP_d.o
qCQFW_d.o
JznNw_d.o
YRh5I_d.o
yt645_d.o
qxEhc_d.o
EyyeT_d.o
uuDJt_d.o
sPggV_d.o
t6fPF_d.o
gL5Pd_d.o
Md441_d.o
IZu3i_d.o

View File

@ -1,19 +0,0 @@
sIRhK_d.o
dteMU_d.o
bQxt6_d.o
cQW1k_d.o
C0gYT_d.o
GzkJA_d.o
KkPJH_d.o
M7qR3_d.o
VaZm2_d.o
fLemy_d.o
AVYgt_d.o
ga3jL_d.o
dfLHW_d.o
zNPu5_d.o
mZVHG_d.o
U0PST_d.o
Zp1LH_d.o
ke5cH_d.o
NABmh_d.o

View File

@ -1,19 +0,0 @@
sH4Fc_d.o
eAsJz_d.o
MEIvW_d.o
yuek5_d.o
K0TuH_d.o
StNiL_d.o
aEWK6_d.o
FDqaf_d.o
ZKk4u_d.o
EtT2L_d.o
ErxQ3_d.o
DA1Pu_d.o
xqWfY_d.o
CNBi6_d.o
J6VbG_d.o
rZC3e_d.o
jHcbf_d.o
S5Dr6_d.o
nJgqZ_d.o

View File

@ -1,19 +0,0 @@
P3BwM_d.o
QT8j3_d.o
Ss3zK_d.o
T59nH_d.o
QjV6F_d.o
HiTWu_d.o
gxqJp_d.o
iWZrk_d.o
fTzb4_d.o
gwpgC_d.o
riJVY_d.o
IYQDs_d.o
LsJ1x_d.o
W9VnM_d.o
nULrd_d.o
aYKwj_d.o
usz4x_d.o
jsR1C_d.o
z4wk8_d.o

View File

@ -0,0 +1,2 @@
FgDcH_d.o
amcQwB.o

View File

@ -0,0 +1 @@
sH4Fc_d.o

View File

@ -0,0 +1,150 @@
Zp1LH_d.o
ke5cH_d.o
zNPu5_d.o
ga3jL_d.o
VaZm2_d.o
mZVHG_d.o
M7qR3_d.o
bQxt6_d.o
dfLHW_d.o
sIRhK_d.o
U0PST_d.o
NABmh_d.o
C0gYT_d.o
GzkJA_d.o
cQW1k_d.o
fLemy_d.o
dteMU_d.o
AVYgt_d.o
KkPJH_d.o
I7RzE_d.o
nS0i0_d.o
QGhk6_d.o
sZaSM_d.o
Jztd6_d.o
YBQ1m_d.o
wpYca_d.o
pucZW_d.o
ZZxj5_d.o
eR5Zz_d.o
yeRHW_d.o
BL1m7_d.o
AyqFm_d.o
urn8Q_d.o
i0k2A_d.o
BM4bj_d.o
aJYLF_d.o
NkwYe_d.o
bghMB_d.o
yuek5_d.o
rZC3e_d.o
FDqaf_d.o
xqWfY_d.o
EtT2L_d.o
MEIvW_d.o
K0TuH_d.o
jHcbf_d.o
S5Dr6_d.o
StNiL_d.o
J6VbG_d.o
DA1Pu_d.o
CNBi6_d.o
nJgqZ_d.o
ErxQ3_d.o
aEWK6_d.o
ZKk4u_d.o
eAsJz_d.o
CQ4ek_d.o
KpuhN_d.o
rq1J0_d.o
wGYhm_d.o
uQmb5_d.o
qcK8J_d.o
LR0zI_d.o
q09PC_d.o
HtwuV_d.o
g8kcb_d.o
Eie6s_d.o
DTJPF_d.o
uKPxf_d.o
V63WF_d.o
UTi0b_d.o
EkH6u_d.o
S90qD_d.o
qLaCg_d.o
UyGax_d.o
ircEj_d.o
zIUFF_d.o
EZF3t_d.o
CjC7H_d.o
ZmPik_d.o
qn6Yx_d.o
dviib_d.o
psjSY_d.o
zVfcK_d.o
ebe78_d.o
fMI2k_d.o
VJ8Wg_d.o
bEAZ8_d.o
VSdee_d.o
qePm9_d.o
UxPrL_d.o
N1ndr_d.o
LSxxn_d.o
gxqJp_d.o
QjV6F_d.o
iWZrk_d.o
jsR1C_d.o
LsJ1x_d.o
z4wk8_d.o
nULrd_d.o
P3BwM_d.o
QT8j3_d.o
aYKwj_d.o
Ss3zK_d.o
IYQDs_d.o
W9VnM_d.o
usz4x_d.o
riJVY_d.o
fTzb4_d.o
gwpgC_d.o
T59nH_d.o
HiTWu_d.o
qxEhc_d.o
mJZpP_d.o
sPggV_d.o
gL5Pd_d.o
t6fPF_d.o
yt645_d.o
Md441_d.o
anuMN_d.o
YRh5I_d.o
IZu3i_d.o
J5zQK_d.o
uuDJt_d.o
JznNw_d.o
YnCHV_d.o
EyyeT_d.o
gzftm_d.o
qCQFW_d.o
Pzaun_d.o
J6fGD_d.o
Z62Gy_d.o
IHYdB_d.o
YTwQz_d.o
TqmdJ_d.o
HYpLe_d.o
EZJLH_d.o
jAdLC_d.o
Q3Wk7_d.o
EEqKt_d.o
reYIK_d.o
UJ4u7_d.o
avdwk_d.o
hpMjC_d.o
atFKr_d.o
B0f3F_d.o
fEWTj_d.o
bhWYh_d.o
swWa5_d.o
dc6nH_d.o

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,846 +0,0 @@
{
"Modules": {
"PDDW12DGZ_H_G": {
"end_perf": [
2.85371994972229,
0.36574499999999999,
0.030894000000000001,
322948,
322972,
69836691008106800,
77309411329,
0
],
"Compiled Times": 1,
"start_perf": [
2.8478848934173584,
0.3609,
0.029908000000000001,
322948,
322972,
1773384885.887363,
69836690992898574
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PENDCAP_G": {
"end_perf": [
2.8872318267822266,
0.39713300000000001,
0.032927999999999999,
322948,
322972,
69836691095237384,
188978561025,
0
],
"Compiled Times": 1,
"start_perf": [
2.885610818862915,
0.39554,
0.032898999999999998,
322948,
322972,
1773384885.9250889,
69836691090985936
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD2POC_H_G": {
"end_perf": [
2.890146017074585,
0.39905499999999999,
0.033918999999999998,
322948,
322972,
69836691102804592,
360777252865,
0
],
"Compiled Times": 1,
"start_perf": [
2.8887410163879395,
0.39768199999999998,
0.033887,
322948,
322972,
1773384885.9282191,
69836691099120098
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"reset_tb": {
"end_perf": [
2.8835258483886719,
0.393455,
0.032898999999999998,
322948,
322972,
69836691085601538,
700079669249,
0
],
"Compiled Times": 1,
"start_perf": [
2.8808789253234863,
0.39080799999999999,
0.032898999999999998,
322948,
322972,
1773384885.920357,
69836691078680044
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 13,
"nQuads": 48,
"nMops": 74
},
"PRDW16DGZ_H_G": {
"end_perf": [
2.875514030456543,
0.38641900000000001,
0.031923,
322948,
322972,
69836691064772916,
240518168577,
0
],
"Compiled Times": 1,
"start_perf": [
2.8701789379119873,
0.38108399999999998,
0.031923,
322948,
322972,
1773384885.909657,
69836691050860380
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PVDD1ANA_H_G": {
"end_perf": [
2.8887019157409668,
0.397646,
0.033883999999999997,
322948,
322972,
69836691099063022,
326417514497,
0
],
"Compiled Times": 1,
"start_perf": [
2.8872690200805664,
0.39716699999999999,
0.032930000000000001,
322948,
322972,
1773384885.9267471,
69836691095292636
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS3AC_H_G": {
"end_perf": [
2.8944048881530762,
0.40137899999999999,
0.035854999999999998,
322948,
322972,
69836691113884274,
463856467969,
0
],
"Compiled Times": 1,
"start_perf": [
2.8930249214172363,
0.40094600000000002,
0.034908000000000002,
322948,
322972,
1773384885.932503,
69836691110262222
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"tsdn28hpcpuhdb4096x128m4mw_170a": {
"end_perf": [
2.7230229377746582,
0.24581,
0.022981999999999999,
322948,
322948,
69836690668304422,
481036337153,
0
],
"Compiled Times": 1,
"start_perf": [
2.4547019004821777,
0.0,
0.00050900000000000001,
321944,
321944,
1773384885.49418,
69836689970829170
],
"child_modules": {
"tsdn28hpcpuhdb4096x128m4mw_170a_Int_Array": 1
},
"Compiled": "Yes",
"nRouts": 2254,
"nQuads": 23278,
"nMops": 61050
},
"PDUW12DGZ_H_G": {
"end_perf": [
2.8645679950714111,
0.37559500000000001,
0.031879999999999999,
322948,
322972,
69836691036312808,
146028888065,
0
],
"Compiled Times": 1,
"start_perf": [
2.8592739105224609,
0.37124499999999999,
0.030936999999999999,
322948,
322972,
1773384885.898752,
69836691022509990
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"clk_regfile": {
"end_perf": [
2.7941329479217529,
0.315909,
0.023993,
322948,
322972,
69836690853190414,
627065225217,
0
],
"Compiled Times": 1,
"start_perf": [
2.7230789661407471,
0.245862,
0.022987,
322948,
322948,
1773384885.762557,
69836690668400768
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 674,
"nQuads": 5441,
"nMops": 15415
},
"std": {
"end_perf": [
2.8421168327331543,
0.35716399999999998,
0.027934,
322948,
322972,
69836690977947018,
8589934594,
0
],
"start_perf": [
2.8336479663848877,
0.34988399999999997,
0.026914,
322948,
322972,
1773384885.873126,
69836690955884586
],
"Compiled Times": 1,
"child_modules": {},
"Compiled": "Yes",
"svclass": [
"$vcs_nba_dyn_obj",
576,
35,
2,
2,
0,
"sigprop$$",
576,
35,
2,
2,
0,
"process",
2380,
200,
8,
8,
0,
"event",
597,
34,
2,
2,
0,
"mailbox",
1769,
140,
9,
9,
0,
"semaphore",
1119,
84,
5,
5,
0
],
"nMops": 533,
"nRouts": 36,
"nQuads": 224
},
"sram_dmux_w_0000": {
"end_perf": [
2.83359694480896,
0.34983599999999998,
0.02691,
322948,
322972,
69836690955795428,
609885356033,
0
],
"Compiled Times": 1,
"start_perf": [
2.7941980361938477,
0.31596999999999997,
0.023997000000000001,
322948,
322972,
1773384885.8336761,
69836690853312974
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 268,
"nQuads": 2180,
"nMops": 5910
},
"PVSS1AC_H_G": {
"end_perf": [
2.891556978225708,
0.39951500000000001,
0.034869999999999998,
322948,
322972,
69836691106473830,
395136991233,
0
],
"Compiled Times": 1,
"start_perf": [
2.8901808261871338,
0.39908700000000003,
0.033922000000000001,
322948,
322972,
1773384885.9296589,
69836691102867366
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PRDW08DGZ_H_G": {
"end_perf": [
2.870136022567749,
0.38104399999999999,
0.031919000000000003,
322948,
322972,
69836691050798108,
206158430209,
0
],
"Compiled Times": 1,
"start_perf": [
2.8646090030670166,
0.37563400000000002,
0.031884000000000003,
322948,
322972,
1773384885.9040871,
69836691036379044
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDDW04DGZ_H_G": {
"end_perf": [
2.8478438854217529,
0.36086200000000002,
0.029905000000000001,
322948,
322972,
69836690992830234,
42949672961,
0
],
"Compiled Times": 1,
"start_perf": [
2.8421669006347656,
0.357211,
0.027938000000000001,
322948,
322972,
1773384885.881645,
69836690978030496
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDUW04DGZ_H_G": {
"end_perf": [
2.8592319488525391,
0.37120700000000001,
0.030932999999999999,
322948,
322972,
69836691022444342,
111669149697,
0
],
"Compiled Times": 1,
"start_perf": [
2.8537590503692627,
0.365782,
0.030897000000000001,
322948,
322972,
1773384885.8932371,
69836691008172420
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRUW12DGZ_H_G": {
"end_perf": [
2.8808369636535645,
0.39076899999999998,
0.032896000000000002,
322948,
322972,
69836691078615804,
274877906945,
0
],
"Compiled Times": 1,
"start_perf": [
2.8755559921264648,
0.386461,
0.031923,
322948,
322972,
1773384885.9150341,
69836691064840058
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"spi_if": {
"end_perf": [
2.8855688571929932,
0.39549800000000002,
0.032898999999999998,
322948,
322972,
69836691090912572,
682899800065,
0
],
"start_perf": [
2.8835659027099609,
0.39349499999999998,
0.032898999999999998,
322948,
322972,
1773384885.923044,
69836691085668452
],
"Compiled Times": 1,
"child_modules": {},
"Compiled": "Yes",
"svclass": [
"spi_if_vcs_virt_intf_C",
0,
0,
0,
0,
0
],
"nMops": 24,
"nRouts": 10,
"nQuads": 12
},
"PVSS2AC_H_G": {
"end_perf": [
2.892988920211792,
0.40091199999999999,
0.034904999999999999,
322948,
322972,
69836691110205972,
429496729601,
0
],
"Compiled Times": 1,
"start_perf": [
2.8915920257568359,
0.39954800000000001,
0.034873000000000001,
322948,
322972,
1773384885.9310701,
69836691106535492
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
}
},
"ObjArchives": [
{
"archive": "archive.0/_32573_archive_1.a",
"objects": [
[
"UJ4u7_d.o",
818370
],
[
"jAdLC_d.o",
206036
],
[
"dc6nH_d.o",
96944
],
[
"reYIK_d.o",
43792
],
[
"Z62Gy_d.o",
15774
],
[
"atFKr_d.o",
15774
],
[
"YTwQz_d.o",
15754
],
[
"HYpLe_d.o",
15754
],
[
"swWa5_d.o",
15774
],
[
"EEqKt_d.o",
15774
],
[
"hpMjC_d.o",
15754
],
[
"Q3Wk7_d.o",
9314
],
[
"IHYdB_d.o",
13044
],
[
"bhWYh_d.o",
7194
],
[
"fEWTj_d.o",
7196
],
[
"avdwk_d.o",
7196
],
[
"EZJLH_d.o",
7196
],
[
"TqmdJ_d.o",
7196
],
[
"B0f3F_d.o",
7196
]
],
"size": 1341032
}
],
"CompUnits": {
"TqmdJ_d": {
"mode": 4,
"out": "TqmdJ_d.o",
"mod": "PVSS2AC_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"dc6nH_d": {
"mode": 4,
"out": "dc6nH_d.o",
"mod": "sram_dmux_w_0000",
"text": 43001,
"bytes": 96944,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"swWa5_d": {
"mode": 4,
"out": "swWa5_d.o",
"mod": "PRDW08DGZ_H_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"UJ4u7_d": {
"mode": 4,
"out": "UJ4u7_d.o",
"mod": "tsdn28hpcpuhdb4096x128m4mw_170a",
"text": 525189,
"bytes": 818370,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"EZJLH_d": {
"mode": 4,
"out": "EZJLH_d.o",
"mod": "PVSS1AC_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"jAdLC_d": {
"mode": 4,
"out": "jAdLC_d.o",
"mod": "clk_regfile",
"text": 110725,
"bytes": 206036,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"Z62Gy_d": {
"mode": 4,
"out": "Z62Gy_d.o",
"mod": "PDDW04DGZ_H_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"fEWTj_d": {
"mode": 4,
"out": "fEWTj_d.o",
"mod": "PVDD1ANA_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"reYIK_d": {
"mode": 4,
"out": "reYIK_d.o",
"mod": "std",
"text": 7411,
"bytes": 43792,
"cls": 7017,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"atFKr_d": {
"mode": 4,
"out": "atFKr_d.o",
"mod": "PDDW12DGZ_H_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"YTwQz_d": {
"mode": 4,
"out": "YTwQz_d.o",
"mod": "PDUW04DGZ_H_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"HYpLe_d": {
"mode": 4,
"out": "HYpLe_d.o",
"mod": "PDUW12DGZ_H_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"bhWYh_d": {
"mode": 4,
"out": "bhWYh_d.o",
"mod": "PENDCAP_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"EEqKt_d": {
"mode": 4,
"out": "EEqKt_d.o",
"mod": "PRDW16DGZ_H_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"B0f3F_d": {
"mode": 4,
"out": "B0f3F_d.o",
"mod": "PVSS3AC_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"hpMjC_d": {
"mode": 4,
"out": "hpMjC_d.o",
"mod": "PRUW12DGZ_H_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"IHYdB_d": {
"mode": 4,
"out": "IHYdB_d.o",
"mod": "spi_if",
"text": 411,
"bytes": 13044,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"Q3Wk7_d": {
"mode": 4,
"out": "Q3Wk7_d.o",
"mod": "reset_tb",
"text": 1042,
"bytes": 9314,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
},
"avdwk_d": {
"mode": 4,
"out": "avdwk_d.o",
"mod": "PVDD2POC_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32573_archive_1.a"
}
},
"reusePaths": {},
"stat": {
"ru_self_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.40158700000000003,
"ru_majflt": 0,
"ru_minflt": 7627,
"ru_stime_sec": 0.035873000000000002,
"ru_maxrss_kb": 62064,
"ru_nvcsw": 33
},
"cpu_cycles_end": 69836691114415132,
"ru_childs_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.0,
"ru_majflt": 0,
"ru_minflt": 0,
"ru_stime_sec": 0.0,
"ru_maxrss_kb": 0,
"ru_nvcsw": 0
},
"peak_mem_kb": 322972
}
}

View File

@ -1,805 +0,0 @@
{
"Modules": {
"PDDW12DGZ_V_G": {
"end_perf": [
2.8690469264984131,
0.37606400000000001,
0.032176000000000003,
322948,
322972,
69836691047959574,
81604378625,
0
],
"Compiled Times": 1,
"start_perf": [
2.8635768890380859,
0.37060100000000001,
0.032169000000000003,
322948,
322972,
1773384885.903055,
69836691033693488
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"dacif_0000": {
"end_perf": [
2.6351878643035889,
0.15501899999999999,
0.025003000000000001,
322948,
322948,
69836690439968244,
498216206337,
0
],
"Compiled Times": 1,
"start_perf": [
2.4561698436737061,
0.0,
0.00099599999999999992,
321944,
321944,
1773384885.4956479,
69836689974900332
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 2597,
"nQuads": 16245,
"nMops": 43142
},
"ramp_gen_0000": {
"end_perf": [
2.8006448745727539,
0.31751099999999999,
0.027956000000000002,
322948,
322972,
69836690870128870,
597000454145,
0
],
"Compiled Times": 1,
"start_perf": [
2.6352589130401611,
0.155081,
0.025013000000000001,
322948,
322948,
1773384885.674737,
69836690440076850
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 783,
"nQuads": 11555,
"nMops": 40957
},
"tsdn28hpcpuhdb4096x128m4mw_170a_Int_Array": {
"end_perf": [
2.8470809459686279,
0.355211,
0.031194,
322948,
322972,
69836690990859252,
485331304449,
0
],
"Compiled Times": 1,
"start_perf": [
2.8007068634033203,
0.31756800000000002,
0.027961,
322948,
322972,
1773384885.8401849,
69836690870232028
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 65,
"nQuads": 1663,
"nMops": 5779
},
"PDDW04DGZ_V_G": {
"end_perf": [
2.8635349273681641,
0.37056,
0.032169000000000003,
322948,
322972,
69836691033634384,
47244640257,
0
],
"Compiled Times": 1,
"start_perf": [
2.8578789234161377,
0.364927,
0.032169000000000003,
322948,
322972,
1773384885.897357,
69836691018884120
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRDW16DGZ_V_G": {
"end_perf": [
2.8906350135803223,
0.39467999999999998,
0.035149,
322948,
322972,
69836691104086814,
244813135873,
0
],
"Compiled Times": 1,
"start_perf": [
2.8851850032806396,
0.39018799999999998,
0.034190999999999999,
322948,
322972,
1773384885.9246631,
69836691089875366
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDUW12DGZ_V_G": {
"end_perf": [
2.8797669410705566,
0.384801,
0.034159000000000002,
322948,
322972,
69836691075832134,
150323855361,
0
],
"Compiled Times": 1,
"start_perf": [
2.8744430541992188,
0.38145800000000002,
0.032178999999999999,
322948,
322972,
1773384885.9139211,
69836691061947332
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"sirv_gnrl_dffl": {
"end_perf": [
2.899730920791626,
0.40274700000000002,
0.036178000000000002,
322948,
322972,
69836691127738948,
571230650369,
0
],
"Compiled Times": 1,
"start_perf": [
2.8959519863128662,
0.39896799999999999,
0.036178000000000002,
322948,
322972,
1773384885.93543,
69836691117869352
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 25,
"nQuads": 96,
"nMops": 172
},
"PENDCAPA_G": {
"end_perf": [
2.9033269882202148,
0.40530899999999997,
0.037212000000000002,
322948,
322972,
69836691137081298,
193273528321,
0
],
"Compiled Times": 1,
"start_perf": [
2.9019098281860352,
0.40492699999999998,
0.036178000000000002,
322948,
322972,
1773384885.9413879,
69836691133361482
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS3AC_V_G": {
"end_perf": [
2.9105758666992188,
0.41056100000000001,
0.039208,
322948,
322972,
69836691155927466,
468151435265,
0
],
"Compiled Times": 1,
"start_perf": [
2.909188985824585,
0.40917500000000001,
0.039208,
322948,
322972,
1773384885.948667,
69836691152285426
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS2AC_V_G": {
"end_perf": [
2.9091529846191406,
0.40914200000000001,
0.039204999999999997,
322948,
322972,
69836691152229760,
433791696897,
0
],
"Compiled Times": 1,
"start_perf": [
2.9077539443969727,
0.40777799999999997,
0.039170000000000003,
322948,
322972,
1773384885.947232,
69836691148554424
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"pulse_generator": {
"end_perf": [
2.8578338623046875,
0.36488500000000001,
0.032166,
322948,
322972,
69836691018814868,
554050781185,
0
],
"Compiled Times": 1,
"start_perf": [
2.8471298217773438,
0.35525699999999999,
0.031198,
322948,
322972,
1773384885.8866079,
69836690990936764
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 70,
"nQuads": 675,
"nMops": 1336
},
"PDUW04DGZ_V_G": {
"end_perf": [
2.8744008541107178,
0.38141599999999998,
0.032178999999999999,
322948,
322972,
69836691061880592,
115964116993,
0
],
"Compiled Times": 1,
"start_perf": [
2.8690869808197021,
0.37610199999999999,
0.032178999999999999,
322948,
322972,
1773384885.908565,
69836691048027428
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRDW08DGZ_V_G": {
"end_perf": [
2.8851418495178223,
0.39014799999999999,
0.034188000000000003,
322948,
322972,
69836691089809462,
210453397505,
0
],
"Compiled Times": 1,
"start_perf": [
2.8798079490661621,
0.38483899999999999,
0.034162999999999999,
322948,
322972,
1773384885.919286,
69836691075897444
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"lvds_if": {
"end_perf": [
2.9018659591674805,
0.40488200000000002,
0.036178000000000002,
322948,
322972,
69836691133288486,
721554505729,
0
],
"start_perf": [
2.8997728824615479,
0.40278999999999998,
0.036178000000000002,
322948,
322972,
1773384885.9392509,
69836691127806944
],
"Compiled Times": 1,
"child_modules": {},
"Compiled": "Yes",
"svclass": [
"lvds_if_vcs_virt_intf_C",
0,
0,
0,
0,
0
],
"nMops": 24,
"nRouts": 10,
"nQuads": 12
},
"PRUW12DGZ_V_G": {
"end_perf": [
2.8959109783172607,
0.39893000000000001,
0.036174999999999999,
322948,
322972,
69836691117808090,
279172874241,
0
],
"Compiled Times": 1,
"start_perf": [
2.8906748294830322,
0.39471699999999998,
0.035152000000000003,
322948,
322972,
1773384885.9301529,
69836691104151310
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PVDD1ANA_V_G": {
"end_perf": [
2.9048168659210205,
0.40679599999999999,
0.037214999999999998,
322948,
322972,
69836691140956986,
330712481793,
0
],
"Compiled Times": 1,
"start_perf": [
2.9033629894256592,
0.40534300000000001,
0.037214999999999998,
322948,
322972,
1773384885.9428411,
69836691137139448
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD2POC_V_G": {
"end_perf": [
2.9062600135803223,
0.40724300000000002,
0.038210000000000001,
322948,
322972,
69836691144709214,
365072220161,
0
],
"Compiled Times": 1,
"start_perf": [
2.9048538208007812,
0.40683399999999997,
0.037214999999999998,
322948,
322972,
1773384885.9443319,
69836691141017102
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS1AC_V_G": {
"end_perf": [
2.90771484375,
0.40774199999999999,
0.039167,
322948,
322972,
69836691148495194,
399431958529,
0
],
"Compiled Times": 1,
"start_perf": [
2.906296968460083,
0.40727799999999997,
0.038212999999999997,
322948,
322972,
1773384885.945775,
69836691144770184
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
}
},
"ObjArchives": [
{
"archive": "archive.0/_32574_archive_1.a",
"objects": [
[
"yeRHW_d.o",
583580
],
[
"AyqFm_d.o",
353522
],
[
"bghMB_d.o",
79734
],
[
"aJYLF_d.o",
23788
],
[
"sZaSM_d.o",
15774
],
[
"eR5Zz_d.o",
15774
],
[
"QGhk6_d.o",
15754
],
[
"NkwYe_d.o",
15754
],
[
"ZZxj5_d.o",
15774
],
[
"Jztd6_d.o",
15774
],
[
"pucZW_d.o",
15754
],
[
"BM4bj_d.o",
11420
],
[
"nS0i0_d.o",
11824
],
[
"wpYca_d.o",
7194
],
[
"BL1m7_d.o",
7196
],
[
"urn8Q_d.o",
7196
],
[
"I7RzE_d.o",
7196
],
[
"YBQ1m_d.o",
7196
],
[
"i0k2A_d.o",
7196
]
],
"size": 1217400
}
],
"CompUnits": {
"I7RzE_d": {
"mode": 4,
"out": "I7RzE_d.o",
"mod": "PVSS1AC_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"yeRHW_d": {
"mode": 4,
"out": "yeRHW_d.o",
"mod": "dacif_0000",
"text": 323645,
"bytes": 583580,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"pucZW_d": {
"mode": 4,
"out": "pucZW_d.o",
"mod": "PRUW12DGZ_V_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"i0k2A_d": {
"mode": 4,
"out": "i0k2A_d.o",
"mod": "PVSS3AC_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"sZaSM_d": {
"mode": 4,
"out": "sZaSM_d.o",
"mod": "PDDW04DGZ_V_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"AyqFm_d": {
"mode": 4,
"out": "AyqFm_d.o",
"mod": "ramp_gen_0000",
"text": 266897,
"bytes": 353522,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"NkwYe_d": {
"mode": 4,
"out": "NkwYe_d.o",
"mod": "PDUW12DGZ_V_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"Jztd6_d": {
"mode": 4,
"out": "Jztd6_d.o",
"mod": "PRDW16DGZ_V_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"bghMB_d": {
"mode": 4,
"out": "bghMB_d.o",
"mod": "tsdn28hpcpuhdb4096x128m4mw_170a_Int_Array",
"text": 42610,
"bytes": 79734,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"wpYca_d": {
"mode": 4,
"out": "wpYca_d.o",
"mod": "PENDCAPA_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"eR5Zz_d": {
"mode": 4,
"out": "eR5Zz_d.o",
"mod": "PDDW12DGZ_V_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"aJYLF_d": {
"mode": 4,
"out": "aJYLF_d.o",
"mod": "pulse_generator",
"text": 10075,
"bytes": 23788,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"QGhk6_d": {
"mode": 4,
"out": "QGhk6_d.o",
"mod": "PDUW04DGZ_V_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"ZZxj5_d": {
"mode": 4,
"out": "ZZxj5_d.o",
"mod": "PRDW08DGZ_V_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"BL1m7_d": {
"mode": 4,
"out": "BL1m7_d.o",
"mod": "PVDD1ANA_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"BM4bj_d": {
"mode": 4,
"out": "BM4bj_d.o",
"mod": "sirv_gnrl_dffl",
"text": 1659,
"bytes": 11420,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"nS0i0_d": {
"mode": 4,
"out": "nS0i0_d.o",
"mod": "lvds_if",
"text": 399,
"bytes": 11824,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"urn8Q_d": {
"mode": 4,
"out": "urn8Q_d.o",
"mod": "PVDD2POC_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
},
"YBQ1m_d": {
"mode": 4,
"out": "YBQ1m_d.o",
"mod": "PVSS2AC_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32574_archive_1.a"
}
},
"reusePaths": {},
"stat": {
"ru_self_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.41078599999999998,
"ru_majflt": 0,
"ru_minflt": 7318,
"ru_stime_sec": 0.039208,
"ru_maxrss_kb": 61652,
"ru_nvcsw": 23
},
"cpu_cycles_end": 69836691156452382,
"ru_childs_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.0,
"ru_majflt": 0,
"ru_minflt": 0,
"ru_stime_sec": 0.0,
"ru_maxrss_kb": 0,
"ru_nvcsw": 0
},
"peak_mem_kb": 322972
}
}

View File

@ -1,799 +0,0 @@
{
"Modules": {
"dac_regfile": {
"end_perf": [
2.6093778610229492,
0.136378,
0.017047,
322948,
322948,
69836690372907400,
506806140929,
0
],
"Compiled Times": 1,
"start_perf": [
2.4570310115814209,
0.00107,
0.0,
321944,
321944,
1773384885.4965091,
69836689977165492
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 1225,
"nQuads": 9772,
"nMops": 29286
},
"PRCUT_G": {
"end_perf": [
2.8436558246612549,
0.33948699999999998,
0.038053999999999998,
322948,
322972,
69836690981936998,
197568495617,
0
],
"Compiled Times": 1,
"start_perf": [
2.8420579433441162,
0.33887400000000001,
0.037095000000000003,
322948,
322972,
1773384885.881536,
69836690977772840
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD1DGZ_H_G": {
"end_perf": [
2.8451728820800781,
0.340951,
0.038106000000000001,
322948,
322972,
69836690985882028,
335007449089,
0
],
"Compiled Times": 1,
"start_perf": [
2.8436939716339111,
0.33952100000000002,
0.038058000000000002,
322948,
322972,
1773384885.883172,
69836690981999182
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"spi_bus_decoder_0000": {
"end_perf": [
2.7449018955230713,
0.264955,
0.023994999999999999,
322948,
322972,
69836690725190666,
661424963585,
0
],
"Compiled Times": 1,
"start_perf": [
2.7085568904876709,
0.22964100000000001,
0.022963999999999998,
322948,
322972,
1773384885.748035,
69836690630644230
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 394,
"nQuads": 2554,
"nMops": 6444
},
"PRDW16SDGZ_H_G": {
"end_perf": [
2.8182709217071533,
0.32364900000000002,
0.031158000000000002,
322948,
322972,
69836690915961284,
249108103169,
0
],
"Compiled Times": 1,
"start_perf": [
2.7986049652099609,
0.31010700000000002,
0.0281,
322948,
322972,
1773384885.838083,
69836690864766998
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"systemregfile": {
"end_perf": [
2.7084980010986328,
0.22958799999999999,
0.022957999999999999,
322948,
322972,
69836690630544210,
493921239041,
0
],
"Compiled Times": 1,
"start_perf": [
2.6094708442687988,
0.136378,
0.017141,
322948,
322948,
1773384885.6489489,
69836690373020132
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 881,
"nQuads": 6948,
"nMops": 18207
},
"sirv_gnrl_ltch": {
"end_perf": [
2.8403358459472656,
0.33812700000000001,
0.036119999999999999,
322948,
322972,
69836690973315176,
584115552257,
0
],
"Compiled Times": 1,
"start_perf": [
2.8288910388946533,
0.33039200000000002,
0.034040000000000001,
322948,
322972,
1773384885.8683691,
69836690943512002
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 17,
"nQuads": 72,
"nMops": 147
},
"DA4008_DEM_Parallel_PRBS_64CH": {
"end_perf": [
2.747046947479248,
0.26708100000000001,
0.024007000000000001,
322948,
322972,
69836690730753564,
648540061697,
0
],
"Compiled Times": 1,
"start_perf": [
2.7449519634246826,
0.26500099999999999,
0.024,
322948,
322972,
1773384885.78443,
69836690725274166
],
"child_modules": {
"DA4008_DEM_Parallel_PRBS_1CH": 64
},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PDDW04SDGZ_H_G": {
"end_perf": [
2.7527270317077637,
0.272758,
0.02401,
322948,
322972,
69836690745531766,
51539607553,
0
],
"Compiled Times": 1,
"start_perf": [
2.7470848560333252,
0.26711699999999999,
0.02401,
322948,
322972,
1773384885.7865629,
69836690730814168
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDDW12SDGZ_H_G": {
"end_perf": [
2.7581570148468018,
0.27818300000000001,
0.024015000000000002,
322948,
322972,
69836690759647674,
85899345921,
0
],
"Compiled Times": 1,
"start_perf": [
2.7527709007263184,
0.27280199999999999,
0.02401,
322948,
322972,
1773384885.792249,
69836690745602100
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDUW12SDGZ_H_G": {
"end_perf": [
2.7792508602142334,
0.296429,
0.026037000000000001,
322948,
322972,
69836690814499374,
154618822657,
0
],
"Compiled Times": 1,
"start_perf": [
2.7637019157409668,
0.28274199999999999,
0.024976999999999999,
322948,
322972,
1773384885.80318,
69836690774017930
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDUW04SDGZ_H_G": {
"end_perf": [
2.7636580467224121,
0.28270200000000001,
0.024972999999999999,
322948,
322972,
69836690773948476,
120259084289,
0
],
"Compiled Times": 1,
"start_perf": [
2.7581989765167236,
0.27822200000000002,
0.024018999999999999,
322948,
322972,
1773384885.797677,
69836690759712114
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRDW08SDGZ_H_G": {
"end_perf": [
2.7985589504241943,
0.31006499999999998,
0.028095999999999999,
322948,
322972,
69836690864697816,
214748364801,
0
],
"Compiled Times": 1,
"start_perf": [
2.779296875,
0.29647200000000001,
0.026041000000000002,
322948,
322972,
1773384885.8187749,
69836690814565558
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRUW12SDGZ_H_G": {
"end_perf": [
2.8288469314575195,
0.33035100000000001,
0.034035999999999997,
322948,
322972,
69836690943442890,
283467841537,
0
],
"Compiled Times": 1,
"start_perf": [
2.8183219432830811,
0.32369700000000001,
0.031163,
322948,
322972,
1773384885.8578,
69836690916033182
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PVDD3A_H_G": {
"end_perf": [
2.8468139171600342,
0.341553,
0.039063000000000001,
322948,
322972,
69836690990152508,
369367187457,
0
],
"Compiled Times": 1,
"start_perf": [
2.8452110290527344,
0.34098699999999998,
0.038109999999999998,
322948,
322972,
1773384885.8846891,
69836690985943462
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PCLAMPC_H_G": {
"end_perf": [
2.8420059680938721,
0.33882699999999999,
0.037089999999999998,
322948,
322972,
69836690977679264,
17179869185,
0
],
"Compiled Times": 1,
"start_perf": [
2.8403799533843994,
0.338167,
0.036124000000000003,
322948,
322972,
1773384885.879858,
69836690973414116
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS1ANA_H_G": {
"end_perf": [
2.848397970199585,
0.341588,
0.040565999999999998,
322948,
322972,
69836690994266096,
403726925825,
0
],
"Compiled Times": 1,
"start_perf": [
2.8468518257141113,
0.341588,
0.039066999999999998,
322948,
322972,
1773384885.8863299,
69836690990211682
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS2ANA_H_G": {
"end_perf": [
2.8502898216247559,
0.34193099999999998,
0.042113999999999999,
322948,
322972,
69836690999184708,
438086664193,
0
],
"Compiled Times": 1,
"start_perf": [
2.8484358787536621,
0.341588,
0.040604000000000001,
322948,
322972,
1773384885.8879139,
69836690994331764
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS3DGZ_H_G": {
"end_perf": [
2.8518788814544678,
0.34346700000000002,
0.042118000000000003,
322948,
322972,
69836691003320280,
472446402561,
0
],
"Compiled Times": 1,
"start_perf": [
2.8503270149230957,
0.34196500000000002,
0.042118000000000003,
322948,
322972,
1773384885.8898051,
69836690999245470
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
}
},
"ObjArchives": [
{
"archive": "archive.0/_32575_archive_1.a",
"objects": [
[
"LR0zI_d.o",
370598
],
[
"qcK8J_d.o",
254202
],
[
"qLaCg_d.o",
102370
],
[
"q09PC_d.o",
14484
],
[
"CQ4ek_d.o",
15776
],
[
"KpuhN_d.o",
15776
],
[
"wGYhm_d.o",
15756
],
[
"uKPxf_d.o",
15756
],
[
"S90qD_d.o",
15776
],
[
"V63WF_d.o",
15776
],
[
"EkH6u_d.o",
15756
],
[
"UTi0b_d.o",
11042
],
[
"UyGax_d.o",
7196
],
[
"uQmb5_d.o",
7160
],
[
"Eie6s_d.o",
7196
],
[
"DTJPF_d.o",
7194
],
[
"HtwuV_d.o",
7196
],
[
"g8kcb_d.o",
7196
],
[
"rq1J0_d.o",
7196
]
],
"size": 913402
}
],
"CompUnits": {
"qLaCg_d": {
"mode": 4,
"out": "qLaCg_d.o",
"mod": "spi_bus_decoder_0000",
"text": 50697,
"bytes": 102370,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"Eie6s_d": {
"mode": 4,
"out": "Eie6s_d.o",
"mod": "PVDD1DGZ_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"LR0zI_d": {
"mode": 4,
"out": "LR0zI_d.o",
"mod": "dac_regfile",
"text": 206093,
"bytes": 370598,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"EkH6u_d": {
"mode": 4,
"out": "EkH6u_d.o",
"mod": "PRUW12SDGZ_H_G",
"text": 3571,
"bytes": 15756,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"qcK8J_d": {
"mode": 4,
"out": "qcK8J_d.o",
"mod": "systemregfile",
"text": 132009,
"bytes": 254202,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"V63WF_d": {
"mode": 4,
"out": "V63WF_d.o",
"mod": "PRDW16SDGZ_H_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"g8kcb_d": {
"mode": 4,
"out": "g8kcb_d.o",
"mod": "PVSS2ANA_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"CQ4ek_d": {
"mode": 4,
"out": "CQ4ek_d.o",
"mod": "PDDW04SDGZ_H_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"q09PC_d": {
"mode": 4,
"out": "q09PC_d.o",
"mod": "DA4008_DEM_Parallel_PRBS_64CH",
"text": 315,
"bytes": 14484,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"KpuhN_d": {
"mode": 4,
"out": "KpuhN_d.o",
"mod": "PDDW12SDGZ_H_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"wGYhm_d": {
"mode": 4,
"out": "wGYhm_d.o",
"mod": "PDUW04SDGZ_H_G",
"text": 3571,
"bytes": 15756,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"UTi0b_d": {
"mode": 4,
"out": "UTi0b_d.o",
"mod": "sirv_gnrl_ltch",
"text": 1547,
"bytes": 11042,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"uKPxf_d": {
"mode": 4,
"out": "uKPxf_d.o",
"mod": "PDUW12SDGZ_H_G",
"text": 3571,
"bytes": 15756,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"S90qD_d": {
"mode": 4,
"out": "S90qD_d.o",
"mod": "PRDW08SDGZ_H_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"HtwuV_d": {
"mode": 4,
"out": "HtwuV_d.o",
"mod": "PVSS1ANA_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"UyGax_d": {
"mode": 4,
"out": "UyGax_d.o",
"mod": "PCLAMPC_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"uQmb5_d": {
"mode": 4,
"out": "uQmb5_d.o",
"mod": "PRCUT_G",
"text": 299,
"bytes": 7160,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"DTJPF_d": {
"mode": 4,
"out": "DTJPF_d.o",
"mod": "PVDD3A_H_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
},
"rq1J0_d": {
"mode": 4,
"out": "rq1J0_d.o",
"mod": "PVSS3DGZ_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32575_archive_1.a"
}
},
"reusePaths": {},
"stat": {
"ru_self_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.343754,
"ru_majflt": 0,
"ru_minflt": 6707,
"ru_stime_sec": 0.042118000000000003,
"ru_maxrss_kb": 60388,
"ru_nvcsw": 59
},
"cpu_cycles_end": 69836691004001638,
"ru_childs_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.0,
"ru_majflt": 0,
"ru_minflt": 0,
"ru_stime_sec": 0.0,
"ru_maxrss_kb": 0,
"ru_nvcsw": 0
},
"peak_mem_kb": 322972
}
}

View File

@ -1,804 +0,0 @@
{
"Modules": {
"PDDW04SDGZ_V_G": {
"end_perf": [
2.778831958770752,
0.29907099999999998,
0.023005000000000001,
322948,
322972,
69836690813407246,
55834574849,
0
],
"Compiled Times": 1,
"start_perf": [
2.7731578350067139,
0.29537600000000003,
0.021026,
322948,
322972,
1773384885.8126359,
69836690798606132
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRDW16SDGZ_V_G": {
"end_perf": [
2.8387229442596436,
0.33497700000000002,
0.032190000000000003,
322948,
322972,
69836690969136296,
253403070465,
0
],
"Compiled Times": 1,
"start_perf": [
2.8288609981536865,
0.32991900000000002,
0.030175,
322948,
322972,
1773384885.8683391,
69836690943435312
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"DEM_Reverse_64CH_0000": {
"end_perf": [
2.6399428844451904,
0.165212,
0.018023000000000001,
322948,
322948,
69836690452312058,
691489734657,
0
],
"Compiled Times": 1,
"start_perf": [
2.4571409225463867,
0.00042999999999999999,
0.0,
321944,
321944,
1773384885.496619,
69836689977113818
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 1504,
"nQuads": 10851,
"nMops": 32497
},
"awg_top": {
"end_perf": [
2.7368478775024414,
0.261131,
0.019009000000000002,
322948,
322972,
69836690704251028,
631360192513,
0
],
"Compiled Times": 1,
"start_perf": [
2.640002965927124,
0.165267,
0.018029,
322948,
322948,
1773384885.679481,
69836690452408106
],
"child_modules": {
"dpram": 1,
"sram_if_0001": 1,
"sram_dmux_w_0000": 1,
"sram_if_0002": 1
},
"Compiled": "Yes",
"nRouts": 770,
"nQuads": 6143,
"nMops": 16760
},
"PDUW12SDGZ_V_G": {
"end_perf": [
2.8217568397521973,
0.32550699999999999,
0.028216999999999999,
322948,
322972,
69836690925011144,
158913789953,
0
],
"Compiled Times": 1,
"start_perf": [
2.8023278713226318,
0.31373499999999999,
0.025218999999999998,
322948,
322972,
1773384885.8418059,
69836690874448476
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"syn_fwft_fifo": {
"end_perf": [
2.7625110149383545,
0.28581699999999999,
0.019987000000000001,
322948,
322972,
69836690770976816,
502511173633,
0
],
"Compiled Times": 1,
"start_perf": [
2.7368969917297363,
0.26117699999999999,
0.019012000000000001,
322948,
322972,
1773384885.7763751,
69836690704353530
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 165,
"nQuads": 1370,
"nMops": 3886
},
"rst_gen_unit": {
"end_perf": [
2.7731108665466309,
0.29533199999999998,
0.021023,
322948,
322972,
69836690798531622,
541165879297,
0
],
"Compiled Times": 1,
"start_perf": [
2.7625608444213867,
0.28586400000000001,
0.019990000000000001,
322948,
322972,
1773384885.8020389,
69836690771064696
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 107,
"nQuads": 576,
"nMops": 1152
},
"PDDW12SDGZ_V_G": {
"end_perf": [
2.7938368320465088,
0.30766700000000002,
0.024209000000000001,
322948,
322972,
69836690852415562,
90194313217,
0
],
"Compiled Times": 1,
"start_perf": [
2.7788748741149902,
0.29911199999999999,
0.023008000000000001,
322948,
322972,
1773384885.8183529,
69836690813469070
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDUW04SDGZ_V_G": {
"end_perf": [
2.8022840023040771,
0.313693,
0.025215999999999999,
322948,
322972,
69836690874381030,
124554051585,
0
],
"Compiled Times": 1,
"start_perf": [
2.7938778400421143,
0.30770700000000001,
0.024212999999999998,
322948,
322972,
1773384885.8333559,
69836690852479932
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 25,
"nQuads": 151,
"nMops": 361
},
"PVDD1DGZ_V_G": {
"end_perf": [
2.8558690547943115,
0.34797099999999997,
0.036205000000000001,
322948,
322972,
69836691013690776,
339302416385,
0
],
"Compiled Times": 1,
"start_perf": [
2.8542728424072266,
0.34734300000000001,
0.035236999999999997,
322948,
322972,
1773384885.8937509,
69836691009501936
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PRDW08SDGZ_V_G": {
"end_perf": [
2.8288178443908691,
0.32987899999999998,
0.030171,
322948,
322972,
69836690943364558,
219043332097,
0
],
"Compiled Times": 1,
"start_perf": [
2.8218009471893311,
0.325548,
0.028219999999999999,
322948,
322972,
1773384885.861279,
69836690925076522
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRUW12SDGZ_V_G": {
"end_perf": [
2.8450679779052734,
0.34127000000000002,
0.032214,
322948,
322972,
69836690985625808,
287762808833,
0
],
"Compiled Times": 1,
"start_perf": [
2.8387730121612549,
0.33502300000000002,
0.032194,
322948,
322972,
1773384885.8782511,
69836690969213160
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"ulink_descrambler_128": {
"end_perf": [
2.8509578704833984,
0.34611799999999998,
0.033203000000000003,
322948,
322972,
69836691000926000,
519691042817,
0
],
"Compiled Times": 1,
"start_perf": [
2.8451159000396729,
0.34131499999999998,
0.032217999999999997,
322948,
322972,
1773384885.884594,
69836690985702808
],
"child_modules": {
"ulink_descrambler_32": 4
},
"Compiled": "Yes",
"nRouts": 34,
"nQuads": 211,
"nMops": 453
},
"PCLAMPC_V_G": {
"end_perf": [
2.8527328968048096,
0.34686600000000001,
0.034182999999999998,
322948,
322972,
69836691005539326,
21474836481,
0
],
"Compiled Times": 1,
"start_perf": [
2.8509988784790039,
0.34615600000000002,
0.033205999999999999,
322948,
322972,
1773384885.8904769,
69836691000993060
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS1ANA_V_G": {
"end_perf": [
2.8590118885040283,
0.349997,
0.037212000000000002,
322948,
322972,
69836691021858572,
408021893121,
0
],
"Compiled Times": 1,
"start_perf": [
2.8575809001922607,
0.34861500000000001,
0.037171999999999997,
322948,
322972,
1773384885.897059,
69836691018104488
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PRCUTA_G": {
"end_perf": [
2.8542368412017822,
0.34731000000000001,
0.035234000000000001,
322948,
322972,
69836691009444220,
201863462913,
0
],
"Compiled Times": 1,
"start_perf": [
2.8527719974517822,
0.34690199999999999,
0.034187000000000002,
322948,
322972,
1773384885.8922501,
69836691005602740
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD3A_V_G": {
"end_perf": [
2.8575448989868164,
0.34858299999999998,
0.037168,
322948,
322972,
69836691018048004,
373662154753,
0
],
"Compiled Times": 1,
"start_perf": [
2.8559069633483887,
0.34800599999999998,
0.036207999999999997,
322948,
322972,
1773384885.895385,
69836691013750250
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS2ANA_V_G": {
"end_perf": [
2.8607959747314453,
0.35003000000000001,
0.038941000000000003,
322948,
322972,
69836691026503098,
442381631489,
0
],
"Compiled Times": 1,
"start_perf": [
2.8590478897094727,
0.35003000000000001,
0.037214999999999998,
322948,
322972,
1773384885.898526,
69836691021921184
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS3DGZ_V_G": {
"end_perf": [
2.8625228404998779,
0.350524,
0.040174000000000001,
322948,
322972,
69836691030989060,
476741369857,
0
],
"Compiled Times": 1,
"start_perf": [
2.8608348369598389,
0.35003000000000001,
0.038981000000000002,
322948,
322972,
1773384885.9003129,
69836691026565620
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
}
},
"ObjArchives": [
{
"archive": "archive.0/_32576_archive_1.a",
"objects": [
[
"YnCHV_d.o",
424684
],
[
"J5zQK_d.o",
224648
],
[
"gzftm_d.o",
58932
],
[
"anuMN_d.o",
26100
],
[
"J6fGD_d.o",
15776
],
[
"Pzaun_d.o",
15776
],
[
"mJZpP_d.o",
16200
],
[
"qCQFW_d.o",
15756
],
[
"JznNw_d.o",
15776
],
[
"YRh5I_d.o",
15776
],
[
"yt645_d.o",
15756
],
[
"qxEhc_d.o",
15890
],
[
"EyyeT_d.o",
7196
],
[
"uuDJt_d.o",
7192
],
[
"sPggV_d.o",
7196
],
[
"t6fPF_d.o",
7194
],
[
"gL5Pd_d.o",
7196
],
[
"Md441_d.o",
7196
],
[
"IZu3i_d.o",
7196
]
],
"size": 911436
}
],
"CompUnits": {
"YnCHV_d": {
"mode": 4,
"out": "YnCHV_d.o",
"mod": "DEM_Reverse_64CH_0000",
"text": 266159,
"bytes": 424684,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"J5zQK_d": {
"mode": 4,
"out": "J5zQK_d.o",
"mod": "awg_top",
"text": 117645,
"bytes": 224648,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"gzftm_d": {
"mode": 4,
"out": "gzftm_d.o",
"mod": "syn_fwft_fifo",
"text": 28013,
"bytes": 58932,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"yt645_d": {
"mode": 4,
"out": "yt645_d.o",
"mod": "PRUW12SDGZ_V_G",
"text": 3571,
"bytes": 15756,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"gL5Pd_d": {
"mode": 4,
"out": "gL5Pd_d.o",
"mod": "PVSS1ANA_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"anuMN_d": {
"mode": 4,
"out": "anuMN_d.o",
"mod": "rst_gen_unit",
"text": 9751,
"bytes": 26100,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"YRh5I_d": {
"mode": 4,
"out": "YRh5I_d.o",
"mod": "PRDW16SDGZ_V_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"qCQFW_d": {
"mode": 4,
"out": "qCQFW_d.o",
"mod": "PDUW12SDGZ_V_G",
"text": 3571,
"bytes": 15756,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"J6fGD_d": {
"mode": 4,
"out": "J6fGD_d.o",
"mod": "PDDW04SDGZ_V_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"mJZpP_d": {
"mode": 4,
"out": "mJZpP_d.o",
"mod": "PDUW04SDGZ_V_G",
"text": 3835,
"bytes": 16200,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"Pzaun_d": {
"mode": 4,
"out": "Pzaun_d.o",
"mod": "PDDW12SDGZ_V_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"JznNw_d": {
"mode": 4,
"out": "JznNw_d.o",
"mod": "PRDW08SDGZ_V_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"qxEhc_d": {
"mode": 4,
"out": "qxEhc_d.o",
"mod": "ulink_descrambler_128",
"text": 4043,
"bytes": 15890,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"EyyeT_d": {
"mode": 4,
"out": "EyyeT_d.o",
"mod": "PCLAMPC_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"t6fPF_d": {
"mode": 4,
"out": "t6fPF_d.o",
"mod": "PVDD3A_V_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"sPggV_d": {
"mode": 4,
"out": "sPggV_d.o",
"mod": "PVDD1DGZ_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"uuDJt_d": {
"mode": 4,
"out": "uuDJt_d.o",
"mod": "PRCUTA_G",
"text": 299,
"bytes": 7192,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"Md441_d": {
"mode": 4,
"out": "Md441_d.o",
"mod": "PVSS2ANA_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
},
"IZu3i_d": {
"mode": 4,
"out": "IZu3i_d.o",
"mod": "PVSS3DGZ_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32576_archive_1.a"
}
},
"reusePaths": {},
"stat": {
"ru_self_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.35073700000000002,
"ru_majflt": 0,
"ru_minflt": 6697,
"ru_stime_sec": 0.040198999999999999,
"ru_maxrss_kb": 60960,
"ru_nvcsw": 77
},
"cpu_cycles_end": 69836691031546354,
"ru_childs_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.0,
"ru_majflt": 0,
"ru_minflt": 0,
"ru_stime_sec": 0.0,
"ru_maxrss_kb": 0,
"ru_nvcsw": 0
},
"peak_mem_kb": 322972
}
}

View File

@ -1,808 +0,0 @@
{
"Modules": {
"PDUW16DGZ_H_G": {
"end_perf": [
2.7402908802032471,
0.25465500000000002,
0.028072,
322948,
322972,
69836690713194618,
163208757249,
0
],
"Compiled Times": 1,
"start_perf": [
2.73478102684021,
0.249196,
0.028021999999999998,
322948,
322972,
1773384885.7742591,
69836690698830370
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"sram_if": {
"end_perf": [
2.7646160125732422,
0.269903,
0.036866000000000003,
322948,
322972,
69836690776419328,
605590388737,
0
],
"Compiled Times": 1,
"start_perf": [
2.7624969482421875,
0.269903,
0.034986999999999997,
322948,
322972,
1773384885.801975,
69836690770879216
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 13,
"nQuads": 30,
"nMops": 73
},
"DEM_PhaseSync_4008": {
"end_perf": [
2.5689079761505127,
0.094365000000000004,
0.017066000000000001,
322948,
322948,
69836690267631426,
639950127105,
0
],
"Compiled Times": 1,
"start_perf": [
2.4582059383392334,
0.00072599999999999997,
0.0,
321944,
321944,
1773384885.497684,
69836689979872840
],
"child_modules": {
"DA4008_DEM_Parallel_PRBS_64CH": 1
},
"Compiled": "Yes",
"nRouts": 1320,
"nQuads": 10922,
"nMops": 21548
},
"DA4008_DEM_Parallel_PRBS_1CH": {
"end_perf": [
2.7182228565216064,
0.23662,
0.024063000000000001,
322948,
322972,
69836690655823104,
644245094401,
0
],
"Compiled Times": 1,
"start_perf": [
2.7063329219818115,
0.22577800000000001,
0.023078999999999999,
322948,
322972,
1773384885.745811,
69836690624871808
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 56,
"nQuads": 590,
"nMops": 1959
},
"PVDD1A_H_G": {
"end_perf": [
2.7575149536132812,
0.26591900000000002,
0.033988999999999998,
322948,
322972,
69836690757954188,
309237645313,
0
],
"Compiled Times": 1,
"start_perf": [
2.7563748359680176,
0.265683,
0.033085000000000003,
322948,
322972,
1773384885.7958529,
69836690754998860
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS1DGZ_H_G": {
"end_perf": [
2.761293888092041,
0.26961000000000002,
0.034077000000000003,
322948,
322972,
69836690767780404,
412316860417,
0
],
"Compiled Times": 1,
"start_perf": [
2.7601828575134277,
0.268511,
0.034063999999999997,
322948,
322972,
1773384885.7996609,
69836690764861080
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"ulink_rx": {
"end_perf": [
2.682548999786377,
0.203065,
0.022006999999999999,
322948,
322972,
69836690563091384,
511101108225,
0
],
"Compiled Times": 1,
"start_perf": [
2.5689740180969238,
0.094421000000000005,
0.017076000000000001,
322948,
322948,
1773384885.6084521,
69836690267730344
],
"child_modules": {
"ulink_descrambler_128": 1,
"ulink_frame_receiver_0000": 1
},
"Compiled": "Yes",
"nRouts": 837,
"nQuads": 6216,
"nMops": 16015
},
"PDB3A_H_G": {
"end_perf": [
2.7563438415527344,
0.26565499999999997,
0.033080999999999999,
322948,
322972,
69836690754911446,
25769803777,
0
],
"Compiled Times": 1,
"start_perf": [
2.7551488876342773,
0.26548300000000002,
0.032058000000000003,
322948,
322972,
1773384885.794627,
69836690751771512
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"dpram": {
"end_perf": [
2.7062859535217285,
0.22573399999999999,
0.023074999999999998,
322948,
322972,
69836690624786902,
614180323329,
0
],
"Compiled Times": 1,
"start_perf": [
2.6826069355010986,
0.20311799999999999,
0.022012,
322948,
322972,
1773384885.722085,
69836690563175430
],
"child_modules": {
"tsdn28hpcpuhdb4096x128m4mw_170a": 8
},
"Compiled": "Yes",
"nRouts": 198,
"nQuads": 1187,
"nMops": 6110
},
"PDDW16DGZ_H_G": {
"end_perf": [
2.729464054107666,
0.24485799999999999,
0.027042,
322948,
322972,
69836690685042122,
94489280513,
0
],
"Compiled Times": 1,
"start_perf": [
2.7239580154418945,
0.23937600000000001,
0.027042,
322948,
322972,
1773384885.7634361,
69836690670685898
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDDW08DGZ_H_G": {
"end_perf": [
2.7239148616790771,
0.23933699999999999,
0.027038,
322948,
322972,
69836690670615464,
60129542145,
0
],
"Compiled Times": 1,
"start_perf": [
2.7182679176330566,
0.23666100000000001,
0.024067000000000002,
322948,
322972,
1773384885.757746,
69836690655895536
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDUW08DGZ_H_G": {
"end_perf": [
2.7347400188446045,
0.24915799999999999,
0.028017,
322948,
322972,
69836690698758434,
128849018881,
0
],
"Compiled Times": 1,
"start_perf": [
2.7295069694519043,
0.24490100000000001,
0.027042,
322948,
322972,
1773384885.768985,
69836690685110534
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRDW12DGZ_H_G": {
"end_perf": [
2.7455599308013916,
0.25899699999999998,
0.028999,
322948,
322972,
69836690726878700,
223338299393,
0
],
"Compiled Times": 1,
"start_perf": [
2.7403340339660645,
0.25469399999999998,
0.028076,
322948,
322972,
1773384885.7798121,
69836690713260946
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRUW08DGZ_H_G": {
"end_perf": [
2.7496199607849121,
0.26205099999999998,
0.030005,
322948,
322972,
69836690737436088,
257698037761,
0
],
"Compiled Times": 1,
"start_perf": [
2.7455940246582031,
0.25902799999999998,
0.029003000000000001,
322948,
322972,
1773384885.7850721,
69836690726929450
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRUW16DGZ_H_G": {
"end_perf": [
2.7537879943847656,
0.26416099999999998,
0.032018999999999999,
322948,
322972,
69836690748271586,
292057776129,
0
],
"Compiled Times": 1,
"start_perf": [
2.74965500831604,
0.26208199999999998,
0.030009000000000001,
322948,
322972,
1773384885.7891331,
69836690737490574
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"iopad": {
"end_perf": [
2.7551178932189941,
0.265455,
0.032055,
322948,
322972,
69836690751720038,
489626271745,
0
],
"Compiled Times": 1,
"start_perf": [
2.753821849822998,
0.26419100000000001,
0.032023000000000003,
322948,
322972,
1773384885.7932999,
69836690748320624
],
"child_modules": {
"PDUW08SDGZ_V_G": 3,
"PDUW04SDGZ_V_G": 3,
"PDDW04SDGZ_V_G": 2
},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD2ANA_H_G": {
"end_perf": [
2.7589929103851318,
0.26734200000000002,
0.034042999999999997,
322948,
322972,
69836690761797324,
343597383681,
0
],
"Compiled Times": 1,
"start_perf": [
2.7575440406799316,
0.26594400000000001,
0.033992000000000001,
322948,
322972,
1773384885.7970221,
69836690757998506
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD3AC_H_G": {
"end_perf": [
2.7601540088653564,
0.26848499999999997,
0.034061000000000001,
322948,
322972,
69836690764815728,
377957122049,
0
],
"Compiled Times": 1,
"start_perf": [
2.7590219974517822,
0.26736799999999999,
0.034046,
322948,
322972,
1773384885.7985001,
69836690761843606
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS2DGZ_H_G": {
"end_perf": [
2.7624669075012207,
0.269876,
0.034983,
322948,
322972,
69836690770830508,
446676598785,
0
],
"Compiled Times": 1,
"start_perf": [
2.7613248825073242,
0.26963799999999999,
0.034079999999999999,
322948,
322972,
1773384885.8008029,
69836690767832226
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
}
},
"ObjArchives": [
{
"archive": "archive.0/_32577_archive_1.a",
"objects": [
[
"sIRhK_d.o",
299032
],
[
"dteMU_d.o",
229374
],
[
"bQxt6_d.o",
83732
],
[
"cQW1k_d.o",
27078
],
[
"C0gYT_d.o",
15774
],
[
"GzkJA_d.o",
15774
],
[
"KkPJH_d.o",
15754
],
[
"M7qR3_d.o",
15754
],
[
"VaZm2_d.o",
15774
],
[
"fLemy_d.o",
15754
],
[
"AVYgt_d.o",
15754
],
[
"ga3jL_d.o",
8400
],
[
"dfLHW_d.o",
7194
],
[
"zNPu5_d.o",
7194
],
[
"mZVHG_d.o",
7196
],
[
"U0PST_d.o",
7196
],
[
"Zp1LH_d.o",
7196
],
[
"ke5cH_d.o",
7196
],
[
"NABmh_d.o",
9728
]
],
"size": 810854
}
],
"CompUnits": {
"U0PST_d": {
"mode": 4,
"out": "U0PST_d.o",
"mod": "PVDD3AC_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"sIRhK_d": {
"mode": 4,
"out": "sIRhK_d.o",
"mod": "DEM_PhaseSync_4008",
"text": 197791,
"bytes": 299032,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"dteMU_d": {
"mode": 4,
"out": "dteMU_d.o",
"mod": "ulink_rx",
"text": 111749,
"bytes": 229374,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"zNPu5_d": {
"mode": 4,
"out": "zNPu5_d.o",
"mod": "PVDD1A_H_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"bQxt6_d": {
"mode": 4,
"out": "bQxt6_d.o",
"mod": "dpram",
"text": 51639,
"bytes": 83732,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"cQW1k_d": {
"mode": 4,
"out": "cQW1k_d.o",
"mod": "DA4008_DEM_Parallel_PRBS_1CH",
"text": 14187,
"bytes": 27078,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"KkPJH_d": {
"mode": 4,
"out": "KkPJH_d.o",
"mod": "PDUW08DGZ_H_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"NABmh_d": {
"mode": 4,
"out": "NABmh_d.o",
"mod": "sram_if",
"text": 715,
"bytes": 9728,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"C0gYT_d": {
"mode": 4,
"out": "C0gYT_d.o",
"mod": "PDDW08DGZ_H_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"M7qR3_d": {
"mode": 4,
"out": "M7qR3_d.o",
"mod": "PDUW16DGZ_H_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"GzkJA_d": {
"mode": 4,
"out": "GzkJA_d.o",
"mod": "PDDW16DGZ_H_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"VaZm2_d": {
"mode": 4,
"out": "VaZm2_d.o",
"mod": "PRDW12DGZ_H_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"fLemy_d": {
"mode": 4,
"out": "fLemy_d.o",
"mod": "PRUW08DGZ_H_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"AVYgt_d": {
"mode": 4,
"out": "AVYgt_d.o",
"mod": "PRUW16DGZ_H_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"ga3jL_d": {
"mode": 4,
"out": "ga3jL_d.o",
"mod": "iopad",
"text": 491,
"bytes": 8400,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"dfLHW_d": {
"mode": 4,
"out": "dfLHW_d.o",
"mod": "PDB3A_H_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"mZVHG_d": {
"mode": 4,
"out": "mZVHG_d.o",
"mod": "PVDD2ANA_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"Zp1LH_d": {
"mode": 4,
"out": "Zp1LH_d.o",
"mod": "PVSS1DGZ_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
},
"ke5cH_d": {
"mode": 4,
"out": "ke5cH_d.o",
"mod": "PVSS2DGZ_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32577_archive_1.a"
}
},
"reusePaths": {},
"stat": {
"ru_self_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.26999899999999999,
"ru_majflt": 0,
"ru_minflt": 6822,
"ru_stime_sec": 0.036998999999999997,
"ru_maxrss_kb": 61192,
"ru_nvcsw": 17
},
"cpu_cycles_end": 69836690776966932,
"ru_childs_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.0,
"ru_majflt": 0,
"ru_minflt": 0,
"ru_stime_sec": 0.0,
"ru_maxrss_kb": 0,
"ru_nvcsw": 0
},
"peak_mem_kb": 322972
}
}

View File

@ -1,804 +0,0 @@
{
"Modules": {
"PDB3A_V_G": {
"end_perf": [
2.7675080299377441,
0.28079700000000002,
0.026980000000000001,
322948,
322972,
69836690783952896,
30064771073,
0
],
"Compiled Times": 1,
"start_perf": [
2.7644338607788086,
0.27986299999999997,
0.026039,
322948,
322972,
1773384885.8039119,
69836690775920874
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"TB": {
"end_perf": [
2.5729489326477051,
0.096753000000000006,
0.017954000000000001,
322944,
322944,
69836690278131050,
725849473025,
0
],
"Compiled Times": 1,
"start_perf": [
2.4591670036315918,
0.0,
0.00091699999999999995,
321944,
321944,
1773384885.4986451,
69836689982708568
],
"child_modules": {
"lvds_if": 1,
"spi_if": 1,
"da4008_chip_top": 1,
"DEM_Reverse_64CH_0000": 1
},
"Compiled": "Yes",
"nRouts": 639,
"nQuads": 7130,
"nMops": 27153
},
"PRUW08DGZ_V_G": {
"end_perf": [
2.7568628787994385,
0.27242300000000003,
0.025944999999999999,
322948,
322972,
69836690756282020,
261993005057,
0
],
"Compiled Times": 1,
"start_perf": [
2.7515590190887451,
0.268096,
0.024969000000000002,
322948,
322972,
1773384885.7910371,
69836690742449658
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"spi_slave": {
"end_perf": [
2.6977469921112061,
0.21854899999999999,
0.020955999999999999,
322948,
322972,
69836690602609410,
665719930881,
0
],
"Compiled Times": 1,
"start_perf": [
2.5730128288269043,
0.096808000000000005,
0.017964000000000001,
322944,
322944,
1773384885.6124909,
69836690278233184
],
"child_modules": {
"spi_sys_0000": 1
},
"Compiled": "Yes",
"nRouts": 1020,
"nQuads": 9193,
"nMops": 25069
},
"PDUW16DGZ_V_G": {
"end_perf": [
2.7460968494415283,
0.26263700000000001,
0.024965000000000001,
322948,
322972,
69836690728288722,
167503724545,
0
],
"Compiled Times": 1,
"start_perf": [
2.7406919002532959,
0.25729000000000002,
0.024930999999999998,
322948,
322972,
1773384885.78017,
69836690714192444
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"clk_gen": {
"end_perf": [
2.7134919166564941,
0.234289,
0.020962000000000001,
322948,
322972,
69836690643523302,
687194767361,
0
],
"Compiled Times": 1,
"start_perf": [
2.6978108882904053,
0.218608,
0.020962000000000001,
322948,
322972,
1773384885.737289,
69836690602701426
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 126,
"nQuads": 1019,
"nMops": 2525
},
"PDDW16DGZ_V_G": {
"end_perf": [
2.7353079319000244,
0.25285099999999999,
0.023984999999999999,
322948,
322972,
69836690700237926,
98784247809,
0
],
"Compiled Times": 1,
"start_perf": [
2.7299048900604248,
0.24748500000000001,
0.023949999999999999,
322948,
322972,
1773384885.769383,
69836690686146898
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRUW16DGZ_V_G": {
"end_perf": [
2.7624249458312988,
0.27798099999999998,
0.025947999999999999,
322948,
322972,
69836690770745002,
296352743425,
0
],
"Compiled Times": 1,
"start_perf": [
2.7569048404693604,
0.27246199999999998,
0.025947999999999999,
322948,
322972,
1773384885.7963829,
69836690756347458
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"ulink_descrambler_32": {
"end_perf": [
2.7237529754638672,
0.24255399999999999,
0.022957000000000002,
322948,
322972,
69836690670197832,
515396075521,
0
],
"Compiled Times": 1,
"start_perf": [
2.7135410308837891,
0.23433799999999999,
0.020962000000000001,
322948,
322972,
1773384885.7530191,
69836690643602546
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 58,
"nQuads": 441,
"nMops": 1146
},
"PDDW08DGZ_V_G": {
"end_perf": [
2.7298610210418701,
0.247444,
0.023945999999999999,
322948,
322972,
69836690686086284,
64424509441,
0
],
"Compiled Times": 1,
"start_perf": [
2.7237999439239502,
0.24259800000000001,
0.022962,
322948,
322972,
1773384885.763278,
69836690670275822
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"sram_if_0000": {
"end_perf": [
2.7771399021148682,
0.28936099999999998,
0.028035000000000001,
322948,
322972,
69836690808996700,
605590388737,
0
],
"Compiled Times": 1,
"start_perf": [
2.7749190330505371,
0.28716000000000003,
0.028015000000000002,
322948,
322972,
1773384885.8143971,
69836690803185408
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 13,
"nQuads": 30,
"nMops": 73
},
"PDUW08DGZ_V_G": {
"end_perf": [
2.7406489849090576,
0.25725100000000001,
0.024927000000000001,
322948,
322972,
69836690714126874,
133143986177,
0
],
"Compiled Times": 1,
"start_perf": [
2.7353520393371582,
0.25289099999999998,
0.023989,
322948,
322972,
1773384885.7748301,
69836690700309564
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRDW12DGZ_V_G": {
"end_perf": [
2.7515158653259277,
0.26805200000000001,
0.024969000000000002,
322948,
322972,
69836690742386208,
227633266689,
0
],
"Compiled Times": 1,
"start_perf": [
2.7461400032043457,
0.26267699999999999,
0.024969000000000002,
322948,
322972,
1773384885.7856181,
69836690728361514
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PVDD1A_V_G": {
"end_perf": [
2.7689950466156006,
0.28224100000000002,
0.027022999999999998,
322948,
322972,
69836690787822782,
313532612609,
0
],
"Compiled Times": 1,
"start_perf": [
2.7675459384918213,
0.280831,
0.026983,
322948,
322972,
1773384885.807024,
69836690784012566
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PCLAMP_G": {
"end_perf": [
2.7643928527832031,
0.27986299999999997,
0.025987,
322948,
322972,
69836690775855814,
12884901889,
0
],
"Compiled Times": 1,
"start_perf": [
2.7624678611755371,
0.27802500000000002,
0.025947999999999999,
322948,
322972,
1773384885.8019459,
69836690770812466
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 9,
"nQuads": 12,
"nMops": 8
},
"PVSS2DGZ_V_G": {
"end_perf": [
2.7748808860778809,
0.28712500000000002,
0.028011999999999999,
322948,
322972,
69836690803118762,
450971566081,
0
],
"Compiled Times": 1,
"start_perf": [
2.7734749317169189,
0.28575499999999998,
0.027976000000000001,
322948,
322972,
1773384885.812953,
69836690799431516
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD2ANA_V_G": {
"end_perf": [
2.7704498767852783,
0.28369299999999997,
0.027026000000000001,
322948,
322972,
69836690791601856,
347892350977,
0
],
"Compiled Times": 1,
"start_perf": [
2.7690329551696777,
0.28227600000000003,
0.027026000000000001,
322948,
322972,
1773384885.808511,
69836690787878612
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD3AC_V_G": {
"end_perf": [
2.7718949317932129,
0.28513699999999997,
0.027026000000000001,
322948,
322972,
69836690795360568,
382252089345,
0
],
"Compiled Times": 1,
"start_perf": [
2.7704868316650391,
0.28372999999999998,
0.027026000000000001,
322948,
322972,
1773384885.8099649,
69836690791662856
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS1DGZ_V_G": {
"end_perf": [
2.7734370231628418,
0.285721,
0.027972,
322948,
322972,
69836690799367534,
416611827713,
0
],
"Compiled Times": 1,
"start_perf": [
2.77193284034729,
0.28517599999999999,
0.027026000000000001,
322948,
322972,
1773384885.8114109,
69836690795418780
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
}
},
"ObjArchives": [
{
"archive": "archive.0/_32578_archive_1.a",
"objects": [
[
"sH4Fc_d.o",
300224
],
[
"eAsJz_d.o",
321458
],
[
"MEIvW_d.o",
37614
],
[
"yuek5_d.o",
22310
],
[
"K0TuH_d.o",
15774
],
[
"StNiL_d.o",
15774
],
[
"aEWK6_d.o",
15754
],
[
"FDqaf_d.o",
15754
],
[
"ZKk4u_d.o",
15774
],
[
"EtT2L_d.o",
15754
],
[
"ErxQ3_d.o",
15754
],
[
"DA1Pu_d.o",
8224
],
[
"xqWfY_d.o",
7194
],
[
"CNBi6_d.o",
7194
],
[
"J6VbG_d.o",
7196
],
[
"rZC3e_d.o",
7196
],
[
"jHcbf_d.o",
7196
],
[
"S5Dr6_d.o",
7196
],
[
"nJgqZ_d.o",
9748
]
],
"size": 853088
}
],
"CompUnits": {
"aEWK6_d": {
"mode": 4,
"out": "aEWK6_d.o",
"mod": "PDUW08DGZ_V_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"rZC3e_d": {
"mode": 4,
"out": "rZC3e_d.o",
"mod": "PVDD3AC_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"sH4Fc_d": {
"mode": 4,
"out": "sH4Fc_d.o",
"mod": "TB",
"text": 191257,
"bytes": 300224,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"eAsJz_d": {
"mode": 4,
"out": "eAsJz_d.o",
"mod": "spi_slave",
"text": 176617,
"bytes": 321458,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"MEIvW_d": {
"mode": 4,
"out": "MEIvW_d.o",
"mod": "clk_gen",
"text": 20705,
"bytes": 37614,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"jHcbf_d": {
"mode": 4,
"out": "jHcbf_d.o",
"mod": "PVSS1DGZ_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"yuek5_d": {
"mode": 4,
"out": "yuek5_d.o",
"mod": "ulink_descrambler_32",
"text": 8273,
"bytes": 22310,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"ErxQ3_d": {
"mode": 4,
"out": "ErxQ3_d.o",
"mod": "PRUW16DGZ_V_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"K0TuH_d": {
"mode": 4,
"out": "K0TuH_d.o",
"mod": "PDDW08DGZ_V_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"StNiL_d": {
"mode": 4,
"out": "StNiL_d.o",
"mod": "PDDW16DGZ_V_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"xqWfY_d": {
"mode": 4,
"out": "xqWfY_d.o",
"mod": "PDB3A_V_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"FDqaf_d": {
"mode": 4,
"out": "FDqaf_d.o",
"mod": "PDUW16DGZ_V_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"CNBi6_d": {
"mode": 4,
"out": "CNBi6_d.o",
"mod": "PVDD1A_V_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"J6VbG_d": {
"mode": 4,
"out": "J6VbG_d.o",
"mod": "PVDD2ANA_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"DA1Pu_d": {
"mode": 4,
"out": "DA1Pu_d.o",
"mod": "PCLAMP_G",
"text": 382,
"bytes": 8224,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"ZKk4u_d": {
"mode": 4,
"out": "ZKk4u_d.o",
"mod": "PRDW12DGZ_V_G",
"text": 3567,
"bytes": 15774,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"EtT2L_d": {
"mode": 4,
"out": "EtT2L_d.o",
"mod": "PRUW08DGZ_V_G",
"text": 3571,
"bytes": 15754,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"S5Dr6_d": {
"mode": 4,
"out": "S5Dr6_d.o",
"mod": "PVSS2DGZ_V_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
},
"nJgqZ_d": {
"mode": 4,
"out": "nJgqZ_d.o",
"mod": "sram_if_0000",
"text": 715,
"bytes": 9748,
"checksum": 0,
"archive": "archive.0/_32578_archive_1.a"
}
},
"reusePaths": {},
"stat": {
"ru_self_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.28936099999999998,
"ru_majflt": 0,
"ru_minflt": 6617,
"ru_stime_sec": 0.028303999999999999,
"ru_maxrss_kb": 60860,
"ru_nvcsw": 13
},
"cpu_cycles_end": 69836690809634130,
"ru_childs_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.0,
"ru_majflt": 0,
"ru_minflt": 0,
"ru_stime_sec": 0.0,
"ru_maxrss_kb": 0,
"ru_nvcsw": 0
},
"peak_mem_kb": 322972
}
}

View File

@ -1,802 +0,0 @@
{
"Modules": {
"PVSS1A_H_G": {
"end_perf": [
2.8659379482269287,
0.353825,
0.041016999999999998,
322948,
322972,
69836691039874830,
386547056641,
0
],
"Compiled Times": 1,
"start_perf": [
2.8642098903656006,
0.35214899999999999,
0.041016999999999998,
322948,
322972,
1773384885.903688,
69836691035344948
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"spi_sys_0000": {
"end_perf": [
2.7567489147186279,
0.27363599999999999,
0.023968,
322948,
322972,
69836690756034156,
674309865473,
0
],
"Compiled Times": 1,
"start_perf": [
2.6591260433197021,
0.18098400000000001,
0.018998000000000001,
322948,
322948,
1773384885.6986041,
69836690502121042
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 874,
"nQuads": 7699,
"nMops": 20053
},
"ulink_frame_receiver_0000": {
"end_perf": [
2.6590549945831299,
0.180919,
0.018991000000000001,
322948,
322948,
69836690502031792,
528280977409,
0
],
"Compiled Times": 1,
"start_perf": [
2.4598498344421387,
0.000696,
0.0,
321944,
321944,
1773384885.4993279,
69836689984539300
],
"child_modules": {
"syn_fwft_fifo": 1,
"crc32": 1
},
"Compiled": "Yes",
"nRouts": 1713,
"nQuads": 13186,
"nMops": 33983
},
"DW_pulse_sync_0000": {
"end_perf": [
2.7713229656219482,
0.28716399999999997,
0.025014000000000002,
322948,
322972,
69836690793903760,
717259538433,
0
],
"Compiled Times": 1,
"start_perf": [
2.7568130493164062,
0.27369500000000002,
0.023973000000000001,
322948,
322972,
1773384885.7962911,
69836690756109234
],
"child_modules": {
"DW_sync_0000": 1
},
"Compiled": "Yes",
"nRouts": 61,
"nQuads": 613,
"nMops": 1706
},
"PDDW08SDGZ_H_G": {
"end_perf": [
2.7909998893737793,
0.30282900000000001,
0.028076,
322948,
322972,
69836690845041522,
68719476737,
0
],
"Compiled Times": 1,
"start_perf": [
2.778256893157959,
0.29310399999999998,
0.026009000000000001,
322948,
322972,
1773384885.817735,
69836690811873020
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"crc32": {
"end_perf": [
2.7782130241394043,
0.29306300000000002,
0.026005,
322948,
322972,
69836690811800492,
523986010113,
0
],
"Compiled Times": 1,
"start_perf": [
2.7713768482208252,
0.28721400000000002,
0.025017999999999999,
322948,
322972,
1773384885.8108549,
69836690794011112
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 36,
"nQuads": 253,
"nMops": 579
},
"PDXOEDG_H_G": {
"end_perf": [
2.858867883682251,
0.34883500000000001,
0.039052000000000003,
322948,
322972,
69836691021516562,
180388626433,
0
],
"Compiled Times": 1,
"start_perf": [
2.8564579486846924,
0.34659000000000001,
0.039052000000000003,
322948,
322972,
1773384885.895936,
69836691015185970
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 11,
"nQuads": 24,
"nMops": 43
},
"PRUW08SDGZ_H_G": {
"end_perf": [
2.8504550457000732,
0.340945,
0.039052000000000003,
322948,
322972,
69836690999628670,
266287972353,
0
],
"Compiled Times": 1,
"start_perf": [
2.8449609279632568,
0.33545399999999997,
0.039052000000000003,
322948,
322972,
1773384885.884439,
69836690985295028
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDUW08SDGZ_H_G": {
"end_perf": [
2.8249409198760986,
0.31898300000000002,
0.036110999999999997,
322948,
322972,
69836690933323866,
137438953473,
0
],
"Compiled Times": 1,
"start_perf": [
2.8023529052734375,
0.30937500000000001,
0.031137999999999999,
322948,
322972,
1773384885.841831,
69836690874513596
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDDW16SDGZ_H_G": {
"end_perf": [
2.8023078441619873,
0.309334,
0.031133999999999998,
322948,
322972,
69836690874437954,
103079215105,
0
],
"Compiled Times": 1,
"start_perf": [
2.7910449504852295,
0.302871,
0.028080000000000001,
322948,
322972,
1773384885.830523,
69836690845110414
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRDW12SDGZ_H_G": {
"end_perf": [
2.844916820526123,
0.33541300000000002,
0.039047999999999999,
322948,
322972,
69836690985222972,
231928233985,
0
],
"Compiled Times": 1,
"start_perf": [
2.8393590450286865,
0.33181300000000002,
0.037089999999999998,
322948,
322972,
1773384885.8788371,
69836690970727902
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PRUW16SDGZ_H_G": {
"end_perf": [
2.8564150333404541,
0.34654699999999999,
0.039052000000000003,
322948,
322972,
69836691015121374,
300647710721,
0
],
"Compiled Times": 1,
"start_perf": [
2.8504979610443115,
0.34098899999999999,
0.039052000000000003,
322948,
322972,
1773384885.889976,
69836690999690184
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDUW16SDGZ_H_G": {
"end_perf": [
2.8393139839172363,
0.33177200000000001,
0.037086000000000001,
322948,
322972,
69836690970661394,
171798691841,
0
],
"Compiled Times": 1,
"start_perf": [
2.8250060081481934,
0.31904300000000002,
0.036117999999999997,
322948,
322972,
1773384885.8644841,
69836690933443770
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 24,
"nQuads": 148,
"nMops": 349
},
"PDB3AC_H_G": {
"end_perf": [
2.8608248233795166,
0.34984900000000002,
0.039981999999999997,
322948,
322972,
69836691026582332,
34359738369,
0
],
"Compiled Times": 1,
"start_perf": [
2.8589160442352295,
0.348883,
0.039052000000000003,
322948,
322972,
1773384885.8983941,
69836691021577554
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD1AC_H_G": {
"end_perf": [
2.8626279830932617,
0.35064600000000001,
0.040958000000000001,
322948,
322972,
69836691031267778,
317827579905,
0
],
"Compiled Times": 1,
"start_perf": [
2.8608648777008057,
0.349885,
0.039986000000000001,
322948,
322972,
1773384885.9003429,
69836691026643012
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVDD2DGZ_H_G": {
"end_perf": [
2.8641579151153564,
0.35210200000000003,
0.041010999999999999,
322948,
322972,
69836691035276240,
352187318273,
0
],
"Compiled Times": 1,
"start_perf": [
2.8626658916473389,
0.35067999999999999,
0.040961999999999998,
322948,
322972,
1773384885.902144,
69836691031328822
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS2A_H_G": {
"end_perf": [
2.8674559593200684,
0.35534199999999999,
0.041016999999999998,
322948,
322972,
69836691043817488,
420906795009,
0
],
"Compiled Times": 1,
"start_perf": [
2.8659758567810059,
0.35386299999999998,
0.041016999999999998,
322948,
322972,
1773384885.9054539,
69836691039936612
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"PVSS3A_H_G": {
"end_perf": [
2.8689310550689697,
0.356817,
0.041016999999999998,
322948,
322972,
69836691047652304,
455266533377,
0
],
"Compiled Times": 1,
"start_perf": [
2.8674960136413574,
0.355383,
0.041016999999999998,
322948,
322972,
1773384885.9069741,
69836691043884720
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 8,
"nQuads": 6,
"nMops": 5
},
"sram_if_0001": {
"end_perf": [
2.871412992477417,
0.35833599999999999,
0.041922000000000001,
322948,
322972,
69836691054112326,
605590388737,
0
],
"Compiled Times": 1,
"start_perf": [
2.8689689636230469,
0.35685499999999998,
0.041016999999999998,
322948,
322972,
1773384885.908447,
69836691047716206
],
"child_modules": {},
"Compiled": "Yes",
"nRouts": 13,
"nQuads": 30,
"nMops": 73
}
},
"ObjArchives": [
{
"archive": "archive.0/_32579_archive_1.a",
"objects": [
[
"P3BwM_d.o",
464092
],
[
"QT8j3_d.o",
257814
],
[
"Ss3zK_d.o",
33384
],
[
"T59nH_d.o",
16428
],
[
"QjV6F_d.o",
15776
],
[
"HiTWu_d.o",
15776
],
[
"gxqJp_d.o",
15756
],
[
"iWZrk_d.o",
15756
],
[
"fTzb4_d.o",
15776
],
[
"gwpgC_d.o",
15756
],
[
"riJVY_d.o",
15756
],
[
"IYQDs_d.o",
7950
],
[
"LsJ1x_d.o",
7194
],
[
"W9VnM_d.o",
7196
],
[
"nULrd_d.o",
7196
],
[
"aYKwj_d.o",
7194
],
[
"usz4x_d.o",
7194
],
[
"jsR1C_d.o",
7194
],
[
"z4wk8_d.o",
9748
]
],
"size": 942936
}
],
"CompUnits": {
"QT8j3_d": {
"mode": 4,
"out": "QT8j3_d.o",
"mod": "spi_sys_0000",
"text": 141157,
"bytes": 257814,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"P3BwM_d": {
"mode": 4,
"out": "P3BwM_d.o",
"mod": "ulink_frame_receiver_0000",
"text": 228025,
"bytes": 464092,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"LsJ1x_d": {
"mode": 4,
"out": "LsJ1x_d.o",
"mod": "PDB3AC_H_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"iWZrk_d": {
"mode": 4,
"out": "iWZrk_d.o",
"mod": "PDUW16SDGZ_H_G",
"text": 3571,
"bytes": 15756,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"W9VnM_d": {
"mode": 4,
"out": "W9VnM_d.o",
"mod": "PVDD1AC_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"gxqJp_d": {
"mode": 4,
"out": "gxqJp_d.o",
"mod": "PDUW08SDGZ_H_G",
"text": 3571,
"bytes": 15756,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"Ss3zK_d": {
"mode": 4,
"out": "Ss3zK_d.o",
"mod": "DW_pulse_sync_0000",
"text": 14140,
"bytes": 33384,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"T59nH_d": {
"mode": 4,
"out": "T59nH_d.o",
"mod": "crc32",
"text": 4820,
"bytes": 16428,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"gwpgC_d": {
"mode": 4,
"out": "gwpgC_d.o",
"mod": "PRUW08SDGZ_H_G",
"text": 3571,
"bytes": 15756,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"QjV6F_d": {
"mode": 4,
"out": "QjV6F_d.o",
"mod": "PDDW08SDGZ_H_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"HiTWu_d": {
"mode": 4,
"out": "HiTWu_d.o",
"mod": "PDDW16SDGZ_H_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"fTzb4_d": {
"mode": 4,
"out": "fTzb4_d.o",
"mod": "PRDW12SDGZ_H_G",
"text": 3567,
"bytes": 15776,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"riJVY_d": {
"mode": 4,
"out": "riJVY_d.o",
"mod": "PRUW16SDGZ_H_G",
"text": 3571,
"bytes": 15756,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"IYQDs_d": {
"mode": 4,
"out": "IYQDs_d.o",
"mod": "PDXOEDG_H_G",
"text": 623,
"bytes": 7950,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"nULrd_d": {
"mode": 4,
"out": "nULrd_d.o",
"mod": "PVDD2DGZ_H_G",
"text": 299,
"bytes": 7196,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"aYKwj_d": {
"mode": 4,
"out": "aYKwj_d.o",
"mod": "PVSS1A_H_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"usz4x_d": {
"mode": 4,
"out": "usz4x_d.o",
"mod": "PVSS2A_H_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"jsR1C_d": {
"mode": 4,
"out": "jsR1C_d.o",
"mod": "PVSS3A_H_G",
"text": 299,
"bytes": 7194,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
},
"z4wk8_d": {
"mode": 4,
"out": "z4wk8_d.o",
"mod": "sram_if_0001",
"text": 715,
"bytes": 9748,
"checksum": 0,
"archive": "archive.0/_32579_archive_1.a"
}
},
"reusePaths": {},
"stat": {
"ru_self_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.35854799999999998,
"ru_majflt": 0,
"ru_minflt": 7007,
"ru_stime_sec": 0.041946999999999998,
"ru_maxrss_kb": 61596,
"ru_nvcsw": 64
},
"cpu_cycles_end": 69836691054662044,
"ru_childs_end": {
"ru_nivcsw": 0,
"ru_utime_sec": 0.0,
"ru_majflt": 0,
"ru_minflt": 0,
"ru_stime_sec": 0.0,
"ru_maxrss_kb": 0,
"ru_nvcsw": 0
},
"peak_mem_kb": 322972
}
}

View File

@ -0,0 +1,822 @@
{
"reusePaths": {
"amcQw_d": {
"icPath": "csrc"
},
"VJ8Wg_d": {
"icPath": "csrc"
},
"qn6Yx_d": {
"icPath": "csrc"
},
"CjC7H_d": {
"icPath": "csrc"
},
"ircEj_d": {
"icPath": "csrc"
},
"EZF3t_d": {
"icPath": "csrc"
},
"N1ndr_d": {
"icPath": "csrc"
},
"zVfcK_d": {
"icPath": "csrc"
},
"dviib_d": {
"icPath": "csrc"
},
"ebe78_d": {
"icPath": "csrc"
},
"UxPrL_d": {
"icPath": "csrc"
},
"psjSY_d": {
"icPath": "csrc"
},
"qePm9_d": {
"icPath": "csrc"
},
"LSxxn_d": {
"icPath": "csrc"
},
"VSdee_d": {
"icPath": "csrc"
},
"zIUFF_d": {
"icPath": "csrc"
},
"ZmPik_d": {
"icPath": "csrc"
},
"fMI2k_d": {
"icPath": "csrc"
},
"bEAZ8_d": {
"icPath": "csrc"
}
},
"CompUnits": {
"FgDcH_d": {
"mode": 4,
"bytes": 247526,
"mod": "_vcs_unit__348857874",
"out": "FgDcH_d.o",
"archive": "archive.1/_64094_archive_1.a",
"text": 88377,
"checksum": 0,
"cls": 87541
}
},
"Modules": {
"PRUW16SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0218889713287354,
1.8423959999999999,
0.161304,
323088,
323460,
1773479967.818311,
70083385584149250
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0236890316009521,
1.8432219999999999,
0.162412,
323088,
323460,
70083385589293096,
304942678017,
0
],
"nMops": 349
},
"PDB3AC_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0246360301971436,
1.844104,
0.16253600000000001,
323088,
323460,
1773479967.821058,
70083385591937042
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0252749919891357,
1.844104,
0.16323399999999999,
323088,
323460,
70083385593783244,
38654705665,
0
],
"nMops": 5
},
"_vcs_unit__348857874": {
"start_perf": [
1.9105210304260254,
1.7359149999999999,
0.14938399999999999,
321120,
323460,
1773479967.706943,
70083385268294832
],
"Compiled": "Yes",
"nQuads": 5582,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 129,
"end_perf": [
2.0046820640563965,
1.8259110000000001,
0.15905900000000001,
323088,
323460,
70083385535391354,
4294967297,
0
],
"svclass": [
"BinaryDataReader",
4304,
507,
4,
4,
4294969709,
"spi_item",
25578,
3405,
10,
9,
4294969785,
"spi_driver",
18975,
2279,
44,
4,
4294969964,
"DataReader",
2982,
297,
4,
4,
4294970137,
"lvds_item",
4769,
529,
5,
5,
4294970174,
"lvds_driver",
30933,
3663,
44,
20,
4294970216
],
"nMops": 21474
},
"...MASTER...": {
"start_perf": [
1.8347709178924561,
1.682831,
0.13050999999999999,
321096,
323460,
1773479967.6311929,
70083385053437532
],
"nQuads": 6,
"child_modules": {
"PVSS1AC_V_G": 1,
"PDDW08SDGZ_H_G": 1,
"PDDW04DGZ_H_G": 1,
"PVSS2DGZ_H_G": 1,
"PDUW04DGZ_V_G": 1,
"PDDW04DGZ_V_G": 1,
"PVDD3AC_V_G": 1,
"PRDW12SDGZ_H_G": 1,
"PVDD2POC_H_G": 1,
"TB": 1,
"PVDD1A_H_G": 1,
"PVSS3DGZ_H_G": 1,
"sirv_gnrl_xchecker": 1,
"PVSS1ANA_H_G": 1,
"reset_tb": 1,
"PVSS1DGZ_H_G": 1,
"PVSS2A_H_G": 1,
"PDDW04SDGZ_H_G": 1,
"PDDW12SDGZ_H_G": 1,
"PVDD1DGZ_V_G": 1,
"PVDD3A_V_G": 1,
"PDB3A_V_G": 1,
"PRDW16DGZ_V_G": 1,
"PRUW12SDGZ_V_G": 1,
"PRDW12SDGZ_V_G": 1,
"PDXOEDG_V_G": 1,
"PDUW16DGZ_V_G": 1,
"PVSS1ANA_V_G": 1,
"PDUW04SDGZ_H_G": 1,
"_vcs_unit__348857874": 1,
"PVSS1A_V_G": 1,
"PDUW04DGZ_H_G": 1,
"PVDD2DGZ_H_G": 1,
"PRUW08DGZ_V_G": 1,
"PVDD2ANA_H_G": 1,
"PRCUT_G": 1,
"PRDW12DGZ_H_G": 1,
"PDDW16DGZ_H_G": 1,
"PVSS3AC_V_G": 1,
"PVDD1AC_V_G": 1,
"PVSS2ANA_V_G": 1,
"PVSS2AC_H_G": 1,
"clk_gen": 1,
"PDUW16DGZ_H_G": 1,
"PRUW16SDGZ_V_G": 1,
"PDB3AC_V_G": 1,
"PVSS2AC_V_G": 1,
"PVSS1AC_H_G": 1,
"PDUW12DGZ_H_G": 1,
"PDDW16SDGZ_V_G": 1,
"PDDW08DGZ_V_G": 1,
"PVSS2A_V_G": 1,
"PENDCAPA_G": 1,
"PDB3A_H_G": 1,
"PRUW16SDGZ_H_G": 1,
"PRDW16DGZ_H_G": 1,
"PVSS2ANA_H_G": 1,
"PVSS1DGZ_V_G": 1,
"PRDW08DGZ_V_G": 1,
"PVSS1A_H_G": 1,
"PRDW08DGZ_H_G": 1,
"PVDD1DGZ_H_G": 1,
"PVDD3AC_H_G": 1,
"PRDW16SDGZ_V_G": 1,
"PVSS3DGZ_V_G": 1,
"PDXOEDG_H_G": 1,
"PDUW16SDGZ_H_G": 1,
"PVSS3A_H_G": 1,
"PDB3AC_H_G": 1,
"PDDW12DGZ_V_G": 1,
"PRDW08SDGZ_V_G": 1,
"PVSS2DGZ_V_G": 1,
"PDDW08DGZ_H_G": 1,
"PVDD1AC_H_G": 1,
"PRUW08SDGZ_V_G": 1,
"PVDD1ANA_V_G": 1,
"PDDW16DGZ_V_G": 1,
"PVDD3A_H_G": 1,
"PVDD2ANA_V_G": 1,
"PDUW12SDGZ_H_G": 1,
"std": 1,
"PCLAMP_G": 1,
"PVDD2POC_V_G": 1,
"PVDD2DGZ_V_G": 1,
"PVSS3A_V_G": 1,
"PRUW08DGZ_H_G": 1,
"PRUW12DGZ_V_G": 1,
"PRUW12DGZ_H_G": 1,
"PRDW16SDGZ_H_G": 1,
"PRUW08SDGZ_H_G": 1,
"PDDW12DGZ_H_G": 1,
"PVDD1A_V_G": 1,
"sirv_gnrl_ltch": 1,
"PRUW12SDGZ_H_G": 1,
"PDUW16SDGZ_V_G": 1,
"PRDW08SDGZ_H_G": 1,
"PVSS3AC_H_G": 1,
"PRUW16DGZ_V_G": 1,
"PCLAMPC_V_G": 1,
"sirv_gnrl_dffl": 1,
"PRCUTA_G": 1,
"PDUW12SDGZ_V_G": 1,
"PDUW08DGZ_V_G": 1,
"PVDD1ANA_H_G": 1,
"PDDW08SDGZ_V_G": 1,
"PDDW12SDGZ_V_G": 1,
"PENDCAP_G": 1,
"PDUW12DGZ_V_G": 1,
"PRUW16DGZ_H_G": 1,
"PCLAMPC_H_G": 1,
"PDDW16SDGZ_H_G": 1,
"PRDW12DGZ_V_G": 1,
"PDUW08SDGZ_H_G": 1,
"PDUW08DGZ_H_G": 1
},
"nRouts": 10,
"end_perf": [
1.8528308868408203,
1.6851020000000001,
0.13733600000000001,
321104,
323460,
70083385104884284,
0,
0
],
"nMops": 11
},
"da4008_chip_top": {
"Compiled": "Yes",
"start_perf": [
1.8604719638824463,
1.6868210000000001,
0.14393,
321096,
323460,
1773479967.656894,
70083385126417882
],
"nQuads": 5401,
"child_modules": {
"awg_top": 1,
"systemregfile": 1,
"DW_sync_0000": 1,
"clk_regfile": 1,
"spi_bus_decoder_0000": 1,
"dac_regfile": 1,
"DEM_PhaseSync_4008": 1,
"sram_if": 1,
"iopad": 1,
"ramp_gen_0000": 1,
"dacif_0000": 1,
"pulse_generator": 1,
"sram_if_0000": 4,
"ulink_rx": 1,
"DW_pulse_sync_0000": 4,
"rst_gen_unit": 1,
"spi_slave": 1
},
"Compiled Times": 2,
"nRouts": 913,
"end_perf": [
1.9104549884796143,
1.7358479999999998,
0.14937800000000001,
321120,
323460,
70083385268158750,
652835028993,
0
],
"nMops": 17503
},
"DW_sync_0000": {
"Compiled": "Yes",
"start_perf": [
2.0047380924224854,
1.825968,
0.15906400000000001,
323088,
323460,
1773479967.8011601,
70083385535503416
],
"nQuads": 542,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 66,
"end_perf": [
2.0087599754333496,
1.8292440000000001,
0.16015399999999999,
323088,
323460,
70083385546954436,
712964571137,
0
],
"nMops": 1210
},
"sirv_gnrl_xchecker": {
"Compiled": "Yes",
"start_perf": [
2.0087990760803223,
1.829283,
0.16015699999999999,
323088,
323460,
1773479967.8052211,
70083385547021488
],
"nQuads": 108,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 25,
"end_perf": [
2.0108110904693604,
1.830387,
0.161248,
323088,
323460,
70083385552762860,
549755813889,
0
],
"nMops": 136
},
"PVSS3A_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0279619693756104,
1.8449179999999998,
0.165349,
323088,
323460,
1773479967.824384,
70083385601368974
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0285539627075195,
1.845154,
0.16575799999999999,
323088,
323460,
70083385603075408,
459561500673,
0
],
"nMops": 5
},
"PVDD2DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0260200500488281,
1.8446180000000001,
0.16353000000000001,
323088,
323460,
1773479967.8224421,
70083385595861412
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0266458988189697,
1.8446180000000001,
0.164212,
323088,
323460,
70083385597666752,
356482285569,
0
],
"nMops": 5
},
"PDDW08SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0108439922332764,
1.8304200000000002,
0.16125100000000001,
323088,
323460,
1773479967.807266,
70083385552821464
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0128378868103027,
1.8325749999999998,
0.16125100000000001,
323088,
323460,
70083385558518500,
73014444033,
0
],
"nMops": 349
},
"PVSS2A_V_G": {
"Compiled": "Yes",
"start_perf": [
2.027318000793457,
1.8449179999999998,
0.16464599999999999,
323088,
323460,
1773479967.82374,
70083385599543894
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0279340744018555,
1.8449179999999998,
0.16531799999999999,
323088,
323460,
70083385601317494,
425201762305,
0
],
"nMops": 5
},
"PDDW16SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0128729343414307,
1.8326120000000001,
0.16125200000000001,
323088,
323460,
1773479967.8092949,
70083385558578320
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0146450996398926,
1.834544,
0.16125200000000001,
323088,
323460,
70083385563641204,
107374182401,
0
],
"nMops": 349
},
"PDUW08SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.014678955078125,
1.8345820000000002,
0.16125200000000001,
323088,
323460,
1773479967.811101,
70083385563702490
],
"nQuads": 151,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 25,
"end_perf": [
2.0164229869842529,
1.836435,
0.161301,
323088,
323460,
70083385568679394,
141733920769,
0
],
"nMops": 361
},
"PDUW16SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0164549350738525,
1.836468,
0.161304,
323088,
323460,
1773479967.8128769,
70083385568741114
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0182790756225586,
1.838457,
0.161304,
323088,
323460,
70083385573946664,
176093659137,
0
],
"nMops": 349
},
"PRUW08SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0200920104980469,
1.840435,
0.161304,
323088,
323460,
1773479967.816514,
70083385579052460
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0218560695648193,
1.8423590000000001,
0.161304,
323088,
323460,
70083385584091058,
270582939649,
0
],
"nMops": 349
},
"PRDW12SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.018312931060791,
1.838495,
0.161304,
323088,
323460,
1773479967.8147349,
70083385574010050
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0200610160827637,
1.8404020000000001,
0.161304,
323088,
323460,
70083385578993282,
236223201281,
0
],
"nMops": 349
},
"PDXOEDG_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0237228870391846,
1.8432569999999999,
0.162415,
323088,
323460,
1773479967.8201449,
70083385589349930
],
"nQuads": 24,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 11,
"end_perf": [
2.0245940685272217,
1.844104,
0.16249,
323088,
323460,
70083385591884000,
184683593729,
0
],
"nMops": 43
},
"PVDD1AC_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0253050327301025,
1.844104,
0.163267,
323088,
323460,
1773479967.821727,
70083385593838028
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0259900093078613,
1.844589,
0.16352700000000001,
323088,
323460,
70083385595809114,
322122547201,
0
],
"nMops": 5
},
"PVSS1A_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0266740322113037,
1.8446180000000001,
0.164243,
323088,
323460,
1773479967.823096,
70083385597716432
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0272889137268066,
1.8448880000000001,
0.16464400000000001,
323088,
323460,
70083385599490268,
390842023937,
0
],
"nMops": 5
},
"sram_if_0002": {
"Compiled": "Yes",
"start_perf": [
2.028580904006958,
1.8451819999999999,
0.16576099999999999,
323088,
323460,
1773479967.8250029,
70083385603160638
],
"nQuads": 30,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 13,
"end_perf": [
2.0296649932861328,
1.8463259999999999,
0.16576099999999999,
323088,
323460,
70083385606237580,
605590388737,
0
],
"nMops": 65
}
},
"ObjArchives": [
{
"archive": "archive.1/_64094_archive_1.a",
"objects": [
[
"FgDcH_d.o",
247526
],
[
"amcQwB.o",
141522
]
],
"size": 389048
}
],
"stat": {
"ru_self_end": {
"ru_utime_sec": 1.8735040000000001,
"ru_nivcsw": 22,
"ru_majflt": 0,
"ru_stime_sec": 0.17577699999999999,
"ru_nvcsw": 107,
"ru_maxrss_kb": 118196,
"ru_minflt": 51565
},
"ru_childs_end": {
"ru_utime_sec": 1.1946319999999999,
"ru_nivcsw": 36,
"ru_majflt": 0,
"ru_stime_sec": 0.31574000000000002,
"ru_nvcsw": 198,
"ru_maxrss_kb": 65388,
"ru_minflt": 64354
},
"cpu_cycles_end": 70083385818579956,
"peak_mem_kb": 323460
}
}

View File

@ -0,0 +1,648 @@
{
"reusePaths": {
"Q3Wk7_d": {
"icPath": "csrc"
},
"bhWYh_d": {
"icPath": "csrc"
},
"atFKr_d": {
"icPath": "csrc"
},
"UJ4u7_d": {
"icPath": "csrc"
},
"YTwQz_d": {
"icPath": "csrc"
},
"jAdLC_d": {
"icPath": "csrc"
},
"dc6nH_d": {
"icPath": "csrc"
},
"HYpLe_d": {
"icPath": "csrc"
},
"reYIK_d": {
"icPath": "csrc"
},
"Z62Gy_d": {
"icPath": "csrc"
},
"swWa5_d": {
"icPath": "csrc"
},
"EEqKt_d": {
"icPath": "csrc"
},
"hpMjC_d": {
"icPath": "csrc"
},
"fEWTj_d": {
"icPath": "csrc"
},
"IHYdB_d": {
"icPath": "csrc"
},
"TqmdJ_d": {
"icPath": "csrc"
},
"avdwk_d": {
"icPath": "csrc"
},
"EZJLH_d": {
"icPath": "csrc"
},
"B0f3F_d": {
"icPath": "csrc"
}
},
"CompUnits": {},
"Modules": {
"PDDW04DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0115668773651123,
0.152589,
0.017564,
321120,
321124,
1773479967.8079889,
70083385554876644
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0135390758514404,
0.15473899999999999,
0.017564,
321120,
321124,
70083385560502378,
42949672961,
0
],
"nMops": 349
},
"PVSS1AC_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0289120674133301,
0.169654,
0.019387000000000001,
321120,
321124,
1773479967.8253341,
70083385604066292
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0295729637145996,
0.170018,
0.019744000000000001,
321120,
321124,
70083385605967530,
395136991233,
0
],
"nMops": 5
},
"PDUW12DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0173249244689941,
0.15887000000000001,
0.017564,
321120,
321124,
1773479967.8137469,
70083385571204814
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0191459655761719,
0.160857,
0.017564,
321120,
321124,
70083385576403796,
146028888065,
0
],
"nMops": 349
},
"PRUW12DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0228331089019775,
0.164878,
0.017564,
321120,
321124,
1773479967.8192551,
70083385586825920
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0246460437774658,
0.166823,
0.017564,
321120,
321124,
70083385592006664,
274877906945,
0
],
"nMops": 349
},
"tsdn28hpcpuhdb4096x128m4mw_170a": {
"Compiled": "Yes",
"start_perf": [
1.8560850620269775,
0.00053600000000000002,
0.0,
321096,
321096,
1773479967.6525071,
70083385114045260
],
"nQuads": 23278,
"child_modules": {
"tsdn28hpcpuhdb4096x128m4mw_170a_Int_Array": 1
},
"Compiled Times": 2,
"nRouts": 2254,
"end_perf": [
1.9734809398651123,
0.115413,
0.01319,
321120,
321120,
70083385446895036,
481036337153,
0
],
"nMops": 61050
},
"clk_regfile": {
"Compiled": "Yes",
"start_perf": [
1.9735369682312012,
0.115469,
0.013195999999999999,
321120,
321120,
1773479967.769959,
70083385447005472
],
"nQuads": 5441,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 674,
"end_perf": [
1.9985220432281494,
0.13944999999999999,
0.016469999999999999,
321120,
321124,
70083385517940104,
627065225217,
0
],
"nMops": 15415
},
"sram_dmux_w_0000": {
"Compiled": "Yes",
"start_perf": [
1.9985730648040771,
0.13950099999999999,
0.016476000000000001,
321120,
321124,
1773479967.7949951,
70083385518020638
],
"nQuads": 2180,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 268,
"end_perf": [
2.0089349746704102,
0.149787,
0.017493000000000002,
321120,
321124,
70083385547456466,
609885356033,
0
],
"nMops": 5910
},
"std": {
"start_perf": [
2.008976936340332,
0.14982899999999999,
0.017498,
321120,
321124,
1773479967.8053989,
70083385547532858
],
"Compiled": "Yes",
"nQuads": 224,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 36,
"end_perf": [
2.0115189552307129,
0.15254100000000001,
0.017558000000000001,
321120,
321124,
70083385554796088,
8589934594,
0
],
"svclass": [
"$vcs_nba_dyn_obj",
0,
35,
2,
2,
0,
"sigprop$$",
0,
35,
2,
2,
0,
"process",
0,
200,
8,
8,
0,
"event",
0,
34,
2,
2,
0,
"mailbox",
0,
140,
9,
9,
0,
"semaphore",
0,
84,
5,
5,
0
],
"nMops": 533
},
"PDUW04DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0154459476470947,
0.15681999999999999,
0.017564,
321120,
321124,
1773479967.811868,
70083385565879200
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0172948837280273,
0.158836,
0.017564,
321120,
321124,
70083385571147634,
111669149697,
0
],
"nMops": 349
},
"PDDW12DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0135729312896729,
0.154777,
0.017564,
321120,
321124,
1773479967.8099949,
70083385560563292
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0154130458831787,
0.15678400000000001,
0.017564,
321120,
321124,
70083385565814768,
77309411329,
0
],
"nMops": 349
},
"PRDW16DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0210020542144775,
0.162881,
0.017564,
321120,
321124,
1773479967.8174241,
70083385581632478
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0227980613708496,
0.16484099999999999,
0.017564,
321120,
321124,
70083385586769150,
240518168577,
0
],
"nMops": 349
},
"PRDW08DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.019179105758667,
0.16089200000000001,
0.017564,
321120,
321124,
1773479967.8156011,
70083385576461176
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.020967960357666,
0.16284299999999999,
0.017564,
321120,
321124,
70083385581573888,
206158430209,
0
],
"nMops": 349
},
"reset_tb": {
"Compiled": "Yes",
"start_perf": [
2.0246798992156982,
0.16686000000000001,
0.017564,
321120,
321124,
1773479967.8211019,
70083385592064148
],
"nQuads": 48,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 13,
"end_perf": [
2.0257720947265625,
0.16805100000000001,
0.017564,
321120,
321124,
70083385595197388,
700079669249,
0
],
"nMops": 74
},
"spi_if": {
"start_perf": [
2.0258040428161621,
0.16808600000000001,
0.017564,
321120,
321124,
1773479967.822226,
70083385595255524
],
"Compiled": "Yes",
"nQuads": 12,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 10,
"end_perf": [
2.0267369747161865,
0.16811000000000001,
0.018557000000000001,
321120,
321124,
70083385597928036,
682899800065,
0
],
"svclass": [
"spi_if_vcs_virt_intf_C",
0,
0,
0,
0,
0
],
"nMops": 24
},
"PVDD2POC_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0282270908355713,
0.169654,
0.01864,
321120,
321124,
1773479967.8246491,
70083385602125402
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0288760662078857,
0.169654,
0.019347,
321120,
321124,
70083385604010682,
360777252865,
0
],
"nMops": 5
},
"PENDCAP_G": {
"Compiled": "Yes",
"start_perf": [
2.0267689228057861,
0.16814200000000001,
0.018561000000000001,
321120,
321124,
1773479967.8231909,
70083385597991372
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0274639129638672,
0.168825,
0.018636,
321120,
321124,
70083385600005642,
188978561025,
0
],
"nMops": 5
},
"PVDD1ANA_H_G": {
"Compiled": "Yes",
"start_perf": [
2.027501106262207,
0.16886100000000001,
0.01864,
321120,
321124,
1773479967.8239231,
70083385600084354
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0281999111175537,
0.169623,
0.01864,
321120,
321124,
70083385602071890,
326417514497,
0
],
"nMops": 5
},
"PVSS2AC_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0296149253845215,
0.170018,
0.019789000000000001,
321120,
321124,
1773479967.8260369,
70083385606066870
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0301990509033203,
0.170018,
0.020426,
321120,
321124,
70083385607742100,
429496729601,
0
],
"nMops": 5
},
"PVSS3AC_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0302259922027588,
0.170018,
0.020455999999999998,
321120,
321124,
1773479967.826648,
70083385607792598
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0308399200439453,
0.17039099999999999,
0.020752,
321120,
321124,
70083385609558922,
463856467969,
0
],
"nMops": 5
}
},
"ObjArchives": [],
"stat": {
"ru_self_end": {
"ru_utime_sec": 0.17053599999999999,
"ru_nivcsw": 1,
"ru_majflt": 0,
"ru_stime_sec": 0.02077,
"ru_nvcsw": 1,
"ru_maxrss_kb": 60452,
"ru_minflt": 6298
},
"ru_childs_end": {
"ru_utime_sec": 0.0,
"ru_nivcsw": 0,
"ru_majflt": 0,
"ru_stime_sec": 0.0,
"ru_nvcsw": 0,
"ru_maxrss_kb": 0,
"ru_minflt": 0
},
"cpu_cycles_end": 70083385609936994,
"peak_mem_kb": 321124
}
}

View File

@ -0,0 +1,608 @@
{
"reusePaths": {
"sZaSM_d": {
"icPath": "csrc"
},
"yeRHW_d": {
"icPath": "csrc"
},
"bghMB_d": {
"icPath": "csrc"
},
"i0k2A_d": {
"icPath": "csrc"
},
"eR5Zz_d": {
"icPath": "csrc"
},
"AyqFm_d": {
"icPath": "csrc"
},
"BL1m7_d": {
"icPath": "csrc"
},
"aJYLF_d": {
"icPath": "csrc"
},
"BM4bj_d": {
"icPath": "csrc"
},
"QGhk6_d": {
"icPath": "csrc"
},
"NkwYe_d": {
"icPath": "csrc"
},
"Jztd6_d": {
"icPath": "csrc"
},
"nS0i0_d": {
"icPath": "csrc"
},
"ZZxj5_d": {
"icPath": "csrc"
},
"pucZW_d": {
"icPath": "csrc"
},
"urn8Q_d": {
"icPath": "csrc"
},
"wpYca_d": {
"icPath": "csrc"
},
"I7RzE_d": {
"icPath": "csrc"
},
"YBQ1m_d": {
"icPath": "csrc"
}
},
"CompUnits": {},
"Modules": {
"dacif_0000": {
"Compiled": "Yes",
"start_perf": [
1.8578789234161377,
0.0,
0.001103,
321096,
321096,
1773479967.6543009,
70083385119457252
],
"nQuads": 16245,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 2597,
"end_perf": [
1.9472570419311523,
0.086514999999999995,
0.012045999999999999,
321120,
321120,
70083385372548748,
498216206337,
0
],
"nMops": 43142
},
"ramp_gen_0000": {
"Compiled": "Yes",
"start_perf": [
1.9473209381103516,
0.086577000000000001,
0.012055,
321120,
321120,
1773479967.7437429,
70083385372657430
],
"nQuads": 11555,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 783,
"end_perf": [
2.0077390670776367,
0.15248700000000001,
0.012055,
321120,
321124,
70083385544094966,
597000454145,
0
],
"nMops": 40957
},
"tsdn28hpcpuhdb4096x128m4mw_170a_Int_Array": {
"Compiled": "Yes",
"start_perf": [
2.0077929496765137,
0.15254599999999999,
0.012055,
321120,
321124,
1773479967.804215,
70083385544170496
],
"nQuads": 1663,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 65,
"end_perf": [
2.0180690288543701,
0.16375600000000001,
0.012055,
321120,
321124,
70083385573354080,
485331304449,
0
],
"nMops": 5779
},
"sirv_gnrl_dffl": {
"Compiled": "Yes",
"start_perf": [
2.0351779460906982,
0.18132999999999999,
0.013139,
321120,
321124,
1773479967.8316,
70083385621843560
],
"nQuads": 96,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 25,
"end_perf": [
2.0367250442504883,
0.18301700000000001,
0.013139,
321120,
321124,
70083385626268396,
571230650369,
0
],
"nMops": 172
},
"PDDW12DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0241880416870117,
0.170432,
0.012055,
321120,
321124,
1773479967.82061,
70083385590670596
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0259950160980225,
0.172402,
0.012055,
321120,
321124,
70083385595831472,
81604378625,
0
],
"nMops": 349
},
"pulse_generator": {
"Compiled": "Yes",
"start_perf": [
2.0181059837341309,
0.163796,
0.012055,
321120,
321124,
1773479967.814528,
70083385573421496
],
"nQuads": 675,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 70,
"end_perf": [
2.0220060348510742,
0.16805100000000001,
0.012055,
321120,
321124,
70083385584525382,
554050781185,
0
],
"nMops": 1336
},
"PDUW04DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0260279178619385,
0.17244000000000001,
0.012055,
321120,
321124,
1773479967.8224499,
70083385595892790
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0278160572052002,
0.17438999999999999,
0.012055,
321120,
321124,
70083385600996434,
115964116993,
0
],
"nMops": 349
},
"PDDW04DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.022042989730835,
0.16809199999999999,
0.012055,
321120,
321124,
1773479967.818465,
70083385584589298
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0241529941558838,
0.17039399999999999,
0.012055,
321120,
321124,
70083385590613132,
47244640257,
0
],
"nMops": 349
},
"PDUW12DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0278489589691162,
0.174426,
0.012055,
321120,
321124,
1773479967.824271,
70083385601058404
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0297040939331055,
0.17542199999999999,
0.013074000000000001,
321120,
321124,
70083385606349122,
150323855361,
0
],
"nMops": 349
},
"PRDW08DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0297360420227051,
0.175455,
0.013077,
321120,
321124,
1773479967.826158,
70083385606410784
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.031519889831543,
0.177342,
0.013136,
321120,
321124,
70083385611521108,
210453397505,
0
],
"nMops": 349
},
"PRDW16DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0315608978271484,
0.17738399999999999,
0.013139,
321120,
321124,
1773479967.8279829,
70083385611585196
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0333530902862549,
0.179339,
0.013139,
321120,
321124,
70083385616697102,
244813135873,
0
],
"nMops": 349
},
"PRUW12DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0333850383758545,
0.179373,
0.013139,
321120,
321124,
1773479967.829807,
70083385616757732
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.035146951675415,
0.18129500000000001,
0.013139,
321120,
321124,
70083385621784242,
279172874241,
0
],
"nMops": 349
},
"lvds_if": {
"start_perf": [
2.0367588996887207,
0.18305399999999999,
0.013139,
321120,
321124,
1773479967.8331809,
70083385626324620
],
"Compiled": "Yes",
"nQuads": 12,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 10,
"end_perf": [
2.0377650260925293,
0.18415100000000001,
0.013139,
321120,
321124,
70083385629206100,
721554505729,
0
],
"svclass": [
"lvds_if_vcs_virt_intf_C",
0,
0,
0,
0,
0
],
"nMops": 24
},
"PENDCAPA_G": {
"Compiled": "Yes",
"start_perf": [
2.0377969741821289,
0.18418699999999999,
0.013139,
321120,
321124,
1773479967.834219,
70083385629269842
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0384280681610107,
0.18487500000000001,
0.013139,
321120,
321124,
70083385631087666,
193273528321,
0
],
"nMops": 5
},
"PVDD1ANA_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0384581089019775,
0.18490699999999999,
0.013139,
321120,
321124,
1773479967.8348801,
70083385631143976
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0390989780426025,
0.18560699999999999,
0.013139,
321120,
321124,
70083385632988720,
330712481793,
0
],
"nMops": 5
},
"PVDD2POC_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0391280651092529,
0.185638,
0.013139,
321120,
321124,
1773479967.8355501,
70083385633040572
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0397439002990723,
0.186311,
0.013139,
321120,
321124,
70083385634814062,
365072220161,
0
],
"nMops": 5
},
"PVSS1AC_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0397710800170898,
0.18634000000000001,
0.013139,
321120,
321124,
1773479967.8361931,
70083385634862896
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0403969287872314,
0.18702299999999999,
0.013139,
321120,
321124,
70083385636666758,
399431958529,
0
],
"nMops": 5
},
"PVSS2AC_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0404250621795654,
0.187053,
0.013139,
321120,
321124,
1773479967.8368471,
70083385636719416
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0410199165344238,
0.18770200000000001,
0.013139,
321120,
321124,
70083385638432136,
433791696897,
0
],
"nMops": 5
},
"PVSS3AC_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0410459041595459,
0.18773100000000001,
0.013139,
321120,
321124,
1773479967.8374679,
70083385638479932
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0416350364685059,
0.18837400000000001,
0.013139,
321120,
321124,
70083385640177244,
468151435265,
0
],
"nMops": 5
}
},
"ObjArchives": [],
"stat": {
"ru_self_end": {
"ru_utime_sec": 0.18851499999999999,
"ru_nivcsw": 1,
"ru_majflt": 0,
"ru_stime_sec": 0.013139,
"ru_nvcsw": 2,
"ru_maxrss_kb": 60172,
"ru_minflt": 6184
},
"ru_childs_end": {
"ru_utime_sec": 0.0,
"ru_nivcsw": 0,
"ru_majflt": 0,
"ru_stime_sec": 0.0,
"ru_nvcsw": 0,
"ru_maxrss_kb": 0,
"ru_minflt": 0
},
"cpu_cycles_end": 70083385640505890,
"peak_mem_kb": 321124
}
}

View File

@ -0,0 +1,602 @@
{
"reusePaths": {
"wGYhm_d": {
"icPath": "csrc"
},
"LR0zI_d": {
"icPath": "csrc"
},
"EkH6u_d": {
"icPath": "csrc"
},
"qcK8J_d": {
"icPath": "csrc"
},
"qLaCg_d": {
"icPath": "csrc"
},
"uKPxf_d": {
"icPath": "csrc"
},
"uQmb5_d": {
"icPath": "csrc"
},
"HtwuV_d": {
"icPath": "csrc"
},
"q09PC_d": {
"icPath": "csrc"
},
"Eie6s_d": {
"icPath": "csrc"
},
"CQ4ek_d": {
"icPath": "csrc"
},
"UTi0b_d": {
"icPath": "csrc"
},
"KpuhN_d": {
"icPath": "csrc"
},
"S90qD_d": {
"icPath": "csrc"
},
"V63WF_d": {
"icPath": "csrc"
},
"UyGax_d": {
"icPath": "csrc"
},
"DTJPF_d": {
"icPath": "csrc"
},
"g8kcb_d": {
"icPath": "csrc"
},
"rq1J0_d": {
"icPath": "csrc"
}
},
"CompUnits": {},
"Modules": {
"dac_regfile": {
"Compiled": "Yes",
"start_perf": [
1.8584680557250977,
0.0,
0.00097900000000000005,
321096,
321096,
1773479967.6548901,
70083385121274100
],
"nQuads": 9772,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 1225,
"end_perf": [
1.9300410747528076,
0.057159000000000001,
0.021569000000000001,
321120,
321120,
70083385323708878,
506806140929,
0
],
"nMops": 29286
},
"PDUW04SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9791638851165771,
0.106241,
0.026075999999999998,
321120,
321124,
1773479967.7755859,
70083385462967278
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9833829402923584,
0.109469,
0.027095999999999999,
321120,
321124,
70083385475116752,
120259084289,
0
],
"nMops": 349
},
"spi_bus_decoder_0000": {
"Compiled": "Yes",
"start_perf": [
1.9615941047668457,
0.089214000000000002,
0.023935000000000001,
321120,
321124,
1773479967.7580161,
70083385413173480
],
"nQuads": 2554,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 394,
"end_perf": [
1.974247932434082,
0.100912,
0.026041999999999999,
321120,
321124,
70083385449073358,
661424963585,
0
],
"nMops": 6444
},
"systemregfile": {
"Compiled": "Yes",
"start_perf": [
1.9300990104675293,
0.057204999999999999,
0.021586999999999999,
321120,
321120,
1773479967.726521,
70083385323804544
],
"nQuads": 6948,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 881,
"end_perf": [
1.9615480899810791,
0.089174000000000003,
0.023924000000000001,
321120,
321124,
70083385413059624,
493921239041,
0
],
"nMops": 18207
},
"DA4008_DEM_Parallel_PRBS_64CH": {
"Compiled": "Yes",
"start_perf": [
1.9742910861968994,
0.10095,
0.026051000000000001,
321120,
321124,
1773479967.7707131,
70083385449145434
],
"nQuads": 6,
"child_modules": {
"DA4008_DEM_Parallel_PRBS_1CH": 64
},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
1.9753179550170898,
0.102063,
0.026058000000000001,
321120,
321124,
70083385452084192,
648540061697,
0
],
"nMops": 5
},
"PDDW12SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9773900508880615,
0.104306,
0.026075999999999998,
321120,
321124,
1773479967.7738121,
70083385457935786
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9791319370269775,
0.10620599999999999,
0.026075999999999998,
321120,
321124,
70083385462909544,
85899345921,
0
],
"nMops": 349
},
"PDDW04SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9753479957580566,
0.10209,
0.026065000000000001,
321120,
321124,
1773479967.77177,
70083385452138454
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9773569107055664,
0.10427599999999999,
0.026068999999999998,
321120,
321124,
70083385457876786,
51539607553,
0
],
"nMops": 349
},
"PCLAMPC_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0058069229125977,
0.12840699999999999,
0.030469,
321120,
321124,
1773479967.8022289,
70083385538537784
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0065619945526123,
0.129051,
0.030622,
321120,
321124,
70083385540704292,
17179869185,
0
],
"nMops": 5
},
"sirv_gnrl_ltch": {
"Compiled": "Yes",
"start_perf": [
2.004410982131958,
0.127827,
0.029526,
321120,
321124,
1773479967.800833,
70083385534575090
],
"nQuads": 72,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 17,
"end_perf": [
2.005774974822998,
0.12837799999999999,
0.030461999999999999,
321120,
321124,
70083385538478346,
584115552257,
0
],
"nMops": 147
},
"PDUW12SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9834809303283691,
0.109556,
0.027118,
321120,
321124,
1773479967.7799029,
70083385475294832
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.990156888961792,
0.115853,
0.027323,
321120,
321124,
70083385494316150,
154618822657,
0
],
"nMops": 349
},
"PVDD3A_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0079948902130127,
0.129608,
0.031585000000000002,
321120,
321124,
1773479967.8044169,
70083385544734596
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0086450576782227,
0.129608,
0.032294999999999997,
321120,
321124,
70083385546610572,
369367187457,
0
],
"nMops": 5
},
"PRDW08SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9902439117431641,
0.11593199999999999,
0.027342000000000002,
321120,
321124,
1773479967.7866659,
70083385494444478
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9959549903869629,
0.12067899999999999,
0.028524000000000001,
321120,
321124,
70083385510784820,
214748364801,
0
],
"nMops": 349
},
"PRDW16SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9960610866546631,
0.12077300000000001,
0.028545999999999998,
321120,
321124,
1773479967.7924831,
70083385510974368
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0024800300598145,
0.12572900000000001,
0.029517999999999999,
321120,
321124,
70083385529137104,
249108103169,
0
],
"nMops": 349
},
"PRCUT_G": {
"Compiled": "Yes",
"start_perf": [
2.0065920352935791,
0.129078,
0.030627999999999999,
321120,
321124,
1773479967.803014,
70083385540790878
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0073039531707764,
0.129078,
0.031362000000000001,
321120,
321124,
70083385542808662,
197568495617,
0
],
"nMops": 5
},
"PRUW12SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0025138854980469,
0.12575900000000001,
0.029526,
321120,
321124,
1773479967.7989359,
70083385529214432
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0043759346008301,
0.12778900000000001,
0.029526,
321120,
321124,
70083385534516158,
283467841537,
0
],
"nMops": 349
},
"PVDD1DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0073330402374268,
0.129078,
0.031393999999999998,
321120,
321124,
1773479967.803755,
70083385542859752
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0079669952392578,
0.129584,
0.031579000000000003,
321120,
321124,
70083385544685140,
335007449089,
0
],
"nMops": 5
},
"PVSS1ANA_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0086739063262939,
0.129608,
0.032326000000000001,
321120,
321124,
1773479967.8050959,
70083385546660376
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0097448825836182,
0.13009000000000001,
0.032522000000000002,
321120,
321124,
70083385549726674,
403726925825,
0
],
"nMops": 5
},
"PVSS2ANA_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0097730159759521,
0.13011400000000001,
0.032528000000000001,
321120,
321124,
1773479967.806195,
70083385549778774
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0103750228881836,
0.13063900000000001,
0.032659000000000001,
321120,
321124,
70083385551513078,
438086664193,
0
],
"nMops": 5
},
"PVSS3DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0104019641876221,
0.130663,
0.032665,
321120,
321124,
1773479967.806824,
70083385551561608
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0110709667205811,
0.13139300000000001,
0.032665,
321120,
321124,
70083385553487370,
472446402561,
0
],
"nMops": 5
}
},
"ObjArchives": [],
"stat": {
"ru_self_end": {
"ru_utime_sec": 0.13154199999999999,
"ru_nivcsw": 1,
"ru_majflt": 0,
"ru_stime_sec": 0.032665,
"ru_nvcsw": 13,
"ru_maxrss_kb": 59592,
"ru_minflt": 5381
},
"ru_childs_end": {
"ru_utime_sec": 0.0,
"ru_nivcsw": 0,
"ru_majflt": 0,
"ru_stime_sec": 0.0,
"ru_nvcsw": 0,
"ru_maxrss_kb": 0,
"ru_minflt": 0
},
"cpu_cycles_end": 70083385553830998,
"peak_mem_kb": 321124
}
}

View File

@ -0,0 +1,607 @@
{
"reusePaths": {
"YnCHV_d": {
"icPath": "csrc"
},
"yt645_d": {
"icPath": "csrc"
},
"qCQFW_d": {
"icPath": "csrc"
},
"J5zQK_d": {
"icPath": "csrc"
},
"gzftm_d": {
"icPath": "csrc"
},
"anuMN_d": {
"icPath": "csrc"
},
"Pzaun_d": {
"icPath": "csrc"
},
"J6fGD_d": {
"icPath": "csrc"
},
"mJZpP_d": {
"icPath": "csrc"
},
"qxEhc_d": {
"icPath": "csrc"
},
"JznNw_d": {
"icPath": "csrc"
},
"YRh5I_d": {
"icPath": "csrc"
},
"EyyeT_d": {
"icPath": "csrc"
},
"uuDJt_d": {
"icPath": "csrc"
},
"sPggV_d": {
"icPath": "csrc"
},
"t6fPF_d": {
"icPath": "csrc"
},
"gL5Pd_d": {
"icPath": "csrc"
},
"Md441_d": {
"icPath": "csrc"
},
"IZu3i_d": {
"icPath": "csrc"
}
},
"CompUnits": {},
"Modules": {
"DEM_Reverse_64CH_0000": {
"Compiled": "Yes",
"start_perf": [
1.8585898876190186,
0.00037399999999999998,
0.0,
321096,
321096,
1773479967.6550119,
70083385121151906
],
"nQuads": 10851,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 1504,
"end_perf": [
1.9302639961242676,
0.062198000000000003,
0.016368000000000001,
321120,
321120,
70083385324322700,
691489734657,
0
],
"nMops": 32497
},
"ulink_descrambler_128": {
"Compiled": "Yes",
"start_perf": [
2.0076189041137695,
0.14187,
0.017732999999999999,
321120,
321124,
1773479967.8040409,
70083385543758168
],
"nQuads": 211,
"child_modules": {
"ulink_descrambler_32": 4
},
"Compiled Times": 2,
"nRouts": 34,
"end_perf": [
2.0132620334625244,
0.14699100000000001,
0.018787999999999999,
321120,
321124,
70083385559718296,
519691042817,
0
],
"nMops": 453
},
"awg_top": {
"Compiled": "Yes",
"start_perf": [
1.9303150177001953,
0.062243,
0.016379000000000001,
321120,
321120,
1773479967.726737,
70083385324409216
],
"nQuads": 6143,
"child_modules": {
"dpram": 1,
"sram_if_0001": 1,
"sram_dmux_w_0000": 1,
"sram_if_0002": 1
},
"Compiled Times": 2,
"nRouts": 770,
"end_perf": [
1.9700961112976074,
0.10412399999999999,
0.017354000000000001,
321120,
321124,
70083385437308084,
631360192513,
0
],
"nMops": 16760
},
"PRDW08SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
1.9934110641479492,
0.12770799999999999,
0.017464,
321120,
321124,
1773479967.7898331,
70083385503459996
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9997138977050781,
0.13398099999999999,
0.017571,
321120,
321124,
70083385521318540,
219043332097,
0
],
"nMops": 349
},
"rst_gen_unit": {
"Compiled": "Yes",
"start_perf": [
1.9781169891357422,
0.11286499999999999,
0.017363,
321120,
321124,
1773479967.774539,
70083385459996042
],
"nQuads": 576,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 107,
"end_perf": [
1.9816389083862305,
0.116704,
0.017363,
321120,
321124,
70083385470026978,
541165879297,
0
],
"nMops": 1152
},
"syn_fwft_fifo": {
"Compiled": "Yes",
"start_perf": [
1.9701430797576904,
0.104168,
0.017361000000000001,
321120,
321124,
1773479967.7665651,
70083385437378518
],
"nQuads": 1370,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 165,
"end_perf": [
1.9780769348144531,
0.11282300000000001,
0.017361000000000001,
321120,
321124,
70083385459932460,
502511173633,
0
],
"nMops": 3886
},
"PRCUTA_G": {
"Compiled": "Yes",
"start_perf": [
2.0141201019287109,
0.14702299999999999,
0.019692000000000001,
321120,
321124,
1773479967.8105421,
70083385562111804
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0148379802703857,
0.14766299999999999,
0.019834999999999998,
321120,
321124,
70083385564176368,
201863462913,
0
],
"nMops": 5
},
"PDUW12SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
1.9890620708465576,
0.123173,
0.017440000000000001,
321120,
321124,
1773479967.7854841,
70083385491040212
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9933099746704102,
0.127609,
0.01745,
321120,
321124,
70083385503272612,
158913789953,
0
],
"nMops": 349
},
"PVSS2ANA_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0169188976287842,
0.14983299999999999,
0.019925999999999999,
321120,
321124,
1773479967.8133409,
70083385570047024
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0175590515136719,
0.150531,
0.019925999999999999,
321120,
321124,
70083385571888972,
442381631489,
0
],
"nMops": 5
},
"PDDW04SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
1.9816739559173584,
0.116742,
0.017363,
321120,
321124,
1773479967.778096,
70083385470087002
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9836668968200684,
0.11891500000000001,
0.017363,
321120,
321124,
70083385475774906,
55834574849,
0
],
"nMops": 349
},
"PDUW04SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
1.9854691028594971,
0.12082900000000001,
0.017416000000000001,
321120,
321124,
1773479967.7818911,
70083385480852090
],
"nQuads": 151,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 25,
"end_perf": [
1.9890270233154297,
0.123139,
0.017434999999999999,
321120,
321124,
70083385490982088,
124554051585,
0
],
"nMops": 361
},
"PDDW12SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
1.9837000370025635,
0.118952,
0.017363,
321120,
321124,
1773479967.780122,
70083385475829996
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9854369163513184,
0.120798,
0.017412,
321120,
321124,
70083385480792234,
90194313217,
0
],
"nMops": 349
},
"PVSS3DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0175850391387939,
0.15056,
0.019927,
321120,
321124,
1773479967.814007,
70083385571937166
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0181689262390137,
0.151196,
0.019927,
321120,
321124,
70083385573619646,
476741369857,
0
],
"nMops": 5
},
"PRDW16SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
1.9997670650482178,
0.13403200000000001,
0.017578,
321120,
321124,
1773479967.7961891,
70083385521401766
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0033390522003174,
0.137597,
0.017611999999999999,
321120,
321124,
70083385531577510,
253403070465,
0
],
"nMops": 349
},
"PCLAMPC_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0132958889007568,
0.14702299999999999,
0.018792,
321120,
321124,
1773479967.8097179,
70083385559774430
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0140900611877441,
0.14702299999999999,
0.019657000000000001,
321120,
321124,
70083385562057148,
21474836481,
0
],
"nMops": 5
},
"PVSS1ANA_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0161709785461426,
0.14902699999999999,
0.019925999999999999,
321120,
321124,
1773479967.812593,
70083385567927632
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0168890953063965,
0.14980099999999999,
0.019925999999999999,
321120,
321124,
70083385569990960,
408021893121,
0
],
"nMops": 5
},
"PRUW12SDGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0033750534057617,
0.137631,
0.017616,
321120,
321124,
1773479967.7997971,
70083385531636022
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0074820518493652,
0.14175299999999999,
0.017718999999999999,
321120,
321124,
70083385543523312,
287762808833,
0
],
"nMops": 349
},
"PVDD3A_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0155389308929443,
0.148338,
0.019925999999999999,
321120,
321124,
1773479967.8119609,
70083385566135894
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0161440372467041,
0.14899699999999999,
0.019925999999999999,
321120,
321124,
70083385567876186,
373662154753,
0
],
"nMops": 5
},
"PVDD1DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0148670673370361,
0.14769099999999999,
0.019838999999999999,
321120,
321124,
1773479967.8112891,
70083385564230184
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0155038833618164,
0.14830299999999999,
0.019921000000000001,
321120,
321124,
70083385566083854,
339302416385,
0
],
"nMops": 5
}
},
"ObjArchives": [],
"stat": {
"ru_self_end": {
"ru_utime_sec": 0.151338,
"ru_nivcsw": 1,
"ru_majflt": 0,
"ru_stime_sec": 0.019927,
"ru_nvcsw": 17,
"ru_maxrss_kb": 60116,
"ru_minflt": 5387
},
"ru_childs_end": {
"ru_utime_sec": 0.0,
"ru_nivcsw": 0,
"ru_majflt": 0,
"ru_stime_sec": 0.0,
"ru_nvcsw": 0,
"ru_maxrss_kb": 0,
"ru_minflt": 0
},
"cpu_cycles_end": 70083385573945984,
"peak_mem_kb": 321124
}
}

View File

@ -0,0 +1,611 @@
{
"reusePaths": {
"dfLHW_d": {
"icPath": "csrc"
},
"U0PST_d": {
"icPath": "csrc"
},
"KkPJH_d": {
"icPath": "csrc"
},
"sIRhK_d": {
"icPath": "csrc"
},
"GzkJA_d": {
"icPath": "csrc"
},
"dteMU_d": {
"icPath": "csrc"
},
"AVYgt_d": {
"icPath": "csrc"
},
"NABmh_d": {
"icPath": "csrc"
},
"bQxt6_d": {
"icPath": "csrc"
},
"cQW1k_d": {
"icPath": "csrc"
},
"C0gYT_d": {
"icPath": "csrc"
},
"M7qR3_d": {
"icPath": "csrc"
},
"VaZm2_d": {
"icPath": "csrc"
},
"ga3jL_d": {
"icPath": "csrc"
},
"fLemy_d": {
"icPath": "csrc"
},
"zNPu5_d": {
"icPath": "csrc"
},
"mZVHG_d": {
"icPath": "csrc"
},
"Zp1LH_d": {
"icPath": "csrc"
},
"ke5cH_d": {
"icPath": "csrc"
}
},
"CompUnits": {},
"Modules": {
"PDDW08DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9762380123138428,
0.118617,
0.0087860000000000004,
321120,
321124,
1773479967.77266,
70083385454664468
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9783480167388916,
0.12091200000000001,
0.0087930000000000005,
321120,
321124,
70083385460690730,
60129542145,
0
],
"nMops": 349
},
"PVDD1A_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0042519569396973,
0.13924900000000001,
0.015594999999999999,
321120,
321124,
1773479967.800674,
70083385534242344
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0062229633331299,
0.141398,
0.015594999999999999,
321120,
321124,
70083385539870752,
309237645313,
0
],
"nMops": 5
},
"PDB3A_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9997119903564453,
0.138907,
0.012342000000000001,
321120,
321124,
1773479967.796134,
70083385521323288
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0041279792785645,
0.139128,
0.015582,
321120,
321124,
70083385534013160,
25769803777,
0
],
"nMops": 5
},
"DEM_PhaseSync_4008": {
"Compiled": "Yes",
"start_perf": [
1.8593800067901611,
0.00048799999999999999,
0.0,
321096,
321096,
1773479967.655802,
70083385123375800
],
"nQuads": 10922,
"child_modules": {
"DA4008_DEM_Parallel_PRBS_64CH": 1
},
"Compiled Times": 2,
"nRouts": 1320,
"end_perf": [
1.91457200050354,
0.054052999999999997,
0.0066179999999999998,
321120,
321120,
70083385279870310,
639950127105,
0
],
"nMops": 21548
},
"PDUW16DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9828460216522217,
0.12504499999999999,
0.008796,
321120,
321124,
1773479967.779268,
70083385473410592
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9846301078796387,
0.12593199999999999,
0.0098549999999999992,
321120,
321124,
70083385478501936,
163208757249,
0
],
"nMops": 349
},
"dpram": {
"Compiled": "Yes",
"start_perf": [
1.9568278789520264,
0.099142999999999995,
0.007626,
321120,
321124,
1773479967.7532499,
70083385399613468
],
"nQuads": 1187,
"child_modules": {
"tsdn28hpcpuhdb4096x128m4mw_170a": 8
},
"Compiled Times": 2,
"nRouts": 198,
"end_perf": [
1.9665350914001465,
0.109682,
0.0076769999999999998,
321120,
321124,
70083385427193564,
614180323329,
0
],
"nMops": 6110
},
"ulink_rx": {
"Compiled": "Yes",
"start_perf": [
1.9146420955657959,
0.054129999999999998,
0.0066179999999999998,
321120,
321120,
1773479967.7110641,
70083385279959236
],
"nQuads": 6216,
"child_modules": {
"ulink_frame_receiver_0000": 1,
"ulink_descrambler_128": 1
},
"Compiled Times": 2,
"nRouts": 837,
"end_perf": [
1.9567749500274658,
0.099089999999999998,
0.0076220000000000003,
321120,
321124,
70083385399528224,
511101108225,
0
],
"nMops": 16015
},
"PDUW08DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9810059070587158,
0.12303799999999999,
0.008796,
321120,
321124,
1773479967.7774279,
70083385468191848
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9828140735626221,
0.12501000000000001,
0.008796,
321120,
321124,
70083385473351066,
128849018881,
0
],
"nMops": 349
},
"PDDW16DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9783821105957031,
0.120946,
0.008796,
321120,
321124,
1773479967.7748041,
70083385460744488
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.980971097946167,
0.122999,
0.008796,
321120,
321124,
70083385468133294,
94489280513,
0
],
"nMops": 349
},
"DA4008_DEM_Parallel_PRBS_1CH": {
"Compiled": "Yes",
"start_perf": [
1.966576099395752,
0.109724,
0.0076800000000000002,
321120,
321124,
1773479967.7629981,
70083385427280382
],
"nQuads": 590,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 56,
"end_perf": [
1.9761970043182373,
0.118575,
0.0087829999999999991,
321120,
321124,
70083385454604282,
644245094401,
0
],
"nMops": 1959
},
"PVDD2ANA_H_G": {
"Compiled": "Yes",
"start_perf": [
2.006309986114502,
0.14149300000000001,
0.015597,
321120,
321124,
1773479967.802732,
70083385540036300
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0081520080566406,
0.14350099999999999,
0.015597,
321120,
321124,
70083385545331116,
343597383681,
0
],
"nMops": 5
},
"PRDW12DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9846620559692383,
0.12596399999999999,
0.0098580000000000004,
321120,
321124,
1773479967.7810841,
70083385478561006
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9870820045471191,
0.12793199999999999,
0.0099249999999999998,
321120,
321124,
70083385485460752,
223338299393,
0
],
"nMops": 349
},
"PRUW16DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.991858959197998,
0.132768,
0.0099570000000000006,
321120,
321124,
1773479967.788281,
70083385499057792
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9972600936889648,
0.13752600000000001,
0.011089999999999999,
321120,
321124,
70083385514477852,
292057776129,
0
],
"nMops": 349
},
"PRUW08DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9871160984039307,
0.127967,
0.0099279999999999993,
321120,
321124,
1773479967.7835381,
70083385485518088
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9917581081390381,
0.13266500000000001,
0.0099489999999999995,
321120,
321124,
70083385498874728,
257698037761,
0
],
"nMops": 349
},
"iopad": {
"Compiled": "Yes",
"start_perf": [
1.9973599910736084,
0.137627,
0.011098999999999999,
321120,
321124,
1773479967.793782,
70083385514667432
],
"nQuads": 6,
"child_modules": {
"PDUW08SDGZ_V_G": 3,
"PDUW04SDGZ_V_G": 3,
"PDDW04SDGZ_V_G": 2
},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
1.9996209144592285,
0.138907,
0.012222999999999999,
321120,
321124,
70083385521156488,
489626271745,
0
],
"nMops": 5
},
"PVDD3AC_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0082330703735352,
0.143591,
0.015597,
321120,
321124,
1773479967.8046551,
70083385545490268
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0106329917907715,
0.14477200000000001,
0.016576,
321120,
321124,
70083385552407484,
377957122049,
0
],
"nMops": 5
},
"PVSS1DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0107309818267822,
0.144869,
0.016587999999999999,
321120,
321124,
1773479967.807153,
70083385552587756
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0120940208435059,
0.146317,
0.016625999999999998,
321120,
321124,
70083385556406434,
412316860417,
0
],
"nMops": 5
},
"PVSS2DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0121290683746338,
0.14635200000000001,
0.016629999999999999,
321120,
321124,
1773479967.8085511,
70083385556466100
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0127608776092529,
0.14704100000000001,
0.016629999999999999,
321120,
321124,
70083385558285826,
446676598785,
0
],
"nMops": 5
},
"sram_if": {
"Compiled": "Yes",
"start_perf": [
2.0127899646759033,
0.14707200000000001,
0.016629999999999999,
321120,
321124,
1773479967.809212,
70083385558336302
],
"nQuads": 30,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 13,
"end_perf": [
2.0137770175933838,
0.148149,
0.016629999999999999,
321120,
321124,
70083385561166886,
605590388737,
0
],
"nMops": 73
}
},
"ObjArchives": [],
"stat": {
"ru_self_end": {
"ru_utime_sec": 0.148344,
"ru_nivcsw": 4,
"ru_majflt": 0,
"ru_stime_sec": 0.016629999999999999,
"ru_nvcsw": 14,
"ru_maxrss_kb": 59924,
"ru_minflt": 5506
},
"ru_childs_end": {
"ru_utime_sec": 0.0,
"ru_nivcsw": 0,
"ru_majflt": 0,
"ru_stime_sec": 0.0,
"ru_nvcsw": 0,
"ru_maxrss_kb": 0,
"ru_minflt": 0
},
"cpu_cycles_end": 70083385561626160,
"peak_mem_kb": 321124
}
}

View File

@ -0,0 +1,625 @@
{
"reusePaths": {
"eAsJz_d": {
"icPath": "csrc"
},
"MEIvW_d": {
"icPath": "csrc"
},
"FDqaf_d": {
"icPath": "csrc"
},
"K0TuH_d": {
"icPath": "csrc"
},
"J6VbG_d": {
"icPath": "csrc"
},
"yuek5_d": {
"icPath": "csrc"
},
"xqWfY_d": {
"icPath": "csrc"
},
"StNiL_d": {
"icPath": "csrc"
},
"S5Dr6_d": {
"icPath": "csrc"
},
"CNBi6_d": {
"icPath": "csrc"
},
"ZKk4u_d": {
"icPath": "csrc"
},
"aEWK6_d": {
"icPath": "csrc"
},
"EtT2L_d": {
"icPath": "csrc"
},
"ErxQ3_d": {
"icPath": "csrc"
},
"DA1Pu_d": {
"icPath": "csrc"
},
"rZC3e_d": {
"icPath": "csrc"
},
"jHcbf_d": {
"icPath": "csrc"
},
"nJgqZ_d": {
"icPath": "csrc"
}
},
"CompUnits": {
"sH4Fc_d": {
"mode": 4,
"bytes": 301568,
"mod": "TB",
"out": "sH4Fc_d.o",
"archive": "archive.1/_64123_archive_1.a",
"text": 192017,
"checksum": 0
}
},
"Modules": {
"PVSS2DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0408909320831299,
0.17416599999999999,
0.023540999999999999,
323088,
323092,
1773479967.8373129,
70083385638042272
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0414628982543945,
0.17422399999999999,
0.024105999999999999,
323088,
323092,
70083385639689158,
450971566081,
0
],
"nMops": 5
},
"TB": {
"Compiled": "Yes",
"start_perf": [
1.8600120544433594,
0.00039100000000000002,
0.0,
321096,
321096,
1773479967.6564341,
70083385125163428
],
"nQuads": 7153,
"child_modules": {
"lvds_if": 1,
"spi_if": 1,
"da4008_chip_top": 1,
"DEM_Reverse_64CH_0000": 1
},
"Compiled Times": 2,
"nRouts": 642,
"end_perf": [
1.9631540775299072,
0.094270000000000007,
0.018634000000000001,
323080,
323080,
70083385417603822,
725849473025,
0
],
"nMops": 27223
},
"PDDW08DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0241329669952393,
0.15970000000000001,
0.019729,
323088,
323092,
1773479967.820555,
70083385590515290
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0261869430541992,
0.161937,
0.019729,
323088,
323092,
70083385596378128,
64424509441,
0
],
"nMops": 349
},
"spi_slave": {
"Compiled": "Yes",
"start_perf": [
1.963202953338623,
0.094315999999999997,
0.018643,
323080,
323080,
1773479967.759625,
70083385417707746
],
"nQuads": 9193,
"child_modules": {
"spi_sys_0000": 1
},
"Compiled Times": 2,
"nRouts": 1020,
"end_perf": [
2.0149190425872803,
0.14970800000000001,
0.019668999999999999,
323088,
323092,
70083385564449370,
665719930881,
0
],
"nMops": 25069
},
"PDDW16DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0262210369110107,
0.16197500000000001,
0.019729,
323088,
323092,
1773479967.822643,
70083385596440848
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0280730724334717,
0.163994,
0.019729,
323088,
323092,
70083385601726982,
98784247809,
0
],
"nMops": 349
},
"clk_gen": {
"Compiled": "Yes",
"start_perf": [
2.0149679183959961,
0.149755,
0.019675000000000002,
323088,
323092,
1773479967.8113899,
70083385564526738
],
"nQuads": 1019,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 126,
"end_perf": [
2.0203719139099121,
0.15560199999999999,
0.019723999999999998,
323088,
323092,
70083385579894220,
687194767361,
0
],
"nMops": 2525
},
"PRUW16DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0352349281311035,
0.170711,
0.020826000000000001,
323088,
323092,
1773479967.8316569,
70083385622002958
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.036945104598999,
0.17257500000000001,
0.020826000000000001,
323088,
323092,
70083385626896958,
296352743425,
0
],
"nMops": 349
},
"ulink_descrambler_32": {
"Compiled": "Yes",
"start_perf": [
2.0204119682312012,
0.15564,
0.019729,
323088,
323092,
1773479967.816834,
70083385579961246
],
"nQuads": 441,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 58,
"end_perf": [
2.0240950584411621,
0.15965799999999999,
0.019729,
323088,
323092,
70083385590453740,
515396075521,
0
],
"nMops": 1146
},
"PDUW16DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0299758911132812,
0.166071,
0.019729,
323088,
323092,
1773479967.8263979,
70083385607088626
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0316870212554932,
0.167937,
0.019729,
323088,
323092,
70083385611971984,
167503724545,
0
],
"nMops": 349
},
"PDUW08DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0281059741973877,
0.16403100000000001,
0.019729,
323088,
323092,
1773479967.824528,
70083385601782664
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0299429893493652,
0.16603399999999999,
0.019729,
323088,
323092,
70083385607031742,
133143986177,
0
],
"nMops": 349
},
"PDB3A_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0377640724182129,
0.17347000000000001,
0.020826000000000001,
323088,
323092,
1773479967.8341861,
70083385629175120
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0383739471435547,
0.17413500000000001,
0.020826000000000001,
323088,
323092,
70083385630930748,
30064771073,
0
],
"nMops": 5
},
"PRDW12DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0317189693450928,
0.16797200000000001,
0.019729,
323088,
323092,
1773479967.828141,
70083385612033016
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.033452033996582,
0.168769,
0.020822,
323088,
323092,
70083385616978644,
227633266689,
0
],
"nMops": 349
},
"PRUW08DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0334839820861816,
0.16880100000000001,
0.020826000000000001,
323088,
323092,
1773479967.829906,
70083385617040836
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0352039337158203,
0.170677,
0.020826000000000001,
323088,
323092,
70083385621946280,
261993005057,
0
],
"nMops": 349
},
"PCLAMP_G": {
"Compiled": "Yes",
"start_perf": [
2.0369811058044434,
0.17261499999999999,
0.020826000000000001,
323088,
323092,
1773479967.8334031,
70083385626957678
],
"nQuads": 12,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 9,
"end_perf": [
2.037726879119873,
0.173428,
0.020826000000000001,
323088,
323092,
70083385629119066,
12884901889,
0
],
"nMops": 8
},
"PVDD1A_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0384020805358887,
0.17416599999999999,
0.020826000000000001,
323088,
323092,
1773479967.8348241,
70083385630980868
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0390150547027588,
0.17416599999999999,
0.021493999999999999,
323088,
323092,
70083385632745970,
313532612609,
0
],
"nMops": 5
},
"PVDD2ANA_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0390419960021973,
0.17416599999999999,
0.021524000000000001,
323088,
323092,
1773479967.835464,
70083385632797286
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0396459102630615,
0.17416599999999999,
0.022183000000000001,
323088,
323092,
70083385634533752,
347892350977,
0
],
"nMops": 5
},
"PVDD3AC_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0396709442138672,
0.17416599999999999,
0.022211000000000002,
323088,
323092,
1773479967.8360929,
70083385634582146
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0402379035949707,
0.17416599999999999,
0.022828000000000001,
323088,
323092,
70083385636212136,
382252089345,
0
],
"nMops": 5
},
"PVSS1DGZ_V_G": {
"Compiled": "Yes",
"start_perf": [
2.0402629375457764,
0.17416599999999999,
0.022856000000000001,
323088,
323092,
1773479967.8366849,
70083385636260406
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0408639907836914,
0.17416599999999999,
0.023511000000000001,
323088,
323092,
70083385637987458,
416611827713,
0
],
"nMops": 5
},
"sram_if_0000": {
"Compiled": "Yes",
"start_perf": [
2.0414888858795166,
0.17424999999999999,
0.024109999999999999,
323088,
323092,
1773479967.8379109,
70083385639738802
],
"nQuads": 30,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 13,
"end_perf": [
2.0425040721893311,
0.17535500000000001,
0.024111,
323088,
323092,
70083385642677162,
605590388737,
0
],
"nMops": 73
}
},
"ObjArchives": [
{
"archive": "archive.1/_64123_archive_1.a",
"objects": [
[
"sH4Fc_d.o",
301568
]
],
"size": 301568
}
],
"stat": {
"ru_self_end": {
"ru_utime_sec": 0.17535500000000001,
"ru_nivcsw": 1,
"ru_majflt": 0,
"ru_stime_sec": 0.024364,
"ru_nvcsw": 1,
"ru_maxrss_kb": 61864,
"ru_minflt": 6421
},
"ru_childs_end": {
"ru_utime_sec": 0.0,
"ru_nivcsw": 0,
"ru_majflt": 0,
"ru_stime_sec": 0.0,
"ru_nvcsw": 0,
"ru_maxrss_kb": 0,
"ru_minflt": 0
},
"cpu_cycles_end": 70083385643257652,
"peak_mem_kb": 323092
}
}

View File

@ -0,0 +1,605 @@
{
"reusePaths": {
"iWZrk_d": {
"icPath": "csrc"
},
"P3BwM_d": {
"icPath": "csrc"
},
"T59nH_d": {
"icPath": "csrc"
},
"nULrd_d": {
"icPath": "csrc"
},
"QT8j3_d": {
"icPath": "csrc"
},
"Ss3zK_d": {
"icPath": "csrc"
},
"z4wk8_d": {
"icPath": "csrc"
},
"W9VnM_d": {
"icPath": "csrc"
},
"QjV6F_d": {
"icPath": "csrc"
},
"LsJ1x_d": {
"icPath": "csrc"
},
"HiTWu_d": {
"icPath": "csrc"
},
"usz4x_d": {
"icPath": "csrc"
},
"gxqJp_d": {
"icPath": "csrc"
},
"fTzb4_d": {
"icPath": "csrc"
},
"gwpgC_d": {
"icPath": "csrc"
},
"riJVY_d": {
"icPath": "csrc"
},
"IYQDs_d": {
"icPath": "csrc"
},
"aYKwj_d": {
"icPath": "csrc"
},
"jsR1C_d": {
"icPath": "csrc"
}
},
"CompUnits": {},
"Modules": {
"spi_sys_0000": {
"Compiled": "Yes",
"start_perf": [
1.9490780830383301,
0.079341999999999996,
0.017389999999999999,
321120,
321120,
1773479967.7455001,
70083385377644068
],
"nQuads": 7699,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 874,
"end_perf": [
1.9827609062194824,
0.11502900000000001,
0.018447999999999999,
321120,
321124,
70083385473225668,
674309865473,
0
],
"nMops": 20053
},
"ulink_frame_receiver_0000": {
"Compiled": "Yes",
"start_perf": [
1.8610560894012451,
0.0,
0.00070399999999999998,
321096,
321096,
1773479967.6574781,
70083385128456660
],
"nQuads": 13186,
"child_modules": {
"syn_fwft_fifo": 1,
"crc32": 1
},
"Compiled Times": 2,
"nRouts": 1713,
"end_perf": [
1.9490220546722412,
0.079291,
0.017378999999999999,
321120,
321120,
70083385377540102,
528280977409,
0
],
"nMops": 33983
},
"PDUW08SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9955570697784424,
0.124463,
0.021645000000000001,
321120,
321124,
1773479967.7919791,
70083385509464604
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9977540969848633,
0.12534400000000001,
0.022690999999999999,
321120,
321124,
70083385515729828,
137438953473,
0
],
"nMops": 349
},
"PDDW08SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9908609390258789,
0.121124,
0.020546999999999999,
321120,
321124,
1773479967.7872829,
70083385496140438
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9931700229644775,
0.122171,
0.021623,
321120,
321124,
70083385502730480,
68719476737,
0
],
"nMops": 349
},
"PRUW16SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0059709548950195,
0.13242100000000001,
0.023743,
321120,
321124,
1773479967.802393,
70083385538999072
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.007688045501709,
0.134294,
0.023743,
321120,
321124,
70083385543897280,
300647710721,
0
],
"nMops": 349
},
"PVDD1AC_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0096900463104248,
0.13531699999999999,
0.0247,
321120,
321124,
1773479967.8061121,
70083385549548408
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0103180408477783,
0.13589599999999999,
0.024806000000000002,
321120,
321124,
70083385551358514,
317827579905,
0
],
"nMops": 5
},
"DW_pulse_sync_0000": {
"Compiled": "Yes",
"start_perf": [
1.9828059673309326,
0.11507199999999999,
0.018454000000000002,
321120,
321124,
1773479967.779228,
70083385473300012
],
"nQuads": 613,
"child_modules": {
"DW_sync_0000": 1
},
"Compiled Times": 2,
"nRouts": 61,
"end_perf": [
1.9877560138702393,
0.12013799999999999,
0.018454000000000002,
321120,
321124,
70083385487386240,
717259538433,
0
],
"nMops": 1706
},
"crc32": {
"Compiled": "Yes",
"start_perf": [
1.9877939224243164,
0.12018,
0.018454000000000002,
321120,
321124,
1773479967.7842159,
70083385487443010
],
"nQuads": 253,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 36,
"end_perf": [
1.9908270835876465,
0.12109200000000001,
0.020542000000000001,
321120,
321124,
70083385496084964,
523986010113,
0
],
"nMops": 579
},
"PRDW12SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0018460750579834,
0.12843199999999999,
0.023743,
321120,
321124,
1773479967.7982681,
70083385527300494
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0041220188140869,
0.13040299999999999,
0.023743,
321120,
321124,
70083385533790874,
231928233985,
0
],
"nMops": 349
},
"PDDW16SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.99320387840271,
0.12220200000000001,
0.021628000000000001,
321120,
321124,
1773479967.7896259,
70083385502786556
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
1.9955151081085205,
0.12442300000000001,
0.021638000000000001,
321120,
321124,
70083385509403236,
103079215105,
0
],
"nMops": 349
},
"PVSS3A_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0134339332580566,
0.13711100000000001,
0.02699,
321120,
321124,
1773479967.8098559,
70083385560208336
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0147368907928467,
0.137577,
0.027945000000000001,
321120,
321124,
70083385563953816,
455266533377,
0
],
"nMops": 5
},
"PDUW16SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
1.9977879524230957,
0.12537599999999999,
0.022696999999999998,
321120,
321124,
1773479967.79421,
70083385515792636
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0018129348754883,
0.12840099999999999,
0.023737999999999999,
321120,
321124,
70083385527244048,
171798691841,
0
],
"nMops": 349
},
"PDB3AC_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0085549354553223,
0.13519,
0.023793000000000002,
321120,
321124,
1773479967.8049769,
70083385546329392
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0096580982208252,
0.13528599999999999,
0.024695000000000002,
321120,
321124,
70083385549493262,
34359738369,
0
],
"nMops": 5
},
"PRUW08SDGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0041561126708984,
0.130441,
0.023743,
321120,
321124,
1773479967.8005781,
70083385533852716
],
"nQuads": 148,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 24,
"end_perf": [
2.0059390068054199,
0.132385,
0.023743,
321120,
321124,
70083385538943462,
266287972353,
0
],
"nMops": 349
},
"PDXOEDG_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0077180862426758,
0.134327,
0.023743,
321120,
321124,
1773479967.8041401,
70083385543953454
],
"nQuads": 24,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 11,
"end_perf": [
2.0085148811340332,
0.135153,
0.023786999999999999,
321120,
321124,
70083385546272148,
180388626433,
0
],
"nMops": 43
},
"PVDD2DGZ_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0103480815887451,
0.13592299999999999,
0.024811,
321120,
321124,
1773479967.8067701,
70083385551411388
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0111320018768311,
0.13592299999999999,
0.025666000000000001,
321120,
321124,
70083385553669588,
352187318273,
0
],
"nMops": 5
},
"PVSS1A_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0111629962921143,
0.13592299999999999,
0.025700000000000001,
321120,
321124,
1773479967.807585,
70083385553726880
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.012037992477417,
0.136737,
0.025839999999999998,
321120,
321124,
70083385556322210,
386547056641,
0
],
"nMops": 5
},
"PVSS2A_H_G": {
"Compiled": "Yes",
"start_perf": [
2.0121040344238281,
0.136799,
0.025850999999999999,
321120,
321124,
1773479967.808526,
70083385556439972
],
"nQuads": 6,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 8,
"end_perf": [
2.0133709907531738,
0.13705200000000001,
0.026977999999999999,
321120,
321124,
70083385560084316,
420906795009,
0
],
"nMops": 5
},
"sram_if_0001": {
"Compiled": "Yes",
"start_perf": [
2.0147950649261475,
0.13763,
0.027956000000000002,
321120,
321124,
1773479967.8112171,
70083385564068890
],
"nQuads": 30,
"child_modules": {},
"Compiled Times": 2,
"nRouts": 13,
"end_perf": [
2.0169260501861572,
0.13992499999999999,
0.027984999999999999,
321120,
321124,
70083385570174088,
605590388737,
0
],
"nMops": 73
}
},
"ObjArchives": [],
"stat": {
"ru_self_end": {
"ru_utime_sec": 0.14016899999999999,
"ru_nivcsw": 1,
"ru_majflt": 0,
"ru_stime_sec": 0.028032999999999999,
"ru_nvcsw": 14,
"ru_maxrss_kb": 60188,
"ru_minflt": 5823
},
"ru_childs_end": {
"ru_utime_sec": 0.0,
"ru_nivcsw": 0,
"ru_majflt": 0,
"ru_stime_sec": 0.0,
"ru_nvcsw": 0,
"ru_maxrss_kb": 0,
"ru_minflt": 0
},
"cpu_cycles_end": 70083385570830554,
"peak_mem_kb": 321124
}
}

View File

@ -1,71 +1,34 @@
PIC_LD=ld
ARCHIVE_OBJS=
ARCHIVE_OBJS += _32553_archive_1.so
_32553_archive_1.so : archive.0/_32553_archive_1.a
ARCHIVE_OBJS += _64094_archive_1.so
_64094_archive_1.so : archive.1/_64094_archive_1.a
@$(AR) -s $<
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_32553_archive_1.so --whole-archive $< --no-whole-archive
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_64094_archive_1.so --whole-archive $< --no-whole-archive
@rm -f $@
@ln -sf .//../simv.daidir//_32553_archive_1.so $@
@ln -sf .//../simv.daidir//_64094_archive_1.so $@
ARCHIVE_OBJS += _32573_archive_1.so
_32573_archive_1.so : archive.0/_32573_archive_1.a
ARCHIVE_OBJS += _64123_archive_1.so
_64123_archive_1.so : archive.1/_64123_archive_1.a
@$(AR) -s $<
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_32573_archive_1.so --whole-archive $< --no-whole-archive
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_64123_archive_1.so --whole-archive $< --no-whole-archive
@rm -f $@
@ln -sf .//../simv.daidir//_32573_archive_1.so $@
@ln -sf .//../simv.daidir//_64123_archive_1.so $@
ARCHIVE_OBJS += _32574_archive_1.so
_32574_archive_1.so : archive.0/_32574_archive_1.a
ARCHIVE_OBJS += _prev_archive_1.so
_prev_archive_1.so : archive.1/_prev_archive_1.a
@$(AR) -s $<
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_32574_archive_1.so --whole-archive $< --no-whole-archive
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_prev_archive_1.so --whole-archive $< --no-whole-archive
@rm -f $@
@ln -sf .//../simv.daidir//_32574_archive_1.so $@
ARCHIVE_OBJS += _32575_archive_1.so
_32575_archive_1.so : archive.0/_32575_archive_1.a
@$(AR) -s $<
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_32575_archive_1.so --whole-archive $< --no-whole-archive
@rm -f $@
@ln -sf .//../simv.daidir//_32575_archive_1.so $@
ARCHIVE_OBJS += _32576_archive_1.so
_32576_archive_1.so : archive.0/_32576_archive_1.a
@$(AR) -s $<
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_32576_archive_1.so --whole-archive $< --no-whole-archive
@rm -f $@
@ln -sf .//../simv.daidir//_32576_archive_1.so $@
ARCHIVE_OBJS += _32577_archive_1.so
_32577_archive_1.so : archive.0/_32577_archive_1.a
@$(AR) -s $<
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_32577_archive_1.so --whole-archive $< --no-whole-archive
@rm -f $@
@ln -sf .//../simv.daidir//_32577_archive_1.so $@
ARCHIVE_OBJS += _32578_archive_1.so
_32578_archive_1.so : archive.0/_32578_archive_1.a
@$(AR) -s $<
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_32578_archive_1.so --whole-archive $< --no-whole-archive
@rm -f $@
@ln -sf .//../simv.daidir//_32578_archive_1.so $@
ARCHIVE_OBJS += _32579_archive_1.so
_32579_archive_1.so : archive.0/_32579_archive_1.a
@$(AR) -s $<
@$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//_32579_archive_1.so --whole-archive $< --no-whole-archive
@rm -f $@
@ln -sf .//../simv.daidir//_32579_archive_1.so $@
@ln -sf .//../simv.daidir//_prev_archive_1.so $@
VCS_ARC0 =_csrc0.so
VCS_OBJS0 =objs/amcQw_d.o
O0_OBJS =
@ -76,6 +39,12 @@ $(O0_OBJS) : %.o: %.c
%.o: %.c
$(CC_CG) $(CFLAGS_CG) -c -o $@ $<
$(VCS_ARC0) : $(VCS_OBJS0)
$(PIC_LD) -shared -Bsymbolic -o .//../simv.daidir//$(VCS_ARC0) $(VCS_OBJS0)
rm -f $(VCS_ARC0)
@ln -sf .//../simv.daidir//$(VCS_ARC0) $(VCS_ARC0)
CU_UDP_OBJS = \
@ -83,7 +52,7 @@ CU_LVL_OBJS = \
SIM_l.o
MAIN_OBJS = \
objs/amcQw_d.o
CU_OBJS = $(MAIN_OBJS) $(ARCHIVE_OBJS) $(CU_UDP_OBJS) $(CU_LVL_OBJS)
CU_OBJS = $(MAIN_OBJS) $(ARCHIVE_OBJS) $(VCS_ARC0) $(CU_UDP_OBJS) $(CU_LVL_OBJS)

Binary file not shown.

Binary file not shown.

View File

@ -133,8 +133,8 @@ HSPICE_HOME=/opt/synopsys/hspice/N-2017.12-SP2
HOSTTYPE=x86_64-linux
HISTCONTROL=ignoredups
GROUP=cryo
GNOME_TERMINAL_SERVICE=:1.1458
GNOME_TERMINAL_SCREEN=/org/gnome/Terminal/screen/300489a5_6011_46a1_a329_83b2a6d46428
GNOME_TERMINAL_SERVICE=:1.1513
GNOME_TERMINAL_SCREEN=/org/gnome/Terminal/screen/461a392b_7deb_466e_bdba_86422bb75acb
GNOME_SHELL_SESSION_MODE=classic
GNOME_DESKTOP_SESSION_ID=this-is-deprecated
GENUS_HOME=/opt/cadence/GENUS152
@ -170,7 +170,7 @@ AMS_ENABLE_NOISE=YES
1773384753 ./../../rtl/define/../define/chip_undefine.v
1773384753 ./../../rtl/define/../define/chip_define.v
1773384753 ../../rtl/define/chip_undefine.v
1773384753 ../../sim/chip_top/TB.sv
1773479827 ../../sim/chip_top/TB.sv
1773384753 ../../model/DW_pulse_sync.v
1773384753 ../../model/DW_sync.v
1773384753 ../../model/DW_reset_sync.v
@ -226,5 +226,5 @@ AMS_ENABLE_NOISE=YES
1551421768 /opt/synopsys/vcs-mx/O-2018.09-SP2/linux64/lib/libsnpsmalloc.so
1551421789 /opt/synopsys/vcs-mx/O-2018.09-SP2/linux64/lib/libvfs.so
1550752033 /opt/synopsys/verdi/Verdi_O-2018.09-SP2/share/PLI/VCS/linux64/pli.a
1773384887 simv.daidir
1773479969 simv.daidir
-1 partitionlib

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -5,5 +5,5 @@ PYTHONPATH=/opt/synopsys/vcs-mx/O-2018.09-SP2/linux64/lib/pylib27
export PYTHONPATH
LD_LIBRARY_PATH=/opt/synopsys/vcs-mx/O-2018.09-SP2/linux64/lib:/opt/synopsys/vcs-mx/O-2018.09-SP2/linux64/lib/pylib27
export LD_LIBRARY_PATH
/opt/synopsys/vcs-mx/O-2018.09-SP2/linux64/bin/vcsfind_create_index.exe -z "/home/shbyang/Desktop/workplace/lin-win-share/DA4008_V1.2/sim/chip_top/simv.daidir/debug_dump/fsearch/./idents_X4vtNx.xml.gz" "/home/shbyang/Desktop/workplace/lin-win-share/DA4008_V1.2/sim/chip_top/simv.daidir/debug_dump/fsearch/./idents_tapi.xml.gz" -o "/home/shbyang/Desktop/workplace/lin-win-share/DA4008_V1.2/sim/chip_top/simv.daidir/debug_dump/fsearch/fsearch.db_tmp"
/opt/synopsys/vcs-mx/O-2018.09-SP2/linux64/bin/vcsfind_create_index.exe -z "/home/shbyang/Desktop/workplace/lin-win-share/DA4008_V1.2/sim/chip_top/simv.daidir/debug_dump/fsearch/./idents_E1cKA4.xml.gz" "/home/shbyang/Desktop/workplace/lin-win-share/DA4008_V1.2/sim/chip_top/simv.daidir/debug_dump/fsearch/./idents_tapi.xml.gz" -o "/home/shbyang/Desktop/workplace/lin-win-share/DA4008_V1.2/sim/chip_top/simv.daidir/debug_dump/fsearch/fsearch.db_tmp"
\mv "/home/shbyang/Desktop/workplace/lin-win-share/DA4008_V1.2/sim/chip_top/simv.daidir/debug_dump/fsearch/fsearch.db_tmp" "/home/shbyang/Desktop/workplace/lin-win-share/DA4008_V1.2/sim/chip_top/simv.daidir/debug_dump/fsearch/fsearch.db"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More