• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Functional Verification
  3. elaboration internal error (IUS61)

Stats

  • Locked Locked
  • Replies 3
  • Subscribers 64
  • Views 15442
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

elaboration internal error (IUS61)

archive
archive over 18 years ago

I'm compiling and elaborating a very simple SV code, attached as svlog01.tar.gz file.
Following the compilation and elaboration code.

I got internal error for any top level design I tried to elaborate, while the compilation is error free.

Is there any issue in the compilation/elaboration flow or other (coding issue, tool issue) ?
The IUS61 versions has ben used.


Thanks

BR
Giampiero

##################################################
compilation/elaboration commands
####################################################

ncvlog -SV -IEEE1364 -WORK $LIB $MESSAGES $SIMD_VLOG/simd_pack.v -log $LOG/ncvlog.log -append

ncvlog -SV -WORK $LIB $MESSAGES $SIMD_VLOG/swfabr.v -log $LOG/ncvlog.log -append

ncvlog -SV -WORK $LIB $MESSAGES $SIMD_VLOG/shm.v -log $LOG/ncvlog.log -append


ncelab -log $LOG/ncelab.log -work $LIB -MESSAGES -NOCOPYRIGHT -NOWARN CUDEFB -UPDATE -snapshot swfabr $LIB.swfabr

ncelab -log $LOG/ncelab.log -work $LIB -MESSAGES -NOCOPYRIGHT -NOWARN CUDEFB -UPDATE -snapshot shm $LIB.shm

##################################################
log file
####################################################

Compiling SIMD package ...
file: /IPREUSE/DATABASE/INTERNAL/DIG/INPROGRESS/gborgo/simd_A0_a/config/../generic/rtl/svlog/simd_pack.v
        package simd.simd_pack:v
                errors: 0, warnings: 0
..done
Compiling SWFABR component...
file: /IPREUSE/DATABASE/INTERNAL/DIG/INPROGRESS/gborgo/simd_A0_a/config/../generic/rtl/svlog/swfabr.v
        module simd.swfabr:v
                errors: 0, warnings: 0
..done
Compiling SHM component...
file: /IPREUSE/DATABASE/INTERNAL/DIG/INPROGRESS/gborgo/simd_A0_a/config/../generic/rtl/svlog/shm.v
        module simd.shm:v
                errors: 0, warnings: 0
..done  Elaborating the design hierarchy:
        Building instance overlay tables: .................... Done
        Generating native compiled code:
                simd.simd_pack:v
                        streams:  11, words:  4319
                simd.swfabr:v
ncvlog_cg: *F,INTERR: INTERNAL ERROR
-----------------------------------------------------------------
The tool has encountered an unexpected condition and must exit.
Contact Cadence Design Systems customer support about this
problem and provide enough information to help us reproduce it,
including the logfile that contains this error message.
  TOOL: ncvlog_cg       06.10-p001
  HOSTNAME: kane
  OPERATING SYSTEM: Linux 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:32:58 EDT 2003 x86_64
  MESSAGE: gq_primaryobjectclass - illegal vxt_class (629)
-----------------------------------------------------------------
ncelab: *E,CUVCGF: Code generation for simd.simd_pack:v failed.
                simd.swfabr:v
ncvlog_cg: *F,INTERR: INTERNAL ERROR
-----------------------------------------------------------------
The tool has encountered an unexpected condition and must exit.
Contact Cadence Design Systems customer support about this
problem and provide enough information to help us reproduce it,
including the logfile that contains this error message.
  TOOL: ncvlog_cg       06.10-p001
  HOSTNAME: kane
  OPERATING SYSTEM: Linux 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:32:58 EDT 2003 x86_64
  MESSAGE: gq_primaryobjectclass - illegal vxt_class (629)
-----------------------------------------------------------------
ncelab: *E,CUVCGF: Code generation for simd.swfabr:v failed.
ncelab: *F,CGFAIL: Code generation failed for one or more modules.
        Elaborating the design hierarchy:
ncelab: *F,INTERR: INTERNAL ERROR
-----------------------------------------------------------------
The tool has encountered an unexpected condition and must exit.
Contact Cadence Design Systems customer support about this
problem and provide enough information to help us reproduce it,
including the logfile that contains this error message.
  TOOL: ncelab  06.10-p001
  HOSTNAME: kane
  OPERATING SYSTEM: Linux 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:32:58 EDT 2003 x86_64
  MESSAGE: tl_expr_count - expr type 629
-----------------------------------------------------------------




Originally posted in cdnusers.org by borgonov69
svlog01.tar.gz
  • Cancel
  • archive
    archive over 18 years ago

    Any internal error is a serious problem and should be reported to Cadence Customer Support. You have a nice small testcase here, so they should be able to take care of it easily.

    The problem appears to be in the assignments:

    assign rdata_shram = (oen_shram == 0) ? shm_read : '{'bz};
    and
    shm_read = '{'bx};

    Apparently this '{'bz} syntax is ok (at least it gets by ncvlog), but I've never seen it used before. For unsized bit constants, I've always used 'z or 'x.

    assign rdata_shram = (oen_shram == 0) ? shm_read : 'z;
    shm_read = 'x;


    Originally posted in cdnusers.org by TAM
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • archive
    archive over 18 years ago

    Thanks for the fixing of the file shram.v. The problem is the construct '{}.
    It works also with the construct 'bz or 'bx.

    In the file swfabr.v, Isolved the issue fixing the code as following described.

    always_comb
    if(mask_gnt)
    gnt = '{default:'b0};
    else
    gnt = i_gnt;

    //assign gnt = (mask_gnt == 1) ? ('{default:'b0} ): i_gnt;


    Thanks again.

    Giampiero





    Originally posted in cdnusers.org by borgonov69
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • archive
    archive over 18 years ago

    I don't have 6.10-p001, but I will say that the swfabr.v file compiles and elaborates fine for me with 6.11-s003.


    Originally posted in cdnusers.org by TAM
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information