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
|
; VL 2014 -- VL Verilog Toolkit, 2014 Edition
; Copyright (C) 2008-2015 Centaur Technology
;
; Contact:
; Centaur Technology Formal Verification Group
; 7600-C N. Capital of Texas Highway, Suite 300, Austin, TX 78731, USA.
; http://www.centtech.com/
;
; License: (An MIT/X11-style license)
;
; Permission is hereby granted, free of charge, to any person obtaining a
; copy of this software and associated documentation files (the "Software"),
; to deal in the Software without restriction, including without limitation
; the rights to use, copy, modify, merge, publish, distribute, sublicense,
; and/or sell copies of the Software, and to permit persons to whom the
; Software is furnished to do so, subject to the following conditions:
;
; The above copyright notice and this permission notice shall be included in
; all copies or substantial portions of the Software.
;
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
; DEALINGS IN THE SOFTWARE.
;
; Original author: Jared Davis <jared@centtech.com>
(in-package "VL2014")
(include-book "datatypes")
(local (include-book "../../util/arithmetic"))
(defxdoc parse-paramdecls
:parents (parser)
:short "Functions for parsing parameter declarations."
:long "<p>See the comments in @(see vl-paramdecl) and also especially in
@(see vl-paramtype) for details on how we represent parameter declarations.
Here are the grammar rules from Verilog-2005:</p>
@({
local_parameter_declaration ::=
'localparam' ['signed'] [range] list_of_param_assignments
| 'localparam' parameter_type list_of_param_assignments
parameter_declaration ::=
'parameter' ['signed'] [range] list_of_param_assignments
| 'parameter' parameter_type list_of_param_assignments
parameter_type ::=
'integer' | 'real' | 'realtime' | 'time'
list_of_param_assignments ::= param_assignment { ',' param_assignment }
param_assignment ::= identifier = mintypmax_expression
})
<p>SystemVerilog-2012 extends this in three ways.</p>
<p>First, it expands the valid types for value parameters, so that parameters
can now be of any arbitrary data type. In particular:</p>
@({
local_parameter_declaration ::=
'localparam' data_type_or_implicit list_of_param_assignments
| ...
parameter_declaration ::=
'parameter' data_type_or_implicit list_of_param_assignments
| ...
data_type_or_implicit ::= data_type
| implicit_data_type
implicit_data_type ::= [ signing ] { packed_dimension }
signing ::= 'signed' | 'unsigned'
})
<p>Second, it extends parameter assignments so that (1) the default value for
non-local parameters becomes optional, and (2) there can be an arbitrary list
of unpacked dimensions. However, I don't believe the meaning of these unpacked
dimensions is ever explained, so VL <b>does not support it</b>. There is no
place for these dimensions in our parsed representation, and our parser will
fail to parse declarations that include such dimensions:</p>
@({
param_assignment ::= identifier { unpacked_dimension } [ '=' constant_param_expression ]
constant_param_expression ::= constant_mintypmax_expression | data_type | '$'
constant_mintypmax_expression ::=
constant_expression
| constant_expression : constant_expression : constant_expression
})
<p>It is unclear to me what it would mean to assign a data type to a value
parameter, so the parser currently does not support this.</p>
<p>The @('$') is a special, unbounded integer value. See SystemVerilog Section
6.20.2.1.</p>
<p>Note that the omitting the default value for a parameter is not legal for
local parameters. (SystemVerilog-2012, section A.10, note 18). We enforce
this in the parser.</p>
<p>Finally, SystemVerilog-2012 adds completely new <b>type parameter</b>s in
addition to the <b>value parameters</b> above. The syntax here is:</p>
@({
local_parameter_declaration ::=
...
| 'localparam' 'type' list_of_type_assignments
parameter_declaration ::=
...
| 'parameter' 'type' list_of_type_assignments
list_of_type_assignments ::= type_assignment { ',' type_assignment }
type_assignment ::= identifier [ '=' data_type ]
})
<p>Note that, as with value parameters, it is not legal to omit the default
data type for a local type parameter. We enforce this in the parser.</p>")
(local (xdoc::set-default-parents parse-paramdecls))
; Value Parameters ------------------------------------------------------------
(defparser vl-parse-param-assignment (atts localp type)
;; Verilog-2005: param_assignment ::= identifier = mintypmax_expression
;; SystemVerilog-2012: param_assignment ::= identifier { unpacked_dimension } [ '=' constant_param_expression ]
:guard (and (vl-atts-p atts)
(booleanp localp)
;; Type: a full or partial paramtype whose default value we haven't read yet.
(vl-paramtype-p type)
(member (vl-paramtype-kind type) '(:vl-implicitvalueparam :vl-explicitvalueparam)))
:result (vl-paramdecl-p val)
:resultp-of-nil nil
:fails gracefully
:count strong
(seq tokstream
(id := (vl-match-token :vl-idtoken))
(when (vl-parsestate-is-user-defined-type-p (vl-idtoken->name id)
(vl-tokstream->pstate))
;; We make this very strict because otherwise it seems that ambiguities
;; can arise.
(return-raw
(vl-parse-error (cat "Parameter names that shadow types are not supported: " (vl-idtoken->name id)))))
;; For SystemVerilog-2012, there's an optional {unpacked_dimension} part here. But we don't
;; support it because we don't know what it's supposed to mean.
;; For SystemVerilog-2012, the right hand side is optional but only for non-local parameters.
(when (and (not (vl-is-token? :vl-equalsign))
(not (eq (vl-loadconfig->edition config) :verilog-2005))
(not localp))
;; Special case: SystemVerilog-2012 with a non-local parameter, so
;; we're allowed to not have a default value here.
(return (make-vl-paramdecl :loc (vl-token->loc id)
:name (vl-idtoken->name id)
:atts atts
:localp localp
:type type)))
;; Otherwise, a default value has been given or is required.
(:= (vl-match-token :vl-equalsign))
;; For SystemVerilog-2012, the default value is supposed to be a
;; constant_param_expression ::= constant_mintypmax_expression | data_type | '$'
;; But
;; (1) I don't know what a data_type would mean here so I'm not going to support that, and
;; (2) The lone $ is already supported as a kind of base expression
;; So this all just collapses down into a mintypmax expression.
(default := (vl-parse-mintypmax-expression))
(return (make-vl-paramdecl
:loc (vl-token->loc id)
:name (vl-idtoken->name id)
:atts atts
:localp localp
:type
(if (vl-paramtype-case type :vl-implicitvalueparam)
(change-vl-implicitvalueparam type :default default)
(change-vl-explicitvalueparam type :default default))))))
(defparser vl-parse-list-of-param-assignments (atts localp type)
;; list_of_param_assignments ::= param_assignment { ',' param_assignment }
:guard (and (vl-atts-p atts)
(booleanp localp)
(vl-paramtype-p type)
(member (vl-paramtype-kind type) '(:vl-implicitvalueparam :vl-explicitvalueparam)))
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(seq tokstream
(first := (vl-parse-param-assignment atts localp type))
;; We have to be careful here. The comma may not belong to us. For
;; instance, we may have something like: module foo #(parameter foo =
;; 1, parameter bar = 2), in which case the comma is separating
;; parameters, not identifiers. So, only eat the comma if we see an
;; identifier afterward.
(when (and (vl-is-token? :vl-comma)
(vl-lookahead-is-token? :vl-idtoken (cdr (vl-tokstream->tokens))))
(:= (vl-match))
(rest := (vl-parse-list-of-param-assignments atts localp type)))
(return (cons first rest))))
; Type Parameters -------------------------------------------------------------
(defparser vl-parse-type-assignment (atts localp)
;; SystemVerilog-2012 Only.
;; type_assignment ::= identifier [ '=' data_type ]
:guard (and (vl-atts-p atts)
(booleanp localp))
:result (vl-paramdecl-p val)
:resultp-of-nil nil
:fails gracefully
:count strong
(seq tokstream
(id := (vl-match-token :vl-idtoken))
(when (vl-parsestate-is-user-defined-type-p (vl-idtoken->name id)
(vl-tokstream->pstate))
;; We make this very strict because otherwise it seems that ambiguities
;; can arise.
(return-raw
(vl-parse-error (cat "Parameter names that shadow types are not supported: " (vl-idtoken->name id)))))
(:= (vl-match-token :vl-equalsign))
(type := (vl-parse-datatype))
(return (make-vl-paramdecl
:loc (vl-token->loc id)
:name (vl-idtoken->name id)
:atts atts
:localp localp
:type (make-vl-typeparam :default type)))))
(defparser vl-parse-list-of-type-assignments (atts localp)
;; SystemVerilog-2012 Only.
;; list_of_type_assignments ::= type_assignment { ',' type_assignment }
:guard (and (vl-atts-p atts)
(booleanp localp))
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(seq tokstream
(first := (vl-parse-type-assignment atts localp))
(when (vl-is-token? :vl-comma)
(:= (vl-match))
(rest := (vl-parse-list-of-type-assignments atts localp)))
(return (cons first rest))))
; Arbitrary Parameters --------------------------------------------------------
(defparser vl-parse-param-or-localparam-declaration-2005 (atts types)
;; Verilog-2005 Only.
:guard (and (vl-atts-p atts)
;; Types says what kinds (local or nonlocal) of parameters we permit
(true-listp types)
(subsetp types '(:vl-kwd-parameter :vl-kwd-localparam)))
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(seq tokstream
;; Verilog-2005 rules:
;;
;; local_parameter_declaration ::=
;; 'localparam' ['signed'] [range] list_of_param_assignments
;; | 'localparam' parameter_type list_of_param_assignments
;;
;; parameter_declaration ::=
;; 'parameter' ['signed'] [range] list_of_param_assignments
;; | 'parameter' parameter_type list_of_param_assignments
(start := (vl-match-some-token types))
(when (vl-is-some-token? '(:vl-kwd-integer :vl-kwd-real :vl-kwd-realtime :vl-kwd-time))
;; No range on these types
(type := (vl-match))
;; The type to use is tricky. Consider the rules from Section 12.2
;; of the Verilog-2005 standard. We are in the case where there is a
;; type but no range (because the grammar doesn't permit a range
;; here). In this case, any override value shall be converted to the
;; type of the parameter. So I think we're justified in calling
;; these fully specified and saying that we know the type.
(decls := (vl-parse-list-of-param-assignments
atts
(eq (vl-token->type start) :vl-kwd-localparam) ;; localp
(make-vl-explicitvalueparam
:type (case (vl-token->type type)
(:vl-kwd-integer *vl-plain-old-integer-type*)
(:vl-kwd-real *vl-plain-old-real-type*)
(:vl-kwd-realtime *vl-plain-old-realtime-type*)
(:vl-kwd-time *vl-plain-old-time-type*)
))))
(return decls))
(when (vl-is-token? :vl-kwd-signed)
(signed := (vl-match)))
(when (vl-is-token? :vl-lbrack)
(range := (vl-parse-range)))
;; The type to use is again tricky. Consider the rules from Section
;; 12.2 of the Verilog-2005 standard.
(decls := (vl-parse-list-of-param-assignments
atts
(eq (vl-token->type start) :vl-kwd-localparam) ;; localp
(mbe :logic
(cond
((and (not signed)
(not range))
;; No type or range. The rule is: use the type and
;; range of the final override value. This is the
;; fully unspecified, partial case.
(make-vl-implicitvalueparam :range nil :sign nil))
((not signed)
;; Range but no type. The rule is: use this range,
;; and unsigned.
(make-vl-implicitvalueparam :range range :sign nil))
((not range)
;; Sign but no range. Convert the final override
;; value to signed, but keep its range.
(make-vl-implicitvalueparam :range nil :sign :vl-signed))
(t
;; Sign and range. This is fully specified. It
;; will be signed and will keep the range of its
;; declaration. I think there are a couple of
;; options for how to represent this. I think I'm
;; just going to allow the partial type to be fully
;; specified, so that it's easy to identify this
;; case in, e.g., pretty printing.
(make-vl-implicitvalueparam :range range :sign :vl-signed)))
:exec
;; I'll keep the above since it makes all the cases
;; explicit, but it boils down to something very
;; simple:
(make-vl-implicitvalueparam :range range
:sign (and signed :vl-signed)))))
(return decls)))
(defparser vl-parse-param-or-localparam-declaration-2012 (atts types)
;; Verilog-2012 Only.
:guard (and (vl-atts-p atts)
;; Types says what kinds (local or nonlocal) of parameters we permit
(true-listp types)
(subsetp types '(:vl-kwd-parameter :vl-kwd-localparam)))
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(seq tokstream
(start := (vl-match-some-token types)) ;; localparam or parameter
(when (vl-is-token? :vl-kwd-type)
;; local_parameter_declaration ::= ... | 'localparam' 'type' list_of_type_assignments
;; parameter_declaration ::= ... | 'parameter' 'type' list_of_type_assignments
(:= (vl-match))
(decls := (vl-parse-list-of-type-assignments atts
(eq (vl-token->type start) :vl-kwd-localparam)))
(return decls))
;; Otherwise:
;; local_parameter_declaration ::= 'localparam' data_type_or_implicit list_of_param_assignments | ...
;; parameter_declaration ::= 'parameter' data_type_or_implicit list_of_param_assignments | ...
;;
;; data_type_or_implicit ::= data_type
;; | implicit_data_type
;;
;; implicit_data_type ::= [ signing ] { packed_dimension }
;;
;; signing ::= 'signed' | 'unsigned'
;;
;; We'll handle the implicit case first.
(when (vl-is-some-token? '(:vl-kwd-signed :vl-kwd-unsigned))
(signing := (vl-match)))
(when (vl-is-token? :vl-lbrack)
;; the grammar allows things like parameter signed [3:0][4:0] ..., but I don't
;; know what we would really do with those, so for now I'm just going to accept
;; at most a single range here.
(range := (vl-parse-range)))
(when (or signing range)
;; This is similar to what we do in the Verilog-2005 version.
(decls := (vl-parse-list-of-param-assignments
atts
(eq (vl-token->type start) :vl-kwd-localparam)
(make-vl-implicitvalueparam :range range
:sign (and signing
(case (vl-token->type signing)
(:vl-kwd-signed :vl-signed)
(:vl-kwd-unsigned :vl-unsigned))))))
(return decls))
;; Now this is tricky. We know we don't have a signing or range, but
;; implicit_data_type might also be empty! So valid tails at this
;; point include at least:
;;
;; ``foo, bar``
;; ``foo = 5``
;; ``foo_t bar = 6``
;;
;; Basic idea: the sequences ``identifier ,`` and ``identifier =`` can only be the
;; start of a list_of_param_assignments.
;;
;; Things that can validly follow a parameter_declaration or local_parameter_declaration:
;; semicolon (interface_class_item, config_declaration, class_item, package_or_generate_item_declaration,
;; block item declaration)
;; comma or close paren (parameter_port_declaration)
;;
;; Blah, this parameter_port_declaration stuff looks potentially ambiguous.
;;
;; For now I'm going to just try to implement this using backtracking.
;; This might work if we make sure to try to parse the data type first.
(return-raw
(b* ((localp (eq (vl-token->type start) :vl-kwd-localparam))
(emptytype (make-vl-implicitvalueparam :range nil :sign nil))
;; Case 1: maybe there's some data_type there.
(backup (vl-tokstream-save))
((mv some-err some-decls tokstream)
(seq tokstream
(type := (vl-parse-datatype))
(decls := (vl-parse-list-of-param-assignments
atts localp
(make-vl-explicitvalueparam :type type)))
(return decls)))
((unless some-err)
;; It worked, so that's great and we're done.
(mv some-err some-decls tokstream))
(some-tokens (vl-tokstream->tokens))
(tokstream (vl-tokstream-restore backup))
;; Case 2: suppose there is no data_type. Then we should be able
;; to just parse the param assignments.
((mv empty-err empty-decls tokstream)
(vl-parse-list-of-param-assignments atts localp emptytype))
((unless empty-err)
;; It worked. So there can't be a data type because the second
;; token has to be an = sign. We win and we're done.
(mv empty-err empty-decls tokstream))
(empty-tokens (vl-tokstream->tokens))
(tokstream (vl-tokstream-restore backup)))
;; Final cleanup case. What if neither one works? We have two
;; errors now. Do the usual thing and choose whichever path got
;; farther.
(if (< (len empty-tokens) (len some-tokens))
;; Case 2 got farther. (it has fewer tokens left)
(mv empty-err empty-decls tokstream)
;; Case 1 got farther.
(mv some-err some-decls tokstream))))))
(defparser vl-parse-param-or-localparam-declaration (atts types)
:guard (and (vl-atts-p atts)
;; Types says what kinds (local or nonlocal) of parameters we permit
(true-listp types)
(subsetp types '(:vl-kwd-parameter :vl-kwd-localparam)))
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(if (equal (vl-loadconfig->edition config) :verilog-2005)
(vl-parse-param-or-localparam-declaration-2005 atts types)
(vl-parse-param-or-localparam-declaration-2012 atts types)))
; #(...) style module parameters:
;
;
; Verilog-2005 syntax:
;
; module_parameter_port_list ::= '#' '(' parameter_declaration { ',' parameter_declaration } ')'
(defparser vl-parse-module-parameter-port-list-aux-2005 ()
;; parameter_declaration { ',' parameter_declaration }
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(seq tokstream
;; No attributes, no localparams allowed.
(first := (vl-parse-param-or-localparam-declaration nil '(:vl-kwd-parameter)))
(when (vl-is-token? :vl-comma)
(:= (vl-match))
(rest := (vl-parse-module-parameter-port-list-aux-2005)))
(return (append first rest))))
(defparser vl-parse-module-parameter-port-list-2005 ()
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(seq tokstream
(:= (vl-match-token :vl-pound))
(:= (vl-match-token :vl-lparen))
(params := (vl-parse-module-parameter-port-list-aux-2005))
(:= (vl-match-token :vl-rparen))
(return params)))
; SystemVerilog-2012 extends this considerably:
;
; parameter_port_list ::= '#' '(' list_of_param_assignments { ',' parameter_port_declaration } ')'
; | '#' '(' parameter_port_declaration { ',' parameter_port_declaration } ')'
; | '#' '(' ')'
;
; parameter_port_declaration ::= parameter_declaration
; | local_parameter_declaration
; | data_type list_of_param_assignments
; | 'type' list_of_type_assignments
(defparser vl-parse-parameter-port-declaration-2012 ()
;; SystemVerilog-2012 only.
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(seq tokstream
(when (vl-is-some-token? '(:vl-kwd-parameter :vl-kwd-localparameter))
(decls := (vl-parse-param-or-localparam-declaration-2012
nil ;; no attributes
'(:vl-kwd-parameter :vl-kwd-localparam) ;; allowed to be local or non-local
))
(return decls))
(when (vl-is-token? :vl-kwd-type)
(:= (vl-match))
(decls := (vl-parse-list-of-type-assignments nil ;; no attributes
nil ;; not local
))
(return decls))
;; Otherwise, it had better be a data_type.
(type := (vl-parse-datatype))
(decls := (vl-parse-list-of-param-assignments nil ;; no attributes
nil ;; not local
(make-vl-explicitvalueparam :type type)))
(return decls)))
(defparser vl-parse-1+-parameter-port-declarations-2012 ()
;; SystemVerilog-2012 only.
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(seq tokstream
(first := (vl-parse-parameter-port-declaration-2012))
(when (vl-is-token? :vl-comma)
(:= (vl-match))
(rest := (vl-parse-1+-parameter-port-declarations-2012)))
(return (append first rest))))
(defparser vl-parse-module-parameter-port-list-2012 ()
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
:prepwork ((local (defthm l0
(implies (vl-is-token? :vl-idtoken)
(vl-idtoken-p (car (vl-tokstream->tokens))))
:hints(("Goal" :in-theory (enable vl-is-token?))))))
(seq tokstream
(:= (vl-match-token :vl-pound))
(:= (vl-match-token :vl-lparen))
(when (and (vl-is-token? :vl-idtoken)
(not (vl-parsestate-is-user-defined-type-p (vl-idtoken->name (car (vl-tokstream->tokens)))
(vl-tokstream->pstate))))
;; Identifier that is not a type. Seems like a list_of_param_assignments.
;; Some notes:
;; - The parser for list-of-param-assignments is careful not to eat the comma afterward
;; unless things continue to look like additional param-assignments.
;; - I'm not at all clear what the type of these parameter assignments should be, but
;; it seems most reasonable to treat them as plain-Jane, implicit value parameters,
;; as we would do if someone had written "parameter" first.
(decls1 := (vl-parse-list-of-param-assignments nil ;; no attributes
nil ;; not local
(make-vl-implicitvalueparam :range nil :sign nil)))
;; At this point we should have eaten everything except for the { , parameter_port_declaration }
;; section. Eat the comma so that we can handle these parameter_port_declarations uniformly
;; with the other cases.
(when (vl-is-token? :vl-comma)
(:= (vl-match))))
;; Now either we had a list_of_param_assignments first or we didn't.
;; Either way, we ate the commas and now we should be looking at a list
;; of 0+ parameter_port_declarations.
(when (vl-is-token? :vl-rparen)
;; Fine, no parameter port declarations, but #() is allowed in
;; SystemVerilog and it is also fine if we had any decls1 to not have
;; any subsequent, more explicit parameter declarations.
(:= (vl-match))
(return decls1))
;; Otherwise, there should be some parameter_port_declarations.
(decls2 := (vl-parse-1+-parameter-port-declarations-2012))
(:= (vl-match-token :vl-rparen))
(return (append decls1 decls2))))
(defparser vl-parse-module-parameter-port-list ()
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count strong
(seq tokstream
(when (eq (vl-loadconfig->edition config) :verilog-2005)
(ans := (vl-parse-module-parameter-port-list-2005))
(return ans))
(ans := (vl-parse-module-parameter-port-list-2012))
(return ans)))
(defparser vl-maybe-parse-parameter-port-list ()
;; parses the parameter port list if the next token is #
:result (vl-paramdecllist-p val)
:resultp-of-nil t
:true-listp t
:fails gracefully
:count weak
(seq tokstream
(when (vl-is-token? :vl-pound)
(res := (vl-parse-module-parameter-port-list))
(return res))
(return nil)))
|