PLI Stream I/O

本文详细介绍了三种主要的I/O操作方式:LIST定向I/O、EDIT定向I/O和DATA定向I/O。LIST定向I/O易于编码且是调试的好工具,但输入数据需用空格或逗号隔开;EDIT定向I/O无需空白字符来分隔数据项,节省空间;DATA定向I/O则通过赋值语句指定变量及值。

Stream I/O

1.       LIST Directed I/O

1.1 Advantages and Disadvantages

  • Advantages of LIST directed I/O

-         It is easy to code and is a useful debugging tool

  • Disadvantages of LIST directed I/O

-         In GET LIST the data needs to be separated by space or comma, and therefore more space is required to represent the input data.

-         In PUT LIST, data is presented at predefined tab position, and so we cannot format it to provide a more meaningful and pleasing report.

1.2 GET LIST

  • For this type of input each data value in the stream must separated either by a blank or a comma.
  • A Null field is indicated by the first non blank character or by two commas separated by an arbitrary number of blanks.
  • e.g. If the statement is GET LIST (AB,C,D,E); the values keyed could be 100 90 80 70 90.

1.3 PUT LIST

-         Values of the data list items are converted to character representations and transmitted to the data stream.

-         A blank separates successive data values transmitted.

e.g. Lets consider the following:

PUT LIST (50,ABC,123,127);

PUT LIST(23,86,87);

Tab position     1     25    49    73    97    121

1st Line           50    ABC 123  127  23

2nd Line          86    87

-         Use SKIP(n) option to move the line feed to the nth line after the current line.

e.g. PUT SKIP LIST(123);

-         Use PAGE option cuases the data to be printed on the top of a new page.

e.g. PUT PAGE LIST(IGSI);

-         Use LINE option to print the data on a specific line number.

e.g. PUT LINE(10) LIST (A,B);

2.       EDIT Directed I/O

2.1   Advantages

-         No Blanks are needed to separate the data items in the input stream

-         No punctuation marks are needed to indicate the type of input data.

Example: If we have to supply the following stream input:

       435928 DAVID P. GOLDSMITH 10.55 41.3 103.21

Only 37 positions are needed if edit directed input as compared to 47 positions for list directed input.

2.2   STRING Option

l         Instead of getting data form an external device(a file) the data can also be read from a character string. e.g.

       GET STRING(NAME) EDIT(FIRST,MIDDLE,LAST)(A(15),A(1),A(20));

l         It can be used to effect character to arithmetic and arithmetic to character string conversion.

       DCL EMP# CHAR(7);

DCL HOURS FIXED DEC(3,1);

DCL NAME CHAR(20);

       DCL RATE FIXED DEC(4,2);

DCL RECORD CHAR(80);

       PUT STRING (RECORD) EDIT(NAME,EMP#,HOURS*RATE)(A(20),A(7),F(7,2));

l         Sometimes records of different formats appear in the same file where each record contains a code that identifies the particular format;

       GET EDIT (INFO)(A(80));

       SELECT(SUBSTR(INFO,1,1));

        WHEN(‘1’)

              GET  STRING(INFO)

EDIT(CUST#,DATE,AMT)(X(1),A(6),X(3),A(6),X(1),F(7,2));

        WHEN(‘2’)

GET  STRING(INFO)         EDIT(CUST#,AMT,INVOICE#)(X(1),A(6),X(1),F(7,2),X(1),A(8));

        OTHERWISE

              CALL ERROR_IN_INPUT;

       END;

2.3 Conversion of external data to internal data format

Arithmetic data items have the format F (fixed point) or E (floating point). Following data types may be input or output using the F, E or P format items.

  • FIXED BINARY
  • FIXED DECIMAL
  • FLOAT BINARY
  • FLOAT DECIMAL

e.g. DCL HOURS FIXED DEC(3);

   GET EDIT(HOURS) (A(3));  /* provided HOURS contain only the digits 0 through 9 */

2.4   Control Items

l         COLUMN:

l         LINE:

l         PAGE:

l         SKIP:

3         DATA Directed I/O

3.1 Data directed input:

l         Each item in the input is in the form of an assignment statement that specifies both the value and the variable to which it is to be assigned.

l         Statements are separated by blanks or commas.

l         Semicolon ends each group of items to be accessed by a single GET statement.

e.g. A= 12.3,B=57,C=ABCDEF,D=1110B;

GET DATA(A,B,C,D);

l         Maximum number of elements permitted in a list = 320;

l         Data list may include the name that do not appear in the list, but the vice versa is not true.

l         If the data list is an array, subscripted references to that array may appear in the stream. e.g.

DCL TABEL(50) FIXED DEC(5,2);

GET DATA (TABLE);

Input stream could be:    TABLE(3)=7.95, TABLE(4)=8.43,TABLE(7) = 50;

3.2   DATA DIRECTED OUTPUT:

l         Each data item is placed in the stream in the form of assignment statements.

l         Last item output is followed by a semicolon.

l         Leading zeros of arithmetic data are suppressed.

e.g. DCL A FIXED DEC(5) INIT(0);

       DCL B FIXED DEC(5) INIT(0);

       DCL C FIXED BIN(15) INIT(175);

       PUT DATA(A,B,C);

Tab position                     1        25         49

Output would look like:        A=0       B=0       C=175;

 

Chronologic VCS (TM) Version V-2023.12-SP1_Full64 -- Wed Jun 11 18:48:33 2025 Copyright (c) 1991 - 2024 Synopsys, Inc. This software and the associated documentation are proprietary to Synopsys, Inc. This software may only be used in accordance with the terms and conditions of a written license agreement with Synopsys, Inc. All other use, reproduction, or distribution of this software is strictly prohibited. Licensed Products communicate with Synopsys servers for the purpose of providing software updates, detecting software piracy and verifying that customers are using Licensed Products in conformity with the applicable License Key for such Licensed Products. Synopsys will use information gathered in connection with this process to deliver software updates and pursue software pirates and infringers. Inclusivity & Diversity - Visit SolvNetPlus to read the "Synopsys Statement on Inclusivity and Diversity" (Refer to article 000036315 at https://solvnetplus.synopsys.com) Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 1 The function/task '$fsdbDumpvars' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpvars vs call=novas_call_phaseout_fsdbDumpvars This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 2 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 2 The function/task '$fsdbDumpvarsES' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpvarsES vs call=novas_call_phaseout_fsdbDumpvarsES This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 3 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 3 The function/task '$fsdbDumpMDA' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpMDA vs call=novas_call_phaseout_fsdbDumpMDA This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 4 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 4 The function/task '$fsdbDumpSVA' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpSVA vs call=novas_call_phaseout_fsdbDumpSVA This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 5 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 5 The function/task '$fsdbDumpvarsByFile' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpvarsByFile vs call=novas_call_phaseout_fsdbDumpvarsByFile This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 6 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 6 The function/task '$fsdbSuppress' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbSuppress vs call=novas_call_phaseout_fsdbSuppress This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 7 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 7 The function/task '$fsdbDumpon' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpon vs call=novas_call_phaseout_fsdbDumpon This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 8 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 8 The function/task '$fsdbDumpoff' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpoff vs call=novas_call_phaseout_fsdbDumpoff This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 9 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 9 The function/task '$fsdbSwitchDumpfile' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbSwitchDumpfile vs call=novas_call_phaseout_fsdbSwitchDumpfile This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 10 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 10 The function/task '$fsdbDumpfile' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpfile vs call=novas_call_phaseout_fsdbDumpfile This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 11 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 11 The function/task '$fsdbAutoSwitchDumpfile' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbAutoSwitchDumpfile vs call=novas_call_phaseout_fsdbAutoSwitchDumpfile This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 12 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 12 The function/task '$fsdbDumpFinish' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpFinish vs call=novas_call_phaseout_fsdbDumpFinish This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 13 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 13 The function/task '$fsdbDumpflush' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpflush vs call=novas_call_phaseout_fsdbDumpflush This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 14 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 14 The function/task '$fsdbLog' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbLog vs call=novas_call_phaseout_fsdbLog This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 15 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 15 The function/task '$fsdbAddRuntimeSignal' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbAddRuntimeSignal vs call=novas_call_phaseout_fsdbAddRuntimeSignal This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 16 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 16 The function/task '$fsdbDumpSC' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpSC vs call=novas_call_phaseout_fsdbDumpSC This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 17 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 17 The function/task '$fsdbDumpvarsToFile' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpvarsToFile vs call=novas_call_phaseout_fsdbDumpvarsToFile This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 18 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 18 The function/task '$sps_create_transaction_stream' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_create_transaction_stream vs call=novas_call_phaseout_sps_create_transaction_stream This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 19 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 19 The function/task '$sps_begin_transaction' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_begin_transaction vs call=novas_call_phaseout_sps_begin_transaction This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 20 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 20 The function/task '$sps_end_transaction' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_end_transaction vs call=novas_call_phaseout_sps_end_transaction This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 21 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 21 The function/task '$sps_free_transaction' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_free_transaction vs call=novas_call_phaseout_sps_free_transaction This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 22 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 22 The function/task '$sps_add_attribute' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_add_attribute vs call=novas_call_phaseout_sps_add_attribute This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 23 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 23 The function/task '$sps_update_label' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_update_label vs call=novas_call_phaseout_sps_update_label This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 24 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 24 The function/task '$sps_add_relation' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_add_relation vs call=novas_call_phaseout_sps_add_relation This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 25 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 25 The function/task '$fsdbWhatif' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbWhatif vs call=novas_call_phaseout_fsdbWhatif This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 26 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 26 The function/task '$paa_init' has mismatching multiple definitions in PLI table(s): call=novas_call_paa_init vs call=novas_call_phaseout_paa_init This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 27 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 27 The function/task '$paa_sync' has mismatching multiple definitions in PLI table(s): call=novas_call_paa_sync vs call=novas_call_phaseout_paa_sync This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 28 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 28 The function/task '$fsdbDumpClassMethod' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpClassMethod vs call=novas_call_phaseout_fsdbDumpClassMethod This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 29 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 29 The function/task '$fsdbSuppressClassMethod' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbSuppressClassMethod vs call=novas_call_phaseout_fsdbSuppressClassMethod This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 30 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 30 The function/task '$fsdbSuppressClassProp' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbSuppressClassProp vs call=novas_call_phaseout_fsdbSuppressClassProp This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 31 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 31 The function/task '$fsdbDumpMDAByFile' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpMDAByFile vs call=novas_call_phaseout_fsdbDumpMDAByFile This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 32 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 33 The function/task '$fsdbTrans_create_stream_begin' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_create_stream_begin vs call=novas_call_phaseout_fsdbEvent_create_stream_begin This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 34 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 34 The function/task '$fsdbTrans_define_attribute' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_add_stream_attribute vs call=novas_call_phaseout_fsdbEvent_add_stream_attribute This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 35 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 35 The function/task '$fsdbTrans_create_stream_end' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_create_stream_end vs call=novas_call_phaseout_fsdbEvent_create_stream_end This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 36 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 36 The function/task '$fsdbTrans_begin' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_begin vs call=novas_call_phaseout_fsdbEvent_begin This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 37 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 37 The function/task '$fsdbTrans_set_label' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_set_label vs call=novas_call_phaseout_fsdbEvent_set_label This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 38 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 38 The function/task '$fsdbTrans_add_attribute' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_add_attribute vs call=novas_call_phaseout_fsdbEvent_add_attribute This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 39 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 39 The function/task '$fsdbTrans_add_tag' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_add_tag vs call=novas_call_phaseout_fsdbEvent_add_tag This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 40 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 40 The function/task '$fsdbTrans_end' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_end vs call=novas_call_phaseout_fsdbEvent_end This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 41 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 41 The function/task '$fsdbTrans_add_relation' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_add_relation vs call=novas_call_phaseout_fsdbEvent_add_relation This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 42 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 42 The function/task '$fsdbTrans_get_error_code' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_get_error_code vs call=novas_call_phaseout_fsdbEvent_get_error_code This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 43 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 43 The function/task '$fsdbTrans_add_stream_attribute' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbTrans_add_stream_attribute vs call=novas_call_phaseout_fsdbTrans_add_stream_attribute This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 44 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 44 The function/task '$fsdbTrans_add_scope_attribute' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbTrans_add_scope_attribute vs call=novas_call_phaseout_fsdbTrans_add_scope_attribute This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 45 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 45 The function/task '$sps_interactive' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_interactive vs call=novas_call_phaseout_sps_interactive This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 46 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 46 The function/task '$sps_test' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_test vs call=novas_call_phaseout_sps_test This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 47 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 47 The function/task '$fsdbDumpClassObject' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpClassObject vs call=novas_call_phaseout_fsdbDumpClassObject This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 48 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 48 The function/task '$fsdbDumpClassObjectByFile' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpClassObjectByFile vs call=novas_call_phaseout_fsdbDumpClassObjectByFile This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 49 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 49 The function/task '$fsdbTrans_add_attribute_expand' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbEvent_add_attribute_expand vs call=novas_call_phaseout_fsdbEvent_add_attribute_expand This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 50 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 50 The function/task '$ridbDump' has mismatching multiple definitions in PLI table(s): call=novas_call_ridbDump vs call=novas_call_phaseout_ridbDump This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 51 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 51 The function/task '$sps_flush_file' has mismatching multiple definitions in PLI table(s): call=novas_call_sps_flush_file vs call=novas_call_phaseout_sps_flush_file This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 52 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 52 The function/task '$fsdbDumpPSL' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpPSL vs call=novas_call_phaseout_fsdbDumpPSL This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 53 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 53 The function/task '$fsdbDisplay' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDisplay vs call=novas_call_phaseout_fsdbDisplay This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 54 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 54 The function/task '$fsdbDumplimit' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumplimit vs call=novas_call_phaseout_fsdbDumplimit This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 55 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 55 The function/task '$fsdbDumpMem' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpMem vs call=novas_call_phaseout_fsdbDumpMem This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 56 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 56 The function/task '$fsdbDumpMemNow' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpMemNow vs call=novas_call_phaseout_fsdbDumpMemNow This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 57 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 57 The function/task '$fsdbDumpMemInScope' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpMemInScope vs call=novas_call_phaseout_fsdbDumpMemInScope This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 58 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 58 The function/task '$fsdbDumpMDANow' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpMDANow vs call=novas_call_phaseout_fsdbDumpMDANow This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 59 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 59 The function/task '$fsdbDumpMDAOnChange' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpMDAOnChange vs call=novas_call_phaseout_fsdbDumpMDAOnChange This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 60 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 60 The function/task '$fsdbDumpMDAInScope' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpMDAInScope vs call=novas_call_phaseout_fsdbDumpMDAInScope This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 61 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 61 The function/task '$fsdbDumpMemInFile' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpMemInFile vs call=novas_call_phaseout_fsdbDumpMemInFile This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 62 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 62 The function/task '$fsdbDumpPSLon' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpPSLon vs call=novas_call_phaseout_fsdbDumpPSLon This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 63 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 63 The function/task '$fsdbDumpPSLoff' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpPSLoff vs call=novas_call_phaseout_fsdbDumpPSLoff This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 64 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 64 The function/task '$fsdbDumpSVAon' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpSVAon vs call=novas_call_phaseout_fsdbDumpSVAon This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 65 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 65 The function/task '$fsdbDumpSVAoff' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpSVAoff vs call=novas_call_phaseout_fsdbDumpSVAoff This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 66 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 66 The function/task '$fsdbDumpStrength' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpStrength vs call=novas_call_phaseout_fsdbDumpStrength This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 67 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 67 The function/task '$fsdbDumpSingle' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpSingle vs call=novas_call_phaseout_fsdbDumpSingle This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 68 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 68 The function/task '$fsdbDumpIO' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpIO vs call=novas_call_phaseout_fsdbDumpIO This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 69 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 69 The function/task '$fsdbDumpPattern' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbDumpPattern vs call=novas_call_phaseout_fsdbDumpPattern This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 70 Warning-[UFTMD] User function/task multiply defined /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/verdi.tab, 70 The function/task '$fsdbSubstituteHier' has mismatching multiple definitions in PLI table(s): call=novas_call_fsdbSubstituteHier vs call=novas_call_phaseout_fsdbSubstituteHier This definition is ignored. The previous definition is in: /home/tools/synopsys/verdi/2023.12SP1/share/PLI/VCS/LINUX64/novas.tab, 71 Parsing design file 'design.sv' Parsing design file 'tb.sv' Error-[SFCOR] Source file cannot be opened Source file " " cannot be opened for reading due to 'No such file or directory'. Please fix above issue and compile again. 69 warnings 1 error CPU time: .614 seconds to compile ./generate_fsdb.sh: line 15: -top: command not found ./generate_fsdb.sh: line 16: -o: command not found ./generate_fsdb.sh: line 19: ./simv_fsdb: No such file or directory 报错了
06-12
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值