1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824
|
// DESCRIPTION: Verilator: Verilog Test module
//
// Copyright 2020 by Yutetsu TAKATSUKASA. This program is free software; you can
// redistribute it and/or modify it under the terms of either the GNU
// Lesser General Public License Version 3 or the Perl Artistic License
// Version 2.0.
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
`ifdef VCS
`define NO_TIME
`endif
`ifdef NC
`define NO_TIME
`define NO_INTEGER
`define NO_SHORTREAL
`endif
`ifdef MS
`define NO_BITS_TO_SCALAR
`endif
`ifdef VERILATOR
`define NO_SHORTREAL
`define NO_UNPACK_STRUCT
`else
`endif
`ifdef NO_BITS_TO_SCALAR
`define ARE_SAME(act, exp) ((act) == (exp))
`else
`define ARE_SAME(act, exp) ((act) == (($bits(act))'(exp)))
`endif
`define CHECK_VAL(act, exp) if (`ARE_SAME(act, exp)) begin \
if (ENABLE_VERBOSE_MESSAGE)$display(`"act`", ":", (act), " as expected"); \
end else begin \
$display("Mismatch %s expected:%d actual:%d at %d", `"act`", \
int'(exp), int'(act), `__LINE__); \
$stop; \
end
`define CHECK_0D(val) `CHECK_VAL((val), 42)
`define CHECK_1D(val) `CHECK_VAL(val[0], 43); \
`CHECK_VAL(val[1], 44)
`define CHECK_2D(val) `CHECK_VAL(val[0][1], 45); \
`CHECK_VAL(val[1][1], 46); \
`CHECK_VAL(val[2][1], 47)
`define CHECK_3D(val) `CHECK_VAL(val[0][0][0], 48); \
`CHECK_VAL(val[1][0][0], 49); \
`CHECK_VAL(val[2][0][0], 50); \
`CHECK_VAL(val[3][0][0], 51)
`define SET_VALUES(val) \
/* verilator lint_off WIDTH */ \
val[3][2][1] = 42; \
val[2][1][0] = 43; val[2][1][1] = 44; \
val[1][0][1] = 45; val[1][1][1] = 46; val[1][2][1] = 47; \
val[0][0][0] = 48; val[1][0][0] = 49; val[2][0][0] = 50; val[3][0][0] = 51 \
/* verilator lint_on WIDTH */
module t;
localparam ENABLE_VERBOSE_MESSAGE = 0;
// Legal input argument types for DPI functions
//======================================================================
// Type definitions
//======================================================================
typedef byte byte_array_t[4][3][2];
typedef byte unsigned byte_unsigned_array_t[4][3][2];
typedef shortint shortint_array_t[4][3][2];
typedef shortint unsigned shortint_unsigned_array_t[4][3][2];
typedef int int_array_t[4][3][2];
typedef int unsigned int_unsigned_array_t[4][3][2];
typedef longint longint_array_t[4][3][2];
typedef longint unsigned longint_unsigned_array_t[4][3][2];
`ifndef NO_TIME
typedef time time_array_t[4][3][2];
`endif
`ifndef NO_INTEGER
typedef integer integer_array_t[4][3][2];
`endif
typedef real real_array_t[4][3][2];
`ifndef NO_SHORTREAL
typedef shortreal shortreal_array_t[4][3][2];
`endif
typedef chandle chandle_array_t[4][3][2];
typedef string string_array_t[4][3][2];
typedef bit bit1_array_t[4][3][2];
typedef bit [6:0] bit7_array_t[4][3][2];
typedef bit [120:0] bit121_array_t[4][3][2];
typedef logic logic1_array_t[4][3][2];
typedef logic [6:0] logic7_array_t[4][3][2];
typedef logic [120:0] logic121_array_t[4][3][2];
typedef struct packed {
logic [6:0] val;
} pack_struct_t;
typedef pack_struct_t pack_struct_array_t[4][3][2];
`ifndef NO_UNPACK_STRUCT
typedef struct {
logic [120:0] val;
} unpack_struct_t;
typedef unpack_struct_t unpack_struct_array_t[4][3][2];
`endif
//======================================================================
// Imports
//======================================================================
// Returns non-null pointer
import "DPI-C" function chandle get_non_null();
import "DPI-C" function void i_byte_0d(input byte val);
import "DPI-C" function void i_byte_1d(input byte val[2]);
import "DPI-C" function void i_byte_2d(input byte val[3][2]);
import "DPI-C" function void i_byte_3d(input byte_array_t val);
import "DPI-C" function void i_byte_unsigned_0d(input byte unsigned val);
import "DPI-C" function void i_byte_unsigned_1d(input byte unsigned val[2]);
import "DPI-C" function void i_byte_unsigned_2d(input byte unsigned val[3][2]);
import "DPI-C" function void i_byte_unsigned_3d(input byte_unsigned_array_t val);
import "DPI-C" function void i_shortint_0d(input shortint val);
import "DPI-C" function void i_shortint_1d(input shortint val[2]);
import "DPI-C" function void i_shortint_2d(input shortint val[3][2]);
import "DPI-C" function void i_shortint_3d(input shortint_array_t val);
import "DPI-C" function void i_shortint_unsigned_0d(input shortint unsigned val);
import "DPI-C" function void i_shortint_unsigned_1d(input shortint unsigned val[2]);
import "DPI-C" function void i_shortint_unsigned_2d(input shortint unsigned val[3][2]);
import "DPI-C" function void i_shortint_unsigned_3d(input shortint_unsigned_array_t val);
import "DPI-C" function void i_int_0d(input int val);
import "DPI-C" function void i_int_1d(input int val[2]);
import "DPI-C" function void i_int_2d(input int val[3][2]);
import "DPI-C" function void i_int_3d(input int_array_t val);
import "DPI-C" function void i_int_unsigned_0d(input int unsigned val);
import "DPI-C" function void i_int_unsigned_1d(input int unsigned val[2]);
import "DPI-C" function void i_int_unsigned_2d(input int unsigned val[3][2]);
import "DPI-C" function void i_int_unsigned_3d(input int_unsigned_array_t val);
import "DPI-C" function void i_longint_0d(input longint val);
import "DPI-C" function void i_longint_1d(input longint val[2]);
import "DPI-C" function void i_longint_2d(input longint val[3][2]);
import "DPI-C" function void i_longint_3d(input longint_array_t val);
import "DPI-C" function void i_longint_unsigned_0d(input longint unsigned val);
import "DPI-C" function void i_longint_unsigned_1d(input longint unsigned val[2]);
import "DPI-C" function void i_longint_unsigned_2d(input longint unsigned val[3][2]);
import "DPI-C" function void i_longint_unsigned_3d(input longint_unsigned_array_t val);
`ifndef NO_TIME
import "DPI-C" function void i_time_0d(input time val);
import "DPI-C" function void i_time_1d(input time val[2]);
import "DPI-C" function void i_time_2d(input time val[3][2]);
import "DPI-C" function void i_time_3d(input time_array_t val);
`endif
`ifndef NO_INTEGER
import "DPI-C" function void i_integer_0d(input integer val);
import "DPI-C" function void i_integer_1d(input integer val[2]);
import "DPI-C" function void i_integer_2d(input integer val[3][2]);
import "DPI-C" function void i_integer_3d(input integer_array_t val);
`endif
import "DPI-C" function void i_real_0d(input real val);
import "DPI-C" function void i_real_1d(input real val[2]);
import "DPI-C" function void i_real_2d(input real val[3][2]);
import "DPI-C" function void i_real_3d(input real_array_t val);
`ifndef NO_SHORTREAL
import "DPI-C" function void i_shortreal_0d(input shortreal val);
import "DPI-C" function void i_shortreal_1d(input shortreal val[2]);
import "DPI-C" function void i_shortreal_2d(input shortreal val[3][2]);
import "DPI-C" function void i_shortreal_3d(input shortreal_array_t val);
`endif
import "DPI-C" function void i_chandle_0d(input chandle val);
import "DPI-C" function void i_chandle_1d(input chandle val[2]);
import "DPI-C" function void i_chandle_2d(input chandle val[3][2]);
import "DPI-C" function void i_chandle_3d(input chandle_array_t val);
import "DPI-C" function void i_string_0d(input string val);
import "DPI-C" function void i_string_1d(input string val[2]);
import "DPI-C" function void i_string_2d(input string val[3][2]);
import "DPI-C" function void i_string_3d(input string_array_t val);
import "DPI-C" function void i_bit1_0d(input bit val);
import "DPI-C" function void i_bit1_1d(input bit val[2]);
import "DPI-C" function void i_bit1_2d(input bit val[3][2]);
import "DPI-C" function void i_bit1_3d(input bit1_array_t val);
import "DPI-C" function void i_bit7_0d(input bit[6:0] val);
import "DPI-C" function void i_bit7_1d(input bit[6:0] val[2]);
import "DPI-C" function void i_bit7_2d(input bit[6:0] val[3][2]);
import "DPI-C" function void i_bit7_3d(input bit7_array_t val);
import "DPI-C" function void i_bit121_0d(input bit[120:0] val);
import "DPI-C" function void i_bit121_1d(input bit[120:0] val[2]);
import "DPI-C" function void i_bit121_2d(input bit[120:0] val[3][2]);
import "DPI-C" function void i_bit121_3d(input bit121_array_t val);
import "DPI-C" function void i_logic1_0d(input logic val);
import "DPI-C" function void i_logic1_1d(input logic val[2]);
import "DPI-C" function void i_logic1_2d(input logic val[3][2]);
import "DPI-C" function void i_logic1_3d(input logic1_array_t val);
import "DPI-C" function void i_logic7_0d(input logic[6:0] val);
import "DPI-C" function void i_logic7_1d(input logic[6:0] val[2]);
import "DPI-C" function void i_logic7_2d(input logic[6:0] val[3][2]);
import "DPI-C" function void i_logic7_3d(input logic7_array_t val);
import "DPI-C" function void i_logic121_0d(input logic[120:0] val);
import "DPI-C" function void i_logic121_1d(input logic[120:0] val[2]);
import "DPI-C" function void i_logic121_2d(input logic[120:0] val[3][2]);
import "DPI-C" function void i_logic121_3d(input logic121_array_t val);
import "DPI-C" function void i_pack_struct_0d(input pack_struct_t val);
import "DPI-C" function void i_pack_struct_1d(input pack_struct_t val[2]);
import "DPI-C" function void i_pack_struct_2d(input pack_struct_t val[3][2]);
import "DPI-C" function void i_pack_struct_3d(input pack_struct_array_t val);
`ifndef NO_UNPACK_STRUCT
import "DPI-C" function void i_unpack_struct_0d(input unpack_struct_t val);
import "DPI-C" function void i_unpack_struct_1d(input unpack_struct_t val[2]);
import "DPI-C" function void i_unpack_struct_2d(input unpack_struct_t val[3][2]);
import "DPI-C" function void i_unpack_struct_3d(input unpack_struct_array_t val);
`endif
//======================================================================
// Exports
//======================================================================
export "DPI-C" function e_byte_0d;
export "DPI-C" function e_byte_1d;
export "DPI-C" function e_byte_2d;
export "DPI-C" function e_byte_3d;
export "DPI-C" function e_byte_unsigned_0d;
export "DPI-C" function e_byte_unsigned_1d;
export "DPI-C" function e_byte_unsigned_2d;
export "DPI-C" function e_byte_unsigned_3d;
export "DPI-C" function e_shortint_0d;
export "DPI-C" function e_shortint_1d;
export "DPI-C" function e_shortint_2d;
export "DPI-C" function e_shortint_3d;
export "DPI-C" function e_shortint_unsigned_0d;
export "DPI-C" function e_shortint_unsigned_1d;
export "DPI-C" function e_shortint_unsigned_2d;
export "DPI-C" function e_shortint_unsigned_3d;
export "DPI-C" function e_int_0d;
export "DPI-C" function e_int_1d;
export "DPI-C" function e_int_2d;
export "DPI-C" function e_int_3d;
export "DPI-C" function e_int_unsigned_0d;
export "DPI-C" function e_int_unsigned_1d;
export "DPI-C" function e_int_unsigned_2d;
export "DPI-C" function e_int_unsigned_3d;
export "DPI-C" function e_longint_0d;
export "DPI-C" function e_longint_1d;
export "DPI-C" function e_longint_2d;
export "DPI-C" function e_longint_3d;
export "DPI-C" function e_longint_unsigned_0d;
export "DPI-C" function e_longint_unsigned_1d;
export "DPI-C" function e_longint_unsigned_2d;
export "DPI-C" function e_longint_unsigned_3d;
`ifndef NO_TIME
export "DPI-C" function e_time_0d;
export "DPI-C" function e_time_1d;
export "DPI-C" function e_time_2d;
export "DPI-C" function e_time_3d;
`endif
`ifndef NO_INTEGER
export "DPI-C" function e_integer_0d;
export "DPI-C" function e_integer_1d;
export "DPI-C" function e_integer_2d;
export "DPI-C" function e_integer_3d;
`endif
export "DPI-C" function e_real_0d;
export "DPI-C" function e_real_1d;
export "DPI-C" function e_real_2d;
export "DPI-C" function e_real_3d;
`ifndef NO_SHORTREAL
export "DPI-C" function e_shortreal_0d;
export "DPI-C" function e_shortreal_1d;
export "DPI-C" function e_shortreal_2d;
export "DPI-C" function e_shortreal_3d;
`endif
export "DPI-C" function e_chandle_0d;
export "DPI-C" function e_chandle_1d;
export "DPI-C" function e_chandle_2d;
export "DPI-C" function e_chandle_3d;
export "DPI-C" function e_string_0d;
export "DPI-C" function e_string_1d;
export "DPI-C" function e_string_2d;
export "DPI-C" function e_string_3d;
export "DPI-C" function e_bit1_0d;
export "DPI-C" function e_bit1_1d;
export "DPI-C" function e_bit1_2d;
export "DPI-C" function e_bit1_3d;
export "DPI-C" function e_bit7_0d;
export "DPI-C" function e_bit7_1d;
export "DPI-C" function e_bit7_2d;
export "DPI-C" function e_bit7_3d;
export "DPI-C" function e_bit121_0d;
export "DPI-C" function e_bit121_1d;
export "DPI-C" function e_bit121_2d;
export "DPI-C" function e_bit121_3d;
export "DPI-C" function e_logic1_0d;
export "DPI-C" function e_logic1_1d;
export "DPI-C" function e_logic1_2d;
export "DPI-C" function e_logic1_3d;
export "DPI-C" function e_logic7_0d;
export "DPI-C" function e_logic7_1d;
export "DPI-C" function e_logic7_2d;
export "DPI-C" function e_logic7_3d;
export "DPI-C" function e_logic121_0d;
export "DPI-C" function e_logic121_1d;
export "DPI-C" function e_logic121_2d;
export "DPI-C" function e_logic121_3d;
export "DPI-C" function e_pack_struct_0d;
export "DPI-C" function e_pack_struct_1d;
export "DPI-C" function e_pack_struct_2d;
export "DPI-C" function e_pack_struct_3d;
`ifndef NO_UNPACK_STRUCT
export "DPI-C" function e_unpack_struct_0d;
export "DPI-C" function e_unpack_struct_1d;
export "DPI-C" function e_unpack_struct_2d;
export "DPI-C" function e_unpack_struct_3d;
`endif
//======================================================================
// Definitions of exported functions
//======================================================================
function void e_byte_0d(input byte val); `CHECK_0D(val); endfunction
function void e_byte_1d(input byte val[2]); `CHECK_1D(val); endfunction
function void e_byte_2d(input byte val[3][2]); `CHECK_2D(val); endfunction
function void e_byte_3d(input byte_array_t val); `CHECK_3D(val); endfunction
function void e_byte_unsigned_0d(input byte unsigned val); `CHECK_0D(val); endfunction
function void e_byte_unsigned_1d(input byte unsigned val[2]); `CHECK_1D(val); endfunction
function void e_byte_unsigned_2d(input byte unsigned val[3][2]); `CHECK_2D(val); endfunction
function void e_byte_unsigned_3d(input byte_unsigned_array_t val); `CHECK_3D(val); endfunction
function void e_shortint_0d(input shortint val); `CHECK_0D(val); endfunction
function void e_shortint_1d(input shortint val[2]); `CHECK_1D(val); endfunction
function void e_shortint_2d(input shortint val[3][2]); `CHECK_2D(val); endfunction
function void e_shortint_3d(input shortint_array_t val); `CHECK_3D(val); endfunction
function void e_shortint_unsigned_0d(input shortint unsigned val); `CHECK_0D(val); endfunction
function void e_shortint_unsigned_1d(input shortint unsigned val[2]); `CHECK_1D(val); endfunction
function void e_shortint_unsigned_2d(input shortint unsigned val[3][2]); `CHECK_2D(val); endfunction
function void e_shortint_unsigned_3d(input shortint_unsigned_array_t val); `CHECK_3D(val); endfunction
function void e_int_0d(input int val); `CHECK_0D(val); endfunction
function void e_int_1d(input int val[2]); `CHECK_1D(val); endfunction
function void e_int_2d(input int val[3][2]); `CHECK_2D(val); endfunction
function void e_int_3d(input int_array_t val); `CHECK_3D(val); endfunction
function void e_int_unsigned_0d(input int unsigned val); `CHECK_0D(val); endfunction
function void e_int_unsigned_1d(input int unsigned val[2]); `CHECK_1D(val); endfunction
function void e_int_unsigned_2d(input int unsigned val[3][2]); `CHECK_2D(val); endfunction
function void e_int_unsigned_3d(input int_unsigned_array_t val); `CHECK_3D(val); endfunction
function void e_longint_0d(input longint val); `CHECK_0D(val); endfunction
function void e_longint_1d(input longint val[2]); `CHECK_1D(val); endfunction
function void e_longint_2d(input longint val[3][2]); `CHECK_2D(val); endfunction
function void e_longint_3d(input longint_array_t val); `CHECK_3D(val); endfunction
function void e_longint_unsigned_0d(input longint unsigned val); `CHECK_0D(val); endfunction
function void e_longint_unsigned_1d(input longint unsigned val[2]); `CHECK_1D(val); endfunction
function void e_longint_unsigned_2d(input longint unsigned val[3][2]); `CHECK_2D(val); endfunction
function void e_longint_unsigned_3d(input longint_unsigned_array_t val); `CHECK_3D(val); endfunction
`ifndef NO_TIME
function void e_time_0d(input time val); `CHECK_0D(val); endfunction
function void e_time_1d(input time val[2]); `CHECK_1D(val); endfunction
function void e_time_2d(input time val[3][2]); `CHECK_2D(val); endfunction
function void e_time_3d(input time_array_t val); `CHECK_3D(val); endfunction
`endif
`ifndef NO_INTEGER
function void e_integer_0d(input integer val); `CHECK_0D(val); endfunction
function void e_integer_1d(input integer val[2]); `CHECK_1D(val); endfunction
function void e_integer_2d(input integer val[3][2]); `CHECK_2D(val); endfunction
function void e_integer_3d(input integer_array_t val); `CHECK_3D(val); endfunction
`endif
function void e_real_0d(input real val); `CHECK_0D(val); endfunction
function void e_real_1d(input real val[2]); `CHECK_1D(val); endfunction
function void e_real_2d(input real val[3][2]); `CHECK_2D(val); endfunction
function void e_real_3d(input real_array_t val); `CHECK_3D(val); endfunction
`ifndef NO_SHORTREAL
function void e_shortreal_0d(input shortreal val); `CHECK_0D(val); endfunction
function void e_shortreal_1d(input shortreal val[2]); `CHECK_1D(val); endfunction
function void e_shortreal_2d(input shortreal val[3][2]); `CHECK_2D(val); endfunction
function void e_shortreal_3d(input shortreal_array_t val); `CHECK_3D(val); endfunction
`endif
function void e_chandle_0d(input chandle val);
if (val == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
endfunction
function void e_chandle_1d(input chandle val[2]);
if (val[0] == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
if (val[1] == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
endfunction
function void e_chandle_2d(input chandle val[3][2]);
if (val[0][1] == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
if (val[1][1] == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
if (val[2][1] == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
endfunction
function void e_chandle_3d(input chandle_array_t val);
if (val[0][0][0] == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
if (val[1][0][0] == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
if (val[2][0][0] == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
if (val[3][0][0] == null) begin
$display("Mismatch non null is expected, but not.");
$stop;
end
endfunction
function void e_string_0d(input string val);
if (val != "42") begin
$display("Mismatch expected:%s actual:%s", "42", val);
$stop;
end
endfunction
function void e_string_1d(input string val[2]);
if (val[0] != "43") begin
$display("Mismatch expected:%s actual:%s", "43", val[0]);
$stop;
end
if (val[1] != "44") begin
$display("Mismatch expected:%s actual:%s", "44", val[1]);
$stop;
end
endfunction
function void e_string_2d(input string val[3][2]);
if (val[0][1] != "45") begin
$display("Mismatch expected:%s actual:%s", "45", val[0][1]);
$stop;
end
if (val[1][1] != "46") begin
$display("Mismatch expected:%s actual:%s", "46", val[1][1]);
$stop;
end
if (val[2][1] != "47") begin
$display("Mismatch expected:%s actual:%s", "47", val[2][1]);
$stop;
end
endfunction
function void e_string_3d(input string_array_t val);
if (val[0][0][0] != "48") begin
$display("Mismatch expected:%s actual:%s", "48", val[0][0][0]);
$stop;
end
if (val[1][0][0] != "49") begin
$display("Mismatch expected:%s actual:%s", "49", val[1][0][0]);
$stop;
end
if (val[2][0][0] != "50") begin
$display("Mismatch expected:%s actual:%s", "50", val[2][0][0]);
$stop;
end
if (val[3][0][0] != "51") begin
$display("Mismatch expected:%s actual:%s", "51", val[3][0][0]);
$stop;
end
endfunction
function void e_bit1_0d(input bit val); `CHECK_0D(val); endfunction
function void e_bit1_1d(input bit val[2]); `CHECK_1D(val); endfunction
function void e_bit1_2d(input bit val[3][2]); `CHECK_2D(val); endfunction
function void e_bit1_3d(input bit1_array_t val); `CHECK_3D(val); endfunction
function void e_bit7_0d(input bit[6:0] val); `CHECK_0D(val); endfunction
function void e_bit7_1d(input bit[6:0] val[2]); `CHECK_1D(val); endfunction
function void e_bit7_2d(input bit[6:0] val[3][2]); `CHECK_2D(val); endfunction
function void e_bit7_3d(input bit7_array_t val); `CHECK_3D(val); endfunction
function void e_bit121_0d(input bit[120:0] val); `CHECK_0D(val); endfunction
function void e_bit121_1d(input bit[120:0] val[2]); `CHECK_1D(val); endfunction
function void e_bit121_2d(input bit[120:0] val[3][2]); `CHECK_2D(val); endfunction
function void e_bit121_3d(input bit121_array_t val); `CHECK_3D(val); endfunction
function void e_logic1_0d(input logic val); `CHECK_0D(val); endfunction
function void e_logic1_1d(input logic val[2]); `CHECK_1D(val); endfunction
function void e_logic1_2d(input logic val[3][2]); `CHECK_2D(val); endfunction
function void e_logic1_3d(input logic1_array_t val); `CHECK_3D(val); endfunction
function void e_logic7_0d(input logic[6:0] val); `CHECK_0D(val); endfunction
function void e_logic7_1d(input logic[6:0] val[2]); `CHECK_1D(val); endfunction
function void e_logic7_2d(input logic[6:0] val[3][2]); `CHECK_2D(val); endfunction
function void e_logic7_3d(input logic7_array_t val); `CHECK_3D(val); endfunction
function void e_logic121_0d(input logic[120:0] val); `CHECK_0D(val); endfunction
function void e_logic121_1d(input logic[120:0] val[2]); `CHECK_1D(val); endfunction
function void e_logic121_2d(input logic[120:0] val[3][2]); `CHECK_2D(val); endfunction
function void e_logic121_3d(input logic121_array_t val); `CHECK_3D(val); endfunction
function void e_pack_struct_0d(input pack_struct_t val); `CHECK_0D(val); endfunction
function void e_pack_struct_1d(input pack_struct_t val[2]); `CHECK_1D(val); endfunction
function void e_pack_struct_2d(input pack_struct_t val[3][2]); `CHECK_2D(val); endfunction
function void e_pack_struct_3d(input pack_struct_array_t val); `CHECK_3D(val); endfunction
`ifndef NO_UNPACK_STRUCT
function void e_unpack_struct_0d(input unpack_struct_t val);
if (val.val != 42) begin
$display("Mismatch expected:%s actual:%s", "42", val.val);
$stop;
end
endfunction
function void e_unpack_struct_1d(input unpack_struct_t val[2]);
if (val[0].val != 43) begin
$display("Mismatch expected:%s actual:%s", "43", val[0].val);
$stop;
end
if (val[1].val != 44) begin
$display("Mismatch expected:%s actual:%s", "44", val[1].val);
$stop;
end
endfunction
function void e_unpack_struct_2d(input unpack_struct_t val[3][2]);
if (val[0][1].val != 45) begin
$display("Mismatch expected:%s actual:%s", "45", val[0][1].val);
$stop;
end
if (val[1][1].val != 46) begin
$display("Mismatch expected:%s actual:%s", "46", val[1][1].val);
$stop;
end
if (val[2][1].val != 47) begin
$display("Mismatch expected:%s actual:%s", "47", val[2][1].val);
$stop;
end
endfunction
function void e_unpack_struct_3d(input unpack_struct_array_t val);
if (val[0][0][0].val != 48) begin
$display("Mismatch expected:%s actual:%s", "48", val[0][0][0].val);
$stop;
end
if (val[1][0][0].val != 49) begin
$display("Mismatch expected:%s actual:%s", "49", val[1][0][0].val);
$stop;
end
if (val[2][0][0].val != 50) begin
$display("Mismatch expected:%s actual:%s", "50", val[2][0][0].val);
$stop;
end
if (val[3][0][0].val != 51) begin
$display("Mismatch expected:%s actual:%s", "51", val[3][0][0].val);
$stop;
end
endfunction
`endif
//======================================================================
// Invoke all imported functions
//======================================================================
import "DPI-C" context function void check_exports();
initial begin
byte_array_t byte_array;
byte_unsigned_array_t byte_unsigned_array;
shortint_array_t shortint_array;
shortint_unsigned_array_t shortint_unsigned_array;
int_array_t int_array;
int_unsigned_array_t int_unsigned_array;
longint_array_t longint_array;
longint_unsigned_array_t longint_unsigned_array;
`ifndef NO_TIME
time_array_t time_array;
`endif
`ifndef NO_INTEGER
integer_array_t integer_array;
`endif
real_array_t real_array;
`ifndef NO_SHORTREAL
shortreal_array_t shortreal_array;
`endif
chandle_array_t chandle_array;
string_array_t string_array;
bit1_array_t bit1_array;
bit7_array_t bit7_array;
bit121_array_t bit121_array;
logic1_array_t logic1_array;
logic7_array_t logic7_array;
logic121_array_t logic121_array;
pack_struct_array_t pack_struct_array;
`ifndef NO_UNPACK_STRUCT
unpack_struct_array_t unpack_struct_array;
`endif
`SET_VALUES(byte_array);
i_byte_0d(byte_array[3][2][1]);
i_byte_1d(byte_array[2][1]);
i_byte_2d(byte_array[1]);
i_byte_3d(byte_array);
`SET_VALUES(byte_unsigned_array);
i_byte_unsigned_0d(byte_unsigned_array[3][2][1]);
i_byte_unsigned_1d(byte_unsigned_array[2][1]);
i_byte_unsigned_2d(byte_unsigned_array[1]);
i_byte_unsigned_3d(byte_unsigned_array);
`SET_VALUES(shortint_array);
i_shortint_0d(shortint_array[3][2][1]);
i_shortint_1d(shortint_array[2][1]);
i_shortint_2d(shortint_array[1]);
i_shortint_3d(shortint_array);
`SET_VALUES(shortint_unsigned_array);
i_shortint_unsigned_0d(shortint_unsigned_array[3][2][1]);
i_shortint_unsigned_1d(shortint_unsigned_array[2][1]);
i_shortint_unsigned_2d(shortint_unsigned_array[1]);
i_shortint_unsigned_3d(shortint_unsigned_array);
`SET_VALUES(int_array);
i_int_0d(int_array[3][2][1]);
i_int_1d(int_array[2][1]);
i_int_2d(int_array[1]);
i_int_3d(int_array);
`SET_VALUES(int_unsigned_array);
i_int_unsigned_0d(int_unsigned_array[3][2][1]);
i_int_unsigned_1d(int_unsigned_array[2][1]);
i_int_unsigned_2d(int_unsigned_array[1]);
i_int_unsigned_3d(int_unsigned_array);
`SET_VALUES(longint_array);
i_longint_0d(longint_array[3][2][1]);
i_longint_1d(longint_array[2][1]);
i_longint_2d(longint_array[1]);
i_longint_3d(longint_array);
`SET_VALUES(longint_unsigned_array);
i_longint_unsigned_0d(longint_unsigned_array[3][2][1]);
i_longint_unsigned_1d(longint_unsigned_array[2][1]);
i_longint_unsigned_2d(longint_unsigned_array[1]);
i_longint_unsigned_3d(longint_unsigned_array);
`ifndef NO_TIME
`SET_VALUES(time_array);
i_time_0d(time_array[3][2][1]);
i_time_1d(time_array[2][1]);
i_time_2d(time_array[1]);
i_time_3d(time_array);
`endif
`ifndef NO_INTEGER
`SET_VALUES(integer_array);
i_integer_0d(integer_array[3][2][1]);
i_integer_1d(integer_array[2][1]);
i_integer_2d(integer_array[1]);
i_integer_3d(integer_array);
`endif
`SET_VALUES(real_array);
i_real_0d(real_array[3][2][1]);
i_real_1d(real_array[2][1]);
i_real_2d(real_array[1]);
i_real_3d(real_array);
`ifndef NO_SHORTREAL
`SET_VALUES(shortreal_array);
i_shortreal_0d(shortreal_array[3][2][1]);
i_shortreal_1d(shortreal_array[2][1]);
i_shortreal_2d(shortreal_array[1]);
i_shortreal_3d(shortreal_array);
`endif
for (int i = 0; i < 4; ++i)
for (int j = 0; j < 3; ++j)
for (int k = 0; k < 2; ++k)
chandle_array[i][j][k] = null;
chandle_array[3][2][1] = get_non_null();
i_chandle_0d(chandle_array[3][2][1]);
chandle_array[2][1][0] = get_non_null();
chandle_array[2][1][1] = get_non_null();
i_chandle_1d(chandle_array[2][1]);
chandle_array[1][0][1] = get_non_null();
chandle_array[1][1][1] = get_non_null();
chandle_array[1][2][1] = get_non_null();
i_chandle_2d(chandle_array[1]);
chandle_array[0][0][0] = get_non_null();
chandle_array[1][0][0] = get_non_null();
chandle_array[2][0][0] = get_non_null();
chandle_array[3][0][0] = get_non_null();
i_chandle_3d(chandle_array);
string_array[3][2][1] = "42";
string_array[2][1][0] = "43"; string_array[2][1][1] = "44";
string_array[1][0][1] = "45"; string_array[1][1][1] = "46"; string_array[1][2][1] = "47";
string_array[0][0][0] = "48"; string_array[1][0][0] = "49"; string_array[2][0][0] = "50"; string_array[3][0][0] = "51";
i_string_0d(string_array[3][2][1]);
i_string_1d(string_array[2][1]);
i_string_2d(string_array[1]);
i_string_3d(string_array);
`SET_VALUES(bit1_array);
i_bit1_0d(bit1_array[3][2][1]);
i_bit1_1d(bit1_array[2][1]);
i_bit1_2d(bit1_array[1]);
i_bit1_3d(bit1_array);
`SET_VALUES(bit7_array);
i_bit7_0d(bit7_array[3][2][1]);
i_bit7_1d(bit7_array[2][1]);
i_bit7_2d(bit7_array[1]);
i_bit7_3d(bit7_array);
`SET_VALUES(bit121_array);
i_bit121_0d(bit121_array[3][2][1]);
i_bit121_1d(bit121_array[2][1]);
i_bit121_2d(bit121_array[1]);
i_bit121_3d(bit121_array);
`SET_VALUES(logic1_array);
i_logic1_0d(logic1_array[3][2][1]);
i_logic1_1d(logic1_array[2][1]);
i_logic1_2d(logic1_array[1]);
i_logic1_3d(logic1_array);
`SET_VALUES(logic7_array);
i_logic7_0d(logic7_array[3][2][1]);
i_logic7_1d(logic7_array[2][1]);
i_logic7_2d(logic7_array[1]);
i_logic7_3d(logic7_array);
`SET_VALUES(logic121_array);
i_logic121_0d(logic121_array[3][2][1]);
i_logic121_1d(logic121_array[2][1]);
i_logic121_2d(logic121_array[1]);
i_logic121_3d(logic121_array);
`SET_VALUES(pack_struct_array);
i_pack_struct_0d(pack_struct_array[3][2][1]);
i_pack_struct_1d(pack_struct_array[2][1]);
i_pack_struct_2d(pack_struct_array[1]);
i_pack_struct_3d(pack_struct_array);
`ifndef NO_UNPACK_STRUCT
unpack_struct_array[3][2][1].val = 42;
unpack_struct_array[2][1][0].val = 43;
unpack_struct_array[2][1][1].val = 44;
unpack_struct_array[1][0][1].val = 45;
unpack_struct_array[1][1][1].val = 46;
unpack_struct_array[1][2][1].val = 47;
unpack_struct_array[0][0][0].val = 48;
unpack_struct_array[1][0][0].val = 49;
unpack_struct_array[2][0][0].val = 50;
unpack_struct_array[3][0][0].val = 51;
i_unpack_struct_0d(unpack_struct_array[3][2][1]);
i_unpack_struct_1d(unpack_struct_array[2][1]);
i_unpack_struct_2d(unpack_struct_array[1]);
i_unpack_struct_3d(unpack_struct_array);
`endif
check_exports();
$write("*-* All Finished *-*\n");
$finish;
end
endmodule
|