Handle system default font and changing font parameters.
[emacs.git] / lisp / progmodes / verilog-mode.el
blob8239cdda3a17fbf047e257cb060d8defd16b45cb
1 ;; verilog-mode.el --- major mode for editing verilog source in Emacs
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Michael McNamara (mac@verilog.com)
7 ;; http://www.verilog.com
8 ;;
9 ;; AUTO features, signal, modsig; by: Wilson Snyder
10 ;; (wsnyder@wsnyder.org)
11 ;; http://www.veripool.org
12 ;; Keywords: languages
14 ;; Yoni Rabkin <yoni@rabkins.net> contacted the maintainer of this
15 ;; file on 19/3/2008, and the maintainer agreed that when a bug is
16 ;; filed in the Emacs bug reporting system against this file, a copy
17 ;; of the bug report be sent to the maintainer's email address.
19 ;; This code supports Emacs 21.1 and later
20 ;; And XEmacs 21.1 and later
21 ;; Please do not make changes that break Emacs 21. Thanks!
25 ;; This file is part of GNU Emacs.
27 ;; GNU Emacs is free software: you can redistribute it and/or modify
28 ;; it under the terms of the GNU General Public License as published by
29 ;; the Free Software Foundation, either version 3 of the License, or
30 ;; (at your option) any later version.
32 ;; GNU Emacs is distributed in the hope that it will be useful,
33 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
34 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 ;; GNU General Public License for more details.
37 ;; You should have received a copy of the GNU General Public License
38 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
40 ;;; Commentary:
42 ;; This mode borrows heavily from the Pascal-mode and the cc-mode of Emacs
44 ;; USAGE
45 ;; =====
47 ;; A major mode for editing Verilog HDL source code. When you have
48 ;; entered Verilog mode, you may get more info by pressing C-h m. You
49 ;; may also get online help describing various functions by: C-h f
50 ;; <Name of function you want described>
52 ;; KNOWN BUGS / BUG REPORTS
53 ;; =======================
55 ;; Verilog is a rapidly evolving language, and hence this mode is
56 ;; under continuous development. Hence this is beta code, and likely
57 ;; has bugs. Please report any issues to the issue tracker at
58 ;; http://www.veripool.org/verilog-mode
59 ;; Please use verilog-submit-bug-report to submit a report; type C-c
60 ;; C-b to invoke this and as a result I will have a much easier time
61 ;; of reproducing the bug you find, and hence fixing it.
63 ;; INSTALLING THE MODE
64 ;; ===================
66 ;; An older version of this mode may be already installed as a part of
67 ;; your environment, and one method of updating would be to update
68 ;; your Emacs environment. Sometimes this is difficult for local
69 ;; political/control reasons, and hence you can always install a
70 ;; private copy (or even a shared copy) which overrides the system
71 ;; default.
73 ;; You can get step by step help in installing this file by going to
74 ;; <http://www.verilog.com/emacs_install.html>
76 ;; The short list of installation instructions are: To set up
77 ;; automatic Verilog mode, put this file in your load path, and put
78 ;; the following in code (please un comment it first!) in your
79 ;; .emacs, or in your site's site-load.el
81 ; (autoload 'verilog-mode "verilog-mode" "Verilog mode" t )
82 ; (add-to-list 'auto-mode-alist '("\\.[ds]?v\\'" . verilog-mode))
84 ;; If you want to customize Verilog mode to fit your needs better,
85 ;; you may add these lines (the values of the variables presented
86 ;; here are the defaults). Note also that if you use an Emacs that
87 ;; supports custom, it's probably better to use the custom menu to
88 ;; edit these.
90 ;; Be sure to examine at the help for verilog-auto, and the other
91 ;; verilog-auto-* functions for some major coding time savers.
93 ; ;; User customization for Verilog mode
94 ; (setq verilog-indent-level 3
95 ; verilog-indent-level-module 3
96 ; verilog-indent-level-declaration 3
97 ; verilog-indent-level-behavioral 3
98 ; verilog-indent-level-directive 1
99 ; verilog-case-indent 2
100 ; verilog-auto-newline t
101 ; verilog-auto-indent-on-newline t
102 ; verilog-tab-always-indent t
103 ; verilog-auto-endcomments t
104 ; verilog-minimum-comment-distance 40
105 ; verilog-indent-begin-after-if t
106 ; verilog-auto-lineup 'declarations
107 ; verilog-highlight-p1800-keywords nil
108 ; verilog-linter "my_lint_shell_command"
111 ;; \f
113 ;;; History:
115 ;; See commit history at http://www.veripool.org/verilog-mode.html
116 ;; (This section is required to appease checkdoc.)
118 ;;; Code:
120 ;; This variable will always hold the version number of the mode
121 (defconst verilog-mode-version "547"
122 "Version of this Verilog mode.")
123 (defconst verilog-mode-release-date "2009-11-05-GNU"
124 "Release date of this Verilog mode.")
125 (defconst verilog-mode-release-emacs t
126 "If non-nil, this version of Verilog mode was released with Emacs itself.")
128 (defun verilog-version ()
129 "Inform caller of the version of this file."
130 (interactive)
131 (message "Using verilog-mode version %s" verilog-mode-version))
133 ;; Insure we have certain packages, and deal with it if we don't
134 ;; Be sure to note which Emacs flavor and version added each feature.
135 (eval-when-compile
136 ;; Provide stuff if we are XEmacs
137 (when (featurep 'xemacs)
138 (condition-case nil
139 (require 'easymenu)
140 (error nil))
141 (condition-case nil
142 (require 'regexp-opt)
143 (error nil))
144 ;; Bug in 19.28 through 19.30 skeleton.el, not provided.
145 (condition-case nil
146 (load "skeleton")
147 (error nil))
148 (condition-case nil
149 (if (fboundp 'when)
150 nil ;; fab
151 (defmacro when (cond &rest body)
152 (list 'if cond (cons 'progn body))))
153 (error nil))
154 (condition-case nil
155 (if (fboundp 'unless)
156 nil ;; fab
157 (defmacro unless (cond &rest body)
158 (cons 'if (cons cond (cons nil body)))))
159 (error nil))
160 (condition-case nil
161 (if (fboundp 'store-match-data)
162 nil ;; fab
163 (defmacro store-match-data (&rest args) nil))
164 (error nil))
165 (condition-case nil
166 (if (fboundp 'char-before)
167 nil ;; great
168 (defmacro char-before (&rest body)
169 (char-after (1- (point)))))
170 (error nil))
171 (condition-case nil
172 (require 'custom)
173 (error nil))
174 (condition-case nil
175 (if (fboundp 'match-string-no-properties)
176 nil ;; great
177 (defsubst match-string-no-properties (num &optional string)
178 "Return string of text matched by last search, without text properties.
179 NUM specifies which parenthesized expression in the last regexp.
180 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
181 Zero means the entire text matched by the whole regexp or whole string.
182 STRING should be given if the last search was by `string-match' on STRING."
183 (if (match-beginning num)
184 (if string
185 (let ((result
186 (substring string
187 (match-beginning num) (match-end num))))
188 (set-text-properties 0 (length result) nil result)
189 result)
190 (buffer-substring-no-properties (match-beginning num)
191 (match-end num)
192 (current-buffer)))))
194 (error nil))
195 (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
196 nil ;; We've got what we needed
197 ;; We have the old custom-library, hack around it!
198 (defmacro defgroup (&rest args) nil)
199 (defmacro customize (&rest args)
200 (message
201 "Sorry, Customize is not available with this version of Emacs"))
202 (defmacro defcustom (var value doc &rest args)
203 `(defvar ,var ,value ,doc))
205 (if (fboundp 'defface)
206 nil ; great!
207 (defmacro defface (var values doc &rest args)
208 `(make-face ,var))
211 (if (and (featurep 'custom) (fboundp 'customize-group))
212 nil ;; We've got what we needed
213 ;; We have an intermediate custom-library, hack around it!
214 (defmacro customize-group (var &rest args)
215 `(customize ,var))
217 ;; OK, do this stuff if we are NOT XEmacs:
218 (unless (featurep 'xemacs)
219 (unless (fboundp 'region-active-p)
220 (defmacro region-active-p ()
221 `(and transient-mark-mode mark-active))))
224 ;; Provide a regular expression optimization routine, using regexp-opt
225 ;; if provided by the user's elisp libraries
226 (eval-and-compile
227 ;; The below were disabled when GNU Emacs 22 was released;
228 ;; perhaps some still need to be there to support Emacs 21.
229 (if (featurep 'xemacs)
230 (if (fboundp 'regexp-opt)
231 ;; regexp-opt is defined, does it take 3 or 2 arguments?
232 (if (fboundp 'function-max-args)
233 (let ((args (function-max-args `regexp-opt)))
234 (cond
235 ((eq args 3) ;; It takes 3
236 (condition-case nil ; Hide this defun from emacses
237 ;with just a two input regexp
238 (defun verilog-regexp-opt (a b)
239 "Deal with differing number of required arguments for `regexp-opt'.
240 Call 'regexp-opt' on A and B."
241 (regexp-opt a b 't))
242 (error nil))
244 ((eq args 2) ;; It takes 2
245 (defun verilog-regexp-opt (a b)
246 "Call 'regexp-opt' on A and B."
247 (regexp-opt a b))
249 (t nil)))
250 ;; We can't tell; assume it takes 2
251 (defun verilog-regexp-opt (a b)
252 "Call 'regexp-opt' on A and B."
253 (regexp-opt a b))
255 ;; There is no regexp-opt, provide our own
256 (defun verilog-regexp-opt (strings &optional paren shy)
257 (let ((open (if paren "\\(" "")) (close (if paren "\\)" "")))
258 (concat open (mapconcat 'regexp-quote strings "\\|") close)))
260 ;; Emacs.
261 (defalias 'verilog-regexp-opt 'regexp-opt)))
263 (eval-when-compile
264 (defun verilog-regexp-words (a)
265 "Call 'regexp-opt' with word delimiters for the words A."
266 (concat "\\<" (verilog-regexp-opt a t) "\\>")))
268 (defun verilog-easy-menu-filter (menu)
269 "Filter `easy-menu-define' MENU to support new features."
270 (cond ((not (featurep 'xemacs))
271 menu) ;; GNU Emacs - passthru
272 ;; Xemacs doesn't support :help. Strip it.
273 ;; Recursively filter the a submenu
274 ((listp menu)
275 (mapcar 'verilog-easy-menu-filter menu))
276 ;; Look for [:help "blah"] and remove
277 ((vectorp menu)
278 (let ((i 0) (out []))
279 (while (< i (length menu))
280 (if (equal `:help (aref menu i))
281 (setq i (+ 2 i))
282 (setq out (vconcat out (vector (aref menu i)))
283 i (1+ i))))
284 out))
285 (t menu))) ;; Default - ok
286 ;;(verilog-easy-menu-filter
287 ;; `("Verilog" ("MA" ["SAA" nil :help "Help SAA"] ["SAB" nil :help "Help SAA"])
288 ;; "----" ["MB" nil :help "Help MB"]))
290 (defun verilog-customize ()
291 "Customize variables and other settings used by Verilog-Mode."
292 (interactive)
293 (customize-group 'verilog-mode))
295 (defun verilog-font-customize ()
296 "Customize fonts used by Verilog-Mode."
297 (interactive)
298 (if (fboundp 'customize-apropos)
299 (customize-apropos "font-lock-*" 'faces)))
301 (defun verilog-booleanp (value)
302 "Return t if VALUE is boolean.
303 This implements GNU Emacs 22.1's `booleanp' function in earlier Emacs.
304 This function may be removed when Emacs 21 is no longer supported."
305 (or (equal value t) (equal value nil)))
307 (defun verilog-insert-last-command-event ()
308 "Insert the `last-command-event'."
309 (insert (if (featurep 'xemacs)
310 ;; XEmacs 21.5 doesn't like last-command-event
311 last-command-char
312 ;; And GNU Emacs 22 has obsoleted last-command-char
313 last-command-event)))
315 (defalias 'verilog-syntax-ppss
316 (if (fboundp 'syntax-ppss) 'syntax-ppss
317 (lambda (&optional pos) (parse-partial-sexp (point-min) (or pos (point))))))
319 (defgroup verilog-mode nil
320 "Facilitates easy editing of Verilog source text."
321 :version "22.2"
322 :group 'languages)
324 ; (defgroup verilog-mode-fonts nil
325 ; "Facilitates easy customization fonts used in Verilog source text"
326 ; :link '(customize-apropos "font-lock-*" 'faces)
327 ; :group 'verilog-mode)
329 (defgroup verilog-mode-indent nil
330 "Customize indentation and highlighting of Verilog source text."
331 :group 'verilog-mode)
333 (defgroup verilog-mode-actions nil
334 "Customize actions on Verilog source text."
335 :group 'verilog-mode)
337 (defgroup verilog-mode-auto nil
338 "Customize AUTO actions when expanding Verilog source text."
339 :group 'verilog-mode)
341 (defcustom verilog-linter
342 "echo 'No verilog-linter set, see \"M-x describe-variable verilog-linter\"'"
343 "*Unix program and arguments to call to run a lint checker on Verilog source.
344 Depending on the `verilog-set-compile-command', this may be invoked when
345 you type \\[compile]. When the compile completes, \\[next-error] will take
346 you to the next lint error."
347 :type 'string
348 :group 'verilog-mode-actions)
349 ;; We don't mark it safe, as it's used as a shell command
351 (defcustom verilog-coverage
352 "echo 'No verilog-coverage set, see \"M-x describe-variable verilog-coverage\"'"
353 "*Program and arguments to use to annotate for coverage Verilog source.
354 Depending on the `verilog-set-compile-command', this may be invoked when
355 you type \\[compile]. When the compile completes, \\[next-error] will take
356 you to the next lint error."
357 :type 'string
358 :group 'verilog-mode-actions)
359 ;; We don't mark it safe, as it's used as a shell command
361 (defcustom verilog-simulator
362 "echo 'No verilog-simulator set, see \"M-x describe-variable verilog-simulator\"'"
363 "*Program and arguments to use to interpret Verilog source.
364 Depending on the `verilog-set-compile-command', this may be invoked when
365 you type \\[compile]. When the compile completes, \\[next-error] will take
366 you to the next lint error."
367 :type 'string
368 :group 'verilog-mode-actions)
369 ;; We don't mark it safe, as it's used as a shell command
371 (defcustom verilog-compiler
372 "echo 'No verilog-compiler set, see \"M-x describe-variable verilog-compiler\"'"
373 "*Program and arguments to use to compile Verilog source.
374 Depending on the `verilog-set-compile-command', this may be invoked when
375 you type \\[compile]. When the compile completes, \\[next-error] will take
376 you to the next lint error."
377 :type 'string
378 :group 'verilog-mode-actions)
379 ;; We don't mark it safe, as it's used as a shell command
381 (defvar verilog-tool 'verilog-linter
382 "Which tool to use for building compiler-command.
383 Either nil, `verilog-linter, `verilog-coverage, `verilog-simulator, or
384 `verilog-compiler. Alternatively use the \"Choose Compilation Action\"
385 menu. See `verilog-set-compile-command' for more information.")
387 (defcustom verilog-highlight-translate-off nil
388 "*Non-nil means background-highlight code excluded from translation.
389 That is, all code between \"// synopsys translate_off\" and
390 \"// synopsys translate_on\" is highlighted using a different background color
391 \(face `verilog-font-lock-translate-off-face').
393 Note: This will slow down on-the-fly fontification (and thus editing).
395 Note: Activate the new setting in a Verilog buffer by re-fontifying it (menu
396 entry \"Fontify Buffer\"). XEmacs: turn off and on font locking."
397 :type 'boolean
398 :group 'verilog-mode-indent)
399 ;; Note we don't use :safe, as that would break on Emacsen before 22.0.
400 (put 'verilog-highlight-translate-off 'safe-local-variable 'verilog-booleanp)
402 (defcustom verilog-auto-lineup 'declarations
403 "*Type of statements to lineup across multiple lines.
404 If 'all' is selected, then all line ups described below are done.
406 If 'declaration', then just declarations are lined up with any
407 preceding declarations, taking into account widths and the like,
408 so or example the code:
409 reg [31:0] a;
410 reg b;
411 would become
412 reg [31:0] a;
413 reg b;
415 If 'assignment', then assignments are lined up with any preceding
416 assignments, so for example the code
417 a_long_variable <= b + c;
418 d = e + f;
419 would become
420 a_long_variable <= b + c;
421 d = e + f;
423 In order to speed up editing, large blocks of statements are lined up
424 only when a \\[verilog-pretty-expr] is typed; and large blocks of declarations
425 are lineup only when \\[verilog-pretty-declarations] is typed."
427 :type '(radio (const :tag "Line up Assignments and Declarations" all)
428 (const :tag "Line up Assignment statements" assignments )
429 (const :tag "Line up Declarartions" declarations)
430 (function :tag "Other"))
431 :group 'verilog-mode-indent )
433 (defcustom verilog-indent-level 3
434 "*Indentation of Verilog statements with respect to containing block."
435 :group 'verilog-mode-indent
436 :type 'integer)
437 (put 'verilog-indent-level 'safe-local-variable 'integerp)
439 (defcustom verilog-indent-level-module 3
440 "*Indentation of Module level Verilog statements (eg always, initial).
441 Set to 0 to get initial and always statements lined up on the left side of
442 your screen."
443 :group 'verilog-mode-indent
444 :type 'integer)
445 (put 'verilog-indent-level-module 'safe-local-variable 'integerp)
447 (defcustom verilog-indent-level-declaration 3
448 "*Indentation of declarations with respect to containing block.
449 Set to 0 to get them list right under containing block."
450 :group 'verilog-mode-indent
451 :type 'integer)
452 (put 'verilog-indent-level-declaration 'safe-local-variable 'integerp)
454 (defcustom verilog-indent-declaration-macros nil
455 "*How to treat macro expansions in a declaration.
456 If nil, indent as:
457 input [31:0] a;
458 input `CP;
459 output c;
460 If non nil, treat as:
461 input [31:0] a;
462 input `CP ;
463 output c;"
464 :group 'verilog-mode-indent
465 :type 'boolean)
466 (put 'verilog-indent-declaration-macros 'safe-local-variable 'verilog-booleanp)
468 (defcustom verilog-indent-lists t
469 "*How to treat indenting items in a list.
470 If t (the default), indent as:
471 always @( posedge a or
472 reset ) begin
474 If nil, treat as:
475 always @( posedge a or
476 reset ) begin"
477 :group 'verilog-mode-indent
478 :type 'boolean)
479 (put 'verilog-indent-lists 'safe-local-variable 'verilog-booleanp)
481 (defcustom verilog-indent-level-behavioral 3
482 "*Absolute indentation of first begin in a task or function block.
483 Set to 0 to get such code to start at the left side of the screen."
484 :group 'verilog-mode-indent
485 :type 'integer)
486 (put 'verilog-indent-level-behavioral 'safe-local-variable 'integerp)
488 (defcustom verilog-indent-level-directive 1
489 "*Indentation to add to each level of `ifdef declarations.
490 Set to 0 to have all directives start at the left side of the screen."
491 :group 'verilog-mode-indent
492 :type 'integer)
493 (put 'verilog-indent-level-directive 'safe-local-variable 'integerp)
495 (defcustom verilog-cexp-indent 2
496 "*Indentation of Verilog statements split across lines."
497 :group 'verilog-mode-indent
498 :type 'integer)
499 (put 'verilog-cexp-indent 'safe-local-variable 'integerp)
501 (defcustom verilog-case-indent 2
502 "*Indentation for case statements."
503 :group 'verilog-mode-indent
504 :type 'integer)
505 (put 'verilog-case-indent 'safe-local-variable 'integerp)
507 (defcustom verilog-auto-newline t
508 "*True means automatically newline after semicolons."
509 :group 'verilog-mode-indent
510 :type 'boolean)
511 (put 'verilog-auto-newline 'safe-local-variable 'verilog-booleanp)
513 (defcustom verilog-auto-indent-on-newline t
514 "*True means automatically indent line after newline."
515 :group 'verilog-mode-indent
516 :type 'boolean)
517 (put 'verilog-auto-indent-on-newline 'safe-local-variable 'verilog-booleanp)
519 (defcustom verilog-tab-always-indent t
520 "*True means TAB should always re-indent the current line.
521 A nil value means TAB will only reindent when at the beginning of the line."
522 :group 'verilog-mode-indent
523 :type 'boolean)
524 (put 'verilog-tab-always-indent 'safe-local-variable 'verilog-booleanp)
526 (defcustom verilog-tab-to-comment nil
527 "*True means TAB moves to the right hand column in preparation for a comment."
528 :group 'verilog-mode-actions
529 :type 'boolean)
530 (put 'verilog-tab-to-comment 'safe-local-variable 'verilog-booleanp)
532 (defcustom verilog-indent-begin-after-if t
533 "*If true, indent begin statements following if, else, while, for and repeat.
534 Otherwise, line them up."
535 :group 'verilog-mode-indent
536 :type 'boolean)
537 (put 'verilog-indent-begin-after-if 'safe-local-variable 'verilog-booleanp)
540 (defcustom verilog-align-ifelse nil
541 "*If true, align `else' under matching `if'.
542 Otherwise else is lined up with first character on line holding matching if."
543 :group 'verilog-mode-indent
544 :type 'boolean)
545 (put 'verilog-align-ifelse 'safe-local-variable 'verilog-booleanp)
547 (defcustom verilog-minimum-comment-distance 10
548 "*Minimum distance (in lines) between begin and end required before a comment.
549 Setting this variable to zero results in every end acquiring a comment; the
550 default avoids too many redundant comments in tight quarters."
551 :group 'verilog-mode-indent
552 :type 'integer)
553 (put 'verilog-minimum-comment-distance 'safe-local-variable 'integerp)
555 (defcustom verilog-highlight-p1800-keywords nil
556 "*True means highlight words newly reserved by IEEE-1800.
557 These will appear in `verilog-font-lock-p1800-face' in order to gently
558 suggest changing where these words are used as variables to something else.
559 A nil value means highlight these words as appropriate for the SystemVerilog
560 IEEE-1800 standard. Note that changing this will require restarting Emacs
561 to see the effect as font color choices are cached by Emacs."
562 :group 'verilog-mode-indent
563 :type 'boolean)
564 (put 'verilog-highlight-p1800-keywords 'safe-local-variable 'verilog-booleanp)
566 (defcustom verilog-highlight-grouping-keywords nil
567 "*True means highlight grouping keywords 'begin' and 'end' more dramatically.
568 If false, these words are in the `font-lock-type-face'; if True then they are in
569 `verilog-font-lock-ams-face'. Some find that special highlighting on these
570 grouping constructs allow the structure of the code to be understood at a glance."
571 :group 'verilog-mode-indent
572 :type 'boolean)
573 (put 'verilog-highlight-grouping-keywords 'safe-local-variable 'verilog-booleanp)
575 (defcustom verilog-auto-endcomments t
576 "*True means insert a comment /* ... */ after 'end's.
577 The name of the function or case will be set between the braces."
578 :group 'verilog-mode-actions
579 :type 'boolean)
580 (put 'verilog-auto-endcomments 'safe-local-variable 'verilog-booleanp)
582 (defcustom verilog-auto-ignore-concat nil
583 "*True means ignore signals in {...} concatenations for AUTOWIRE etc.
584 This will exclude signals referenced as pin connections in {...}
585 from AUTOWIRE, AUTOOUTPUT and friends. This flag should be set
586 for backward compatibility only and not set in new designs; it
587 may be removed in future versions."
588 :group 'verilog-mode-actions
589 :type 'boolean)
590 (put 'verilog-auto-ignore-concat 'safe-local-variable 'verilog-booleanp)
592 (defcustom verilog-auto-read-includes nil
593 "*True means to automatically read includes before AUTOs.
594 This will do a `verilog-read-defines' and `verilog-read-includes' before
595 each AUTO expansion. This makes it easier to embed defines and includes,
596 but can result in very slow reading times if there are many or large
597 include files."
598 :group 'verilog-mode-actions
599 :type 'boolean)
600 (put 'verilog-auto-read-includes 'safe-local-variable 'verilog-booleanp)
602 (defcustom verilog-auto-save-policy nil
603 "*Non-nil indicates action to take when saving a Verilog buffer with AUTOs.
604 A value of `force' will always do a \\[verilog-auto] automatically if
605 needed on every save. A value of `detect' will do \\[verilog-auto]
606 automatically when it thinks necessary. A value of `ask' will query the
607 user when it thinks updating is needed.
609 You should not rely on the 'ask or 'detect policies, they are safeguards
610 only. They do not detect when AUTOINSTs need to be updated because a
611 sub-module's port list has changed."
612 :group 'verilog-mode-actions
613 :type '(choice (const nil) (const ask) (const detect) (const force)))
615 (defcustom verilog-auto-star-expand t
616 "*Non-nil indicates to expand a SystemVerilog .* instance ports.
617 They will be expanded in the same way as if there was a AUTOINST in the
618 instantiation. See also `verilog-auto-star' and `verilog-auto-star-save'."
619 :group 'verilog-mode-actions
620 :type 'boolean)
621 (put 'verilog-auto-star-expand 'safe-local-variable 'verilog-booleanp)
623 (defcustom verilog-auto-star-save nil
624 "*Non-nil indicates to save to disk SystemVerilog .* instance expansions.
625 A nil value indicates direct connections will be removed before saving.
626 Only meaningful to those created due to `verilog-auto-star-expand' being set.
628 Instead of setting this, you may want to use /*AUTOINST*/, which will
629 always be saved."
630 :group 'verilog-mode-actions
631 :type 'boolean)
632 (put 'verilog-auto-star-save 'safe-local-variable 'verilog-booleanp)
634 (defvar verilog-auto-update-tick nil
635 "Modification tick at which autos were last performed.")
637 (defvar verilog-auto-last-file-locals nil
638 "Text from file-local-variables during last evaluation.")
640 ;;; Compile support
641 (require 'compile)
642 (defvar verilog-error-regexp-added nil)
643 ; List of regexps for Verilog compilers, like verilint. See compilation-error-regexp-alist
644 ; for the formatting.
645 ; Here is the version for Emacs 22:
646 (defvar verilog-error-regexp-emacs-alist
648 (verilog-xl-1
649 "\\(Error\\|Warning\\)!.*\n?.*\"\\([^\"]+\\)\", \\([0-9]+\\)" 2 3)
650 (verilog-xl-2
651 "([WE][0-9A-Z]+)[ \t]+\\([^ \t\n,]+\\)[, \t]+\\(line[ \t]+\\)?\\([0-9]+\\):.*$" 1 3)
652 (verilog-IES
653 ".*\\*[WE],[0-9A-Z]+ (\\([^ \t,]+\\),\\([0-9]+\\)" 1 2)
654 (verilog-surefire-1
655 "[^\n]*\\[\\([^:]+\\):\\([0-9]+\\)\\]" 1 2)
656 (verilog-surefire-2
657 "\\(WARNING\\|ERROR\\|INFO\\)[^:]*: \\([^,]+\\),\\s-+\\(line \\)?\\([0-9]+\\):" 2 4 )
658 (verilog-verbose
660 \\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|\
661 :\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 1 2 5)
662 (verilog-xsim
663 "\\(Error\\|Warning\\).*in file (\\([^ \t]+\\) at line *\\([0-9]+\\))" 2 3)
664 (verilog-vcs-1
665 "\\(Error\\|Warning\\):[^(]*(\\([^ \t]+\\) line *\\([0-9]+\\))" 2 3)
666 (verilog-vcs-2
667 "Warning:.*(port.*(\\([^ \t]+\\) line \\([0-9]+\\))" 1 2)
668 (verilog-vcs-3
669 "\\(Error\\|Warning\\):[\n.]*\\([^ \t]+\\) *\\([0-9]+\\):" 2 3)
670 (verilog-vcs-4
671 "syntax error:.*\n\\([^ \t]+\\) *\\([0-9]+\\):" 1 2)
672 (verilog-verilator
673 "%?\\(Error\\|Warning\\)\\(-[^:]+\\|\\):[\n ]*\\([^ \t:]+\\):\\([0-9]+\\):" 3 4)
674 (verilog-leda
675 "In file \\([^ \t]+\\)[ \t]+line[ \t]+\\([0-9]+\\):
679 \\(Warning\\|Error\\|Failure\\)" 1 2)
681 ;; And the version for XEmacs:
682 (defvar verilog-error-regexp-xemacs-alist
683 '(verilog
684 ("[^\n]*\\[\\([^:]+\\):\\([0-9]+\\)\\]" 1 2)
685 ("\\(WARNING\\|ERROR\\|INFO\\)[^:]*: \\([^,]+\\),\\s-+\\(line \\)?\\([0-9]+\\):" 2 4 )
687 \\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|\
688 :\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 1 2 5)
689 ; xsim
690 ; Error! in file /homes/mac/Axis/Xsim/test.v at line 13 [OBJ_NOT_DECLARED]
691 ("\\(Error\\|Warning\\).*in file (\\([^ \t]+\\) at line *\\([0-9]+\\))" 2 3)
692 ; vcs
693 ("\\(Error\\|Warning\\):[^(]*(\\([^ \t]+\\) line *\\([0-9]+\\))" 2 3)
694 ("Warning:.*(port.*(\\([^ \t]+\\) line \\([0-9]+\\))" 1 2)
695 ("\\(Error\\|Warning\\):[\n.]*\\([^ \t]+\\) *\\([0-9]+\\):" 2 3)
696 ("syntax error:.*\n\\([^ \t]+\\) *\\([0-9]+\\):" 1 2)
697 ; Verilator
698 ("%?\\(Error\\|Warning\\)\\(-[^:]+\\|\\):[\n ]*\\([^ \t:]+\\):\\([0-9]+\\):" 3 4)
699 ; verilog-xl
700 ("\\(Error\\|Warning\\)!.*\n?.*\"\\([^\"]+\\)\", \\([0-9]+\\)" 2 3)
701 ("([WE][0-9A-Z]+)[ \t]+\\([^ \t\n,]+\\)[, \t]+\\([0-9]+\\):.*$" 1 2) ; vxl
702 ("([WE][0-9A-Z]+)[ \t]+\\([^ \t\n,]+\\)[, \t]+line[ \t]+\\([0-9]+\\):.*$" 1 2)
703 ; nc-verilog
704 (".*\\*[WE],[0-9A-Z]+ (\\([^ \t,]+\\),\\([0-9]+\\)|" 1 2)
705 ; Leda
706 ("In file \\([^ \t]+\\)[ \t]+line[ \t]+\\([0-9]+\\):\n[^\n]*\n[^\n]*\n\\[\\(Warning\\|Error\\|Failure\\)\\][^\n]*" 1 2)
710 (defvar verilog-error-font-lock-keywords
712 ("[^\n]*\\[\\([^:]+\\):\\([0-9]+\\)\\]" 1 bold t)
713 ("[^\n]*\\[\\([^:]+\\):\\([0-9]+\\)\\]" 2 bold t)
715 ("\\(WARNING\\|ERROR\\|INFO\\): \\([^,]+\\), line \\([0-9]+\\):" 2 bold t)
716 ("\\(WARNING\\|ERROR\\|INFO\\): \\([^,]+\\), line \\([0-9]+\\):" 3 bold t)
719 \\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|\
720 :\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 1 bold t)
722 \\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|\
723 :\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 1 bold t)
725 ("\\(Error\\|Warning\\):[^(]*(\\([^ \t]+\\) line *\\([0-9]+\\))" 2 bold t)
726 ("\\(Error\\|Warning\\):[^(]*(\\([^ \t]+\\) line *\\([0-9]+\\))" 3 bold t)
728 ("%?\\(Error\\|Warning\\)\\(-[^:]+\\|\\):[\n ]*\\([^ \t:]+\\):\\([0-9]+\\):" 3 bold t)
729 ("%?\\(Error\\|Warning\\)\\(-[^:]+\\|\\):[\n ]*\\([^ \t:]+\\):\\([0-9]+\\):" 4 bold t)
731 ("Warning:.*(port.*(\\([^ \t]+\\) line \\([0-9]+\\))" 1 bold t)
732 ("Warning:.*(port.*(\\([^ \t]+\\) line \\([0-9]+\\))" 1 bold t)
734 ("\\(Error\\|Warning\\):[\n.]*\\([^ \t]+\\) *\\([0-9]+\\):" 2 bold t)
735 ("\\(Error\\|Warning\\):[\n.]*\\([^ \t]+\\) *\\([0-9]+\\):" 3 bold t)
737 ("syntax error:.*\n\\([^ \t]+\\) *\\([0-9]+\\):" 1 bold t)
738 ("syntax error:.*\n\\([^ \t]+\\) *\\([0-9]+\\):" 2 bold t)
739 ; vxl
740 ("\\(Error\\|Warning\\)!.*\n?.*\"\\([^\"]+\\)\", \\([0-9]+\\)" 2 bold t)
741 ("\\(Error\\|Warning\\)!.*\n?.*\"\\([^\"]+\\)\", \\([0-9]+\\)" 2 bold t)
743 ("([WE][0-9A-Z]+)[ \t]+\\([^ \t\n,]+\\)[, \t]+\\([0-9]+\\):.*$" 1 bold t)
744 ("([WE][0-9A-Z]+)[ \t]+\\([^ \t\n,]+\\)[, \t]+\\([0-9]+\\):.*$" 2 bold t)
746 ("([WE][0-9A-Z]+)[ \t]+\\([^ \t\n,]+\\)[, \t]+line[ \t]+\\([0-9]+\\):.*$" 1 bold t)
747 ("([WE][0-9A-Z]+)[ \t]+\\([^ \t\n,]+\\)[, \t]+line[ \t]+\\([0-9]+\\):.*$" 2 bold t)
748 ; nc-verilog
749 (".*[WE],[0-9A-Z]+ (\\([^ \t,]+\\),\\([0-9]+\\)|" 1 bold t)
750 (".*[WE],[0-9A-Z]+ (\\([^ \t,]+\\),\\([0-9]+\\)|" 2 bold t)
751 ; Leda
752 ("In file \\([^ \t]+\\)[ \t]+line[ \t]+\\([0-9]+\\):\n[^\n]*\n[^\n]*\n\\[\\(Warning\\|Error\\|Failure\\)\\][^\n]*" 1 bold t)
753 ("In file \\([^ \t]+\\)[ \t]+line[ \t]+\\([0-9]+\\):\n[^\n]*\n[^\n]*\n\\[\\(Warning\\|Error\\|Failure\\)\\][^\n]*" 2 bold t)
755 "*Keywords to also highlight in Verilog *compilation* buffers.")
757 (defcustom verilog-library-flags '("")
758 "*List of standard Verilog arguments to use for /*AUTOINST*/.
759 These arguments are used to find files for `verilog-auto', and match
760 the flags accepted by a standard Verilog-XL simulator.
762 -f filename Reads more `verilog-library-flags' from the filename.
763 +incdir+dir Adds the directory to `verilog-library-directories'.
764 -Idir Adds the directory to `verilog-library-directories'.
765 -y dir Adds the directory to `verilog-library-directories'.
766 +libext+.v Adds the extensions to `verilog-library-extensions'.
767 -v filename Adds the filename to `verilog-library-files'.
769 filename Adds the filename to `verilog-library-files'.
770 This is not recommended, -v is a better choice.
772 You might want these defined in each file; put at the *END* of your file
773 something like:
775 // Local Variables:
776 // verilog-library-flags:(\"-y dir -y otherdir\")
777 // End:
779 Verilog-mode attempts to detect changes to this local variable, but they
780 are only insured to be correct when the file is first visited. Thus if you
781 have problems, use \\[find-alternate-file] RET to have these take effect.
783 See also the variables mentioned above."
784 :group 'verilog-mode-auto
785 :type '(repeat string))
786 (put 'verilog-library-flags 'safe-local-variable 'listp)
788 (defcustom verilog-library-directories '(".")
789 "*List of directories when looking for files for /*AUTOINST*/.
790 The directory may be relative to the current file, or absolute.
791 Environment variables are also expanded in the directory names.
792 Having at least the current directory is a good idea.
794 You might want these defined in each file; put at the *END* of your file
795 something like:
797 // Local Variables:
798 // verilog-library-directories:(\".\" \"subdir\" \"subdir2\")
799 // End:
801 Verilog-mode attempts to detect changes to this local variable, but they
802 are only insured to be correct when the file is first visited. Thus if you
803 have problems, use \\[find-alternate-file] RET to have these take effect.
805 See also `verilog-library-flags', `verilog-library-files'
806 and `verilog-library-extensions'."
807 :group 'verilog-mode-auto
808 :type '(repeat file))
809 (put 'verilog-library-directories 'safe-local-variable 'listp)
811 (defcustom verilog-library-files '()
812 "*List of files to search for modules.
813 AUTOINST will use this when it needs to resolve a module name.
814 This is a complete path, usually to a technology file with many standard
815 cells defined in it.
817 You might want these defined in each file; put at the *END* of your file
818 something like:
820 // Local Variables:
821 // verilog-library-files:(\"/some/path/technology.v\" \"/some/path/tech2.v\")
822 // End:
824 Verilog-mode attempts to detect changes to this local variable, but they
825 are only insured to be correct when the file is first visited. Thus if you
826 have problems, use \\[find-alternate-file] RET to have these take effect.
828 See also `verilog-library-flags', `verilog-library-directories'."
829 :group 'verilog-mode-auto
830 :type '(repeat directory))
831 (put 'verilog-library-files 'safe-local-variable 'listp)
833 (defcustom verilog-library-extensions '(".v" ".sv")
834 "*List of extensions to use when looking for files for /*AUTOINST*/.
835 See also `verilog-library-flags', `verilog-library-directories'."
836 :type '(repeat string)
837 :group 'verilog-mode-auto)
838 (put 'verilog-library-extensions 'safe-local-variable 'listp)
840 (defcustom verilog-active-low-regexp nil
841 "*If set, treat signals matching this regexp as active low.
842 This is used for AUTORESET and AUTOTIEOFF. For proper behavior,
843 you will probably also need `verilog-auto-reset-widths' set."
844 :group 'verilog-mode-auto
845 :type 'string)
846 (put 'verilog-active-low-regexp 'safe-local-variable 'stringp)
848 (defcustom verilog-auto-sense-include-inputs nil
849 "*If true, AUTOSENSE should include all inputs.
850 If nil, only inputs that are NOT output signals in the same block are
851 included."
852 :group 'verilog-mode-auto
853 :type 'boolean)
854 (put 'verilog-auto-sense-include-inputs 'safe-local-variable 'verilog-booleanp)
856 (defcustom verilog-auto-sense-defines-constant nil
857 "*If true, AUTOSENSE should assume all defines represent constants.
858 When true, the defines will not be included in sensitivity lists. To
859 maintain compatibility with other sites, this should be set at the bottom
860 of each Verilog file that requires it, rather than being set globally."
861 :group 'verilog-mode-auto
862 :type 'boolean)
863 (put 'verilog-auto-sense-defines-constant 'safe-local-variable 'verilog-booleanp)
865 (defcustom verilog-auto-reset-widths t
866 "*If true, AUTORESET should determine the width of signals.
867 This is then used to set the width of the zero (32'h0 for example). This
868 is required by some lint tools that aren't smart enough to ignore widths of
869 the constant zero. This may result in ugly code when parameters determine
870 the MSB or LSB of a signal inside an AUTORESET."
871 :type 'boolean
872 :group 'verilog-mode-auto)
873 (put 'verilog-auto-reset-widths 'safe-local-variable 'verilog-booleanp)
875 (defcustom verilog-assignment-delay ""
876 "*Text used for delays in delayed assignments. Add a trailing space if set."
877 :group 'verilog-mode-auto
878 :type 'string)
879 (put 'verilog-assignment-delay 'safe-local-variable 'stringp)
881 (defcustom verilog-auto-arg-sort nil
882 "*If set, AUTOARG signal names will be sorted, not in delaration order.
883 Declaration order is advantageous with order based instantiations
884 and is the default for backward compatibility. Sorted order
885 reduces changes when declarations are moved around in a file, and
886 it's bad practice to rely on order based instantiations anyhow."
887 :group 'verilog-mode-auto
888 :type 'boolean)
889 (put 'verilog-auto-arg-sort 'safe-local-variable 'verilog-booleanp)
891 (defcustom verilog-auto-inst-param-value nil
892 "*If set, AUTOINST will replace parameters with the parameter value.
893 If nil, leave parameters as symbolic names.
895 Parameters must be in Verilog 2001 format #(...), and if a parameter is not
896 listed as such there (as when the default value is acceptable), it will not
897 be replaced, and will remain symbolic.
899 For example, imagine a submodule uses parameters to declare the size of its
900 inputs. This is then used by a upper module:
902 module InstModule (o,i)
903 parameter WIDTH;
904 input [WIDTH-1:0] i;
905 endmodule
907 module ExampInst;
908 InstModule
909 #(PARAM(10))
910 instName
911 (/*AUTOINST*/
912 .i (i[PARAM-1:0]));
914 Note even though PARAM=10, the AUTOINST has left the parameter as a
915 symbolic name. If `verilog-auto-inst-param-value' is set, this will
916 instead expand to:
918 module ExampInst;
919 InstModule
920 #(PARAM(10))
921 instName
922 (/*AUTOINST*/
923 .i (i[9:0]));"
924 :group 'verilog-mode-auto
925 :type 'boolean)
926 (put 'verilog-auto-inst-param-value 'safe-local-variable 'verilog-booleanp)
928 (defcustom verilog-auto-inst-vector t
929 "*If true, when creating default ports with AUTOINST, use bus subscripts.
930 If nil, skip the subscript when it matches the entire bus as declared in
931 the module (AUTOWIRE signals always are subscripted, you must manually
932 declare the wire to have the subscripts removed.) Setting this to nil may
933 speed up some simulators, but is less general and harder to read, so avoid."
934 :group 'verilog-mode-auto
935 :type 'boolean)
936 (put 'verilog-auto-inst-vector 'safe-local-variable 'verilog-booleanp)
938 (defcustom verilog-auto-inst-template-numbers nil
939 "*If true, when creating templated ports with AUTOINST, add a comment.
940 The comment will add the line number of the template that was used for that
941 port declaration. Setting this aids in debugging, but nil is suggested for
942 regular use to prevent large numbers of merge conflicts."
943 :group 'verilog-mode-auto
944 :type 'boolean)
945 (put 'verilog-auto-inst-template-numbers 'safe-local-variable 'verilog-booleanp)
947 (defcustom verilog-auto-inst-column 40
948 "*Indent-to column number for net name part of AUTOINST created pin."
949 :group 'verilog-mode-indent
950 :type 'integer)
951 (put 'verilog-auto-inst-column 'safe-local-variable 'integerp)
953 (defcustom verilog-auto-input-ignore-regexp nil
954 "*If set, when creating AUTOINPUT list, ignore signals matching this regexp.
955 See the \\[verilog-faq] for examples on using this."
956 :group 'verilog-mode-auto
957 :type 'string)
958 (put 'verilog-auto-input-ignore-regexp 'safe-local-variable 'stringp)
960 (defcustom verilog-auto-inout-ignore-regexp nil
961 "*If set, when creating AUTOINOUT list, ignore signals matching this regexp.
962 See the \\[verilog-faq] for examples on using this."
963 :group 'verilog-mode-auto
964 :type 'string)
965 (put 'verilog-auto-inout-ignore-regexp 'safe-local-variable 'stringp)
967 (defcustom verilog-auto-output-ignore-regexp nil
968 "*If set, when creating AUTOOUTPUT list, ignore signals matching this regexp.
969 See the \\[verilog-faq] for examples on using this."
970 :group 'verilog-mode-auto
971 :type 'string)
972 (put 'verilog-auto-output-ignore-regexp 'safe-local-variable 'stringp)
974 (defcustom verilog-auto-unused-ignore-regexp nil
975 "*If set, when creating AUTOUNUSED list, ignore signals matching this regexp.
976 See the \\[verilog-faq] for examples on using this."
977 :group 'verilog-mode-auto
978 :type 'string)
979 (put 'verilog-auto-unused-ignore-regexp 'safe-local-variable 'stringp)
981 (defcustom verilog-typedef-regexp nil
982 "*If non-nil, regular expression that matches Verilog-2001 typedef names.
983 For example, \"_t$\" matches typedefs named with _t, as in the C language."
984 :group 'verilog-mode-auto
985 :type 'string)
986 (put 'verilog-typedef-regexp 'safe-local-variable 'stringp)
988 (defcustom verilog-mode-hook 'verilog-set-compile-command
989 "*Hook run after Verilog mode is loaded."
990 :type 'hook
991 :group 'verilog-mode)
993 (defcustom verilog-auto-hook nil
994 "*Hook run after `verilog-mode' updates AUTOs."
995 :group 'verilog-mode-auto
996 :type 'hook)
998 (defcustom verilog-before-auto-hook nil
999 "*Hook run before `verilog-mode' updates AUTOs."
1000 :group 'verilog-mode-auto
1001 :type 'hook)
1003 (defcustom verilog-delete-auto-hook nil
1004 "*Hook run after `verilog-mode' deletes AUTOs."
1005 :group 'verilog-mode-auto
1006 :type 'hook)
1008 (defcustom verilog-before-delete-auto-hook nil
1009 "*Hook run before `verilog-mode' deletes AUTOs."
1010 :group 'verilog-mode-auto
1011 :type 'hook)
1013 (defcustom verilog-getopt-flags-hook nil
1014 "*Hook run after `verilog-getopt-flags' determines the Verilog option lists."
1015 :group 'verilog-mode-auto
1016 :type 'hook)
1018 (defcustom verilog-before-getopt-flags-hook nil
1019 "*Hook run before `verilog-getopt-flags' determines the Verilog option lists."
1020 :group 'verilog-mode-auto
1021 :type 'hook)
1023 (defvar verilog-imenu-generic-expression
1024 '((nil "^\\s-*\\(\\(m\\(odule\\|acromodule\\)\\)\\|primitive\\)\\s-+\\([a-zA-Z0-9_.:]+\\)" 4)
1025 ("*Vars*" "^\\s-*\\(reg\\|wire\\)\\s-+\\(\\|\\[[^]]+\\]\\s-+\\)\\([A-Za-z0-9_]+\\)" 3))
1026 "Imenu expression for Verilog mode. See `imenu-generic-expression'.")
1029 ;; provide a verilog-header function.
1030 ;; Customization variables:
1032 (defvar verilog-date-scientific-format nil
1033 "*If non-nil, dates are written in scientific format (e.g. 1997/09/17).
1034 If nil, in European format (e.g. 17.09.1997). The brain-dead American
1035 format (e.g. 09/17/1997) is not supported.")
1037 (defvar verilog-company nil
1038 "*Default name of Company for Verilog header.
1039 If set will become buffer local.")
1040 (make-variable-buffer-local 'verilog-company)
1042 (defvar verilog-project nil
1043 "*Default name of Project for Verilog header.
1044 If set will become buffer local.")
1045 (make-variable-buffer-local 'verilog-project)
1047 (defvar verilog-mode-map
1048 (let ((map (make-sparse-keymap)))
1049 (define-key map ";" 'electric-verilog-semi)
1050 (define-key map [(control 59)] 'electric-verilog-semi-with-comment)
1051 (define-key map ":" 'electric-verilog-colon)
1052 ;;(define-key map "=" 'electric-verilog-equal)
1053 (define-key map "\`" 'electric-verilog-tick)
1054 (define-key map "\t" 'electric-verilog-tab)
1055 (define-key map "\r" 'electric-verilog-terminate-line)
1056 ;; backspace/delete key bindings
1057 (define-key map [backspace] 'backward-delete-char-untabify)
1058 (unless (boundp 'delete-key-deletes-forward) ; XEmacs variable
1059 (define-key map [delete] 'delete-char)
1060 (define-key map [(meta delete)] 'kill-word))
1061 (define-key map "\M-\C-b" 'electric-verilog-backward-sexp)
1062 (define-key map "\M-\C-f" 'electric-verilog-forward-sexp)
1063 (define-key map "\M-\r" `electric-verilog-terminate-and-indent)
1064 (define-key map "\M-\t" 'verilog-complete-word)
1065 (define-key map "\M-?" 'verilog-show-completions)
1066 (define-key map "\C-c\`" 'verilog-lint-off)
1067 (define-key map "\C-c\*" 'verilog-delete-auto-star-implicit)
1068 (define-key map "\C-c\C-r" 'verilog-label-be)
1069 (define-key map "\C-c\C-i" 'verilog-pretty-declarations)
1070 (define-key map "\C-c=" 'verilog-pretty-expr)
1071 (define-key map "\C-c\C-b" 'verilog-submit-bug-report)
1072 (define-key map "\M-*" 'verilog-star-comment)
1073 (define-key map "\C-c\C-c" 'verilog-comment-region)
1074 (define-key map "\C-c\C-u" 'verilog-uncomment-region)
1075 (when (featurep 'xemacs)
1076 (define-key map [(meta control h)] 'verilog-mark-defun)
1077 (define-key map "\M-\C-a" 'verilog-beg-of-defun)
1078 (define-key map "\M-\C-e" 'verilog-end-of-defun))
1079 (define-key map "\C-c\C-d" 'verilog-goto-defun)
1080 (define-key map "\C-c\C-k" 'verilog-delete-auto)
1081 (define-key map "\C-c\C-a" 'verilog-auto)
1082 (define-key map "\C-c\C-s" 'verilog-auto-save-compile)
1083 (define-key map "\C-c\C-z" 'verilog-inject-auto)
1084 (define-key map "\C-c\C-e" 'verilog-expand-vector)
1085 (define-key map "\C-c\C-h" 'verilog-header)
1086 map)
1087 "Keymap used in Verilog mode.")
1089 ;; menus
1090 (easy-menu-define
1091 verilog-menu verilog-mode-map "Menu for Verilog mode"
1092 (verilog-easy-menu-filter
1093 '("Verilog"
1094 ("Choose Compilation Action"
1095 ["None"
1096 (progn
1097 (setq verilog-tool nil)
1098 (verilog-set-compile-command))
1099 :style radio
1100 :selected (equal verilog-tool nil)
1101 :help "When invoking compilation, use compile-command"]
1102 ["Lint"
1103 (progn
1104 (setq verilog-tool 'verilog-linter)
1105 (verilog-set-compile-command))
1106 :style radio
1107 :selected (equal verilog-tool `verilog-linter)
1108 :help "When invoking compilation, use lint checker"]
1109 ["Coverage"
1110 (progn
1111 (setq verilog-tool 'verilog-coverage)
1112 (verilog-set-compile-command))
1113 :style radio
1114 :selected (equal verilog-tool `verilog-coverage)
1115 :help "When invoking compilation, annotate for coverage"]
1116 ["Simulator"
1117 (progn
1118 (setq verilog-tool 'verilog-simulator)
1119 (verilog-set-compile-command))
1120 :style radio
1121 :selected (equal verilog-tool `verilog-simulator)
1122 :help "When invoking compilation, interpret Verilog source"]
1123 ["Compiler"
1124 (progn
1125 (setq verilog-tool 'verilog-compiler)
1126 (verilog-set-compile-command))
1127 :style radio
1128 :selected (equal verilog-tool `verilog-compiler)
1129 :help "When invoking compilation, compile Verilog source"]
1131 ("Move"
1132 ["Beginning of function" verilog-beg-of-defun
1133 :keys "C-M-a"
1134 :help "Move backward to the beginning of the current function or procedure"]
1135 ["End of function" verilog-end-of-defun
1136 :keys "C-M-e"
1137 :help "Move forward to the end of the current function or procedure"]
1138 ["Mark function" verilog-mark-defun
1139 :keys "C-M-h"
1140 :help "Mark the current Verilog function or procedure"]
1141 ["Goto function/module" verilog-goto-defun
1142 :help "Move to specified Verilog module/task/function"]
1143 ["Move to beginning of block" electric-verilog-backward-sexp
1144 :help "Move backward over one balanced expression"]
1145 ["Move to end of block" electric-verilog-forward-sexp
1146 :help "Move forward over one balanced expression"]
1148 ("Comments"
1149 ["Comment Region" verilog-comment-region
1150 :help "Put marked area into a comment"]
1151 ["UnComment Region" verilog-uncomment-region
1152 :help "Uncomment an area commented with Comment Region"]
1153 ["Multi-line comment insert" verilog-star-comment
1154 :help "Insert Verilog /* */ comment at point"]
1155 ["Lint error to comment" verilog-lint-off
1156 :help "Convert a Verilog linter warning line into a disable statement"]
1158 "----"
1159 ["Compile" compile
1160 :help "Perform compilation-action (above) on the current buffer"]
1161 ["AUTO, Save, Compile" verilog-auto-save-compile
1162 :help "Recompute AUTOs, save buffer, and compile"]
1163 ["Next Compile Error" next-error
1164 :help "Visit next compilation error message and corresponding source code"]
1165 ["Ignore Lint Warning at point" verilog-lint-off
1166 :help "Convert a Verilog linter warning line into a disable statement"]
1167 "----"
1168 ["Line up declarations around point" verilog-pretty-declarations
1169 :help "Line up declarations around point"]
1170 ["Line up equations around point" verilog-pretty-expr
1171 :help "Line up expressions around point"]
1172 ["Redo/insert comments on every end" verilog-label-be
1173 :help "Label matching begin ... end statements"]
1174 ["Expand [x:y] vector line" verilog-expand-vector
1175 :help "Take a signal vector on the current line and expand it to multiple lines"]
1176 ["Insert begin-end block" verilog-insert-block
1177 :help "Insert begin ... end"]
1178 ["Complete word" verilog-complete-word
1179 :help "Complete word at point"]
1180 "----"
1181 ["Recompute AUTOs" verilog-auto
1182 :help "Expand AUTO meta-comment statements"]
1183 ["Kill AUTOs" verilog-delete-auto
1184 :help "Remove AUTO expansions"]
1185 ["Inject AUTOs" verilog-inject-auto
1186 :help "Inject AUTOs into legacy non-AUTO buffer"]
1187 ("AUTO Help..."
1188 ["AUTO General" (describe-function 'verilog-auto)
1189 :help "Help introduction on AUTOs"]
1190 ["AUTO Library Flags" (describe-variable 'verilog-library-flags)
1191 :help "Help on verilog-library-flags"]
1192 ["AUTO Library Path" (describe-variable 'verilog-library-directories)
1193 :help "Help on verilog-library-directories"]
1194 ["AUTO Library Files" (describe-variable 'verilog-library-files)
1195 :help "Help on verilog-library-files"]
1196 ["AUTO Library Extensions" (describe-variable 'verilog-library-extensions)
1197 :help "Help on verilog-library-extensions"]
1198 ["AUTO `define Reading" (describe-function 'verilog-read-defines)
1199 :help "Help on reading `defines"]
1200 ["AUTO `include Reading" (describe-function 'verilog-read-includes)
1201 :help "Help on parsing `includes"]
1202 ["AUTOARG" (describe-function 'verilog-auto-arg)
1203 :help "Help on AUTOARG - declaring module port list"]
1204 ["AUTOASCIIENUM" (describe-function 'verilog-auto-ascii-enum)
1205 :help "Help on AUTOASCIIENUM - creating ASCII for enumerations"]
1206 ["AUTOINOUTCOMP" (describe-function 'verilog-auto-inout-complement)
1207 :help "Help on AUTOINOUTCOMP - copying complemented i/o from another file"]
1208 ["AUTOINOUTMODULE" (describe-function 'verilog-auto-inout-module)
1209 :help "Help on AUTOINOUTMODULE - copying i/o from another file"]
1210 ["AUTOINSERTLISP" (describe-function 'verilog-auto-insert-lisp)
1211 :help "Help on AUTOINSERTLISP - insert text from a lisp function"]
1212 ["AUTOINOUT" (describe-function 'verilog-auto-inout)
1213 :help "Help on AUTOINOUT - adding inouts from cells"]
1214 ["AUTOINPUT" (describe-function 'verilog-auto-input)
1215 :help "Help on AUTOINPUT - adding inputs from cells"]
1216 ["AUTOINST" (describe-function 'verilog-auto-inst)
1217 :help "Help on AUTOINST - adding pins for cells"]
1218 ["AUTOINST (.*)" (describe-function 'verilog-auto-star)
1219 :help "Help on expanding Verilog-2001 .* pins"]
1220 ["AUTOINSTPARAM" (describe-function 'verilog-auto-inst-param)
1221 :help "Help on AUTOINSTPARAM - adding parameter pins to cells"]
1222 ["AUTOOUTPUT" (describe-function 'verilog-auto-output)
1223 :help "Help on AUTOOUTPUT - adding outputs from cells"]
1224 ["AUTOOUTPUTEVERY" (describe-function 'verilog-auto-output-every)
1225 :help "Help on AUTOOUTPUTEVERY - adding outputs of all signals"]
1226 ["AUTOREG" (describe-function 'verilog-auto-reg)
1227 :help "Help on AUTOREG - declaring registers for non-wires"]
1228 ["AUTOREGINPUT" (describe-function 'verilog-auto-reg-input)
1229 :help "Help on AUTOREGINPUT - declaring inputs for non-wires"]
1230 ["AUTORESET" (describe-function 'verilog-auto-reset)
1231 :help "Help on AUTORESET - resetting always blocks"]
1232 ["AUTOSENSE" (describe-function 'verilog-auto-sense)
1233 :help "Help on AUTOSENSE - sensitivity lists for always blocks"]
1234 ["AUTOTIEOFF" (describe-function 'verilog-auto-tieoff)
1235 :help "Help on AUTOTIEOFF - tieing off unused outputs"]
1236 ["AUTOUNUSED" (describe-function 'verilog-auto-unused)
1237 :help "Help on AUTOUNUSED - terminating unused inputs"]
1238 ["AUTOWIRE" (describe-function 'verilog-auto-wire)
1239 :help "Help on AUTOWIRE - declaring wires for cells"]
1241 "----"
1242 ["Submit bug report" verilog-submit-bug-report
1243 :help "Submit via mail a bug report on verilog-mode.el"]
1244 ["Version and FAQ" verilog-faq
1245 :help "Show the current version, and where to get the FAQ etc"]
1246 ["Customize Verilog Mode..." verilog-customize
1247 :help "Customize variables and other settings used by Verilog-Mode"]
1248 ["Customize Verilog Fonts & Colors" verilog-font-customize
1249 :help "Customize fonts used by Verilog-Mode."])))
1251 (easy-menu-define
1252 verilog-stmt-menu verilog-mode-map "Menu for statement templates in Verilog."
1253 (verilog-easy-menu-filter
1254 '("Statements"
1255 ["Header" verilog-sk-header
1256 :help "Insert a header block at the top of file"]
1257 ["Comment" verilog-sk-comment
1258 :help "Insert a comment block"]
1259 "----"
1260 ["Module" verilog-sk-module
1261 :help "Insert a module .. (/*AUTOARG*/);.. endmodule block"]
1262 ["Primitive" verilog-sk-primitive
1263 :help "Insert a primitive .. (.. );.. endprimitive block"]
1264 "----"
1265 ["Input" verilog-sk-input
1266 :help "Insert an input declaration"]
1267 ["Output" verilog-sk-output
1268 :help "Insert an output declaration"]
1269 ["Inout" verilog-sk-inout
1270 :help "Insert an inout declaration"]
1271 ["Wire" verilog-sk-wire
1272 :help "Insert a wire declaration"]
1273 ["Reg" verilog-sk-reg
1274 :help "Insert a register declaration"]
1275 ["Define thing under point as a register" verilog-sk-define-signal
1276 :help "Define signal under point as a register at the top of the module"]
1277 "----"
1278 ["Initial" verilog-sk-initial
1279 :help "Insert an initial begin .. end block"]
1280 ["Always" verilog-sk-always
1281 :help "Insert an always @(AS) begin .. end block"]
1282 ["Function" verilog-sk-function
1283 :help "Insert a function .. begin .. end endfunction block"]
1284 ["Task" verilog-sk-task
1285 :help "Insert a task .. begin .. end endtask block"]
1286 ["Specify" verilog-sk-specify
1287 :help "Insert a specify .. endspecify block"]
1288 ["Generate" verilog-sk-generate
1289 :help "Insert a generate .. endgenerate block"]
1290 "----"
1291 ["Begin" verilog-sk-begin
1292 :help "Insert a begin .. end block"]
1293 ["If" verilog-sk-if
1294 :help "Insert an if (..) begin .. end block"]
1295 ["(if) else" verilog-sk-else-if
1296 :help "Insert an else if (..) begin .. end block"]
1297 ["For" verilog-sk-for
1298 :help "Insert a for (...) begin .. end block"]
1299 ["While" verilog-sk-while
1300 :help "Insert a while (...) begin .. end block"]
1301 ["Fork" verilog-sk-fork
1302 :help "Insert a fork begin .. end .. join block"]
1303 ["Repeat" verilog-sk-repeat
1304 :help "Insert a repeat (..) begin .. end block"]
1305 ["Case" verilog-sk-case
1306 :help "Insert a case block, prompting for details"]
1307 ["Casex" verilog-sk-casex
1308 :help "Insert a casex (...) item: begin.. end endcase block"]
1309 ["Casez" verilog-sk-casez
1310 :help "Insert a casez (...) item: begin.. end endcase block"])))
1312 (defvar verilog-mode-abbrev-table nil
1313 "Abbrev table in use in Verilog-mode buffers.")
1315 (define-abbrev-table 'verilog-mode-abbrev-table ())
1318 ;; Macros
1321 (defsubst verilog-string-replace-matches (from-string to-string fixedcase literal string)
1322 "Replace occurrences of FROM-STRING with TO-STRING.
1323 FIXEDCASE and LITERAL as in `replace-match`. STRING is what to replace.
1324 The case (verilog-string-replace-matches \"o\" \"oo\" nil nil \"foobar\")
1325 will break, as the o's continuously replace. xa -> x works ok though."
1326 ;; Hopefully soon to a emacs built-in
1327 (let ((start 0))
1328 (while (string-match from-string string start)
1329 (setq string (replace-match to-string fixedcase literal string)
1330 start (min (length string) (+ (match-beginning 0) (length to-string)))))
1331 string))
1333 (defsubst verilog-string-remove-spaces (string)
1334 "Remove spaces surrounding STRING."
1335 (save-match-data
1336 (setq string (verilog-string-replace-matches "^\\s-+" "" nil nil string))
1337 (setq string (verilog-string-replace-matches "\\s-+$" "" nil nil string))
1338 string))
1340 (defsubst verilog-re-search-forward (REGEXP BOUND NOERROR)
1341 ; checkdoc-params: (REGEXP BOUND NOERROR)
1342 "Like `re-search-forward', but skips over match in comments or strings."
1343 (let ((mdata '(nil nil))) ;; So match-end will return nil if no matches found
1344 (while (and
1345 (re-search-forward REGEXP BOUND NOERROR)
1346 (setq mdata (match-data))
1347 (and (verilog-skip-forward-comment-or-string)
1348 (progn
1349 (setq mdata '(nil nil))
1350 (if BOUND
1351 (< (point) BOUND)
1352 t)))))
1353 (store-match-data mdata)
1354 (match-end 0)))
1356 (defsubst verilog-re-search-backward (REGEXP BOUND NOERROR)
1357 ; checkdoc-params: (REGEXP BOUND NOERROR)
1358 "Like `re-search-backward', but skips over match in comments or strings."
1359 (let ((mdata '(nil nil))) ;; So match-end will return nil if no matches found
1360 (while (and
1361 (re-search-backward REGEXP BOUND NOERROR)
1362 (setq mdata (match-data))
1363 (and (verilog-skip-backward-comment-or-string)
1364 (progn
1365 (setq mdata '(nil nil))
1366 (if BOUND
1367 (> (point) BOUND)
1368 t)))))
1369 (store-match-data mdata)
1370 (match-end 0)))
1372 (defsubst verilog-re-search-forward-quick (regexp bound noerror)
1373 "Like `verilog-re-search-forward', including use of REGEXP BOUND and NOERROR,
1374 but trashes match data and is faster for REGEXP that doesn't match often.
1375 This may at some point use text properties to ignore comments,
1376 so there may be a large up front penalty for the first search."
1377 (let (pt)
1378 (while (and (not pt)
1379 (re-search-forward regexp bound noerror))
1380 (if (not (verilog-inside-comment-p))
1381 (setq pt (match-end 0))))
1382 pt))
1384 (defsubst verilog-re-search-backward-quick (regexp bound noerror)
1385 ; checkdoc-params: (REGEXP BOUND NOERROR)
1386 "Like `verilog-re-search-backward', including use of REGEXP BOUND and NOERROR,
1387 but trashes match data and is faster for REGEXP that doesn't match often.
1388 This may at some point use text properties to ignore comments,
1389 so there may be a large up front penalty for the first search."
1390 (let (pt)
1391 (while (and (not pt)
1392 (re-search-backward regexp bound noerror))
1393 (if (not (verilog-inside-comment-p))
1394 (setq pt (match-end 0))))
1395 pt))
1397 (defsubst verilog-get-beg-of-line (&optional arg)
1398 (save-excursion
1399 (beginning-of-line arg)
1400 (point)))
1402 (defsubst verilog-get-end-of-line (&optional arg)
1403 (save-excursion
1404 (end-of-line arg)
1405 (point)))
1407 (defsubst verilog-within-string ()
1408 (save-excursion
1409 (nth 3 (parse-partial-sexp (verilog-get-beg-of-line) (point)))))
1411 (defvar compile-command)
1413 ;; compilation program
1414 (defun verilog-set-compile-command ()
1415 "Function to compute shell command to compile Verilog.
1417 This reads `verilog-tool' and sets `compile-command'. This specifies the
1418 program that executes when you type \\[compile] or
1419 \\[verilog-auto-save-compile].
1421 By default `verilog-tool' uses a Makefile if one exists in the current
1422 directory. If not, it is set to the `verilog-linter', `verilog-coverage',
1423 `verilog-simulator', or `verilog-compiler' variables, as selected with the
1424 Verilog -> \"Choose Compilation Action\" menu.
1426 You should set `verilog-tool' or the other variables to the path and
1427 arguments for your Verilog simulator. For example:
1428 \"vcs -p123 -O\"
1429 or a string like:
1430 \"(cd /tmp; surecov %s)\".
1432 In the former case, the path to the current buffer is concat'ed to the
1433 value of `verilog-tool'; in the later, the path to the current buffer is
1434 substituted for the %s.
1436 Where __FILE__ appears in the string, the `buffer-file-name' of the
1437 current buffer, without the directory portion, will be substituted."
1438 (interactive)
1439 (cond
1440 ((or (file-exists-p "makefile") ;If there is a makefile, use it
1441 (file-exists-p "Makefile"))
1442 (make-local-variable 'compile-command)
1443 (setq compile-command "make "))
1445 (make-local-variable 'compile-command)
1446 (setq compile-command
1447 (if verilog-tool
1448 (if (string-match "%s" (eval verilog-tool))
1449 (format (eval verilog-tool) (or buffer-file-name ""))
1450 (concat (eval verilog-tool) " " (or buffer-file-name "")))
1451 ""))))
1452 (verilog-modify-compile-command))
1454 (defun verilog-modify-compile-command ()
1455 "Replace meta-information in `compile-command'.
1456 Where __FILE__ appears in the string, the current buffer's file-name,
1457 without the directory portion, will be substituted."
1458 (when (and
1459 (stringp compile-command)
1460 (string-match "\\b__FILE__\\b" compile-command))
1461 (make-local-variable 'compile-command)
1462 (setq compile-command
1463 (verilog-string-replace-matches
1464 "\\b__FILE__\\b" (file-name-nondirectory (buffer-file-name))
1465 t t compile-command))))
1467 (if (featurep 'xemacs)
1468 ;; Following code only gets called from compilation-mode-hook on XEmacs to add error handling.
1469 (defun verilog-error-regexp-add-xemacs ()
1470 "Teach XEmacs about verilog errors.
1471 Called by `compilation-mode-hook'. This allows \\[next-error] to
1472 find the errors."
1473 (interactive)
1474 (if (boundp 'compilation-error-regexp-systems-alist)
1475 (if (and
1476 (not (equal compilation-error-regexp-systems-list 'all))
1477 (not (member compilation-error-regexp-systems-list 'verilog)))
1478 (push 'verilog compilation-error-regexp-systems-list)))
1479 (if (boundp 'compilation-error-regexp-alist-alist)
1480 (if (not (assoc 'verilog compilation-error-regexp-alist-alist))
1481 (setcdr compilation-error-regexp-alist-alist
1482 (cons verilog-error-regexp-xemacs-alist
1483 (cdr compilation-error-regexp-alist-alist)))))
1484 (if (boundp 'compilation-font-lock-keywords)
1485 (progn
1486 (make-local-variable 'compilation-font-lock-keywords)
1487 (setq compilation-font-lock-keywords verilog-error-font-lock-keywords)
1488 (font-lock-set-defaults)))
1489 ;; Need to re-run compilation-error-regexp builder
1490 (if (fboundp 'compilation-build-compilation-error-regexp-alist)
1491 (compilation-build-compilation-error-regexp-alist))
1494 ;; Following code only gets called from compilation-mode-hook on Emacs to add error handling.
1495 (defun verilog-error-regexp-add-emacs ()
1496 "Tell Emacs compile that we are Verilog.
1497 Called by `compilation-mode-hook'. This allows \\[next-error] to
1498 find the errors."
1499 (interactive)
1500 (if (boundp 'compilation-error-regexp-alist-alist)
1501 (progn
1502 (if (not (assoc 'verilog-xl-1 compilation-error-regexp-alist-alist))
1503 (mapcar
1504 (lambda (item)
1505 (push (car item) compilation-error-regexp-alist)
1506 (push item compilation-error-regexp-alist-alist)
1508 verilog-error-regexp-emacs-alist)))))
1510 (if (featurep 'xemacs) (add-hook 'compilation-mode-hook 'verilog-error-regexp-add-xemacs))
1511 (if (featurep 'emacs) (add-hook 'compilation-mode-hook 'verilog-error-regexp-add-emacs))
1513 (defconst verilog-directive-re
1514 ;; "`case" "`default" "`define" "`define" "`else" "`endfor" "`endif"
1515 ;; "`endprotect" "`endswitch" "`endwhile" "`for" "`format" "`if" "`ifdef"
1516 ;; "`ifndef" "`include" "`let" "`protect" "`switch" "`timescale"
1517 ;; "`time_scale" "`undef" "`while"
1518 "\\<`\\(case\\|def\\(ault\\|ine\\(\\)?\\)\\|e\\(lse\\|nd\\(for\\|if\\|protect\\|switch\\|while\\)\\)\\|for\\(mat\\)?\\|i\\(f\\(def\\|ndef\\)?\\|nclude\\)\\|let\\|protect\\|switch\\|time\\(_scale\\|scale\\)\\|undef\\|while\\)\\>")
1520 (defconst verilog-directive-re-1
1521 (concat "[ \t]*" verilog-directive-re))
1523 (defconst verilog-directive-begin
1524 "\\<`\\(for\\|i\\(f\\|fdef\\|fndef\\)\\|switch\\|while\\)\\>")
1526 (defconst verilog-directive-middle
1527 "\\<`\\(else\\|default\\|case\\)\\>")
1529 (defconst verilog-directive-end
1530 "`\\(endfor\\|endif\\|endswitch\\|endwhile\\)\\>")
1532 (defconst verilog-ovm-begin-re
1533 (eval-when-compile
1534 (verilog-regexp-opt
1536 "`ovm_component_utils_begin"
1537 "`ovm_component_param_utils_begin"
1538 "`ovm_field_utils_begin"
1539 "`ovm_object_utils_begin"
1540 "`ovm_object_param_utils_begin"
1541 "`ovm_sequence_utils_begin"
1542 "`ovm_sequencer_utils_begin"
1543 ) nil )))
1545 (defconst verilog-ovm-end-re
1546 (eval-when-compile
1547 (verilog-regexp-opt
1549 "`ovm_component_utils_end"
1550 "`ovm_field_utils_end"
1551 "`ovm_object_utils_end"
1552 "`ovm_sequence_utils_end"
1553 "`ovm_sequencer_utils_end"
1554 ) nil )))
1556 (defconst verilog-ovm-statement-re
1557 (eval-when-compile
1558 (verilog-regexp-opt
1560 ;; Statements
1561 "`DUT_ERROR"
1562 "`MESSAGE"
1563 "`dut_error"
1564 "`message"
1565 "`ovm_analysis_imp_decl"
1566 "`ovm_blocking_get_imp_decl"
1567 "`ovm_blocking_get_peek_imp_decl"
1568 "`ovm_blocking_master_imp_decl"
1569 "`ovm_blocking_peek_imp_decl"
1570 "`ovm_blocking_put_imp_decl"
1571 "`ovm_blocking_slave_imp_decl"
1572 "`ovm_blocking_transport_imp_decl"
1573 "`ovm_component_registry"
1574 "`ovm_component_registry_param"
1575 "`ovm_component_utils"
1576 "`ovm_create"
1577 "`ovm_create_seq"
1578 "`ovm_declare_sequence_lib"
1579 "`ovm_do"
1580 "`ovm_do_seq"
1581 "`ovm_do_seq_with"
1582 "`ovm_do_with"
1583 "`ovm_error"
1584 "`ovm_fatal"
1585 "`ovm_field_aa_int_byte"
1586 "`ovm_field_aa_int_byte_unsigned"
1587 "`ovm_field_aa_int_int"
1588 "`ovm_field_aa_int_int_unsigned"
1589 "`ovm_field_aa_int_integer"
1590 "`ovm_field_aa_int_integer_unsigned"
1591 "`ovm_field_aa_int_key"
1592 "`ovm_field_aa_int_longint"
1593 "`ovm_field_aa_int_longint_unsigned"
1594 "`ovm_field_aa_int_shortint"
1595 "`ovm_field_aa_int_shortint_unsigned"
1596 "`ovm_field_aa_int_string"
1597 "`ovm_field_aa_object_int"
1598 "`ovm_field_aa_object_string"
1599 "`ovm_field_aa_string_int"
1600 "`ovm_field_aa_string_string"
1601 "`ovm_field_array_int"
1602 "`ovm_field_array_object"
1603 "`ovm_field_array_string"
1604 "`ovm_field_enum"
1605 "`ovm_field_event"
1606 "`ovm_field_int"
1607 "`ovm_field_object"
1608 "`ovm_field_queue_int"
1609 "`ovm_field_queue_object"
1610 "`ovm_field_queue_string"
1611 "`ovm_field_sarray_int"
1612 "`ovm_field_string"
1613 "`ovm_field_utils"
1614 "`ovm_file"
1615 "`ovm_get_imp_decl"
1616 "`ovm_get_peek_imp_decl"
1617 "`ovm_info"
1618 "`ovm_info1"
1619 "`ovm_info2"
1620 "`ovm_info3"
1621 "`ovm_info4"
1622 "`ovm_line"
1623 "`ovm_master_imp_decl"
1624 "`ovm_msg_detail"
1625 "`ovm_non_blocking_transport_imp_decl"
1626 "`ovm_nonblocking_get_imp_decl"
1627 "`ovm_nonblocking_get_peek_imp_decl"
1628 "`ovm_nonblocking_master_imp_decl"
1629 "`ovm_nonblocking_peek_imp_decl"
1630 "`ovm_nonblocking_put_imp_decl"
1631 "`ovm_nonblocking_slave_imp_decl"
1632 "`ovm_object_registry"
1633 "`ovm_object_registry_param"
1634 "`ovm_object_utils"
1635 "`ovm_peek_imp_decl"
1636 "`ovm_phase_func_decl"
1637 "`ovm_phase_task_decl"
1638 "`ovm_print_aa_int_object"
1639 "`ovm_print_aa_string_int"
1640 "`ovm_print_aa_string_object"
1641 "`ovm_print_aa_string_string"
1642 "`ovm_print_array_int"
1643 "`ovm_print_array_object"
1644 "`ovm_print_array_string"
1645 "`ovm_print_object_queue"
1646 "`ovm_print_queue_int"
1647 "`ovm_print_string_queue"
1648 "`ovm_put_imp_decl"
1649 "`ovm_rand_send"
1650 "`ovm_rand_send_with"
1651 "`ovm_send"
1652 "`ovm_sequence_utils"
1653 "`ovm_slave_imp_decl"
1654 "`ovm_transport_imp_decl"
1655 "`ovm_update_sequence_lib"
1656 "`ovm_update_sequence_lib_and_item"
1657 "`ovm_warning"
1658 "`static_dut_error"
1659 "`static_message") nil )))
1663 ;; Regular expressions used to calculate indent, etc.
1665 (defconst verilog-symbol-re "\\<[a-zA-Z_][a-zA-Z_0-9.]*\\>")
1666 ;; Want to match
1667 ;; aa :
1668 ;; aa,bb :
1669 ;; a[34:32] :
1670 ;; a,
1671 ;; b :
1673 (defconst verilog-label-re (concat verilog-symbol-re "\\s-*:\\s-*"))
1674 (defconst verilog-no-indent-begin-re
1675 "\\<\\(if\\|else\\|while\\|for\\|repeat\\|always\\|always_comb\\|always_ff\\|always_latch\\)\\>")
1677 (defconst verilog-ends-re
1678 ;; Parenthesis indicate type of keyword found
1679 (concat
1680 "\\(\\<else\\>\\)\\|" ; 1
1681 "\\(\\<if\\>\\)\\|" ; 2
1682 "\\(\\<end\\>\\)\\|" ; 3
1683 "\\(\\<endcase\\>\\)\\|" ; 4
1684 "\\(\\<endfunction\\>\\)\\|" ; 5
1685 "\\(\\<endtask\\>\\)\\|" ; 6
1686 "\\(\\<endspecify\\>\\)\\|" ; 7
1687 "\\(\\<endtable\\>\\)\\|" ; 8
1688 "\\(\\<endgenerate\\>\\)\\|" ; 9
1689 "\\(\\<join\\(_any\\|_none\\)?\\>\\)\\|" ; 10
1690 "\\(\\<endclass\\>\\)\\|" ; 11
1691 "\\(\\<endgroup\\>\\)\\|" ; 12
1692 ;; OVM
1693 "\\(\\<`ovm_component_utils_end\\>\\)\\|"
1694 "\\(\\<`ovm_field_utils_end\\>\\)\\|"
1695 "\\(\\<`ovm_object_utils_end\\>\\)\\|"
1696 "\\(\\<`ovm_sequence_utils_end\\>\\)\\|"
1697 "\\(\\<`ovm_sequencer_utils_end\\>\\)"
1701 (defconst verilog-auto-end-comment-lines-re
1702 ;; Matches to names in this list cause auto-end-commentation
1703 (concat "\\("
1704 verilog-directive-re "\\)\\|\\("
1705 (eval-when-compile
1706 (verilog-regexp-words
1707 `( "begin"
1708 "else"
1709 "end"
1710 "endcase"
1711 "endclass"
1712 "endclocking"
1713 "endgroup"
1714 "endfunction"
1715 "endmodule"
1716 "endprogram"
1717 "endprimitive"
1718 "endinterface"
1719 "endpackage"
1720 "endsequence"
1721 "endspecify"
1722 "endtable"
1723 "endtask"
1724 "join"
1725 "join_any"
1726 "join_none"
1727 "module"
1728 "macromodule"
1729 "primitive"
1730 "interface"
1731 "package")))
1732 "\\)"))
1734 ;;; NOTE: verilog-leap-to-head expects that verilog-end-block-re and
1735 ;;; verilog-end-block-ordered-re matches exactly the same strings.
1736 (defconst verilog-end-block-ordered-re
1737 ;; Parenthesis indicate type of keyword found
1738 (concat "\\(\\<endcase\\>\\)\\|" ; 1
1739 "\\(\\<end\\>\\)\\|" ; 2
1740 "\\(\\<end" ; 3, but not used
1741 "\\(" ; 4, but not used
1742 "\\(function\\)\\|" ; 5
1743 "\\(task\\)\\|" ; 6
1744 "\\(module\\)\\|" ; 7
1745 "\\(primitive\\)\\|" ; 8
1746 "\\(interface\\)\\|" ; 9
1747 "\\(package\\)\\|" ; 10
1748 "\\(class\\)\\|" ; 11
1749 "\\(group\\)\\|" ; 12
1750 "\\(program\\)\\|" ; 13
1751 "\\(sequence\\)\\|" ; 14
1752 "\\(clocking\\)\\|" ; 15
1753 "\\)\\>\\)"))
1754 (defconst verilog-end-block-re
1755 (eval-when-compile
1756 (verilog-regexp-words
1758 `("end" ;; closes begin
1759 "endcase" ;; closes any of case, casex casez or randcase
1760 "join" "join_any" "join_none" ;; closes fork
1761 "endclass"
1762 "endtable"
1763 "endspecify"
1764 "endfunction"
1765 "endgenerate"
1766 "endtask"
1767 "endgroup"
1768 "endproperty"
1769 "endinterface"
1770 "endpackage"
1771 "endprogram"
1772 "endsequence"
1773 "endclocking"
1774 ;; OVM
1775 "`ovm_component_utils_end"
1776 "`ovm_field_utils_end"
1777 "`ovm_object_utils_end"
1778 "`ovm_sequence_utils_end"
1779 "`ovm_sequencer_utils_end"
1781 ))))
1784 (defconst verilog-endcomment-reason-re
1785 ;; Parenthesis indicate type of keyword found
1786 (concat
1787 "\\(\\<begin\\>\\)\\|" ; 1
1788 "\\(\\<else\\>\\)\\|" ; 2
1789 "\\(\\<end\\>\\s-+\\<else\\>\\)\\|" ; 3
1790 "\\(\\<always_comb\\>\\(\[ \t\]*@\\)?\\)\\|" ; 4
1791 "\\(\\<always_ff\\>\\(\[ \t\]*@\\)?\\)\\|" ; 5
1792 "\\(\\<always_latch\\>\\(\[ \t\]*@\\)?\\)\\|" ; 6
1793 "\\(\\<fork\\>\\)\\|" ; 7
1794 "\\(\\<always\\>\\(\[ \t\]*@\\)?\\)\\|"
1795 "\\(\\<if\\>\\)\\|"
1796 "\\(\\<clocking\\>\\)\\|"
1797 "\\(\\<task\\>\\)\\|"
1798 "\\(\\<function\\>\\)\\|"
1799 "\\(\\<initial\\>\\)\\|"
1800 "\\(\\<interface\\>\\)\\|"
1801 "\\(\\<package\\>\\)\\|"
1802 "\\(\\<final\\>\\)\\|"
1803 "\\(@\\)\\|"
1804 "\\(\\<while\\>\\)\\|"
1805 "\\(\\<for\\(ever\\|each\\)?\\>\\)\\|"
1806 "\\(\\<repeat\\>\\)\\|\\(\\<wait\\>\\)\\|"
1807 "#"))
1809 (defconst verilog-named-block-re "begin[ \t]*:")
1811 ;; These words begin a block which can occur inside a module which should be indented,
1812 ;; and closed with the respective word from the end-block list
1814 (defconst verilog-beg-block-re
1815 (eval-when-compile
1816 (verilog-regexp-words
1817 `("begin"
1818 "case" "casex" "casez" "randcase"
1819 "clocking"
1820 "generate"
1821 "fork"
1822 "function"
1823 "property"
1824 "specify"
1825 "table"
1826 "task"
1827 ;;; OVM
1828 "`ovm_component_utils_begin"
1829 "`ovm_component_param_utils_begin"
1830 "`ovm_field_utils_begin"
1831 "`ovm_object_utils_begin"
1832 "`ovm_object_param_utils_begin"
1833 "`ovm_sequence_utils_begin"
1834 "`ovm_sequencer_utils_begin"
1836 ))))
1837 ;; These are the same words, in a specific order in the regular
1838 ;; expression so that matching will work nicely for
1839 ;; verilog-forward-sexp and verilog-calc-indent
1840 (defconst verilog-beg-block-re-ordered
1841 ( concat "\\(\\<begin\\>\\)" ;1
1842 "\\|\\(\\<randcase\\>\\|\\(\\<unique\\s-+\\|priority\\s-+\\)?case[xz]?\\>\\)" ; 2,3
1843 "\\|\\(\\(\\<disable\\>\\s-+\\)?fork\\>\\)" ;4,5
1844 "\\|\\(\\<class\\>\\)" ;6
1845 "\\|\\(\\<table\\>\\)" ;7
1846 "\\|\\(\\<specify\\>\\)" ;8
1847 "\\|\\(\\<function\\>\\)" ;9
1848 "\\|\\(\\(\\(\\<virtual\\>\\s-+\\)\\|\\(\\<protected\\>\\s-+\\)\\)*\\<function\\>\\)" ;10
1849 "\\|\\(\\<task\\>\\)" ;14
1850 "\\|\\(\\(\\(\\<virtual\\>\\s-+\\)\\|\\(\\<protected\\>\\s-+\\)\\)*\\<task\\>\\)" ;15
1851 "\\|\\(\\<generate\\>\\)" ;18
1852 "\\|\\(\\<covergroup\\>\\)" ;16 20
1853 "\\|\\(\\(\\(\\<cover\\>\\s-+\\)\\|\\(\\<assert\\>\\s-+\\)\\)*\\<property\\>\\)" ;17 21
1854 "\\|\\(\\<\\(rand\\)?sequence\\>\\)" ;21 25
1855 "\\|\\(\\<clocking\\>\\)" ;22 27
1856 "\\|\\(\\<`ovm_[a-z_]+_begin\\>\\)" ;28
1861 (defconst verilog-end-block-ordered-rry
1862 [ "\\(\\<begin\\>\\)\\|\\(\\<end\\>\\)\\|\\(\\<endcase\\>\\)\\|\\(\\<join\\(_any\\|_none\\)?\\>\\)"
1863 "\\(\\<randcase\\>\\|\\<case[xz]?\\>\\)\\|\\(\\<endcase\\>\\)"
1864 "\\(\\<fork\\>\\)\\|\\(\\<join\\(_any\\|_none\\)?\\>\\)"
1865 "\\(\\<class\\>\\)\\|\\(\\<endclass\\>\\)"
1866 "\\(\\<table\\>\\)\\|\\(\\<endtable\\>\\)"
1867 "\\(\\<specify\\>\\)\\|\\(\\<endspecify\\>\\)"
1868 "\\(\\<function\\>\\)\\|\\(\\<endfunction\\>\\)"
1869 "\\(\\<generate\\>\\)\\|\\(\\<endgenerate\\>\\)"
1870 "\\(\\<task\\>\\)\\|\\(\\<endtask\\>\\)"
1871 "\\(\\<covergroup\\>\\)\\|\\(\\<endgroup\\>\\)"
1872 "\\(\\<property\\>\\)\\|\\(\\<endproperty\\>\\)"
1873 "\\(\\<\\(rand\\)?sequence\\>\\)\\|\\(\\<endsequence\\>\\)"
1874 "\\(\\<clocking\\>\\)\\|\\(\\<endclocking\\>\\)"
1877 (defconst verilog-nameable-item-re
1878 (eval-when-compile
1879 (verilog-regexp-words
1880 `("begin"
1881 "fork"
1882 "join" "join_any" "join_none"
1883 "end"
1884 "endcase"
1885 "endconfig"
1886 "endclass"
1887 "endclocking"
1888 "endfunction"
1889 "endgenerate"
1890 "endmodule"
1891 "endprimative"
1892 "endinterface"
1893 "endpackage"
1894 "endspecify"
1895 "endtable"
1896 "endtask" )
1899 (defconst verilog-declaration-opener
1900 (eval-when-compile
1901 (verilog-regexp-words
1902 `("module" "begin" "task" "function"))))
1904 (defconst verilog-declaration-prefix-re
1905 (eval-when-compile
1906 (verilog-regexp-words
1908 ;; port direction
1909 "inout" "input" "output" "ref"
1910 ;; changeableness
1911 "const" "static" "protected" "local"
1912 ;; parameters
1913 "localparam" "parameter" "var"
1914 ;; type creation
1915 "typedef"
1916 ))))
1917 (defconst verilog-declaration-core-re
1918 (eval-when-compile
1919 (verilog-regexp-words
1921 ;; port direction (by themselves)
1922 "inout" "input" "output"
1923 ;; integer_atom_type
1924 "byte" "shortint" "int" "longint" "integer" "time"
1925 ;; integer_vector_type
1926 "bit" "logic" "reg"
1927 ;; non_integer_type
1928 "shortreal" "real" "realtime"
1929 ;; net_type
1930 "supply0" "supply1" "tri" "triand" "trior" "trireg" "tri0" "tri1" "uwire" "wire" "wand" "wor"
1931 ;; misc
1932 "string" "event" "chandle" "virtual" "enum" "genvar"
1933 "struct" "union"
1934 ;; builtin classes
1935 "mailbox" "semaphore"
1936 ))))
1937 (defconst verilog-declaration-re
1938 (concat "\\(" verilog-declaration-prefix-re "\\s-*\\)?" verilog-declaration-core-re))
1939 (defconst verilog-range-re "\\(\\[[^]]*\\]\\s-*\\)+")
1940 (defconst verilog-optional-signed-re "\\s-*\\(signed\\)?")
1941 (defconst verilog-optional-signed-range-re
1942 (concat
1943 "\\s-*\\(\\<\\(reg\\|wire\\)\\>\\s-*\\)?\\(\\<signed\\>\\s-*\\)?\\(" verilog-range-re "\\)?"))
1944 (defconst verilog-macroexp-re "`\\sw+")
1946 (defconst verilog-delay-re "#\\s-*\\(\\([0-9_]+\\('s?[hdxbo][0-9a-fA-F_xz]+\\)?\\)\\|\\(([^()]*)\\)\\|\\(\\sw+\\)\\)")
1947 (defconst verilog-declaration-re-2-no-macro
1948 (concat "\\s-*" verilog-declaration-re
1949 "\\s-*\\(\\(" verilog-optional-signed-range-re "\\)\\|\\(" verilog-delay-re "\\)"
1950 "\\)?"))
1951 (defconst verilog-declaration-re-2-macro
1952 (concat "\\s-*" verilog-declaration-re
1953 "\\s-*\\(\\(" verilog-optional-signed-range-re "\\)\\|\\(" verilog-delay-re "\\)"
1954 "\\|\\(" verilog-macroexp-re "\\)"
1955 "\\)?"))
1956 (defconst verilog-declaration-re-1-macro
1957 (concat "^" verilog-declaration-re-2-macro))
1959 (defconst verilog-declaration-re-1-no-macro (concat "^" verilog-declaration-re-2-no-macro))
1961 (defconst verilog-defun-re
1962 (eval-when-compile (verilog-regexp-words `("macromodule" "module" "class" "program" "interface" "package" "primitive" "config"))))
1963 (defconst verilog-end-defun-re
1964 (eval-when-compile (verilog-regexp-words `("endmodule" "endclass" "endprogram" "endinterface" "endpackage" "endprimitive" "endconfig"))))
1965 (defconst verilog-zero-indent-re
1966 (concat verilog-defun-re "\\|" verilog-end-defun-re))
1968 (defconst verilog-behavioral-block-beg-re
1969 (eval-when-compile (verilog-regexp-words `("initial" "final" "always" "always_comb" "always_latch" "always_ff"
1970 "function" "task"))))
1971 (defconst verilog-coverpoint-re "\\w+\\s*:\\s*\\(coverpoint\\|cross\\constraint\\)" )
1972 (defconst verilog-indent-re
1973 (eval-when-compile
1974 (verilog-regexp-words
1977 "always" "always_latch" "always_ff" "always_comb"
1978 "begin" "end"
1979 ; "unique" "priority"
1980 "case" "casex" "casez" "randcase" "endcase"
1981 "class" "endclass"
1982 "clocking" "endclocking"
1983 "config" "endconfig"
1984 "covergroup" "endgroup"
1985 "fork" "join" "join_any" "join_none"
1986 "function" "endfunction"
1987 "final"
1988 "generate" "endgenerate"
1989 "initial"
1990 "interface" "endinterface"
1991 "module" "macromodule" "endmodule"
1992 "package" "endpackage"
1993 "primitive" "endprimative"
1994 "program" "endprogram"
1995 "property" "endproperty"
1996 "sequence" "randsequence" "endsequence"
1997 "specify" "endspecify"
1998 "table" "endtable"
1999 "task" "endtask"
2000 "virtual"
2001 "`case"
2002 "`default"
2003 "`define" "`undef"
2004 "`if" "`ifdef" "`ifndef" "`else" "`endif"
2005 "`while" "`endwhile"
2006 "`for" "`endfor"
2007 "`format"
2008 "`include"
2009 "`let"
2010 "`protect" "`endprotect"
2011 "`switch" "`endswitch"
2012 "`timescale"
2013 "`time_scale"
2014 ;; OVM Begin tokens
2015 "`ovm_component_utils_begin"
2016 "`ovm_component_param_utils_begin"
2017 "`ovm_field_utils_begin"
2018 "`ovm_object_utils_begin"
2019 "`ovm_object_param_utils_begin"
2020 "`ovm_sequence_utils_begin"
2021 "`ovm_sequencer_utils_begin"
2022 ;; OVM End tokens
2023 "`ovm_component_utils_end"
2024 "`ovm_field_utils_end"
2025 "`ovm_object_utils_end"
2026 "`ovm_sequence_utils_end"
2027 "`ovm_sequencer_utils_end"
2028 ))))
2030 (defconst verilog-defun-level-not-generate-re
2031 (eval-when-compile
2032 (verilog-regexp-words
2033 `( "module" "macromodule" "primitive" "class" "program"
2034 "interface" "package" "config"))))
2036 (defconst verilog-defun-level-re
2037 (eval-when-compile
2038 (verilog-regexp-words
2039 (append
2040 `( "module" "macromodule" "primitive" "class" "program"
2041 "interface" "package" "config")
2042 `( "initial" "final" "always" "always_comb" "always_ff"
2043 "always_latch" "endtask" "endfunction" )))))
2045 (defconst verilog-defun-level-generate-only-re
2046 (eval-when-compile
2047 (verilog-regexp-words
2048 `( "initial" "final" "always" "always_comb" "always_ff"
2049 "always_latch" "endtask" "endfunction" ))))
2051 (defconst verilog-cpp-level-re
2052 (eval-when-compile
2053 (verilog-regexp-words
2055 "endmodule" "endprimitive" "endinterface" "endpackage" "endprogram" "endclass"
2056 ))))
2057 (defconst verilog-disable-fork-re "disable\\s-+fork")
2058 (defconst verilog-extended-case-re "\\(unique\\s-+\\|priority\\s-+\\)?case[xz]?")
2059 (defconst verilog-extended-complete-re
2060 (concat "\\(\\<extern\\s-+\\|\\<virtual\\s-+\\|\\<protected\\s-+\\)*\\(\\<function\\>\\|\\<task\\>\\)"
2061 "\\|\\(\\<typedef\\>\\s-+\\)*\\(\\<struct\\>\\|\\<union\\>\\|\\<class\\>\\)"
2062 "\\|\\(\\<import\\>\\s-+\\)?\"DPI-C\"\\s-+\\(function\\>\\|task\\>\\)"
2063 "\\|" verilog-extended-case-re ))
2064 (defconst verilog-basic-complete-re
2065 (eval-when-compile
2066 (verilog-regexp-words
2068 "always" "assign" "always_latch" "always_ff" "always_comb" "constraint"
2069 "import" "initial" "final" "module" "macromodule" "repeat" "randcase" "while"
2070 "if" "for" "forever" "foreach" "else" "parameter" "do" "localparam" "assert"
2071 ))))
2072 (defconst verilog-complete-reg
2073 (concat
2074 verilog-extended-complete-re
2075 "\\|"
2076 verilog-basic-complete-re))
2078 (defconst verilog-end-statement-re
2079 (concat "\\(" verilog-beg-block-re "\\)\\|\\("
2080 verilog-end-block-re "\\)"))
2082 (defconst verilog-endcase-re
2083 (concat verilog-extended-case-re "\\|"
2084 "\\(endcase\\)\\|"
2085 verilog-defun-re
2088 (defconst verilog-exclude-str-start "/* -----\\/----- EXCLUDED -----\\/-----"
2089 "String used to mark beginning of excluded text.")
2090 (defconst verilog-exclude-str-end " -----/\\----- EXCLUDED -----/\\----- */"
2091 "String used to mark end of excluded text.")
2092 (defconst verilog-preprocessor-re
2093 (eval-when-compile
2094 (verilog-regexp-words
2096 "`define" "`include" "`ifdef" "`ifndef" "`if" "`endif" "`else"
2097 ))))
2099 (defconst verilog-keywords
2100 '( "`case" "`default" "`define" "`else" "`endfor" "`endif"
2101 "`endprotect" "`endswitch" "`endwhile" "`for" "`format" "`if" "`ifdef"
2102 "`ifndef" "`include" "`let" "`protect" "`switch" "`timescale"
2103 "`time_scale" "`undef" "`while"
2105 "after" "alias" "always" "always_comb" "always_ff" "always_latch" "and"
2106 "assert" "assign" "assume" "automatic" "before" "begin" "bind"
2107 "bins" "binsof" "bit" "break" "buf" "bufif0" "bufif1" "byte"
2108 "case" "casex" "casez" "cell" "chandle" "class" "clocking" "cmos"
2109 "config" "const" "constraint" "context" "continue" "cover"
2110 "covergroup" "coverpoint" "cross" "deassign" "default" "defparam"
2111 "design" "disable" "dist" "do" "edge" "else" "end" "endcase"
2112 "endclass" "endclocking" "endconfig" "endfunction" "endgenerate"
2113 "endgroup" "endinterface" "endmodule" "endpackage" "endprimitive"
2114 "endprogram" "endproperty" "endspecify" "endsequence" "endtable"
2115 "endtask" "enum" "event" "expect" "export" "extends" "extern"
2116 "final" "first_match" "for" "force" "foreach" "forever" "fork"
2117 "forkjoin" "function" "generate" "genvar" "highz0" "highz1" "if"
2118 "iff" "ifnone" "ignore_bins" "illegal_bins" "import" "incdir"
2119 "include" "initial" "inout" "input" "inside" "instance" "int"
2120 "integer" "interface" "intersect" "join" "join_any" "join_none"
2121 "large" "liblist" "library" "local" "localparam" "logic"
2122 "longint" "macromodule" "mailbox" "matches" "medium" "modport" "module"
2123 "nand" "negedge" "new" "nmos" "nor" "noshowcancelled" "not"
2124 "notif0" "notif1" "null" "or" "output" "package" "packed"
2125 "parameter" "pmos" "posedge" "primitive" "priority" "program"
2126 "property" "protected" "pull0" "pull1" "pulldown" "pullup"
2127 "pulsestyle_onevent" "pulsestyle_ondetect" "pure" "rand" "randc"
2128 "randcase" "randsequence" "rcmos" "real" "realtime" "ref" "reg"
2129 "release" "repeat" "return" "rnmos" "rpmos" "rtran" "rtranif0"
2130 "rtranif1" "scalared" "semaphore" "sequence" "shortint" "shortreal"
2131 "showcancelled" "signed" "small" "solve" "specify" "specparam"
2132 "static" "string" "strong0" "strong1" "struct" "super" "supply0"
2133 "supply1" "table" "tagged" "task" "this" "throughout" "time"
2134 "timeprecision" "timeunit" "tran" "tranif0" "tranif1" "tri"
2135 "tri0" "tri1" "triand" "trior" "trireg" "type" "typedef" "union"
2136 "unique" "unsigned" "use" "uwire" "var" "vectored" "virtual" "void"
2137 "wait" "wait_order" "wand" "weak0" "weak1" "while" "wildcard"
2138 "wire" "with" "within" "wor" "xnor" "xor"
2140 "List of Verilog keywords.")
2142 (defconst verilog-comment-start-regexp "//\\|/\\*"
2143 "Dual comment value for `comment-start-regexp'.")
2145 (defvar verilog-mode-syntax-table
2146 (let ((table (make-syntax-table)))
2147 ;; Populate the syntax TABLE.
2148 (modify-syntax-entry ?\\ "\\" table)
2149 (modify-syntax-entry ?+ "." table)
2150 (modify-syntax-entry ?- "." table)
2151 (modify-syntax-entry ?= "." table)
2152 (modify-syntax-entry ?% "." table)
2153 (modify-syntax-entry ?< "." table)
2154 (modify-syntax-entry ?> "." table)
2155 (modify-syntax-entry ?& "." table)
2156 (modify-syntax-entry ?| "." table)
2157 (modify-syntax-entry ?` "w" table)
2158 (modify-syntax-entry ?_ "w" table)
2159 (modify-syntax-entry ?\' "." table)
2161 ;; Set up TABLE to handle block and line style comments.
2162 (if (featurep 'xemacs)
2163 (progn
2164 ;; XEmacs (formerly Lucid) has the best implementation
2165 (modify-syntax-entry ?/ ". 1456" table)
2166 (modify-syntax-entry ?* ". 23" table)
2167 (modify-syntax-entry ?\n "> b" table))
2168 ;; Emacs does things differently, but we can work with it
2169 (modify-syntax-entry ?/ ". 124b" table)
2170 (modify-syntax-entry ?* ". 23" table)
2171 (modify-syntax-entry ?\n "> b" table))
2172 table)
2173 "Syntax table used in Verilog mode buffers.")
2175 (defvar verilog-font-lock-keywords nil
2176 "Default highlighting for Verilog mode.")
2178 (defvar verilog-font-lock-keywords-1 nil
2179 "Subdued level highlighting for Verilog mode.")
2181 (defvar verilog-font-lock-keywords-2 nil
2182 "Medium level highlighting for Verilog mode.
2183 See also `verilog-font-lock-extra-types'.")
2185 (defvar verilog-font-lock-keywords-3 nil
2186 "Gaudy level highlighting for Verilog mode.
2187 See also `verilog-font-lock-extra-types'.")
2188 (defvar verilog-font-lock-translate-off-face
2189 'verilog-font-lock-translate-off-face
2190 "Font to use for translated off regions.")
2191 (defface verilog-font-lock-translate-off-face
2192 '((((class color)
2193 (background light))
2194 (:background "gray90" :italic t ))
2195 (((class color)
2196 (background dark))
2197 (:background "gray10" :italic t ))
2198 (((class grayscale) (background light))
2199 (:foreground "DimGray" :italic t))
2200 (((class grayscale) (background dark))
2201 (:foreground "LightGray" :italic t))
2202 (t (:italis t)))
2203 "Font lock mode face used to background highlight translate-off regions."
2204 :group 'font-lock-highlighting-faces)
2206 (defvar verilog-font-lock-p1800-face
2207 'verilog-font-lock-p1800-face
2208 "Font to use for p1800 keywords.")
2209 (defface verilog-font-lock-p1800-face
2210 '((((class color)
2211 (background light))
2212 (:foreground "DarkOrange3" :bold t ))
2213 (((class color)
2214 (background dark))
2215 (:foreground "orange1" :bold t ))
2216 (t (:italic t)))
2217 "Font lock mode face used to highlight P1800 keywords."
2218 :group 'font-lock-highlighting-faces)
2220 (defvar verilog-font-lock-ams-face
2221 'verilog-font-lock-ams-face
2222 "Font to use for Analog/Mixed Signal keywords.")
2223 (defface verilog-font-lock-ams-face
2224 '((((class color)
2225 (background light))
2226 (:foreground "Purple" :bold t ))
2227 (((class color)
2228 (background dark))
2229 (:foreground "orange1" :bold t ))
2230 (t (:italic t)))
2231 "Font lock mode face used to highlight AMS keywords."
2232 :group 'font-lock-highlighting-faces)
2234 (defvar verilog-font-grouping-keywords-face
2235 'verilog-font-lock-grouping-keywords-face
2236 "Font to use for Verilog Grouping Keywords (such as begin..end).")
2237 (defface verilog-font-lock-grouping-keywords-face
2238 '((((class color)
2239 (background light))
2240 (:foreground "red4" :bold t ))
2241 (((class color)
2242 (background dark))
2243 (:foreground "red4" :bold t ))
2244 (t (:italic t)))
2245 "Font lock mode face used to highlight verilog grouping keywords."
2246 :group 'font-lock-highlighting-faces)
2248 (let* ((verilog-type-font-keywords
2249 (eval-when-compile
2250 (verilog-regexp-opt
2252 "and" "bit" "buf" "bufif0" "bufif1" "cmos" "defparam"
2253 "event" "genvar" "inout" "input" "integer" "localparam"
2254 "logic" "mailbox" "nand" "nmos" "not" "notif0" "notif1" "or"
2255 "output" "parameter" "pmos" "pull0" "pull1" "pullup"
2256 "rcmos" "real" "realtime" "reg" "rnmos" "rpmos" "rtran"
2257 "rtranif0" "rtranif1" "semaphore" "signed" "struct" "supply"
2258 "supply0" "supply1" "time" "tran" "tranif0" "tranif1"
2259 "tri" "tri0" "tri1" "triand" "trior" "trireg" "typedef"
2260 "uwire" "vectored" "wand" "wire" "wor" "xnor" "xor"
2261 ) nil )))
2263 (verilog-pragma-keywords
2264 (eval-when-compile
2265 (verilog-regexp-opt
2266 '("surefire" "synopsys" "rtl_synthesis" "verilint" "leda" "0in") nil
2269 (verilog-p1800-keywords
2270 (eval-when-compile
2271 (verilog-regexp-opt
2272 '("alias" "assert" "assume" "automatic" "before" "bind"
2273 "bins" "binsof" "break" "byte" "cell" "chandle" "class"
2274 "clocking" "config" "const" "constraint" "context" "continue"
2275 "cover" "covergroup" "coverpoint" "cross" "deassign" "design"
2276 "dist" "do" "edge" "endclass" "endclocking" "endconfig"
2277 "endgroup" "endprogram" "endproperty" "endsequence" "enum"
2278 "expect" "export" "extends" "extern" "first_match" "foreach"
2279 "forkjoin" "genvar" "highz0" "highz1" "ifnone" "ignore_bins"
2280 "illegal_bins" "import" "incdir" "include" "inside" "instance"
2281 "int" "intersect" "large" "liblist" "library" "local" "longint"
2282 "matches" "medium" "modport" "new" "noshowcancelled" "null"
2283 "packed" "program" "property" "protected" "pull0" "pull1"
2284 "pulsestyle_onevent" "pulsestyle_ondetect" "pure" "rand" "randc"
2285 "randcase" "randsequence" "ref" "release" "return" "scalared"
2286 "sequence" "shortint" "shortreal" "showcancelled" "small" "solve"
2287 "specparam" "static" "string" "strong0" "strong1" "struct"
2288 "super" "tagged" "this" "throughout" "timeprecision" "timeunit"
2289 "type" "union" "unsigned" "use" "var" "virtual" "void"
2290 "wait_order" "weak0" "weak1" "wildcard" "with" "within"
2291 ) nil )))
2293 (verilog-ams-keywords
2294 (eval-when-compile
2295 (verilog-regexp-opt
2296 '("above" "abs" "absdelay" "acos" "acosh" "ac_stim"
2297 "aliasparam" "analog" "analysis" "asin" "asinh" "atan" "atan2" "atanh"
2298 "branch" "ceil" "connectmodule" "connectrules" "cos" "cosh" "ddt"
2299 "ddx" "discipline" "driver_update" "enddiscipline" "endconnectrules"
2300 "endnature" "endparamset" "exclude" "exp" "final_step" "flicker_noise"
2301 "floor" "flow" "from" "ground" "hypot" "idt" "idtmod" "inf"
2302 "initial_step" "laplace_nd" "laplace_np" "laplace_zd" "laplace_zp"
2303 "last_crossing" "limexp" "ln" "log" "max" "min" "nature"
2304 "net_resolution" "noise_table" "paramset" "potential" "pow" "sin"
2305 "sinh" "slew" "sqrt" "tan" "tanh" "timer" "transition" "white_noise"
2306 "wreal" "zi_nd" "zi_np" "zi_zd" ) nil )))
2308 (verilog-font-keywords
2309 (eval-when-compile
2310 (verilog-regexp-opt
2312 "assign" "case" "casex" "casez" "randcase" "deassign"
2313 "default" "disable" "else" "endcase" "endfunction"
2314 "endgenerate" "endinterface" "endmodule" "endprimitive"
2315 "endspecify" "endtable" "endtask" "final" "for" "force" "return" "break"
2316 "continue" "forever" "fork" "function" "generate" "if" "iff" "initial"
2317 "interface" "join" "join_any" "join_none" "macromodule" "module" "negedge"
2318 "package" "endpackage" "always" "always_comb" "always_ff"
2319 "always_latch" "posedge" "primitive" "priority" "release"
2320 "repeat" "specify" "table" "task" "unique" "wait" "while"
2321 "class" "program" "endclass" "endprogram"
2322 ) nil )))
2324 (verilog-font-grouping-keywords
2325 (eval-when-compile
2326 (verilog-regexp-opt
2327 '( "begin" "end" ) nil ))))
2329 (setq verilog-font-lock-keywords
2330 (list
2331 ;; Fontify all builtin keywords
2332 (concat "\\<\\(" verilog-font-keywords "\\|"
2333 ;; And user/system tasks and functions
2334 "\\$[a-zA-Z][a-zA-Z0-9_\\$]*"
2335 "\\)\\>")
2336 ;; Fontify all types
2337 (if verilog-highlight-grouping-keywords
2338 (cons (concat "\\<\\(" verilog-font-grouping-keywords "\\)\\>")
2339 'verilog-font-lock-ams-face)
2340 (cons (concat "\\<\\(" verilog-font-grouping-keywords "\\)\\>")
2341 'font-lock-type-face))
2342 (cons (concat "\\<\\(" verilog-type-font-keywords "\\)\\>")
2343 'font-lock-type-face)
2344 ;; Fontify IEEE-P1800 keywords appropriately
2345 (if verilog-highlight-p1800-keywords
2346 (cons (concat "\\<\\(" verilog-p1800-keywords "\\)\\>")
2347 'verilog-font-lock-p1800-face)
2348 (cons (concat "\\<\\(" verilog-p1800-keywords "\\)\\>")
2349 'font-lock-type-face))
2350 ;; Fontify Verilog-AMS keywords
2351 (cons (concat "\\<\\(" verilog-ams-keywords "\\)\\>")
2352 'verilog-font-lock-ams-face)))
2354 (setq verilog-font-lock-keywords-1
2355 (append verilog-font-lock-keywords
2356 (list
2357 ;; Fontify module definitions
2358 (list
2359 "\\<\\(\\(macro\\)?module\\|primitive\\|class\\|program\\|interface\\|package\\|task\\)\\>\\s-*\\(\\sw+\\)"
2360 '(1 font-lock-keyword-face)
2361 '(3 font-lock-function-name-face 'prepend))
2362 ;; Fontify function definitions
2363 (list
2364 (concat "\\<function\\>\\s-+\\(integer\\|real\\(time\\)?\\|time\\)\\s-+\\(\\sw+\\)" )
2365 '(1 font-lock-keyword-face)
2366 '(3 font-lock-reference-face prepend))
2367 '("\\<function\\>\\s-+\\(\\[[^]]+\\]\\)\\s-+\\(\\sw+\\)"
2368 (1 font-lock-keyword-face)
2369 (2 font-lock-reference-face append))
2370 '("\\<function\\>\\s-+\\(\\sw+\\)"
2371 1 'font-lock-reference-face append))))
2373 (setq verilog-font-lock-keywords-2
2374 (append verilog-font-lock-keywords-1
2375 (list
2376 ;; Fontify pragmas
2377 (concat "\\(//\\s-*" verilog-pragma-keywords "\\s-.*\\)")
2378 ;; Fontify escaped names
2379 '("\\(\\\\\\S-*\\s-\\)" 0 font-lock-function-name-face)
2380 ;; Fontify macro definitions/ uses
2381 '("`\\s-*[A-Za-z][A-Za-z0-9_]*" 0 (if (boundp 'font-lock-preprocessor-face)
2382 'font-lock-preprocessor-face
2383 'font-lock-type-face))
2384 ;; Fontify delays/numbers
2385 '("\\(@\\)\\|\\(#\\s-*\\(\\(\[0-9_.\]+\\('s?[hdxbo][0-9a-fA-F_xz]*\\)?\\)\\|\\(([^()]+)\\|\\sw+\\)\\)\\)"
2386 0 font-lock-type-face append)
2387 ;; Fontify instantiation names
2388 '("\\([A-Za-z][A-Za-z0-9_]+\\)\\s-*(" 1 font-lock-function-name-face)
2391 (setq verilog-font-lock-keywords-3
2392 (append verilog-font-lock-keywords-2
2393 (when verilog-highlight-translate-off
2394 (list
2395 ;; Fontify things in translate off regions
2396 '(verilog-match-translate-off
2397 (0 'verilog-font-lock-translate-off-face prepend))
2398 )))))
2401 (defun verilog-inside-comment-p ()
2402 "Check if point inside a nested comment."
2403 (save-excursion
2404 (let ((st-point (point)) hitbeg)
2405 (or (search-backward "//" (verilog-get-beg-of-line) t)
2406 (if (progn
2407 ;; This is for tricky case //*, we keep searching if /*
2408 ;; is proceeded by // on same line.
2409 (while
2410 (and (setq hitbeg (search-backward "/*" nil t))
2411 (progn
2412 (forward-char 1)
2413 (search-backward "//" (verilog-get-beg-of-line) t))))
2414 hitbeg)
2415 (not (search-forward "*/" st-point t)))))))
2417 (defun verilog-declaration-end ()
2418 (search-forward ";"))
2420 (defun verilog-point-text (&optional pointnum)
2421 "Return text describing where POINTNUM or current point is (for errors).
2422 Use filename, if current buffer being edited shorten to just buffer name."
2423 (concat (or (and (equal (window-buffer (selected-window)) (current-buffer))
2424 (buffer-name))
2425 buffer-file-name
2426 (buffer-name))
2427 ":" (int-to-string (count-lines (point-min) (or pointnum (point))))))
2429 (defun electric-verilog-backward-sexp ()
2430 "Move backward over one balanced expression."
2431 (interactive)
2432 ;; before that see if we are in a comment
2433 (verilog-backward-sexp))
2435 (defun electric-verilog-forward-sexp ()
2436 "Move forward over one balanced expression."
2437 (interactive)
2438 ;; before that see if we are in a comment
2439 (verilog-forward-sexp))
2441 ;;;used by hs-minor-mode
2442 (defun verilog-forward-sexp-function (arg)
2443 (if (< arg 0)
2444 (verilog-backward-sexp)
2445 (verilog-forward-sexp)))
2448 (defun verilog-backward-sexp ()
2449 (let ((reg)
2450 (elsec 1)
2451 (found nil)
2452 (st (point)))
2453 (if (not (looking-at "\\<"))
2454 (forward-word -1))
2455 (cond
2456 ((verilog-skip-backward-comment-or-string))
2457 ((looking-at "\\<else\\>")
2458 (setq reg (concat
2459 verilog-end-block-re
2460 "\\|\\(\\<else\\>\\)"
2461 "\\|\\(\\<if\\>\\)"))
2462 (while (and (not found)
2463 (verilog-re-search-backward reg nil 'move))
2464 (cond
2465 ((match-end 1) ; matched verilog-end-block-re
2466 ; try to leap back to matching outward block by striding across
2467 ; indent level changing tokens then immediately
2468 ; previous line governs indentation.
2469 (verilog-leap-to-head))
2470 ((match-end 2) ; else, we're in deep
2471 (setq elsec (1+ elsec)))
2472 ((match-end 3) ; found it
2473 (setq elsec (1- elsec))
2474 (if (= 0 elsec)
2475 ;; Now previous line describes syntax
2476 (setq found 't))))))
2477 ((looking-at verilog-end-block-re)
2478 (verilog-leap-to-head))
2479 ((looking-at "\\(endmodule\\>\\)\\|\\(\\<endprimitive\\>\\)\\|\\(\\<endclass\\>\\)\\|\\(\\<endprogram\\>\\)\\|\\(\\<endinterface\\>\\)\\|\\(\\<endpackage\\>\\)")
2480 (cond
2481 ((match-end 1)
2482 (verilog-re-search-backward "\\<\\(macro\\)?module\\>" nil 'move))
2483 ((match-end 2)
2484 (verilog-re-search-backward "\\<primitive\\>" nil 'move))
2485 ((match-end 3)
2486 (verilog-re-search-backward "\\<class\\>" nil 'move))
2487 ((match-end 4)
2488 (verilog-re-search-backward "\\<program\\>" nil 'move))
2489 ((match-end 5)
2490 (verilog-re-search-backward "\\<interface\\>" nil 'move))
2491 ((match-end 6)
2492 (verilog-re-search-backward "\\<package\\>" nil 'move))
2494 (goto-char st)
2495 (backward-sexp 1))))
2497 (goto-char st)
2498 (backward-sexp)))))
2500 (defun verilog-forward-sexp ()
2501 (let ((reg)
2502 (md 2)
2503 (st (point))
2504 (nest 'yes))
2505 (if (not (looking-at "\\<"))
2506 (forward-word -1))
2507 (cond
2508 ((verilog-skip-forward-comment-or-string)
2509 (verilog-forward-syntactic-ws))
2510 ((looking-at verilog-beg-block-re-ordered)
2511 (cond
2512 ((match-end 1);
2513 ;; Search forward for matching end
2514 (setq reg "\\(\\<begin\\>\\)\\|\\(\\<end\\>\\)" ))
2515 ((match-end 2)
2516 ;; Search forward for matching endcase
2517 (setq reg "\\(\\<randcase\\>\\|\\(\\<unique\\>\\s-+\\|\\<priority\\>\\s-+\\)?\\<case[xz]?\\>[^:]\\)\\|\\(\\<endcase\\>\\)" )
2518 (setq md 3) ;; ender is third item in regexp
2520 ((match-end 4)
2521 ;; might be "disable fork"
2522 (if (or
2523 (looking-at verilog-disable-fork-re)
2524 (and (looking-at "fork")
2525 (progn
2526 (forward-word -1)
2527 (looking-at verilog-disable-fork-re))))
2528 (progn
2529 (goto-char (match-end 0))
2530 (forward-word 1)
2531 (setq reg nil))
2532 (progn
2533 ;; Search forward for matching join
2534 (setq reg "\\(\\<fork\\>\\)\\|\\(\\<join\\(_any\\|_none\\)?\\>\\)" ))))
2535 ((match-end 6)
2536 ;; Search forward for matching endclass
2537 (setq reg "\\(\\<class\\>\\)\\|\\(\\<endclass\\>\\)" ))
2539 ((match-end 7)
2540 ;; Search forward for matching endtable
2541 (setq reg "\\<endtable\\>" )
2542 (setq nest 'no))
2543 ((match-end 8)
2544 ;; Search forward for matching endspecify
2545 (setq reg "\\(\\<specify\\>\\)\\|\\(\\<endspecify\\>\\)" ))
2546 ((match-end 9)
2547 ;; Search forward for matching endfunction
2548 (setq reg "\\<endfunction\\>" )
2549 (setq nest 'no))
2550 ((match-end 10)
2551 ;; Search forward for matching endfunction
2552 (setq reg "\\<endfunction\\>" )
2553 (setq nest 'no))
2554 ((match-end 14)
2555 ;; Search forward for matching endtask
2556 (setq reg "\\<endtask\\>" )
2557 (setq nest 'no))
2558 ((match-end 15)
2559 ;; Search forward for matching endtask
2560 (setq reg "\\<endtask\\>" )
2561 (setq nest 'no))
2562 ((match-end 19)
2563 ;; Search forward for matching endgenerate
2564 (setq reg "\\(\\<generate\\>\\)\\|\\(\\<endgenerate\\>\\)" ))
2565 ((match-end 20)
2566 ;; Search forward for matching endgroup
2567 (setq reg "\\(\\<covergroup\\>\\)\\|\\(\\<endgroup\\>\\)" ))
2568 ((match-end 21)
2569 ;; Search forward for matching endproperty
2570 (setq reg "\\(\\<property\\>\\)\\|\\(\\<endproperty\\>\\)" ))
2571 ((match-end 25)
2572 ;; Search forward for matching endsequence
2573 (setq reg "\\(\\<\\(rand\\)?sequence\\>\\)\\|\\(\\<endsequence\\>\\)" )
2574 (setq md 3)) ; 3 to get to endsequence in the reg above
2575 ((match-end 27)
2576 ;; Search forward for matching endclocking
2577 (setq reg "\\(\\<clocking\\>\\)\\|\\(\\<endclocking\\>\\)" )))
2578 (if (and reg
2579 (forward-word 1))
2580 (catch 'skip
2581 (if (eq nest 'yes)
2582 (let ((depth 1))
2583 (while (verilog-re-search-forward reg nil 'move)
2584 (cond
2585 ((match-end md) ; the closer in reg, so we are climbing out
2586 (setq depth (1- depth))
2587 (if (= 0 depth) ; we are out!
2588 (throw 'skip 1)))
2589 ((match-end 1) ; the opener in reg, so we are deeper now
2590 (setq depth (1+ depth))))))
2591 (if (verilog-re-search-forward reg nil 'move)
2592 (throw 'skip 1))))))
2594 ((looking-at (concat
2595 "\\(\\<\\(macro\\)?module\\>\\)\\|"
2596 "\\(\\<primitive\\>\\)\\|"
2597 "\\(\\<class\\>\\)\\|"
2598 "\\(\\<program\\>\\)\\|"
2599 "\\(\\<interface\\>\\)\\|"
2600 "\\(\\<package\\>\\)"))
2601 (cond
2602 ((match-end 1)
2603 (verilog-re-search-forward "\\<endmodule\\>" nil 'move))
2604 ((match-end 2)
2605 (verilog-re-search-forward "\\<endprimitive\\>" nil 'move))
2606 ((match-end 3)
2607 (verilog-re-search-forward "\\<endclass\\>" nil 'move))
2608 ((match-end 4)
2609 (verilog-re-search-forward "\\<endprogram\\>" nil 'move))
2610 ((match-end 5)
2611 (verilog-re-search-forward "\\<endinterface\\>" nil 'move))
2612 ((match-end 6)
2613 (verilog-re-search-forward "\\<endpackage\\>" nil 'move))
2615 (goto-char st)
2616 (if (= (following-char) ?\) )
2617 (forward-char 1)
2618 (forward-sexp 1)))))
2620 (goto-char st)
2621 (if (= (following-char) ?\) )
2622 (forward-char 1)
2623 (forward-sexp 1))))))
2625 (defun verilog-declaration-beg ()
2626 (verilog-re-search-backward verilog-declaration-re (bobp) t))
2630 ;; Mode
2632 (defvar verilog-which-tool 1)
2633 ;;;###autoload
2634 (defun verilog-mode ()
2635 "Major mode for editing Verilog code.
2636 \\<verilog-mode-map>
2637 See \\[describe-function] verilog-auto (\\[verilog-auto]) for details on how
2638 AUTOs can improve coding efficiency.
2640 Use \\[verilog-faq] for a pointer to frequently asked questions.
2642 NEWLINE, TAB indents for Verilog code.
2643 Delete converts tabs to spaces as it moves back.
2645 Supports highlighting.
2647 Turning on Verilog mode calls the value of the variable `verilog-mode-hook'
2648 with no args, if that value is non-nil.
2650 Variables controlling indentation/edit style:
2652 variable `verilog-indent-level' (default 3)
2653 Indentation of Verilog statements with respect to containing block.
2654 `verilog-indent-level-module' (default 3)
2655 Absolute indentation of Module level Verilog statements.
2656 Set to 0 to get initial and always statements lined up
2657 on the left side of your screen.
2658 `verilog-indent-level-declaration' (default 3)
2659 Indentation of declarations with respect to containing block.
2660 Set to 0 to get them list right under containing block.
2661 `verilog-indent-level-behavioral' (default 3)
2662 Indentation of first begin in a task or function block
2663 Set to 0 to get such code to lined up underneath the task or
2664 function keyword.
2665 `verilog-indent-level-directive' (default 1)
2666 Indentation of `ifdef/`endif blocks.
2667 `verilog-cexp-indent' (default 1)
2668 Indentation of Verilog statements broken across lines i.e.:
2669 if (a)
2670 begin
2671 `verilog-case-indent' (default 2)
2672 Indentation for case statements.
2673 `verilog-auto-newline' (default nil)
2674 Non-nil means automatically newline after semicolons and the punctuation
2675 mark after an end.
2676 `verilog-auto-indent-on-newline' (default t)
2677 Non-nil means automatically indent line after newline.
2678 `verilog-tab-always-indent' (default t)
2679 Non-nil means TAB in Verilog mode should always reindent the current line,
2680 regardless of where in the line point is when the TAB command is used.
2681 `verilog-indent-begin-after-if' (default t)
2682 Non-nil means to indent begin statements following a preceding
2683 if, else, while, for and repeat statements, if any. Otherwise,
2684 the begin is lined up with the preceding token. If t, you get:
2685 if (a)
2686 begin // amount of indent based on `verilog-cexp-indent'
2687 otherwise you get:
2688 if (a)
2689 begin
2690 `verilog-auto-endcomments' (default t)
2691 Non-nil means a comment /* ... */ is set after the ends which ends
2692 cases, tasks, functions and modules.
2693 The type and name of the object will be set between the braces.
2694 `verilog-minimum-comment-distance' (default 10)
2695 Minimum distance (in lines) between begin and end required before a comment
2696 will be inserted. Setting this variable to zero results in every
2697 end acquiring a comment; the default avoids too many redundant
2698 comments in tight quarters.
2699 `verilog-auto-lineup' (default 'declarations)
2700 List of contexts where auto lineup of code should be done.
2702 Variables controlling other actions:
2704 `verilog-linter' (default surelint)
2705 Unix program to call to run the lint checker. This is the default
2706 command for \\[compile-command] and \\[verilog-auto-save-compile].
2708 See \\[customize] for the complete list of variables.
2710 AUTO expansion functions are, in part:
2712 \\[verilog-auto] Expand AUTO statements.
2713 \\[verilog-delete-auto] Remove the AUTOs.
2714 \\[verilog-inject-auto] Insert AUTOs for the first time.
2716 Some other functions are:
2718 \\[verilog-complete-word] Complete word with appropriate possibilities.
2719 \\[verilog-mark-defun] Mark function.
2720 \\[verilog-beg-of-defun] Move to beginning of current function.
2721 \\[verilog-end-of-defun] Move to end of current function.
2722 \\[verilog-label-be] Label matching begin ... end, fork ... join, etc statements.
2724 \\[verilog-comment-region] Put marked area in a comment.
2725 \\[verilog-uncomment-region] Uncomment an area commented with \\[verilog-comment-region].
2726 \\[verilog-insert-block] Insert begin ... end.
2727 \\[verilog-star-comment] Insert /* ... */.
2729 \\[verilog-sk-always] Insert an always @(AS) begin .. end block.
2730 \\[verilog-sk-begin] Insert a begin .. end block.
2731 \\[verilog-sk-case] Insert a case block, prompting for details.
2732 \\[verilog-sk-for] Insert a for (...) begin .. end block, prompting for details.
2733 \\[verilog-sk-generate] Insert a generate .. endgenerate block.
2734 \\[verilog-sk-header] Insert a header block at the top of file.
2735 \\[verilog-sk-initial] Insert an initial begin .. end block.
2736 \\[verilog-sk-fork] Insert a fork begin .. end .. join block.
2737 \\[verilog-sk-module] Insert a module .. (/*AUTOARG*/);.. endmodule block.
2738 \\[verilog-sk-primitive] Insert a primitive .. (.. );.. endprimitive block.
2739 \\[verilog-sk-repeat] Insert a repeat (..) begin .. end block.
2740 \\[verilog-sk-specify] Insert a specify .. endspecify block.
2741 \\[verilog-sk-task] Insert a task .. begin .. end endtask block.
2742 \\[verilog-sk-while] Insert a while (...) begin .. end block, prompting for details.
2743 \\[verilog-sk-casex] Insert a casex (...) item: begin.. end endcase block, prompting for details.
2744 \\[verilog-sk-casez] Insert a casez (...) item: begin.. end endcase block, prompting for details.
2745 \\[verilog-sk-if] Insert an if (..) begin .. end block.
2746 \\[verilog-sk-else-if] Insert an else if (..) begin .. end block.
2747 \\[verilog-sk-comment] Insert a comment block.
2748 \\[verilog-sk-assign] Insert an assign .. = ..; statement.
2749 \\[verilog-sk-function] Insert a function .. begin .. end endfunction block.
2750 \\[verilog-sk-input] Insert an input declaration, prompting for details.
2751 \\[verilog-sk-output] Insert an output declaration, prompting for details.
2752 \\[verilog-sk-state-machine] Insert a state machine definition, prompting for details.
2753 \\[verilog-sk-inout] Insert an inout declaration, prompting for details.
2754 \\[verilog-sk-wire] Insert a wire declaration, prompting for details.
2755 \\[verilog-sk-reg] Insert a register declaration, prompting for details.
2756 \\[verilog-sk-define-signal] Define signal under point as a register at the top of the module.
2758 All key bindings can be seen in a Verilog-buffer with \\[describe-bindings].
2759 Key bindings specific to `verilog-mode-map' are:
2761 \\{verilog-mode-map}"
2762 (interactive)
2763 (kill-all-local-variables)
2764 (use-local-map verilog-mode-map)
2765 (setq major-mode 'verilog-mode)
2766 (setq mode-name "Verilog")
2767 (setq local-abbrev-table verilog-mode-abbrev-table)
2768 (set (make-local-variable 'beginning-of-defun-function)
2769 'verilog-beg-of-defun)
2770 (set (make-local-variable 'end-of-defun-function)
2771 'verilog-end-of-defun)
2772 (set-syntax-table verilog-mode-syntax-table)
2773 (make-local-variable 'indent-line-function)
2774 (setq indent-line-function 'verilog-indent-line-relative)
2775 (setq comment-indent-function 'verilog-comment-indent)
2776 (make-local-variable 'parse-sexp-ignore-comments)
2777 (setq parse-sexp-ignore-comments nil)
2778 (make-local-variable 'comment-start)
2779 (make-local-variable 'comment-end)
2780 (make-local-variable 'comment-multi-line)
2781 (make-local-variable 'comment-start-skip)
2782 (setq comment-start "// "
2783 comment-end ""
2784 comment-start-skip "/\\*+ *\\|// *"
2785 comment-multi-line nil)
2786 ;; Set up for compilation
2787 (setq verilog-which-tool 1)
2788 (setq verilog-tool 'verilog-linter)
2789 (verilog-set-compile-command)
2790 (when (boundp 'hack-local-variables-hook) ;; Also modify any file-local-variables
2791 (add-hook 'hack-local-variables-hook 'verilog-modify-compile-command t))
2793 ;; Setting up menus
2794 (when (featurep 'xemacs)
2795 (easy-menu-add verilog-stmt-menu)
2796 (easy-menu-add verilog-menu)
2797 (setq mode-popup-menu (cons "Verilog Mode" verilog-stmt-menu)))
2799 ;; Stuff for GNU Emacs
2800 (set (make-local-variable 'font-lock-defaults)
2801 `((verilog-font-lock-keywords verilog-font-lock-keywords-1
2802 verilog-font-lock-keywords-2
2803 verilog-font-lock-keywords-3)
2804 nil nil nil
2805 ,(if (functionp 'syntax-ppss)
2806 ;; verilog-beg-of-defun uses syntax-ppss, and syntax-ppss uses
2807 ;; font-lock-beginning-of-syntax-function, so
2808 ;; font-lock-beginning-of-syntax-function, can't use
2809 ;; verilog-beg-of-defun.
2811 'verilog-beg-of-defun)))
2812 ;;------------------------------------------------------------
2813 ;; now hook in 'verilog-colorize-include-files (eldo-mode.el&spice-mode.el)
2814 ;; all buffer local:
2815 (when (featurep 'xemacs)
2816 (make-local-hook 'font-lock-mode-hook)
2817 (make-local-hook 'font-lock-after-fontify-buffer-hook); doesn't exist in Emacs
2818 (make-local-hook 'after-change-functions))
2819 (add-hook 'font-lock-mode-hook 'verilog-colorize-include-files-buffer t t)
2820 (add-hook 'font-lock-after-fontify-buffer-hook 'verilog-colorize-include-files-buffer t t) ; not in Emacs
2821 (add-hook 'after-change-functions 'verilog-colorize-include-files t t)
2823 ;; Tell imenu how to handle Verilog.
2824 (make-local-variable 'imenu-generic-expression)
2825 (setq imenu-generic-expression verilog-imenu-generic-expression)
2826 ;; Tell which-func-modes that imenu knows about verilog
2827 (when (boundp 'which-function-modes)
2828 (add-to-list 'which-func-modes 'verilog-mode))
2829 ;; hideshow support
2830 (when (boundp 'hs-special-modes-alist)
2831 (unless (assq 'verilog-mode hs-special-modes-alist)
2832 (setq hs-special-modes-alist
2833 (cons '(verilog-mode-mode "\\<begin\\>" "\\<end\\>" nil
2834 verilog-forward-sexp-function)
2835 hs-special-modes-alist))))
2837 ;; Stuff for autos
2838 (add-hook 'write-contents-hooks 'verilog-auto-save-check) ; already local
2839 (run-hooks 'verilog-mode-hook))
2843 ;; Electric functions
2845 (defun electric-verilog-terminate-line (&optional arg)
2846 "Terminate line and indent next line.
2847 With optional ARG, remove existing end of line comments."
2848 (interactive)
2849 ;; before that see if we are in a comment
2850 (let ((state (save-excursion (verilog-syntax-ppss))))
2851 (cond
2852 ((nth 7 state) ; Inside // comment
2853 (if (eolp)
2854 (progn
2855 (delete-horizontal-space)
2856 (newline))
2857 (progn
2858 (newline)
2859 (insert "// ")
2860 (beginning-of-line)))
2861 (verilog-indent-line))
2862 ((nth 4 state) ; Inside any comment (hence /**/)
2863 (newline)
2864 (verilog-more-comment))
2865 ((eolp)
2866 ;; First, check if current line should be indented
2867 (if (save-excursion
2868 (delete-horizontal-space)
2869 (beginning-of-line)
2870 (skip-chars-forward " \t")
2871 (if (looking-at verilog-auto-end-comment-lines-re)
2872 (let ((indent-str (verilog-indent-line)))
2873 ;; Maybe we should set some endcomments
2874 (if verilog-auto-endcomments
2875 (verilog-set-auto-endcomments indent-str arg))
2876 (end-of-line)
2877 (delete-horizontal-space)
2878 (if arg
2880 (newline))
2881 nil)
2882 (progn
2883 (end-of-line)
2884 (delete-horizontal-space)
2885 't)))
2886 ;; see if we should line up assignments
2887 (progn
2888 (if (or (eq 'all verilog-auto-lineup)
2889 (eq 'assignments verilog-auto-lineup))
2890 (verilog-pretty-expr t "\\(<\\|:\\)?=" ))
2891 (newline))
2892 (forward-line 1))
2893 ;; Indent next line
2894 (if verilog-auto-indent-on-newline
2895 (verilog-indent-line)))
2897 (newline)))))
2899 (defun electric-verilog-terminate-and-indent ()
2900 "Insert a newline and indent for the next statement."
2901 (interactive)
2902 (electric-verilog-terminate-line 1))
2904 (defun electric-verilog-semi ()
2905 "Insert `;' character and reindent the line."
2906 (interactive)
2907 (verilog-insert-last-command-event)
2909 (if (or (verilog-in-comment-or-string-p)
2910 (verilog-in-escaped-name-p))
2912 (save-excursion
2913 (beginning-of-line)
2914 (verilog-forward-ws&directives)
2915 (verilog-indent-line))
2916 (if (and verilog-auto-newline
2917 (not (verilog-parenthesis-depth)))
2918 (electric-verilog-terminate-line))))
2920 (defun electric-verilog-semi-with-comment ()
2921 "Insert `;' character, reindent the line and indent for comment."
2922 (interactive)
2923 (insert "\;")
2924 (save-excursion
2925 (beginning-of-line)
2926 (verilog-indent-line))
2927 (indent-for-comment))
2929 (defun electric-verilog-colon ()
2930 "Insert `:' and do all indentations except line indent on this line."
2931 (interactive)
2932 (verilog-insert-last-command-event)
2933 ;; Do nothing if within string.
2934 (if (or
2935 (verilog-within-string)
2936 (not (verilog-in-case-region-p)))
2938 (save-excursion
2939 (let ((p (point))
2940 (lim (progn (verilog-beg-of-statement) (point))))
2941 (goto-char p)
2942 (verilog-backward-case-item lim)
2943 (verilog-indent-line)))
2944 ;; (let ((verilog-tab-always-indent nil))
2945 ;; (verilog-indent-line))
2948 ;;(defun electric-verilog-equal ()
2949 ;; "Insert `=', and do indentation if within block."
2950 ;; (interactive)
2951 ;; (verilog-insert-last-command-event)
2952 ;; Could auto line up expressions, but not yet
2953 ;; (if (eq (car (verilog-calculate-indent)) 'block)
2954 ;; (let ((verilog-tab-always-indent nil))
2955 ;; (verilog-indent-command)))
2956 ;; )
2958 (defun electric-verilog-tick ()
2959 "Insert back-tick, and indent to column 0 if this is a CPP directive."
2960 (interactive)
2961 (verilog-insert-last-command-event)
2962 (save-excursion
2963 (if (verilog-in-directive-p)
2964 (verilog-indent-line))))
2966 (defun electric-verilog-tab ()
2967 "Function called when TAB is pressed in Verilog mode."
2968 (interactive)
2969 ;; If verilog-tab-always-indent, indent the beginning of the line.
2970 (cond
2971 ;; The region is active, indent it.
2972 ((and (region-active-p)
2973 (not (eq (region-beginning) (region-end))))
2974 (indent-region (region-beginning) (region-end) nil))
2975 ((or verilog-tab-always-indent
2976 (save-excursion
2977 (skip-chars-backward " \t")
2978 (bolp)))
2979 (let* ((oldpnt (point))
2980 (boi-point
2981 (save-excursion
2982 (beginning-of-line)
2983 (skip-chars-forward " \t")
2984 (verilog-indent-line)
2985 (back-to-indentation)
2986 (point))))
2987 (if (< (point) boi-point)
2988 (back-to-indentation)
2989 (cond ((not verilog-tab-to-comment))
2990 ((not (eolp))
2991 (end-of-line))
2993 (indent-for-comment)
2994 (when (and (eolp) (= oldpnt (point)))
2995 ; kill existing comment
2996 (beginning-of-line)
2997 (re-search-forward comment-start-skip oldpnt 'move)
2998 (goto-char (match-beginning 0))
2999 (skip-chars-backward " \t")
3000 (kill-region (point) oldpnt)))))))
3001 (t (progn (insert "\t")))))
3006 ;; Interactive functions
3009 (defun verilog-indent-buffer ()
3010 "Indent-region the entire buffer as Verilog code.
3011 To call this from the command line, see \\[verilog-batch-indent]."
3012 (interactive)
3013 (verilog-mode)
3014 (indent-region (point-min) (point-max) nil))
3016 (defun verilog-insert-block ()
3017 "Insert Verilog begin ... end; block in the code with right indentation."
3018 (interactive)
3019 (verilog-indent-line)
3020 (insert "begin")
3021 (electric-verilog-terminate-line)
3022 (save-excursion
3023 (electric-verilog-terminate-line)
3024 (insert "end")
3025 (beginning-of-line)
3026 (verilog-indent-line)))
3028 (defun verilog-star-comment ()
3029 "Insert Verilog star comment at point."
3030 (interactive)
3031 (verilog-indent-line)
3032 (insert "/*")
3033 (save-excursion
3034 (newline)
3035 (insert " */"))
3036 (newline)
3037 (insert " * "))
3039 (defun verilog-insert-1 (fmt max)
3040 "Use format string FMT to insert integers 0 to MAX - 1.
3041 Inserts one integer per line, at the current column. Stops early
3042 if it reaches the end of the buffer."
3043 (let ((col (current-column))
3044 (n 0))
3045 (save-excursion
3046 (while (< n max)
3047 (insert (format fmt n))
3048 (forward-line 1)
3049 ;; Note that this function does not bother to check for lines
3050 ;; shorter than col.
3051 (if (eobp)
3052 (setq n max)
3053 (setq n (1+ n))
3054 (move-to-column col))))))
3056 (defun verilog-insert-indices (max)
3057 "Insert a set of indices into a rectangle.
3058 The upper left corner is defined by point. Indices begin with 0
3059 and extend to the MAX - 1. If no prefix arg is given, the user
3060 is prompted for a value. The indices are surrounded by square
3061 brackets \[]. For example, the following code with the point
3062 located after the first 'a' gives:
3064 a = b a[ 0] = b
3065 a = b a[ 1] = b
3066 a = b a[ 2] = b
3067 a = b a[ 3] = b
3068 a = b ==> insert-indices ==> a[ 4] = b
3069 a = b a[ 5] = b
3070 a = b a[ 6] = b
3071 a = b a[ 7] = b
3072 a = b a[ 8] = b"
3074 (interactive "NMAX: ")
3075 (verilog-insert-1 "[%3d]" max))
3077 (defun verilog-generate-numbers (max)
3078 "Insert a set of generated numbers into a rectangle.
3079 The upper left corner is defined by point. The numbers are padded to three
3080 digits, starting with 000 and extending to (MAX - 1). If no prefix argument
3081 is supplied, then the user is prompted for the MAX number. Consider the
3082 following code fragment:
3084 buf buf buf buf000
3085 buf buf buf buf001
3086 buf buf buf buf002
3087 buf buf buf buf003
3088 buf buf ==> generate-numbers ==> buf buf004
3089 buf buf buf buf005
3090 buf buf buf buf006
3091 buf buf buf buf007
3092 buf buf buf buf008"
3094 (interactive "NMAX: ")
3095 (verilog-insert-1 "%3.3d" max))
3097 (defun verilog-mark-defun ()
3098 "Mark the current Verilog function (or procedure).
3099 This puts the mark at the end, and point at the beginning."
3100 (interactive)
3101 (if (featurep 'xemacs)
3102 (progn
3103 (push-mark (point))
3104 (verilog-end-of-defun)
3105 (push-mark (point))
3106 (verilog-beg-of-defun)
3107 (if (fboundp 'zmacs-activate-region)
3108 (zmacs-activate-region)))
3109 (mark-defun)))
3111 (defun verilog-comment-region (start end)
3112 ; checkdoc-params: (start end)
3113 "Put the region into a Verilog comment.
3114 The comments that are in this area are \"deformed\":
3115 `*)' becomes `!(*' and `}' becomes `!{'.
3116 These deformed comments are returned to normal if you use
3117 \\[verilog-uncomment-region] to undo the commenting.
3119 The commented area starts with `verilog-exclude-str-start', and ends with
3120 `verilog-exclude-str-end'. But if you change these variables,
3121 \\[verilog-uncomment-region] won't recognize the comments."
3122 (interactive "r")
3123 (save-excursion
3124 ;; Insert start and endcomments
3125 (goto-char end)
3126 (if (and (save-excursion (skip-chars-forward " \t") (eolp))
3127 (not (save-excursion (skip-chars-backward " \t") (bolp))))
3128 (forward-line 1)
3129 (beginning-of-line))
3130 (insert verilog-exclude-str-end)
3131 (setq end (point))
3132 (newline)
3133 (goto-char start)
3134 (beginning-of-line)
3135 (insert verilog-exclude-str-start)
3136 (newline)
3137 ;; Replace end-comments within commented area
3138 (goto-char end)
3139 (save-excursion
3140 (while (re-search-backward "\\*/" start t)
3141 (replace-match "*-/" t t)))
3142 (save-excursion
3143 (let ((s+1 (1+ start)))
3144 (while (re-search-backward "/\\*" s+1 t)
3145 (replace-match "/-*" t t))))))
3147 (defun verilog-uncomment-region ()
3148 "Uncomment a commented area; change deformed comments back to normal.
3149 This command does nothing if the pointer is not in a commented
3150 area. See also `verilog-comment-region'."
3151 (interactive)
3152 (save-excursion
3153 (let ((start (point))
3154 (end (point)))
3155 ;; Find the boundaries of the comment
3156 (save-excursion
3157 (setq start (progn (search-backward verilog-exclude-str-start nil t)
3158 (point)))
3159 (setq end (progn (search-forward verilog-exclude-str-end nil t)
3160 (point))))
3161 ;; Check if we're really inside a comment
3162 (if (or (equal start (point)) (<= end (point)))
3163 (message "Not standing within commented area.")
3164 (progn
3165 ;; Remove endcomment
3166 (goto-char end)
3167 (beginning-of-line)
3168 (let ((pos (point)))
3169 (end-of-line)
3170 (delete-region pos (1+ (point))))
3171 ;; Change comments back to normal
3172 (save-excursion
3173 (while (re-search-backward "\\*-/" start t)
3174 (replace-match "*/" t t)))
3175 (save-excursion
3176 (while (re-search-backward "/-\\*" start t)
3177 (replace-match "/*" t t)))
3178 ;; Remove start comment
3179 (goto-char start)
3180 (beginning-of-line)
3181 (let ((pos (point)))
3182 (end-of-line)
3183 (delete-region pos (1+ (point)))))))))
3185 (defun verilog-beg-of-defun ()
3186 "Move backward to the beginning of the current function or procedure."
3187 (interactive)
3188 (verilog-re-search-backward verilog-defun-re nil 'move))
3190 (defun verilog-end-of-defun ()
3191 "Move forward to the end of the current function or procedure."
3192 (interactive)
3193 (verilog-re-search-forward verilog-end-defun-re nil 'move))
3195 (defun verilog-get-beg-of-defun (&optional warn)
3196 (save-excursion
3197 (cond ((verilog-re-search-forward-quick verilog-defun-re nil t)
3198 (point))
3200 (error "%s: Can't find module beginning" (verilog-point-text))
3201 (point-max)))))
3202 (defun verilog-get-end-of-defun (&optional warn)
3203 (save-excursion
3204 (cond ((verilog-re-search-forward-quick verilog-end-defun-re nil t)
3205 (point))
3207 (error "%s: Can't find endmodule" (verilog-point-text))
3208 (point-max)))))
3210 (defun verilog-label-be (&optional arg)
3211 "Label matching begin ... end, fork ... join and case ... endcase statements.
3212 With ARG, first kill any existing labels."
3213 (interactive)
3214 (let ((cnt 0)
3215 (oldpos (point))
3216 (b (progn
3217 (verilog-beg-of-defun)
3218 (point-marker)))
3219 (e (progn
3220 (verilog-end-of-defun)
3221 (point-marker))))
3222 (goto-char (marker-position b))
3223 (if (> (- e b) 200)
3224 (message "Relabeling module..."))
3225 (while (and
3226 (> (marker-position e) (point))
3227 (verilog-re-search-forward
3228 (concat
3229 "\\<end\\(\\(function\\)\\|\\(task\\)\\|\\(module\\)\\|\\(primitive\\)\\|\\(interface\\)\\|\\(package\\)\\|\\(case\\)\\)?\\>"
3230 "\\|\\(`endif\\)\\|\\(`else\\)")
3231 nil 'move))
3232 (goto-char (match-beginning 0))
3233 (let ((indent-str (verilog-indent-line)))
3234 (verilog-set-auto-endcomments indent-str 't)
3235 (end-of-line)
3236 (delete-horizontal-space))
3237 (setq cnt (1+ cnt))
3238 (if (= 9 (% cnt 10))
3239 (message "%d..." cnt)))
3240 (goto-char oldpos)
3241 (if (or
3242 (> (- e b) 200)
3243 (> cnt 20))
3244 (message "%d lines auto commented" cnt))))
3246 (defun verilog-beg-of-statement ()
3247 "Move backward to beginning of statement."
3248 (interactive)
3249 ;; Move back token by token until we see the end
3250 ;; of some ealier line.
3251 (while
3252 ;; If the current point does not begin a new
3253 ;; statement, as in the character ahead of us is a ';', or SOF
3254 ;; or the string after us unambiguosly starts a statement,
3255 ;; or the token before us unambiguously ends a statement,
3256 ;; then move back a token and test again.
3257 (not (or
3258 (bolp)
3259 (= (preceding-char) ?\;)
3260 (looking-at "\\w+\\W*:\\W*\\(coverpoint\\|cross\\|constraint\\)")
3261 (not (or
3262 (looking-at "\\<")
3263 (forward-word -1)))
3264 (and
3265 (looking-at verilog-complete-reg)
3266 (not (save-excursion
3267 (verilog-backward-token)
3268 (looking-at verilog-extended-complete-re))))
3269 (looking-at verilog-basic-complete-re)
3270 (save-excursion
3271 (verilog-backward-token)
3273 (looking-at verilog-end-block-re)
3274 (looking-at verilog-preprocessor-re)))))
3275 (verilog-backward-syntactic-ws)
3276 (verilog-backward-token))
3277 ;; Now point is where the previous line ended.
3278 (verilog-forward-syntactic-ws))
3280 (defun verilog-beg-of-statement-1 ()
3281 "Move backward to beginning of statement."
3282 (interactive)
3283 (if (verilog-in-comment-p)
3284 (verilog-backward-syntactic-ws))
3285 (let ((pt (point)))
3286 (catch 'done
3287 (while (not (looking-at verilog-complete-reg))
3288 (setq pt (point))
3289 (verilog-backward-syntactic-ws)
3290 (if (or (bolp)
3291 (= (preceding-char) ?\;))
3292 (progn
3293 (goto-char pt)
3294 (throw 'done t))
3295 (verilog-backward-token))))
3296 (verilog-forward-syntactic-ws)))
3298 ; (while (and
3299 ; (not (looking-at verilog-complete-reg))
3300 ; (not (bolp))
3301 ; (not (= (preceding-char) ?\;)))
3302 ; (verilog-backward-token)
3303 ; (verilog-backward-syntactic-ws)
3304 ; (setq pt (point)))
3305 ; (goto-char pt)
3306 ; ;(verilog-forward-syntactic-ws)
3308 (defun verilog-end-of-statement ()
3309 "Move forward to end of current statement."
3310 (interactive)
3311 (let ((nest 0) pos)
3312 (cond
3313 ((verilog-in-directive-p)
3314 (forward-line 1)
3315 (backward-char 1))
3317 ((looking-at verilog-beg-block-re)
3318 (verilog-forward-sexp))
3320 ((equal (char-after) ?\})
3321 (forward-char))
3323 ;; Skip to end of statement
3324 ((condition-case nil
3325 (setq pos
3326 (catch 'found
3327 (while t
3328 (forward-sexp 1)
3329 (verilog-skip-forward-comment-or-string)
3330 (if (eolp)
3331 (forward-line 1))
3332 (cond ((looking-at "[ \t]*;")
3333 (skip-chars-forward "^;")
3334 (forward-char 1)
3335 (throw 'found (point)))
3336 ((save-excursion
3337 (forward-sexp -1)
3338 (looking-at verilog-beg-block-re))
3339 (goto-char (match-beginning 0))
3340 (throw 'found nil))
3341 ((looking-at "[ \t]*)")
3342 (throw 'found (point)))
3343 ((eobp)
3344 (throw 'found (point)))
3348 (error nil))
3349 (if (not pos)
3350 ;; Skip a whole block
3351 (catch 'found
3352 (while t
3353 (verilog-re-search-forward verilog-end-statement-re nil 'move)
3354 (setq nest (if (match-end 1)
3355 (1+ nest)
3356 (1- nest)))
3357 (cond ((eobp)
3358 (throw 'found (point)))
3359 ((= 0 nest)
3360 (throw 'found (verilog-end-of-statement))))))
3361 pos)))))
3363 (defun verilog-in-case-region-p ()
3364 "Return true if in a case region.
3365 More specifically, point @ in the line foo : @ begin"
3366 (interactive)
3367 (save-excursion
3368 (if (and
3369 (progn (verilog-forward-syntactic-ws)
3370 (looking-at "\\<begin\\>"))
3371 (progn (verilog-backward-syntactic-ws)
3372 (= (preceding-char) ?\:)))
3373 (catch 'found
3374 (let ((nest 1))
3375 (while t
3376 (verilog-re-search-backward
3377 (concat "\\(\\<module\\>\\)\\|\\(\\<randcase\\>\\|\\<case[xz]?\\>[^:]\\)\\|"
3378 "\\(\\<endcase\\>\\)\\>")
3379 nil 'move)
3380 (cond
3381 ((match-end 3)
3382 (setq nest (1+ nest)))
3383 ((match-end 2)
3384 (if (= nest 1)
3385 (throw 'found 1))
3386 (setq nest (1- nest)))
3388 (throw 'found (= nest 0)))))))
3389 nil)))
3390 (defun verilog-in-struct-region-p ()
3391 "Return true if in a struct region.
3392 More specifically, in a list after a struct|union keyword."
3393 (interactive)
3394 (save-excursion
3395 (let* ((state (verilog-syntax-ppss))
3396 (depth (nth 0 state)))
3397 (if depth
3398 (progn (backward-up-list depth)
3399 (verilog-beg-of-statement)
3400 (looking-at "\\<typedef\\>?\\s-*\\<struct\\|union\\>"))))))
3402 (defun verilog-in-generate-region-p ()
3403 "Return true if in a generate region.
3404 More specifically, after a generate and before an endgenerate."
3405 (interactive)
3406 (let ((nest 1))
3407 (save-excursion
3408 (catch 'done
3409 (while (and
3410 (/= nest 0)
3411 (verilog-re-search-backward
3412 "\\<\\(module\\)\\|\\(generate\\)\\|\\(endgenerate\\)\\>" nil 'move)
3413 (cond
3414 ((match-end 1) ; module - we have crawled out
3415 (throw 'done 1))
3416 ((match-end 2) ; generate
3417 (setq nest (1- nest)))
3418 ((match-end 3) ; endgenerate
3419 (setq nest (1+ nest))))))))
3420 (= nest 0) )) ; return nest
3422 (defun verilog-in-fork-region-p ()
3423 "Return true if between a fork and join."
3424 (interactive)
3425 (let ((lim (save-excursion (verilog-beg-of-defun) (point)))
3426 (nest 1))
3427 (save-excursion
3428 (while (and
3429 (/= nest 0)
3430 (verilog-re-search-backward "\\<\\(fork\\)\\|\\(join\\(_any\\|_none\\)?\\)\\>" lim 'move)
3431 (cond
3432 ((match-end 1) ; fork
3433 (setq nest (1- nest)))
3434 ((match-end 2) ; join
3435 (setq nest (1+ nest)))))))
3436 (= nest 0) )) ; return nest
3438 (defun verilog-backward-case-item (lim)
3439 "Skip backward to nearest enclosing case item.
3440 Limit search to point LIM."
3441 (interactive)
3442 (let ((str 'nil)
3443 (lim1
3444 (progn
3445 (save-excursion
3446 (verilog-re-search-backward verilog-endcomment-reason-re
3447 lim 'move)
3448 (point)))))
3449 ;; Try to find the real :
3450 (if (save-excursion (search-backward ":" lim1 t))
3451 (let ((colon 0)
3452 b e )
3453 (while
3454 (and
3455 (< colon 1)
3456 (verilog-re-search-backward "\\(\\[\\)\\|\\(\\]\\)\\|\\(:\\)"
3457 lim1 'move))
3458 (cond
3459 ((match-end 1) ;; [
3460 (setq colon (1+ colon))
3461 (if (>= colon 0)
3462 (error "%s: unbalanced [" (verilog-point-text))))
3463 ((match-end 2) ;; ]
3464 (setq colon (1- colon)))
3466 ((match-end 3) ;; :
3467 (setq colon (1+ colon)))))
3468 ;; Skip back to beginning of case item
3469 (skip-chars-backward "\t ")
3470 (verilog-skip-backward-comment-or-string)
3471 (setq e (point))
3472 (setq b
3473 (progn
3475 (verilog-re-search-backward
3476 "\\<\\(case[zx]?\\)\\>\\|;\\|\\<end\\>" nil 'move)
3477 (progn
3478 (cond
3479 ((match-end 1)
3480 (goto-char (match-end 1))
3481 (verilog-forward-ws&directives)
3482 (if (looking-at "(")
3483 (progn
3484 (forward-sexp)
3485 (verilog-forward-ws&directives)))
3486 (point))
3488 (goto-char (match-end 0))
3489 (verilog-forward-ws&directives)
3490 (point))))
3491 (error "Malformed case item"))))
3492 (setq str (buffer-substring b e))
3494 (setq e
3495 (string-match
3496 "[ \t]*\\(\\(\n\\)\\|\\(//\\)\\|\\(/\\*\\)\\)" str))
3497 (setq str (concat (substring str 0 e) "...")))
3498 str)
3499 'nil)))
3503 ;; Other functions
3506 (defun verilog-kill-existing-comment ()
3507 "Kill auto comment on this line."
3508 (save-excursion
3509 (let* (
3510 (e (progn
3511 (end-of-line)
3512 (point)))
3513 (b (progn
3514 (beginning-of-line)
3515 (search-forward "//" e t))))
3516 (if b
3517 (delete-region (- b 2) e)))))
3519 (defconst verilog-directive-nest-re
3520 (concat "\\(`else\\>\\)\\|"
3521 "\\(`endif\\>\\)\\|"
3522 "\\(`if\\>\\)\\|"
3523 "\\(`ifdef\\>\\)\\|"
3524 "\\(`ifndef\\>\\)"))
3525 (defun verilog-set-auto-endcomments (indent-str kill-existing-comment)
3526 "Add ending comment with given INDENT-STR.
3527 With KILL-EXISTING-COMMENT, remove what was there before.
3528 Insert `// case: 7 ' or `// NAME ' on this line if appropriate.
3529 Insert `// case expr ' if this line ends a case block.
3530 Insert `// ifdef FOO ' if this line ends code conditional on FOO.
3531 Insert `// NAME ' if this line ends a function, task, module,
3532 primitive or interface named NAME."
3533 (save-excursion
3534 (cond
3535 (; Comment close preprocessor directives
3536 (and
3537 (looking-at "\\(`endif\\)\\|\\(`else\\)")
3538 (or kill-existing-comment
3539 (not (save-excursion
3540 (end-of-line)
3541 (search-backward "//" (verilog-get-beg-of-line) t)))))
3542 (let ((nest 1) b e
3544 (else (if (match-end 2) "!" " ")))
3545 (end-of-line)
3546 (if kill-existing-comment
3547 (verilog-kill-existing-comment))
3548 (delete-horizontal-space)
3549 (save-excursion
3550 (backward-sexp 1)
3551 (while (and (/= nest 0)
3552 (verilog-re-search-backward verilog-directive-nest-re nil 'move))
3553 (cond
3554 ((match-end 1) ; `else
3555 (if (= nest 1)
3556 (setq else "!")))
3557 ((match-end 2) ; `endif
3558 (setq nest (1+ nest)))
3559 ((match-end 3) ; `if
3560 (setq nest (1- nest)))
3561 ((match-end 4) ; `ifdef
3562 (setq nest (1- nest)))
3563 ((match-end 5) ; `ifndef
3564 (setq nest (1- nest)))))
3565 (if (match-end 0)
3566 (setq
3567 m (buffer-substring
3568 (match-beginning 0)
3569 (match-end 0))
3570 b (progn
3571 (skip-chars-forward "^ \t")
3572 (verilog-forward-syntactic-ws)
3573 (point))
3574 e (progn
3575 (skip-chars-forward "a-zA-Z0-9_")
3576 (point)))))
3577 (if b
3578 (if (> (count-lines (point) b) verilog-minimum-comment-distance)
3579 (insert (concat " // " else m " " (buffer-substring b e))))
3580 (progn
3581 (insert " // unmatched `else or `endif")
3582 (ding 't)))))
3584 (; Comment close case/class/function/task/module and named block
3585 (and (looking-at "\\<end")
3586 (or kill-existing-comment
3587 (not (save-excursion
3588 (end-of-line)
3589 (search-backward "//" (verilog-get-beg-of-line) t)))))
3590 (let ((type (car indent-str)))
3591 (unless (eq type 'declaration)
3592 (unless (looking-at (concat "\\(" verilog-end-block-ordered-re "\\)[ \t]*:")) ;; ignore named ends
3593 (if (looking-at verilog-end-block-ordered-re)
3594 (cond
3595 (;- This is a case block; search back for the start of this case
3596 (match-end 1) ;; of verilog-end-block-ordered-re
3598 (let ((err 't)
3599 (str "UNMATCHED!!"))
3600 (save-excursion
3601 (verilog-leap-to-head)
3602 (cond
3603 ((looking-at "\\<randcase\\>")
3604 (setq str "randcase")
3605 (setq err nil))
3606 ((looking-at "\\(\\(unique\\s-+\\|priority\\s-+\\)?case[xz]?\\)")
3607 (goto-char (match-end 0))
3608 (setq str (concat (match-string 0) " " (verilog-get-expr)))
3609 (setq err nil))
3611 (end-of-line)
3612 (if kill-existing-comment
3613 (verilog-kill-existing-comment))
3614 (delete-horizontal-space)
3615 (insert (concat " // " str ))
3616 (if err (ding 't))))
3618 (;- This is a begin..end block
3619 (match-end 2) ;; of verilog-end-block-ordered-re
3620 (let ((str " // UNMATCHED !!")
3621 (err 't)
3622 (here (point))
3623 there
3624 cntx)
3625 (save-excursion
3626 (verilog-leap-to-head)
3627 (setq there (point))
3628 (if (not (match-end 0))
3629 (progn
3630 (goto-char here)
3631 (end-of-line)
3632 (if kill-existing-comment
3633 (verilog-kill-existing-comment))
3634 (delete-horizontal-space)
3635 (insert str)
3636 (ding 't))
3637 (let ((lim
3638 (save-excursion (verilog-beg-of-defun) (point)))
3639 (here (point)))
3640 (cond
3641 (;-- handle named block differently
3642 (looking-at verilog-named-block-re)
3643 (search-forward ":")
3644 (setq there (point))
3645 (setq str (verilog-get-expr))
3646 (setq err nil)
3647 (setq str (concat " // block: " str )))
3649 ((verilog-in-case-region-p) ;-- handle case item differently
3650 (goto-char here)
3651 (setq str (verilog-backward-case-item lim))
3652 (setq there (point))
3653 (setq err nil)
3654 (setq str (concat " // case: " str )))
3656 (;- try to find "reason" for this begin
3657 (cond
3659 (eq here (progn
3660 (verilog-backward-token)
3661 (verilog-beg-of-statement-1)
3662 (point)))
3663 (setq err nil)
3664 (setq str ""))
3665 ((looking-at verilog-endcomment-reason-re)
3666 (setq there (match-end 0))
3667 (setq cntx (concat (match-string 0) " "))
3668 (cond
3669 (;- begin
3670 (match-end 1)
3671 (setq err nil)
3672 (save-excursion
3673 (if (and (verilog-continued-line)
3674 (looking-at "\\<repeat\\>\\|\\<wait\\>\\|\\<always\\>"))
3675 (progn
3676 (goto-char (match-end 0))
3677 (setq there (point))
3678 (setq str
3679 (concat " // " (match-string 0) " " (verilog-get-expr))))
3680 (setq str ""))))
3682 (;- else
3683 (match-end 2)
3684 (let ((nest 0)
3685 ( reg "\\(\\<begin\\>\\)\\|\\(\\<end\\>\\)\\|\\(\\<if\\>\\)"))
3686 (catch 'skip
3687 (while (verilog-re-search-backward reg nil 'move)
3688 (cond
3689 ((match-end 1) ; begin
3690 (setq nest (1- nest)))
3691 ((match-end 2) ; end
3692 (setq nest (1+ nest)))
3693 ((match-end 3)
3694 (if (= 0 nest)
3695 (progn
3696 (goto-char (match-end 0))
3697 (setq there (point))
3698 (setq err nil)
3699 (setq str (verilog-get-expr))
3700 (setq str (concat " // else: !if" str ))
3701 (throw 'skip 1)))))))))
3703 (;- end else
3704 (match-end 3)
3705 (goto-char there)
3706 (let ((nest 0)
3707 (reg "\\(\\<begin\\>\\)\\|\\(\\<end\\>\\)\\|\\(\\<if\\>\\)"))
3708 (catch 'skip
3709 (while (verilog-re-search-backward reg nil 'move)
3710 (cond
3711 ((match-end 1) ; begin
3712 (setq nest (1- nest)))
3713 ((match-end 2) ; end
3714 (setq nest (1+ nest)))
3715 ((match-end 3)
3716 (if (= 0 nest)
3717 (progn
3718 (goto-char (match-end 0))
3719 (setq there (point))
3720 (setq err nil)
3721 (setq str (verilog-get-expr))
3722 (setq str (concat " // else: !if" str ))
3723 (throw 'skip 1)))))))))
3724 (; always_comb, always_ff, always_latch
3725 (or (match-end 4) (match-end 5) (match-end 6))
3726 (goto-char (match-end 0))
3727 (setq there (point))
3728 (setq err nil)
3729 (setq str (concat " // " cntx )))
3731 (;- task/function/initial et cetera
3733 (match-end 0)
3734 (goto-char (match-end 0))
3735 (setq there (point))
3736 (setq err nil)
3737 (setq str (concat " // " cntx (verilog-get-expr))))
3739 (;-- otherwise...
3740 (setq str " // auto-endcomment confused "))))
3742 ((and
3743 (verilog-in-case-region-p) ;-- handle case item differently
3744 (progn
3745 (setq there (point))
3746 (goto-char here)
3747 (setq str (verilog-backward-case-item lim))))
3748 (setq err nil)
3749 (setq str (concat " // case: " str )))
3751 ((verilog-in-fork-region-p)
3752 (setq err nil)
3753 (setq str " // fork branch" ))
3755 ((looking-at "\\<end\\>")
3756 ;; HERE
3757 (forward-word 1)
3758 (verilog-forward-syntactic-ws)
3759 (setq err nil)
3760 (setq str (verilog-get-expr))
3761 (setq str (concat " // " cntx str )))
3763 ))))
3764 (goto-char here)
3765 (end-of-line)
3766 (if kill-existing-comment
3767 (verilog-kill-existing-comment))
3768 (delete-horizontal-space)
3769 (if (or err
3770 (> (count-lines here there) verilog-minimum-comment-distance))
3771 (insert str))
3772 (if err (ding 't))
3773 ))))
3774 (;- this is endclass, which can be nested
3775 (match-end 11) ;; of verilog-end-block-ordered-re
3776 ;;(goto-char there)
3777 (let ((nest 0)
3778 (reg "\\<\\(class\\)\\|\\(endclass\\)\\|\\(package\\|primitive\\|\\(macro\\)?module\\)\\>")
3779 string)
3780 (save-excursion
3781 (catch 'skip
3782 (while (verilog-re-search-backward reg nil 'move)
3783 (cond
3784 ((match-end 3) ; endclass
3785 (ding 't)
3786 (setq string "unmatched endclass")
3787 (throw 'skip 1))
3789 ((match-end 2) ; endclass
3790 (setq nest (1+ nest)))
3792 ((match-end 1) ; class
3793 (setq nest (1- nest))
3794 (if (< nest 0)
3795 (progn
3796 (goto-char (match-end 0))
3797 (let (b e)
3798 (setq b (progn
3799 (skip-chars-forward "^ \t")
3800 (verilog-forward-ws&directives)
3801 (point))
3802 e (progn
3803 (skip-chars-forward "a-zA-Z0-9_")
3804 (point)))
3805 (setq string (buffer-substring b e)))
3806 (throw 'skip 1))))
3807 ))))
3808 (end-of-line)
3809 (insert (concat " // " string ))))
3811 (;- this is end{function,generate,task,module,primitive,table,generate}
3812 ;- which can not be nested.
3814 (let (string reg (name-re nil))
3815 (end-of-line)
3816 (if kill-existing-comment
3817 (save-match-data
3818 (verilog-kill-existing-comment)))
3819 (delete-horizontal-space)
3820 (backward-sexp)
3821 (cond
3822 ((match-end 5) ;; of verilog-end-block-ordered-re
3823 (setq reg "\\(\\<function\\>\\)\\|\\(\\<\\(endfunction\\|task\\|\\(macro\\)?module\\|primitive\\)\\>\\)")
3824 (setq name-re "\\w+\\s-*(")
3826 ((match-end 6) ;; of verilog-end-block-ordered-re
3827 (setq reg "\\(\\<task\\>\\)\\|\\(\\<\\(endtask\\|function\\|\\(macro\\)?module\\|primitive\\)\\>\\)"))
3828 ((match-end 7) ;; of verilog-end-block-ordered-re
3829 (setq reg "\\(\\<\\(macro\\)?module\\>\\)\\|\\<endmodule\\>"))
3830 ((match-end 8) ;; of verilog-end-block-ordered-re
3831 (setq reg "\\(\\<primitive\\>\\)\\|\\(\\<\\(endprimitive\\|package\\|interface\\|\\(macro\\)?module\\)\\>\\)"))
3832 ((match-end 9) ;; of verilog-end-block-ordered-re
3833 (setq reg "\\(\\<interface\\>\\)\\|\\(\\<\\(endinterface\\|package\\|primitive\\|\\(macro\\)?module\\)\\>\\)"))
3834 ((match-end 10) ;; of verilog-end-block-ordered-re
3835 (setq reg "\\(\\<package\\>\\)\\|\\(\\<\\(endpackage\\|primitive\\|interface\\|\\(macro\\)?module\\)\\>\\)"))
3836 ((match-end 11) ;; of verilog-end-block-ordered-re
3837 (setq reg "\\(\\<class\\>\\)\\|\\(\\<\\(endclass\\|primitive\\|interface\\|\\(macro\\)?module\\)\\>\\)"))
3838 ((match-end 12) ;; of verilog-end-block-ordered-re
3839 (setq reg "\\(\\<covergroup\\>\\)\\|\\(\\<\\(endcovergroup\\|primitive\\|interface\\|\\(macro\\)?module\\)\\>\\)"))
3840 ((match-end 13) ;; of verilog-end-block-ordered-re
3841 (setq reg "\\(\\<program\\>\\)\\|\\(\\<\\(endprogram\\|primitive\\|interface\\|\\(macro\\)?module\\)\\>\\)"))
3842 ((match-end 14) ;; of verilog-end-block-ordered-re
3843 (setq reg "\\(\\<\\(rand\\)?sequence\\>\\)\\|\\(\\<\\(endsequence\\|primitive\\|interface\\|\\(macro\\)?module\\)\\>\\)"))
3844 ((match-end 15) ;; of verilog-end-block-ordered-re
3845 (setq reg "\\(\\<clocking\\>\\)\\|\\<endclocking\\>"))
3847 (t (error "Problem in verilog-set-auto-endcomments")))
3848 (let (b e)
3849 (save-excursion
3850 (verilog-re-search-backward reg nil 'move)
3851 (cond
3852 ((match-end 1)
3853 (setq b (progn
3854 (skip-chars-forward "^ \t")
3855 (verilog-forward-ws&directives)
3856 (if (and name-re (verilog-re-search-forward name-re nil 'move))
3857 (progn
3858 (goto-char (match-beginning 0))
3859 (verilog-forward-ws&directives)))
3860 (point))
3861 e (progn
3862 (skip-chars-forward "a-zA-Z0-9_")
3863 (point)))
3864 (setq string (buffer-substring b e)))
3866 (ding 't)
3867 (setq string "unmatched end(function|task|module|primitive|interface|package|class|clocking)")))))
3868 (end-of-line)
3869 (insert (concat " // " string )))
3870 ))))))))))
3872 (defun verilog-get-expr()
3873 "Grab expression at point, e.g, case ( a | b & (c ^d))."
3874 (let* ((b (progn
3875 (verilog-forward-syntactic-ws)
3876 (skip-chars-forward " \t")
3877 (point)))
3878 (e (let ((par 1))
3879 (cond
3880 ((looking-at "@")
3881 (forward-char 1)
3882 (verilog-forward-syntactic-ws)
3883 (if (looking-at "(")
3884 (progn
3885 (forward-char 1)
3886 (while (and (/= par 0)
3887 (verilog-re-search-forward "\\((\\)\\|\\()\\)" nil 'move))
3888 (cond
3889 ((match-end 1)
3890 (setq par (1+ par)))
3891 ((match-end 2)
3892 (setq par (1- par)))))))
3893 (point))
3894 ((looking-at "(")
3895 (forward-char 1)
3896 (while (and (/= par 0)
3897 (verilog-re-search-forward "\\((\\)\\|\\()\\)" nil 'move))
3898 (cond
3899 ((match-end 1)
3900 (setq par (1+ par)))
3901 ((match-end 2)
3902 (setq par (1- par)))))
3903 (point))
3904 ((looking-at "\\[")
3905 (forward-char 1)
3906 (while (and (/= par 0)
3907 (verilog-re-search-forward "\\(\\[\\)\\|\\(\\]\\)" nil 'move))
3908 (cond
3909 ((match-end 1)
3910 (setq par (1+ par)))
3911 ((match-end 2)
3912 (setq par (1- par)))))
3913 (verilog-forward-syntactic-ws)
3914 (skip-chars-forward "^ \t\n\f")
3915 (point))
3916 ((looking-at "/[/\\*]")
3919 (skip-chars-forward "^: \t\n\f")
3920 (point)))))
3921 (str (buffer-substring b e)))
3922 (if (setq e (string-match "[ \t]*\\(\\(\n\\)\\|\\(//\\)\\|\\(/\\*\\)\\)" str))
3923 (setq str (concat (substring str 0 e) "...")))
3924 str))
3926 (defun verilog-expand-vector ()
3927 "Take a signal vector on the current line and expand it to multiple lines.
3928 Useful for creating tri's and other expanded fields."
3929 (interactive)
3930 (verilog-expand-vector-internal "[" "]"))
3932 (defun verilog-expand-vector-internal (bra ket)
3933 "Given BRA, the start brace and KET, the end brace, expand one line into many lines."
3934 (save-excursion
3935 (forward-line 0)
3936 (let ((signal-string (buffer-substring (point)
3937 (progn
3938 (end-of-line) (point)))))
3939 (if (string-match
3940 (concat "\\(.*\\)"
3941 (regexp-quote bra)
3942 "\\([0-9]*\\)\\(:[0-9]*\\|\\)\\(::[0-9---]*\\|\\)"
3943 (regexp-quote ket)
3944 "\\(.*\\)$") signal-string)
3945 (let* ((sig-head (match-string 1 signal-string))
3946 (vec-start (string-to-number (match-string 2 signal-string)))
3947 (vec-end (if (= (match-beginning 3) (match-end 3))
3948 vec-start
3949 (string-to-number
3950 (substring signal-string (1+ (match-beginning 3))
3951 (match-end 3)))))
3952 (vec-range
3953 (if (= (match-beginning 4) (match-end 4))
3955 (string-to-number
3956 (substring signal-string (+ 2 (match-beginning 4))
3957 (match-end 4)))))
3958 (sig-tail (match-string 5 signal-string))
3959 vec)
3960 ;; Decode vectors
3961 (setq vec nil)
3962 (if (< vec-range 0)
3963 (let ((tmp vec-start))
3964 (setq vec-start vec-end
3965 vec-end tmp
3966 vec-range (- vec-range))))
3967 (if (< vec-end vec-start)
3968 (while (<= vec-end vec-start)
3969 (setq vec (append vec (list vec-start)))
3970 (setq vec-start (- vec-start vec-range)))
3971 (while (<= vec-start vec-end)
3972 (setq vec (append vec (list vec-start)))
3973 (setq vec-start (+ vec-start vec-range))))
3975 ;; Delete current line
3976 (delete-region (point) (progn (forward-line 0) (point)))
3978 ;; Expand vector
3979 (while vec
3980 (insert (concat sig-head bra
3981 (int-to-string (car vec)) ket sig-tail "\n"))
3982 (setq vec (cdr vec)))
3983 (delete-char -1)
3985 )))))
3987 (defun verilog-strip-comments ()
3988 "Strip all comments from the Verilog code."
3989 (interactive)
3990 (goto-char (point-min))
3991 (while (re-search-forward "//" nil t)
3992 (if (verilog-within-string)
3993 (re-search-forward "\"" nil t)
3994 (if (verilog-in-star-comment-p)
3995 (re-search-forward "\*/" nil t)
3996 (let ((bpt (- (point) 2)))
3997 (end-of-line)
3998 (delete-region bpt (point))))))
4000 (goto-char (point-min))
4001 (while (re-search-forward "/\\*" nil t)
4002 (if (verilog-within-string)
4003 (re-search-forward "\"" nil t)
4004 (let ((bpt (- (point) 2)))
4005 (re-search-forward "\\*/")
4006 (delete-region bpt (point))))))
4008 (defun verilog-one-line ()
4009 "Convert structural Verilog instances to occupy one line."
4010 (interactive)
4011 (goto-char (point-min))
4012 (while (re-search-forward "\\([^;]\\)[ \t]*\n[ \t]*" nil t)
4013 (replace-match "\\1 " nil nil)))
4015 (defun verilog-linter-name ()
4016 "Return name of linter, either surelint or verilint."
4017 (let ((compile-word1 (verilog-string-replace-matches "\\s .*$" "" nil nil
4018 compile-command))
4019 (lint-word1 (verilog-string-replace-matches "\\s .*$" "" nil nil
4020 verilog-linter)))
4021 (cond ((equal compile-word1 "surelint") `surelint)
4022 ((equal compile-word1 "verilint") `verilint)
4023 ((equal lint-word1 "surelint") `surelint)
4024 ((equal lint-word1 "verilint") `verilint)
4025 (t `surelint)))) ;; back compatibility
4027 (defun verilog-lint-off ()
4028 "Convert a Verilog linter warning line into a disable statement.
4029 For example:
4030 pci_bfm_null.v, line 46: Unused input: pci_rst_
4031 becomes a comment for the appropriate tool.
4033 The first word of the `compile-command' or `verilog-linter'
4034 variables is used to determine which product is being used.
4036 See \\[verilog-surelint-off] and \\[verilog-verilint-off]."
4037 (interactive)
4038 (let ((linter (verilog-linter-name)))
4039 (cond ((equal linter `surelint)
4040 (verilog-surelint-off))
4041 ((equal linter `verilint)
4042 (verilog-verilint-off))
4043 (t (error "Linter name not set")))))
4045 (defvar compilation-last-buffer)
4046 (defvar next-error-last-buffer)
4048 (defun verilog-surelint-off ()
4049 "Convert a SureLint warning line into a disable statement.
4050 Run from Verilog source window; assumes there is a *compile* buffer
4051 with point set appropriately.
4053 For example:
4054 WARNING [STD-UDDONX]: xx.v, line 8: output out is never assigned.
4055 becomes:
4056 // surefire lint_line_off UDDONX"
4057 (interactive)
4058 (let ((buff (if (boundp 'next-error-last-buffer)
4059 next-error-last-buffer
4060 compilation-last-buffer)))
4061 (when (buffer-live-p buff)
4062 ;; FIXME with-current-buffer?
4063 (save-excursion
4064 (switch-to-buffer buff)
4065 (beginning-of-line)
4066 (when
4067 (looking-at "\\(INFO\\|WARNING\\|ERROR\\) \\[[^-]+-\\([^]]+\\)\\]: \\([^,]+\\), line \\([0-9]+\\): \\(.*\\)$")
4068 (let* ((code (match-string 2))
4069 (file (match-string 3))
4070 (line (match-string 4))
4071 (buffer (get-file-buffer file))
4072 dir filename)
4073 (unless buffer
4074 (progn
4075 (setq buffer
4076 (and (file-exists-p file)
4077 (find-file-noselect file)))
4078 (or buffer
4079 (let* ((pop-up-windows t))
4080 (let ((name (expand-file-name
4081 (read-file-name
4082 (format "Find this error in: (default %s) "
4083 file)
4084 dir file t))))
4085 (if (file-directory-p name)
4086 (setq name (expand-file-name filename name)))
4087 (setq buffer
4088 (and (file-exists-p name)
4089 (find-file-noselect name))))))))
4090 (switch-to-buffer buffer)
4091 (goto-char (point-min))
4092 (forward-line (- (string-to-number line)))
4093 (end-of-line)
4094 (catch 'already
4095 (cond
4096 ((verilog-in-slash-comment-p)
4097 (re-search-backward "//")
4098 (cond
4099 ((looking-at "// surefire lint_off_line ")
4100 (goto-char (match-end 0))
4101 (let ((lim (save-excursion (end-of-line) (point))))
4102 (if (re-search-forward code lim 'move)
4103 (throw 'already t)
4104 (insert (concat " " code)))))
4107 ((verilog-in-star-comment-p)
4108 (re-search-backward "/\*")
4109 (insert (format " // surefire lint_off_line %6s" code )))
4111 (insert (format " // surefire lint_off_line %6s" code ))
4112 )))))))))
4114 (defun verilog-verilint-off ()
4115 "Convert a Verilint warning line into a disable statement.
4117 For example:
4118 (W240) pci_bfm_null.v, line 46: Unused input: pci_rst_
4119 becomes:
4120 //Verilint 240 off // WARNING: Unused input"
4121 (interactive)
4122 (save-excursion
4123 (beginning-of-line)
4124 (when (looking-at "\\(.*\\)([WE]\\([0-9A-Z]+\\)).*,\\s +line\\s +[0-9]+:\\s +\\([^:\n]+\\):?.*$")
4125 (replace-match (format
4126 ;; %3s makes numbers 1-999 line up nicely
4127 "\\1//Verilint %3s off // WARNING: \\3"
4128 (match-string 2)))
4129 (beginning-of-line)
4130 (verilog-indent-line))))
4132 (defun verilog-auto-save-compile ()
4133 "Update automatics with \\[verilog-auto], save the buffer, and compile."
4134 (interactive)
4135 (verilog-auto) ; Always do it for safety
4136 (save-buffer)
4137 (compile compile-command))
4142 ;; Batch
4145 (defmacro verilog-batch-error-wrapper (&rest body)
4146 "Execute BODY and add error prefix to any errors found.
4147 This lets programs calling batch mode to easily extract error messages."
4148 `(condition-case err
4149 (progn ,@body)
4150 (error
4151 (error "%%Error: %s%s" (error-message-string err)
4152 (if (featurep 'xemacs) "\n" ""))))) ;; XEmacs forgets to add a newline
4154 (defun verilog-batch-execute-func (funref)
4155 "Internal processing of a batch command, running FUNREF on all command arguments."
4156 (verilog-batch-error-wrapper
4157 ;; Setting global variables like that is *VERY NASTY* !!! --Stef
4158 ;; However, this function is called only when Emacs is being used as
4159 ;; a standalone language instead of as an editor, so we'll live.
4161 ;; General globals needed
4162 (setq make-backup-files nil)
4163 (setq-default make-backup-files nil)
4164 (setq enable-local-variables t)
4165 (setq enable-local-eval t)
4166 ;; Make sure any sub-files we read get proper mode
4167 (setq-default major-mode 'verilog-mode)
4168 ;; Ditto files already read in
4169 (mapc (lambda (buf)
4170 (when (buffer-file-name buf)
4171 (with-current-buffer buf
4172 (verilog-mode))))
4173 (buffer-list))
4174 ;; Process the files
4175 (mapcar '(lambda (buf)
4176 (when (buffer-file-name buf)
4177 (save-excursion
4178 (if (not (file-exists-p (buffer-file-name buf)))
4179 (error
4180 (concat "File not found: " (buffer-file-name buf))))
4181 (message (concat "Processing " (buffer-file-name buf)))
4182 (set-buffer buf)
4183 (funcall funref)
4184 (save-buffer))))
4185 (buffer-list))))
4187 (defun verilog-batch-auto ()
4188 "For use with --batch, perform automatic expansions as a stand-alone tool.
4189 This sets up the appropriate Verilog mode environment, updates automatics
4190 with \\[verilog-auto] on all command-line files, and saves the buffers.
4191 For proper results, multiple filenames need to be passed on the command
4192 line in bottom-up order."
4193 (unless noninteractive
4194 (error "Use verilog-batch-auto only with --batch")) ;; Otherwise we'd mess up buffer modes
4195 (verilog-batch-execute-func `verilog-auto))
4197 (defun verilog-batch-delete-auto ()
4198 "For use with --batch, perform automatic deletion as a stand-alone tool.
4199 This sets up the appropriate Verilog mode environment, deletes automatics
4200 with \\[verilog-delete-auto] on all command-line files, and saves the buffers."
4201 (unless noninteractive
4202 (error "Use verilog-batch-delete-auto only with --batch")) ;; Otherwise we'd mess up buffer modes
4203 (verilog-batch-execute-func `verilog-delete-auto))
4205 (defun verilog-batch-inject-auto ()
4206 "For use with --batch, perform automatic injection as a stand-alone tool.
4207 This sets up the appropriate Verilog mode environment, injects new automatics
4208 with \\[verilog-inject-auto] on all command-line files, and saves the buffers.
4209 For proper results, multiple filenames need to be passed on the command
4210 line in bottom-up order."
4211 (unless noninteractive
4212 (error "Use verilog-batch-inject-auto only with --batch")) ;; Otherwise we'd mess up buffer modes
4213 (verilog-batch-execute-func `verilog-inject-auto))
4215 (defun verilog-batch-indent ()
4216 "For use with --batch, reindent an a entire file as a stand-alone tool.
4217 This sets up the appropriate Verilog mode environment, calls
4218 \\[verilog-indent-buffer] on all command-line files, and saves the buffers."
4219 (unless noninteractive
4220 (error "Use verilog-batch-indent only with --batch")) ;; Otherwise we'd mess up buffer modes
4221 (verilog-batch-execute-func `verilog-indent-buffer))
4225 ;; Indentation
4227 (defconst verilog-indent-alist
4228 '((block . (+ ind verilog-indent-level))
4229 (case . (+ ind verilog-case-indent))
4230 (cparenexp . (+ ind verilog-indent-level))
4231 (cexp . (+ ind verilog-cexp-indent))
4232 (defun . verilog-indent-level-module)
4233 (declaration . verilog-indent-level-declaration)
4234 (directive . (verilog-calculate-indent-directive))
4235 (tf . verilog-indent-level)
4236 (behavioral . (+ verilog-indent-level-behavioral verilog-indent-level-module))
4237 (statement . ind)
4238 (cpp . 0)
4239 (comment . (verilog-comment-indent))
4240 (unknown . 3)
4241 (string . 0)))
4243 (defun verilog-continued-line-1 (lim)
4244 "Return true if this is a continued line.
4245 Set point to where line starts. Limit search to point LIM."
4246 (let ((continued 't))
4247 (if (eq 0 (forward-line -1))
4248 (progn
4249 (end-of-line)
4250 (verilog-backward-ws&directives lim)
4251 (if (bobp)
4252 (setq continued nil)
4253 (setq continued (verilog-backward-token))))
4254 (setq continued nil))
4255 continued))
4257 (defun verilog-calculate-indent ()
4258 "Calculate the indent of the current Verilog line.
4259 Examine previous lines. Once a line is found that is definitive as to the
4260 type of the current line, return that lines' indent level and its type.
4261 Return a list of two elements: (INDENT-TYPE INDENT-LEVEL)."
4262 (save-excursion
4263 (let* ((starting_position (point))
4264 (par 0)
4265 (begin (looking-at "[ \t]*begin\\>"))
4266 (lim (save-excursion (verilog-re-search-backward "\\(\\<begin\\>\\)\\|\\(\\<module\\>\\)" nil t)))
4267 (type (catch 'nesting
4268 ;; Keep working backwards until we can figure out
4269 ;; what type of statement this is.
4270 ;; Basically we need to figure out
4271 ;; 1) if this is a continuation of the previous line;
4272 ;; 2) are we in a block scope (begin..end)
4274 ;; if we are in a comment, done.
4275 (if (verilog-in-star-comment-p)
4276 (throw 'nesting 'comment))
4278 ;; if we have a directive, done.
4279 (if (save-excursion (beginning-of-line)
4280 (and (looking-at verilog-directive-re-1)
4281 (not (looking-at "[ \t]*`ovm_"))))
4282 (throw 'nesting 'directive))
4283 ;; indent structs as if there were module level
4284 (if (verilog-in-struct-p)
4285 (throw 'nesting 'block))
4287 ;; unless we are in the newfangled coverpoint or constraint blocks
4288 ;; if we are in a parenthesized list, and the user likes to indent these, return.
4289 (if (and
4290 verilog-indent-lists
4291 (verilog-in-paren)
4292 (not (verilog-in-coverage-p))
4294 (progn (setq par 1)
4295 (throw 'nesting 'block)))
4297 ;; See if we are continuing a previous line
4298 (while t
4299 ;; trap out if we crawl off the top of the buffer
4300 (if (bobp) (throw 'nesting 'cpp))
4302 (if (verilog-continued-line-1 lim)
4303 (let ((sp (point)))
4304 (if (and
4305 (not (looking-at verilog-complete-reg))
4306 (verilog-continued-line-1 lim))
4307 (progn (goto-char sp)
4308 (throw 'nesting 'cexp))
4310 (goto-char sp))
4312 (if (and begin
4313 (not verilog-indent-begin-after-if)
4314 (looking-at verilog-no-indent-begin-re))
4315 (progn
4316 (beginning-of-line)
4317 (skip-chars-forward " \t")
4318 (throw 'nesting 'statement))
4319 (progn
4320 (throw 'nesting 'cexp))))
4321 ;; not a continued line
4322 (goto-char starting_position))
4324 (if (looking-at "\\<else\\>")
4325 ;; search back for governing if, striding across begin..end pairs
4326 ;; appropriately
4327 (let ((elsec 1))
4328 (while (verilog-re-search-backward verilog-ends-re nil 'move)
4329 (cond
4330 ((match-end 1) ; else, we're in deep
4331 (setq elsec (1+ elsec)))
4332 ((match-end 2) ; if
4333 (setq elsec (1- elsec))
4334 (if (= 0 elsec)
4335 (if verilog-align-ifelse
4336 (throw 'nesting 'statement)
4337 (progn ;; back up to first word on this line
4338 (beginning-of-line)
4339 (verilog-forward-syntactic-ws)
4340 (throw 'nesting 'statement)))))
4341 (t ; endblock
4342 ; try to leap back to matching outward block by striding across
4343 ; indent level changing tokens then immediately
4344 ; previous line governs indentation.
4345 (let (( reg) (nest 1))
4346 ;; verilog-ends => else|if|end|join(_any|_none|)|endcase|endclass|endtable|endspecify|endfunction|endtask|endgenerate|endgroup
4347 (cond
4348 ((match-end 3) ; end
4349 ;; Search back for matching begin
4350 (setq reg "\\(\\<begin\\>\\)\\|\\(\\<end\\>\\)" ))
4351 ((match-end 4) ; endcase
4352 ;; Search back for matching case
4353 (setq reg "\\(\\<randcase\\>\\|\\<case[xz]?\\>[^:]\\)\\|\\(\\<endcase\\>\\)" ))
4354 ((match-end 5) ; endfunction
4355 ;; Search back for matching function
4356 (setq reg "\\(\\<function\\>\\)\\|\\(\\<endfunction\\>\\)" ))
4357 ((match-end 6) ; endtask
4358 ;; Search back for matching task
4359 (setq reg "\\(\\<task\\>\\)\\|\\(\\<endtask\\>\\)" ))
4360 ((match-end 7) ; endspecify
4361 ;; Search back for matching specify
4362 (setq reg "\\(\\<specify\\>\\)\\|\\(\\<endspecify\\>\\)" ))
4363 ((match-end 8) ; endtable
4364 ;; Search back for matching table
4365 (setq reg "\\(\\<table\\>\\)\\|\\(\\<endtable\\>\\)" ))
4366 ((match-end 9) ; endgenerate
4367 ;; Search back for matching generate
4368 (setq reg "\\(\\<generate\\>\\)\\|\\(\\<endgenerate\\>\\)" ))
4369 ((match-end 10) ; joins
4370 ;; Search back for matching fork
4371 (setq reg "\\(\\<fork\\>\\)\\|\\(\\<join\\(_any\\|none\\)?\\>\\)" ))
4372 ((match-end 11) ; class
4373 ;; Search back for matching class
4374 (setq reg "\\(\\<class\\>\\)\\|\\(\\<endclass\\>\\)" ))
4375 ((match-end 12) ; covergroup
4376 ;; Search back for matching covergroup
4377 (setq reg "\\(\\<covergroup\\>\\)\\|\\(\\<endgroup\\>\\)" )))
4378 (catch 'skip
4379 (while (verilog-re-search-backward reg nil 'move)
4380 (cond
4381 ((match-end 1) ; begin
4382 (setq nest (1- nest))
4383 (if (= 0 nest)
4384 (throw 'skip 1)))
4385 ((match-end 2) ; end
4386 (setq nest (1+ nest)))))
4387 )))))))
4388 (throw 'nesting (verilog-calc-1)))
4389 );; catch nesting
4390 );; type
4392 ;; Return type of block and indent level.
4393 (if (not type)
4394 (setq type 'cpp))
4395 (if (> par 0) ; Unclosed Parenthesis
4396 (list 'cparenexp par)
4397 (cond
4398 ((eq type 'case)
4399 (list type (verilog-case-indent-level)))
4400 ((eq type 'statement)
4401 (list type (current-column)))
4402 ((eq type 'defun)
4403 (list type 0))
4405 (list type (verilog-current-indent-level))))))))
4407 (defun verilog-wai ()
4408 "Show matching nesting block for debugging."
4409 (interactive)
4410 (save-excursion
4411 (let* ((type (verilog-calc-1))
4412 depth)
4413 ;; Return type of block and indent level.
4414 (if (not type)
4415 (setq type 'cpp))
4416 (if (and
4417 verilog-indent-lists
4418 (not(or (verilog-in-coverage-p)
4419 (verilog-in-struct-p)))
4420 (verilog-in-paren))
4421 (setq depth 1)
4422 (cond
4423 ((eq type 'case)
4424 (setq depth (verilog-case-indent-level)))
4425 ((eq type 'statement)
4426 (setq depth (current-column)))
4427 ((eq type 'defun)
4428 (setq depth 0))
4430 (setq depth (verilog-current-indent-level)))))
4431 (message "You are at nesting %s depth %d" type depth))))
4433 (defun verilog-calc-1 ()
4434 (catch 'nesting
4435 (let ((re (concat "\\({\\|}\\|" verilog-indent-re "\\)")))
4436 (while (verilog-re-search-backward re nil 'move)
4437 (catch 'continue
4438 (cond
4439 ((equal (char-after) ?\{)
4440 (if (verilog-at-constraint-p)
4441 (throw 'nesting 'block)))
4443 ((equal (char-after) ?\})
4444 (let ((there (verilog-at-close-constraint-p)))
4445 (if there ;; we are at the } that closes a constraing. Find the { that opens it
4446 (progn
4447 (forward-char 1)
4448 (backward-list 1)
4449 (verilog-beg-of-statement)))))
4451 ((looking-at verilog-beg-block-re-ordered)
4452 (cond
4453 ((match-end 2) ; *sigh* could be "unique case" or "priority casex"
4454 (let ((here (point)))
4455 (verilog-beg-of-statement)
4456 (if (looking-at verilog-extended-case-re)
4457 (throw 'nesting 'case)
4458 (goto-char here)))
4459 (throw 'nesting 'case))
4461 ((match-end 4) ; *sigh* could be "disable fork"
4462 (let ((here (point)))
4463 (verilog-beg-of-statement)
4464 (if (looking-at verilog-disable-fork-re)
4465 t ; is disable fork, this is a normal statement
4466 (progn ; or is fork, starts a new block
4467 (goto-char here)
4468 (throw 'nesting 'block)))))
4471 ;; need to consider typedef struct here...
4472 ((looking-at "\\<class\\|struct\\|function\\|task\\>")
4473 ; *sigh* These words have an optional prefix:
4474 ; extern {virtual|protected}? function a();
4475 ; typedef class foo;
4476 ; and we don't want to confuse this with
4477 ; function a();
4478 ; property
4479 ; ...
4480 ; endfunction
4481 (verilog-beg-of-statement)
4482 (if (looking-at verilog-beg-block-re-ordered)
4483 (throw 'nesting 'block)
4484 (throw 'nesting 'defun)))
4486 ((looking-at "\\<property\\>")
4487 ; *sigh*
4488 ; {assert|assume|cover} property (); are complete
4489 ; and could also be labeled: - foo: assert property
4490 ; but
4491 ; property ID () ... needs end_property
4492 (verilog-beg-of-statement)
4493 (if (looking-at (concat "\\(" verilog-label-re "\\)?"
4494 "\\(assert\\|assume\\|cover\\)\\s-+property\\>"))
4495 (throw 'continue 'statement) ; We don't need an endproperty for these
4496 (throw 'nesting 'block) ;We still need a endproperty
4499 (t (throw 'nesting 'block))))
4501 ((looking-at verilog-end-block-re)
4502 (verilog-leap-to-head)
4503 (if (verilog-in-case-region-p)
4504 (progn
4505 (verilog-leap-to-case-head)
4506 (if (looking-at verilog-extended-case-re)
4507 (throw 'nesting 'case)))))
4509 ((looking-at verilog-defun-level-re)
4510 (if (looking-at verilog-defun-level-generate-only-re)
4511 (if (verilog-in-generate-region-p)
4512 (throw 'continue 'foo) ; always block in a generate - keep looking
4513 (throw 'nesting 'defun))
4514 (throw 'nesting 'defun)))
4516 ((looking-at verilog-cpp-level-re)
4517 (throw 'nesting 'cpp))
4519 ((bobp)
4520 (throw 'nesting 'cpp)))))
4522 (throw 'nesting 'cpp))))
4524 (defun verilog-calculate-indent-directive ()
4525 "Return indentation level for directive.
4526 For speed, the searcher looks at the last directive, not the indent
4527 of the appropriate enclosing block."
4528 (let ((base -1) ;; Indent of the line that determines our indentation
4529 (ind 0)) ;; Relative offset caused by other directives (like `endif on same line as `else)
4530 ;; Start at current location, scan back for another directive
4532 (save-excursion
4533 (beginning-of-line)
4534 (while (and (< base 0)
4535 (verilog-re-search-backward verilog-directive-re nil t))
4536 (cond ((save-excursion (skip-chars-backward " \t") (bolp))
4537 (setq base (current-indentation))))
4538 (cond ((and (looking-at verilog-directive-end) (< base 0)) ;; Only matters when not at BOL
4539 (setq ind (- ind verilog-indent-level-directive)))
4540 ((and (looking-at verilog-directive-middle) (>= base 0)) ;; Only matters when at BOL
4541 (setq ind (+ ind verilog-indent-level-directive)))
4542 ((looking-at verilog-directive-begin)
4543 (setq ind (+ ind verilog-indent-level-directive)))))
4544 ;; Adjust indent to starting indent of critical line
4545 (setq ind (max 0 (+ ind base))))
4547 (save-excursion
4548 (beginning-of-line)
4549 (skip-chars-forward " \t")
4550 (cond ((or (looking-at verilog-directive-middle)
4551 (looking-at verilog-directive-end))
4552 (setq ind (max 0 (- ind verilog-indent-level-directive))))))
4553 ind))
4555 (defun verilog-leap-to-case-head ()
4556 (let ((nest 1))
4557 (while (/= 0 nest)
4558 (verilog-re-search-backward
4559 (concat
4560 "\\(\\<randcase\\>\\|\\(\\<unique\\s-+\\|priority\\s-+\\)?\\<case[xz]?\\>\\)"
4561 "\\|\\(\\<endcase\\>\\)" )
4562 nil 'move)
4563 (cond
4564 ((match-end 1)
4565 (let ((here (point)))
4566 (verilog-beg-of-statement)
4567 (unless (looking-at verilog-extended-case-re)
4568 (goto-char here)))
4569 (setq nest (1- nest)))
4570 ((match-end 3)
4571 (setq nest (1+ nest)))
4572 ((bobp)
4573 (ding 't)
4574 (setq nest 0))))))
4576 (defun verilog-leap-to-head ()
4577 "Move point to the head of this block.
4578 Jump from end to matching begin, from endcase to matching case, and so on."
4579 (let ((reg nil)
4580 snest
4581 (nesting 'yes)
4582 (nest 1))
4583 (cond
4584 ((looking-at "\\<end\\>")
4585 ;; 1: Search back for matching begin
4586 (setq reg (concat "\\(\\<begin\\>\\)\\|\\(\\<end\\>\\)\\|"
4587 "\\(\\<endcase\\>\\)\\|\\(\\<join\\(_any\\|_none\\)?\\>\\)" )))
4588 ((looking-at "\\<endtask\\>")
4589 ;; 2: Search back for matching task
4590 (setq reg "\\(\\<task\\>\\)\\|\\(\\(\\(\\<virtual\\>\\s-+\\)\\|\\(\\<protected\\>\\s-+\\)\\)+\\<task\\>\\)")
4591 (setq nesting 'no))
4592 ((looking-at "\\<endcase\\>")
4593 (catch 'nesting
4594 (verilog-leap-to-case-head) )
4595 (setq reg nil) ; to force skip
4598 ((looking-at "\\<join\\(_any\\|_none\\)?\\>")
4599 ;; 4: Search back for matching fork
4600 (setq reg "\\(\\<fork\\>\\)\\|\\(\\<join\\(_any\\|_none\\)?\\>\\)" ))
4601 ((looking-at "\\<endclass\\>")
4602 ;; 5: Search back for matching class
4603 (setq reg "\\(\\<class\\>\\)\\|\\(\\<endclass\\>\\)" ))
4604 ((looking-at "\\<endtable\\>")
4605 ;; 6: Search back for matching table
4606 (setq reg "\\(\\<table\\>\\)\\|\\(\\<endtable\\>\\)" ))
4607 ((looking-at "\\<endspecify\\>")
4608 ;; 7: Search back for matching specify
4609 (setq reg "\\(\\<specify\\>\\)\\|\\(\\<endspecify\\>\\)" ))
4610 ((looking-at "\\<endfunction\\>")
4611 ;; 8: Search back for matching function
4612 (setq reg "\\(\\<function\\>\\)\\|\\(\\(\\(\\<virtual\\>\\s-+\\)\\|\\(\\<protected\\>\\s-+\\)\\)+\\<function\\>\\)")
4613 (setq nesting 'no))
4614 ;;(setq reg "\\(\\<function\\>\\)\\|\\(\\<endfunction\\>\\)" ))
4615 ((looking-at "\\<endgenerate\\>")
4616 ;; 8: Search back for matching generate
4617 (setq reg "\\(\\<generate\\>\\)\\|\\(\\<endgenerate\\>\\)" ))
4618 ((looking-at "\\<endgroup\\>")
4619 ;; 10: Search back for matching covergroup
4620 (setq reg "\\(\\<covergroup\\>\\)\\|\\(\\<endgroup\\>\\)" ))
4621 ((looking-at "\\<endproperty\\>")
4622 ;; 11: Search back for matching property
4623 (setq reg "\\(\\<property\\>\\)\\|\\(\\<endproperty\\>\\)" ))
4624 ((looking-at verilog-ovm-end-re)
4625 ;; 12: Search back for matching sequence
4626 (setq reg (concat "\\(" verilog-ovm-begin-re "\\|" verilog-ovm-end-re "\\)")))
4627 ((looking-at "\\<endinterface\\>")
4628 ;; 12: Search back for matching interface
4629 (setq reg "\\(\\<interface\\>\\)\\|\\(\\<endinterface\\>\\)" ))
4630 ((looking-at "\\<endsequence\\>")
4631 ;; 12: Search back for matching sequence
4632 (setq reg "\\(\\<\\(rand\\)?sequence\\>\\)\\|\\(\\<endsequence\\>\\)" ))
4633 ((looking-at "\\<endclocking\\>")
4634 ;; 12: Search back for matching clocking
4635 (setq reg "\\(\\<clocking\\)\\|\\(\\<endclocking\\>\\)" )))
4636 (if reg
4637 (catch 'skip
4638 (if (eq nesting 'yes)
4639 (let (sreg)
4640 (while (verilog-re-search-backward reg nil 'move)
4641 (cond
4642 ((match-end 1) ; begin
4643 (setq nest (1- nest))
4644 (if (= 0 nest)
4645 ;; Now previous line describes syntax
4646 (throw 'skip 1))
4647 (if (and snest
4648 (= snest nest))
4649 (setq reg sreg)))
4650 ((match-end 2) ; end
4651 (setq nest (1+ nest)))
4652 ((match-end 3)
4653 ;; endcase, jump to case
4654 (setq snest nest)
4655 (setq nest (1+ nest))
4656 (setq sreg reg)
4657 (setq reg "\\(\\<randcase\\>\\|\\<case[xz]?\\>[^:]\\)\\|\\(\\<endcase\\>\\)" ))
4658 ((match-end 4)
4659 ;; join, jump to fork
4660 (setq snest nest)
4661 (setq nest (1+ nest))
4662 (setq sreg reg)
4663 (setq reg "\\(\\<fork\\>\\)\\|\\(\\<join\\(_any\\|_none\\)?\\>\\)" ))
4665 ;no nesting
4666 (if (and
4667 (verilog-re-search-backward reg nil 'move)
4668 (match-end 1)) ; task -> could be virtual and/or protected
4669 (progn
4670 (verilog-beg-of-statement)
4671 (throw 'skip 1))
4672 (throw 'skip 1)))))))
4674 (defun verilog-continued-line ()
4675 "Return true if this is a continued line.
4676 Set point to where line starts."
4677 (let ((continued 't))
4678 (if (eq 0 (forward-line -1))
4679 (progn
4680 (end-of-line)
4681 (verilog-backward-ws&directives)
4682 (if (bobp)
4683 (setq continued nil)
4684 (while (and continued
4685 (save-excursion
4686 (skip-chars-backward " \t")
4687 (not (bolp))))
4688 (setq continued (verilog-backward-token)))))
4689 (setq continued nil))
4690 continued))
4692 (defun verilog-backward-token ()
4693 "Step backward token, returing true if this is a continued line."
4694 (interactive)
4695 (verilog-backward-syntactic-ws)
4696 (cond
4697 ((bolp)
4698 nil)
4699 (;-- Anything ending in a ; is complete
4700 (= (preceding-char) ?\;)
4701 nil)
4702 (; If a "}" is prefixed by a ";", then this is a complete statement
4703 ; i.e.: constraint foo { a = b; }
4704 (= (preceding-char) ?\})
4705 (progn
4706 (backward-char)
4707 (not(verilog-at-close-constraint-p))))
4708 (;-- constraint foo { a = b }
4709 ; is a complete statement. *sigh*
4710 (= (preceding-char) ?\{)
4711 (progn
4712 (backward-char)
4713 (not (verilog-at-constraint-p))))
4714 (;" string "
4715 (= (preceding-char) ?\")
4716 (backward-char)
4717 (verilog-skip-backward-comment-or-string)
4718 nil)
4720 (; [3:4]
4721 (= (preceding-char) ?\])
4722 (backward-char)
4723 (verilog-backward-open-bracket)
4726 (;-- Could be 'case (foo)' or 'always @(bar)' which is complete
4727 ; also could be simply '@(foo)'
4728 ; or foo u1 #(a=8)
4729 ; (b, ... which ISN'T complete
4730 ;;;; Do we need this???
4731 (= (preceding-char) ?\))
4732 (progn
4733 (backward-char)
4734 (backward-up-list 1)
4735 (verilog-backward-syntactic-ws)
4736 (let ((back (point)))
4737 (forward-word -1)
4738 (cond
4739 ;;XX
4740 ((looking-at "\\<\\(always\\(_latch\\|_ff\\|_comb\\)?\\|case\\(\\|[xz]\\)\\|for\\(\\|each\\|ever\\)\\|i\\(f\\|nitial\\)\\|repeat\\|while\\)\\>")
4741 (not (looking-at "\\<randcase\\>\\|\\<case[xz]?\\>[^:]")))
4742 ((looking-at verilog-ovm-statement-re)
4743 nil)
4744 ((looking-at verilog-ovm-begin-re)
4746 ((looking-at verilog-ovm-end-re)
4749 (goto-char back)
4750 (cond
4751 ((= (preceding-char) ?\@)
4752 (backward-char)
4753 (save-excursion
4754 (verilog-backward-token)
4755 (not (looking-at "\\<\\(always\\(_latch\\|_ff\\|_comb\\)?\\|initial\\|while\\)\\>"))))
4756 ((= (preceding-char) ?\#)
4757 (backward-char))
4758 (t t)))))))
4760 (;-- any of begin|initial|while are complete statements; 'begin : foo' is also complete
4762 (forward-word -1)
4763 (cond
4764 ((looking-at "\\<else\\>")
4766 ((looking-at verilog-behavioral-block-beg-re)
4768 ((looking-at verilog-indent-re)
4769 nil)
4771 (let
4772 ((back (point)))
4773 (verilog-backward-syntactic-ws)
4774 (cond
4775 ((= (preceding-char) ?\:)
4776 (backward-char)
4777 (verilog-backward-syntactic-ws)
4778 (backward-sexp)
4779 (if (looking-at verilog-nameable-item-re )
4782 ((= (preceding-char) ?\#)
4783 (backward-char)
4785 ((= (preceding-char) ?\`)
4786 (backward-char)
4790 (goto-char back)
4791 t))))))))
4793 (defun verilog-backward-syntactic-ws (&optional bound)
4794 "Backward skip over syntactic whitespace for Emacs 19.
4795 Optional BOUND limits search."
4796 (save-restriction
4797 (let* ((bound (or bound (point-min))) (here bound) )
4798 (if (< bound (point))
4799 (progn
4800 (narrow-to-region bound (point))
4801 (while (/= here (point))
4802 (setq here (point))
4803 (verilog-skip-backward-comments))))))
4806 (defun verilog-forward-syntactic-ws (&optional bound)
4807 "Forward skip over syntactic whitespace for Emacs 19.
4808 Optional BOUND limits search."
4809 (save-restriction
4810 (let* ((bound (or bound (point-max)))
4811 (here bound))
4812 (if (> bound (point))
4813 (progn
4814 (narrow-to-region (point) bound)
4815 (while (/= here (point))
4816 (setq here (point))
4817 (forward-comment (buffer-size))))))))
4819 (defun verilog-backward-ws&directives (&optional bound)
4820 "Backward skip over syntactic whitespace and compiler directives for Emacs 19.
4821 Optional BOUND limits search."
4822 (save-restriction
4823 (let* ((bound (or bound (point-min)))
4824 (here bound)
4825 (p nil) )
4826 (if (< bound (point))
4827 (progn
4828 (let ((state (save-excursion (verilog-syntax-ppss))))
4829 (cond
4830 ((nth 7 state) ;; in // comment
4831 (verilog-re-search-backward "//" nil 'move)
4832 (skip-chars-backward "/"))
4833 ((nth 4 state) ;; in /* */ comment
4834 (verilog-re-search-backward "/\*" nil 'move))))
4835 (narrow-to-region bound (point))
4836 (while (/= here (point))
4837 (setq here (point))
4838 (verilog-skip-backward-comments)
4839 (setq p
4840 (save-excursion
4841 (beginning-of-line)
4842 (cond
4843 ((and verilog-highlight-translate-off
4844 (verilog-within-translate-off))
4845 (verilog-back-to-start-translate-off (point-min)))
4846 ((looking-at verilog-directive-re-1)
4847 (point))
4849 nil))))
4850 (if p (goto-char p))))))))
4852 (defun verilog-forward-ws&directives (&optional bound)
4853 "Forward skip over syntactic whitespace and compiler directives for Emacs 19.
4854 Optional BOUND limits search."
4855 (save-restriction
4856 (let* ((bound (or bound (point-max)))
4857 (here bound)
4858 jump)
4859 (if (> bound (point))
4860 (progn
4861 (let ((state (save-excursion (verilog-syntax-ppss))))
4862 (cond
4863 ((nth 7 state) ;; in // comment
4864 (verilog-re-search-forward "//" nil 'move))
4865 ((nth 4 state) ;; in /* */ comment
4866 (verilog-re-search-forward "/\*" nil 'move))))
4867 (narrow-to-region (point) bound)
4868 (while (/= here (point))
4869 (setq here (point)
4870 jump nil)
4871 (forward-comment (buffer-size))
4872 (save-excursion
4873 (beginning-of-line)
4874 (if (looking-at verilog-directive-re-1)
4875 (setq jump t)))
4876 (if jump
4877 (beginning-of-line 2))))))))
4879 (defun verilog-in-comment-p ()
4880 "Return true if in a star or // comment."
4881 (let ((state (save-excursion (verilog-syntax-ppss))))
4882 (or (nth 4 state) (nth 7 state))))
4884 (defun verilog-in-star-comment-p ()
4885 "Return true if in a star comment."
4886 (let ((state (save-excursion (verilog-syntax-ppss))))
4887 (and
4888 (nth 4 state) ; t if in a comment of style a // or b /**/
4889 (not
4890 (nth 7 state) ; t if in a comment of style b /**/
4891 ))))
4893 (defun verilog-in-slash-comment-p ()
4894 "Return true if in a slash comment."
4895 (let ((state (save-excursion (verilog-syntax-ppss))))
4896 (nth 7 state)))
4898 (defun verilog-in-comment-or-string-p ()
4899 "Return true if in a string or comment."
4900 (let ((state (save-excursion (verilog-syntax-ppss))))
4901 (or (nth 3 state) (nth 4 state) (nth 7 state)))) ; Inside string or comment)
4903 (defun verilog-in-escaped-name-p ()
4904 "Return true if in an escaped name."
4905 (save-excursion
4906 (backward-char)
4907 (skip-chars-backward "^ \t\n\f")
4908 (if (equal (char-after (point) ) ?\\ )
4910 nil)))
4911 (defun verilog-in-directive-p ()
4912 "Return true if in a star or // comment."
4913 (save-excursion
4914 (beginning-of-line)
4915 (looking-at verilog-directive-re-1)))
4917 (defun verilog-in-paren ()
4918 "Return true if in a parenthetical expression."
4919 (let ((state (save-excursion (verilog-syntax-ppss))))
4920 (> (nth 0 state) 0 )))
4922 (defun verilog-in-struct-p ()
4923 "Return true if in a struct declaration."
4924 (interactive)
4925 (save-excursion
4926 (if (verilog-in-paren)
4927 (progn
4928 (backward-up-list 1)
4929 (verilog-at-struct-p)
4931 nil)))
4933 (defun verilog-in-coverage-p ()
4934 "Return true if in a constraint or coverpoint expression."
4935 (interactive)
4936 (save-excursion
4937 (if (verilog-in-paren)
4938 (progn
4939 (backward-up-list 1)
4940 (verilog-at-constraint-p)
4942 nil)))
4943 (defun verilog-at-close-constraint-p ()
4944 "If at the } that closes a constraint or covergroup, return true."
4945 (if (and
4946 (equal (char-after) ?\})
4947 (verilog-in-paren))
4949 (save-excursion
4950 (verilog-backward-ws&directives)
4951 (if (equal (char-before) ?\;)
4952 (point)
4953 nil))))
4955 (defun verilog-at-constraint-p ()
4956 "If at the { of a constraint or coverpoint definition, return true, moving point to constraint."
4957 (if (save-excursion
4958 (and
4959 (equal (char-after) ?\{)
4960 (forward-list)
4961 (progn (backward-char 1)
4962 (verilog-backward-ws&directives)
4963 (equal (char-before) ?\;))))
4964 ;; maybe
4965 (verilog-re-search-backward "\\<constraint\\|coverpoint\\|cross\\>" nil 'move)
4966 ;; not
4967 nil))
4969 (defun verilog-at-struct-p ()
4970 "If at the { of a struct, return true, moving point to struct."
4971 (save-excursion
4972 (if (and (equal (char-after) ?\{)
4973 (verilog-backward-token))
4974 (looking-at "\\<struct\\|union\\|packed\\>")
4975 nil)))
4977 (defun verilog-parenthesis-depth ()
4978 "Return non zero if in parenthetical-expression."
4979 (save-excursion (nth 1 (verilog-syntax-ppss))))
4982 (defun verilog-skip-forward-comment-or-string ()
4983 "Return true if in a string or comment."
4984 (let ((state (save-excursion (verilog-syntax-ppss))))
4985 (cond
4986 ((nth 3 state) ;Inside string
4987 (search-forward "\"")
4989 ((nth 7 state) ;Inside // comment
4990 (forward-line 1)
4992 ((nth 4 state) ;Inside any comment (hence /**/)
4993 (search-forward "*/"))
4995 nil))))
4997 (defun verilog-skip-backward-comment-or-string ()
4998 "Return true if in a string or comment."
4999 (let ((state (save-excursion (verilog-syntax-ppss))))
5000 (cond
5001 ((nth 3 state) ;Inside string
5002 (search-backward "\"")
5004 ((nth 7 state) ;Inside // comment
5005 (search-backward "//")
5006 (skip-chars-backward "/")
5008 ((nth 4 state) ;Inside /* */ comment
5009 (search-backward "/*")
5012 nil))))
5014 (defun verilog-skip-backward-comments ()
5015 "Return true if a comment was skipped."
5016 (let ((more t))
5017 (while more
5018 (setq more
5019 (let ((state (save-excursion (verilog-syntax-ppss))))
5020 (cond
5021 ((nth 7 state) ;Inside // comment
5022 (search-backward "//")
5023 (skip-chars-backward "/")
5024 (skip-chars-backward " \t\n\f")
5026 ((nth 4 state) ;Inside /* */ comment
5027 (search-backward "/*")
5028 (skip-chars-backward " \t\n\f")
5030 ((and (not (bobp))
5031 (= (char-before) ?\/)
5032 (= (char-before (1- (point))) ?\*))
5033 (goto-char (- (point) 2))
5036 (skip-chars-backward " \t\n\f")
5037 nil)))))))
5039 (defun verilog-skip-forward-comment-p ()
5040 "If in comment, move to end and return true."
5041 (let (state)
5042 (progn
5043 (setq state (save-excursion (verilog-syntax-ppss)))
5044 (cond
5045 ((nth 3 state)
5047 ((nth 7 state) ;Inside // comment
5048 (end-of-line)
5049 (forward-char 1)
5051 ((nth 4 state) ;Inside any comment
5054 nil)))))
5056 (defun verilog-indent-line-relative ()
5057 "Cheap version of indent line.
5058 Only look at a few lines to determine indent level."
5059 (interactive)
5060 (let ((indent-str)
5061 (sp (point)))
5062 (if (looking-at "^[ \t]*$")
5063 (cond ;- A blank line; No need to be too smart.
5064 ((bobp)
5065 (setq indent-str (list 'cpp 0)))
5066 ((verilog-continued-line)
5067 (let ((sp1 (point)))
5068 (if (verilog-continued-line)
5069 (progn
5070 (goto-char sp)
5071 (setq indent-str
5072 (list 'statement (verilog-current-indent-level))))
5073 (goto-char sp1)
5074 (setq indent-str (list 'block (verilog-current-indent-level)))))
5075 (goto-char sp))
5076 ((goto-char sp)
5077 (setq indent-str (verilog-calculate-indent))))
5078 (progn (skip-chars-forward " \t")
5079 (setq indent-str (verilog-calculate-indent))))
5080 (verilog-do-indent indent-str)))
5082 (defun verilog-indent-line ()
5083 "Indent for special part of code."
5084 (verilog-do-indent (verilog-calculate-indent)))
5086 (defun verilog-do-indent (indent-str)
5087 (let ((type (car indent-str))
5088 (ind (car (cdr indent-str))))
5089 (cond
5090 (; handle continued exp
5091 (eq type 'cexp)
5092 (let ((here (point)))
5093 (verilog-backward-syntactic-ws)
5094 (cond
5095 ((or
5096 (= (preceding-char) ?\,)
5097 (= (preceding-char) ?\])
5098 (save-excursion
5099 (verilog-beg-of-statement-1)
5100 (looking-at verilog-declaration-re)))
5101 (let* ( fst
5102 (val
5103 (save-excursion
5104 (backward-char 1)
5105 (verilog-beg-of-statement-1)
5106 (setq fst (point))
5107 (if (looking-at verilog-declaration-re)
5108 (progn ;; we have multiple words
5109 (goto-char (match-end 0))
5110 (skip-chars-forward " \t")
5111 (cond
5112 ((and verilog-indent-declaration-macros
5113 (= (following-char) ?\`))
5114 (progn
5115 (forward-char 1)
5116 (forward-word 1)
5117 (skip-chars-forward " \t")))
5118 ((= (following-char) ?\[)
5119 (progn
5120 (forward-char 1)
5121 (backward-up-list -1)
5122 (skip-chars-forward " \t"))))
5123 (current-column))
5124 (progn
5125 (goto-char fst)
5126 (+ (current-column) verilog-cexp-indent))))))
5127 (goto-char here)
5128 (indent-line-to val)))
5129 ((= (preceding-char) ?\) )
5130 (goto-char here)
5131 (let ((val (eval (cdr (assoc type verilog-indent-alist)))))
5132 (indent-line-to val)))
5134 (goto-char here)
5135 (let ((val))
5136 (verilog-beg-of-statement-1)
5137 (if (and (< (point) here)
5138 (verilog-re-search-forward "=[ \\t]*" here 'move))
5139 (setq val (current-column))
5140 (setq val (eval (cdr (assoc type verilog-indent-alist)))))
5141 (goto-char here)
5142 (indent-line-to val))))))
5144 (; handle inside parenthetical expressions
5145 (eq type 'cparenexp)
5146 (let ((val (save-excursion
5147 (backward-up-list 1)
5148 (forward-char 1)
5149 (skip-chars-forward " \t")
5150 (current-column))))
5151 (indent-line-to val)
5154 (;-- Handle the ends
5156 (looking-at verilog-end-block-re )
5157 (verilog-at-close-constraint-p))
5158 (let ((val (if (eq type 'statement)
5159 (- ind verilog-indent-level)
5160 ind)))
5161 (indent-line-to val)))
5163 (;-- Case -- maybe line 'em up
5164 (and (eq type 'case) (not (looking-at "^[ \t]*$")))
5165 (progn
5166 (cond
5167 ((looking-at "\\<endcase\\>")
5168 (indent-line-to ind))
5170 (let ((val (eval (cdr (assoc type verilog-indent-alist)))))
5171 (indent-line-to val))))))
5173 (;-- defun
5174 (and (eq type 'defun)
5175 (looking-at verilog-zero-indent-re))
5176 (indent-line-to 0))
5178 (;-- declaration
5179 (and (or
5180 (eq type 'defun)
5181 (eq type 'block))
5182 (looking-at verilog-declaration-re))
5183 (verilog-indent-declaration ind))
5185 (;-- Everything else
5187 (let ((val (eval (cdr (assoc type verilog-indent-alist)))))
5188 (indent-line-to val))))
5190 (if (looking-at "[ \t]+$")
5191 (skip-chars-forward " \t"))
5192 indent-str ; Return indent data
5195 (defun verilog-current-indent-level ()
5196 "Return the indent-level of the current statement."
5197 (save-excursion
5198 (let (par-pos)
5199 (beginning-of-line)
5200 (setq par-pos (verilog-parenthesis-depth))
5201 (while par-pos
5202 (goto-char par-pos)
5203 (beginning-of-line)
5204 (setq par-pos (verilog-parenthesis-depth)))
5205 (skip-chars-forward " \t")
5206 (current-column))))
5208 (defun verilog-case-indent-level ()
5209 "Return the indent-level of the current statement.
5210 Do not count named blocks or case-statements."
5211 (save-excursion
5212 (skip-chars-forward " \t")
5213 (cond
5214 ((looking-at verilog-named-block-re)
5215 (current-column))
5216 ((and (not (looking-at verilog-extended-case-re))
5217 (looking-at "^[^:;]+[ \t]*:"))
5218 (verilog-re-search-forward ":" nil t)
5219 (skip-chars-forward " \t")
5220 (current-column))
5222 (current-column)))))
5224 (defun verilog-indent-comment ()
5225 "Indent current line as comment."
5226 (let* ((stcol
5227 (cond
5228 ((verilog-in-star-comment-p)
5229 (save-excursion
5230 (re-search-backward "/\\*" nil t)
5231 (1+(current-column))))
5232 (comment-column
5233 comment-column )
5235 (save-excursion
5236 (re-search-backward "//" nil t)
5237 (current-column))))))
5238 (indent-line-to stcol)
5239 stcol))
5241 (defun verilog-more-comment ()
5242 "Make more comment lines like the previous."
5243 (let* ((star 0)
5244 (stcol
5245 (cond
5246 ((verilog-in-star-comment-p)
5247 (save-excursion
5248 (setq star 1)
5249 (re-search-backward "/\\*" nil t)
5250 (1+(current-column))))
5251 (comment-column
5252 comment-column )
5254 (save-excursion
5255 (re-search-backward "//" nil t)
5256 (current-column))))))
5257 (progn
5258 (indent-to stcol)
5259 (if (and star
5260 (save-excursion
5261 (forward-line -1)
5262 (skip-chars-forward " \t")
5263 (looking-at "\*")))
5264 (insert "* ")))))
5266 (defun verilog-comment-indent (&optional arg)
5267 "Return the column number the line should be indented to.
5268 ARG is ignored, for `comment-indent-function' compatibility."
5269 (cond
5270 ((verilog-in-star-comment-p)
5271 (save-excursion
5272 (re-search-backward "/\\*" nil t)
5273 (1+(current-column))))
5274 ( comment-column
5275 comment-column )
5277 (save-excursion
5278 (re-search-backward "//" nil t)
5279 (current-column)))))
5283 (defun verilog-pretty-declarations (&optional quiet)
5284 "Line up declarations around point.
5285 Be verbose about progress unless optional QUIET set."
5286 (interactive)
5287 (save-excursion
5288 (if (progn
5289 (verilog-beg-of-statement-1)
5290 (and (not (verilog-in-directive-p)) ;; could have `define input foo
5291 (not (verilog-parenthesis-depth)) ;; could be in a #(param block )
5292 (looking-at verilog-declaration-re)))
5293 (let* ((m1 (make-marker))
5294 (e (point))
5296 (here (point))
5297 ;; Start of declaration range
5298 (start
5299 (progn
5300 (verilog-beg-of-statement-1)
5301 (while (and (looking-at verilog-declaration-re)
5302 (not (bobp)))
5303 (skip-chars-backward " \t")
5304 (setq e (point))
5305 (beginning-of-line)
5306 (verilog-backward-syntactic-ws)
5307 (backward-char)
5308 (verilog-beg-of-statement-1))
5310 ;; End of declaration range
5311 (end
5312 (progn
5313 (goto-char here)
5314 (verilog-end-of-statement)
5315 (setq e (point)) ;Might be on last line
5316 (verilog-forward-syntactic-ws)
5317 (while (looking-at verilog-declaration-re)
5318 ;;(beginning-of-line)
5319 (verilog-end-of-statement)
5320 (setq e (point))
5321 (verilog-forward-syntactic-ws))
5323 (edpos (set-marker (make-marker) end))
5324 (ind)
5325 (base-ind
5326 (progn
5327 (goto-char start)
5328 (verilog-do-indent (verilog-calculate-indent))
5329 (verilog-forward-ws&directives)
5330 (current-column))))
5331 (goto-char start)
5332 (if (and (not quiet)
5333 (> (- end start) 100))
5334 (message "Lining up declarations..(please stand by)"))
5335 ;; Get the beginning of line indent first
5336 (while (progn (setq e (marker-position edpos))
5337 (< (point) e))
5338 (cond
5339 ( (save-excursion (skip-chars-backward " \t")
5340 (bolp))
5341 (verilog-forward-ws&directives)
5342 (indent-line-to base-ind)
5343 (verilog-forward-ws&directives)
5344 (verilog-re-search-forward "[ \t\n\f]" e 'move))
5346 (just-one-space)
5347 (verilog-re-search-forward "[ \t\n\f]" e 'move)))
5348 ;;(forward-line)
5350 ;; Now find biggest prefix
5351 (setq ind (verilog-get-lineup-indent start edpos))
5352 ;; Now indent each line.
5353 (goto-char start)
5354 (while (progn (setq e (marker-position edpos))
5355 (setq r (- e (point)))
5356 (> r 0))
5357 (setq e (point))
5358 (unless quiet (message "%d" r))
5359 (verilog-indent-line)
5360 (cond
5361 ((or (and verilog-indent-declaration-macros
5362 (looking-at verilog-declaration-re-2-macro))
5363 (looking-at verilog-declaration-re-2-no-macro))
5364 (let ((p (match-end 0)))
5365 (set-marker m1 p)
5366 (if (verilog-re-search-forward "[[#`]" p 'move)
5367 (progn
5368 (forward-char -1)
5369 (just-one-space)
5370 (goto-char (marker-position m1))
5371 (just-one-space)
5372 (indent-to ind))
5373 (progn
5374 (just-one-space)
5375 (indent-to ind)))))
5376 ((verilog-continued-line-1 start)
5377 (goto-char e)
5378 (indent-line-to ind))
5379 ((verilog-in-struct-p)
5380 ;; could have a declaration of a user defined item
5381 (goto-char e)
5382 (verilog-end-of-statement))
5383 (t ; Must be comment or white space
5384 (goto-char e)
5385 (verilog-forward-ws&directives)
5386 (forward-line -1)))
5387 (forward-line 1))
5388 (unless quiet (message ""))))))
5390 (defun verilog-pretty-expr (&optional quiet myre)
5391 "Line up expressions around point, or optional regexp MYRE."
5392 (interactive "sRegular Expression: ((<|:)?=) ")
5393 (save-excursion
5394 (if (or (eq myre nil)
5395 (string-equal myre ""))
5396 (setq myre "\\(<\\|:\\)?="))
5397 (setq myre (concat "\\(^[^;#:<=>]*\\)\\(" myre "\\)"))
5398 (let ((rexp(concat "^\\s-*" verilog-complete-reg)))
5399 (beginning-of-line)
5400 (if (and (not (looking-at rexp ))
5401 (looking-at myre)
5402 (save-excursion
5403 (goto-char (match-beginning 2))
5404 (not (verilog-in-comment-or-string-p))))
5405 (let* ((here (point))
5406 (e) (r)
5407 (start
5408 (progn
5409 (beginning-of-line)
5410 (setq e (point))
5411 (verilog-backward-syntactic-ws)
5412 (beginning-of-line)
5413 (while (and (not (looking-at rexp ))
5414 (looking-at myre)
5415 (not (bobp))
5417 (setq e (point))
5418 (verilog-backward-syntactic-ws)
5419 (beginning-of-line)
5420 ) ;Ack, need to grok `define
5422 (end
5423 (progn
5424 (goto-char here)
5425 (end-of-line)
5426 (setq e (point)) ;Might be on last line
5427 (verilog-forward-syntactic-ws)
5428 (beginning-of-line)
5429 (while (and
5430 (not (looking-at rexp ))
5431 (looking-at myre)
5432 (progn
5433 (end-of-line)
5434 (not (eq e (point)))))
5435 (setq e (point))
5436 (verilog-forward-syntactic-ws)
5437 (beginning-of-line)
5440 (edpos (set-marker (make-marker) end))
5441 (ind)
5443 (goto-char start)
5444 (verilog-do-indent (verilog-calculate-indent))
5445 (if (and (not quiet)
5446 (> (- end start) 100))
5447 (message "Lining up expressions..(please stand by)"))
5449 ;; Set indent to minimum throughout region
5450 (while (< (point) (marker-position edpos))
5451 (beginning-of-line)
5452 (verilog-just-one-space myre)
5453 (end-of-line)
5454 (verilog-forward-syntactic-ws)
5457 ;; Now find biggest prefix
5458 (setq ind (verilog-get-lineup-indent-2 myre start edpos))
5460 ;; Now indent each line.
5461 (goto-char start)
5462 (while (progn (setq e (marker-position edpos))
5463 (setq r (- e (point)))
5464 (> r 0))
5465 (setq e (point))
5466 (if (not quiet) (message "%d" r))
5467 (cond
5468 ((looking-at myre)
5469 (goto-char (match-beginning 2))
5470 (if (not (verilog-parenthesis-depth)) ;; ignore parenthsized exprs
5471 (if (eq (char-after) ?=)
5472 (indent-to (1+ ind)) ; line up the = of the <= with surrounding =
5473 (indent-to ind)
5475 ((verilog-continued-line-1 start)
5476 (goto-char e)
5477 (indent-line-to ind))
5478 (t ; Must be comment or white space
5479 (goto-char e)
5480 (verilog-forward-ws&directives)
5481 (forward-line -1))
5483 (forward-line 1))
5484 (unless quiet (message ""))
5485 )))))
5487 (defun verilog-just-one-space (myre)
5488 "Remove extra spaces around regular expression MYRE."
5489 (interactive)
5490 (if (and (not(looking-at verilog-complete-reg))
5491 (looking-at myre))
5492 (let ((p1 (match-end 1))
5493 (p2 (match-end 2)))
5494 (progn
5495 (goto-char p2)
5496 (if (looking-at "\\s-") (just-one-space))
5497 (goto-char p1)
5498 (forward-char -1)
5499 (if (looking-at "\\s-") (just-one-space))
5500 ))))
5502 (defun verilog-indent-declaration (baseind)
5503 "Indent current lines as declaration.
5504 Line up the variable names based on previous declaration's indentation.
5505 BASEIND is the base indent to offset everything."
5506 (interactive)
5507 (let ((pos (point-marker))
5508 (lim (save-excursion
5509 ;; (verilog-re-search-backward verilog-declaration-opener nil 'move)
5510 (verilog-re-search-backward "\\(\\<begin\\>\\)\\|\\(\\<module\\>\\)\\|\\(\\<task\\>\\)" nil 'move)
5511 (point)))
5512 (ind)
5513 (val)
5514 (m1 (make-marker)))
5515 (setq val
5516 (+ baseind (eval (cdr (assoc 'declaration verilog-indent-alist)))))
5517 (indent-line-to val)
5519 ;; Use previous declaration (in this module) as template.
5520 (if (or (eq 'all verilog-auto-lineup)
5521 (eq 'declarations verilog-auto-lineup))
5522 (if (verilog-re-search-backward
5523 (or (and verilog-indent-declaration-macros
5524 verilog-declaration-re-1-macro)
5525 verilog-declaration-re-1-no-macro) lim t)
5526 (progn
5527 (goto-char (match-end 0))
5528 (skip-chars-forward " \t")
5529 (setq ind (current-column))
5530 (goto-char pos)
5531 (setq val
5532 (+ baseind
5533 (eval (cdr (assoc 'declaration verilog-indent-alist)))))
5534 (indent-line-to val)
5535 (if (and verilog-indent-declaration-macros
5536 (looking-at verilog-declaration-re-2-macro))
5537 (let ((p (match-end 0)))
5538 (set-marker m1 p)
5539 (if (verilog-re-search-forward "[[#`]" p 'move)
5540 (progn
5541 (forward-char -1)
5542 (just-one-space)
5543 (goto-char (marker-position m1))
5544 (just-one-space)
5545 (indent-to ind))
5546 (if (/= (current-column) ind)
5547 (progn
5548 (just-one-space)
5549 (indent-to ind)))))
5550 (if (looking-at verilog-declaration-re-2-no-macro)
5551 (let ((p (match-end 0)))
5552 (set-marker m1 p)
5553 (if (verilog-re-search-forward "[[`#]" p 'move)
5554 (progn
5555 (forward-char -1)
5556 (just-one-space)
5557 (goto-char (marker-position m1))
5558 (just-one-space)
5559 (indent-to ind))
5560 (if (/= (current-column) ind)
5561 (progn
5562 (just-one-space)
5563 (indent-to ind))))))))))
5564 (goto-char pos)))
5566 (defun verilog-get-lineup-indent (b edpos)
5567 "Return the indent level that will line up several lines within the region.
5568 Region is defined by B and EDPOS."
5569 (save-excursion
5570 (let ((ind 0) e)
5571 (goto-char b)
5572 ;; Get rightmost position
5573 (while (progn (setq e (marker-position edpos))
5574 (< (point) e))
5575 (if (verilog-re-search-forward
5576 (or (and verilog-indent-declaration-macros
5577 verilog-declaration-re-1-macro)
5578 verilog-declaration-re-1-no-macro) e 'move)
5579 (progn
5580 (goto-char (match-end 0))
5581 (verilog-backward-syntactic-ws)
5582 (if (> (current-column) ind)
5583 (setq ind (current-column)))
5584 (goto-char (match-end 0)))))
5585 (if (> ind 0)
5586 (1+ ind)
5587 ;; No lineup-string found
5588 (goto-char b)
5589 (end-of-line)
5590 (skip-chars-backward " \t")
5591 (1+ (current-column))))))
5593 (defun verilog-get-lineup-indent-2 (myre b edpos)
5594 "Return the indent level that will line up several lines within the region."
5595 (save-excursion
5596 (let ((ind 0) e)
5597 (goto-char b)
5598 ;; Get rightmost position
5599 (while (progn (setq e (marker-position edpos))
5600 (< (point) e))
5601 (if (and (verilog-re-search-forward myre e 'move)
5602 (not (verilog-parenthesis-depth))) ;; skip parenthsized exprs
5603 (progn
5604 (goto-char (match-beginning 2))
5605 (verilog-backward-syntactic-ws)
5606 (if (> (current-column) ind)
5607 (setq ind (current-column)))
5608 (goto-char (match-end 0)))
5610 (if (> ind 0)
5611 (1+ ind)
5612 ;; No lineup-string found
5613 (goto-char b)
5614 (end-of-line)
5615 (skip-chars-backward " \t")
5616 (1+ (current-column))))))
5618 (defun verilog-comment-depth (type val)
5619 "A useful mode debugging aide. TYPE and VAL are comments for insertion."
5620 (save-excursion
5621 (let
5622 ((b (prog2
5623 (beginning-of-line)
5624 (point-marker)
5625 (end-of-line)))
5626 (e (point-marker)))
5627 (if (re-search-backward " /\\* \[#-\]# \[a-zA-Z\]+ \[0-9\]+ ## \\*/" b t)
5628 (progn
5629 (replace-match " /* -# ## */")
5630 (end-of-line))
5631 (progn
5632 (end-of-line)
5633 (insert " /* ## ## */"))))
5634 (backward-char 6)
5635 (insert
5636 (format "%s %d" type val))))
5638 ;; \f
5640 ;; Completion
5642 (defvar verilog-str nil)
5643 (defvar verilog-all nil)
5644 (defvar verilog-pred nil)
5645 (defvar verilog-buffer-to-use nil)
5646 (defvar verilog-flag nil)
5647 (defvar verilog-toggle-completions nil
5648 "*True means \\<verilog-mode-map>\\[verilog-complete-word] should try all possible completions one by one.
5649 Repeated use of \\[verilog-complete-word] will show you all of them.
5650 Normally, when there is more than one possible completion,
5651 it displays a list of all possible completions.")
5654 (defvar verilog-type-keywords
5656 "and" "buf" "bufif0" "bufif1" "cmos" "defparam" "inout" "input"
5657 "integer" "localparam" "logic" "mailbox" "nand" "nmos" "nor" "not" "notif0"
5658 "notif1" "or" "output" "parameter" "pmos" "pull0" "pull1" "pullup"
5659 "rcmos" "real" "realtime" "reg" "rnmos" "rpmos" "rtran" "rtranif0"
5660 "rtranif1" "semaphore" "time" "tran" "tranif0" "tranif1" "tri" "tri0" "tri1"
5661 "triand" "trior" "trireg" "wand" "wire" "wor" "xnor" "xor"
5663 "*Keywords for types used when completing a word in a declaration or parmlist.
5664 \(Eg. integer, real, reg...)")
5666 (defvar verilog-cpp-keywords
5667 '("module" "macromodule" "primitive" "timescale" "define" "ifdef" "ifndef" "else"
5668 "endif")
5669 "*Keywords to complete when at first word of a line in declarative scope.
5670 \(Eg. initial, always, begin, assign.)
5671 The procedures and variables defined within the Verilog program
5672 will be completed at runtime and should not be added to this list.")
5674 (defvar verilog-defun-keywords
5675 (append
5677 "always" "always_comb" "always_ff" "always_latch" "assign"
5678 "begin" "end" "generate" "endgenerate" "module" "endmodule"
5679 "specify" "endspecify" "function" "endfunction" "initial" "final"
5680 "task" "endtask" "primitive" "endprimitive"
5682 verilog-type-keywords)
5683 "*Keywords to complete when at first word of a line in declarative scope.
5684 \(Eg. initial, always, begin, assign.)
5685 The procedures and variables defined within the Verilog program
5686 will be completed at runtime and should not be added to this list.")
5688 (defvar verilog-block-keywords
5690 "begin" "break" "case" "continue" "else" "end" "endfunction"
5691 "endgenerate" "endinterface" "endpackage" "endspecify" "endtask"
5692 "for" "fork" "if" "join" "join_any" "join_none" "repeat" "return"
5693 "while")
5694 "*Keywords to complete when at first word of a line in behavioral scope.
5695 \(Eg. begin, if, then, else, for, fork.)
5696 The procedures and variables defined within the Verilog program
5697 will be completed at runtime and should not be added to this list.")
5699 (defvar verilog-tf-keywords
5700 '("begin" "break" "fork" "join" "join_any" "join_none" "case" "end" "endtask" "endfunction" "if" "else" "for" "while" "repeat")
5701 "*Keywords to complete when at first word of a line in a task or function.
5702 \(Eg. begin, if, then, else, for, fork.)
5703 The procedures and variables defined within the Verilog program
5704 will be completed at runtime and should not be added to this list.")
5706 (defvar verilog-case-keywords
5707 '("begin" "fork" "join" "join_any" "join_none" "case" "end" "endcase" "if" "else" "for" "repeat")
5708 "*Keywords to complete when at first word of a line in case scope.
5709 \(Eg. begin, if, then, else, for, fork.)
5710 The procedures and variables defined within the Verilog program
5711 will be completed at runtime and should not be added to this list.")
5713 (defvar verilog-separator-keywords
5714 '("else" "then" "begin")
5715 "*Keywords to complete when NOT standing at the first word of a statement.
5716 \(Eg. else, then.)
5717 Variables and function names defined within the Verilog program
5718 will be completed at runtime and should not be added to this list.")
5720 (defun verilog-string-diff (str1 str2)
5721 "Return index of first letter where STR1 and STR2 differs."
5722 (catch 'done
5723 (let ((diff 0))
5724 (while t
5725 (if (or (> (1+ diff) (length str1))
5726 (> (1+ diff) (length str2)))
5727 (throw 'done diff))
5728 (or (equal (aref str1 diff) (aref str2 diff))
5729 (throw 'done diff))
5730 (setq diff (1+ diff))))))
5732 ;; Calculate all possible completions for functions if argument is `function',
5733 ;; completions for procedures if argument is `procedure' or both functions and
5734 ;; procedures otherwise.
5736 (defun verilog-func-completion (type)
5737 "Build regular expression for module/task/function names.
5738 TYPE is 'module, 'tf for task or function, or t if unknown."
5739 (if (string= verilog-str "")
5740 (setq verilog-str "[a-zA-Z_]"))
5741 (let ((verilog-str (concat (cond
5742 ((eq type 'module) "\\<\\(module\\)\\s +")
5743 ((eq type 'tf) "\\<\\(task\\|function\\)\\s +")
5744 (t "\\<\\(task\\|function\\|module\\)\\s +"))
5745 "\\<\\(" verilog-str "[a-zA-Z0-9_.]*\\)\\>"))
5746 match)
5748 (if (not (looking-at verilog-defun-re))
5749 (verilog-re-search-backward verilog-defun-re nil t))
5750 (forward-char 1)
5752 ;; Search through all reachable functions
5753 (goto-char (point-min))
5754 (while (verilog-re-search-forward verilog-str (point-max) t)
5755 (progn (setq match (buffer-substring (match-beginning 2)
5756 (match-end 2)))
5757 (if (or (null verilog-pred)
5758 (funcall verilog-pred match))
5759 (setq verilog-all (cons match verilog-all)))))
5760 (if (match-beginning 0)
5761 (goto-char (match-beginning 0)))))
5763 (defun verilog-get-completion-decl (end)
5764 "Macro for searching through current declaration (var, type or const)
5765 for matches of `str' and adding the occurrence tp `all' through point END."
5766 (let ((re (or (and verilog-indent-declaration-macros
5767 verilog-declaration-re-2-macro)
5768 verilog-declaration-re-2-no-macro))
5769 decl-end match)
5770 ;; Traverse lines
5771 (while (and (< (point) end)
5772 (verilog-re-search-forward re end t))
5773 ;; Traverse current line
5774 (setq decl-end (save-excursion (verilog-declaration-end)))
5775 (while (and (verilog-re-search-forward verilog-symbol-re decl-end t)
5776 (not (match-end 1)))
5777 (setq match (buffer-substring (match-beginning 0) (match-end 0)))
5778 (if (string-match (concat "\\<" verilog-str) match)
5779 (if (or (null verilog-pred)
5780 (funcall verilog-pred match))
5781 (setq verilog-all (cons match verilog-all)))))
5782 (forward-line 1)))
5783 verilog-all)
5785 (defun verilog-type-completion ()
5786 "Calculate all possible completions for types."
5787 (let ((start (point))
5788 goon)
5789 ;; Search for all reachable type declarations
5790 (while (or (verilog-beg-of-defun)
5791 (setq goon (not goon)))
5792 (save-excursion
5793 (if (and (< start (prog1 (save-excursion (verilog-end-of-defun)
5794 (point))
5795 (forward-char 1)))
5796 (verilog-re-search-forward
5797 "\\<type\\>\\|\\<\\(begin\\|function\\|procedure\\)\\>"
5798 start t)
5799 (not (match-end 1)))
5800 ;; Check current type declaration
5801 (verilog-get-completion-decl start))))))
5803 (defun verilog-var-completion ()
5804 "Calculate all possible completions for variables (or constants)."
5805 (let ((start (point)))
5806 ;; Search for all reachable var declarations
5807 (verilog-beg-of-defun)
5808 (save-excursion
5809 ;; Check var declarations
5810 (verilog-get-completion-decl start))))
5812 (defun verilog-keyword-completion (keyword-list)
5813 "Give list of all possible completions of keywords in KEYWORD-LIST."
5814 (mapcar '(lambda (s)
5815 (if (string-match (concat "\\<" verilog-str) s)
5816 (if (or (null verilog-pred)
5817 (funcall verilog-pred s))
5818 (setq verilog-all (cons s verilog-all)))))
5819 keyword-list))
5822 (defun verilog-completion (verilog-str verilog-pred verilog-flag)
5823 "Function passed to `completing-read', `try-completion' or `all-completions'.
5824 Called to get completion on VERILOG-STR. If VERILOG-PRED is non-nil, it
5825 must be a function to be called for every match to check if this should
5826 really be a match. If VERILOG-FLAG is t, the function returns a list of
5827 all possible completions. If VERILOG-FLAG is nil it returns a string,
5828 the longest possible completion, or t if VERILOG-STR is an exact match.
5829 If VERILOG-FLAG is 'lambda, the function returns t if VERILOG-STR is an
5830 exact match, nil otherwise."
5831 (save-excursion
5832 (let ((verilog-all nil))
5833 ;; Set buffer to use for searching labels. This should be set
5834 ;; within functions which use verilog-completions
5835 (set-buffer verilog-buffer-to-use)
5837 ;; Determine what should be completed
5838 (let ((state (car (verilog-calculate-indent))))
5839 (cond ((eq state 'defun)
5840 (save-excursion (verilog-var-completion))
5841 (verilog-func-completion 'module)
5842 (verilog-keyword-completion verilog-defun-keywords))
5844 ((eq state 'behavioral)
5845 (save-excursion (verilog-var-completion))
5846 (verilog-func-completion 'module)
5847 (verilog-keyword-completion verilog-defun-keywords))
5849 ((eq state 'block)
5850 (save-excursion (verilog-var-completion))
5851 (verilog-func-completion 'tf)
5852 (verilog-keyword-completion verilog-block-keywords))
5854 ((eq state 'case)
5855 (save-excursion (verilog-var-completion))
5856 (verilog-func-completion 'tf)
5857 (verilog-keyword-completion verilog-case-keywords))
5859 ((eq state 'tf)
5860 (save-excursion (verilog-var-completion))
5861 (verilog-func-completion 'tf)
5862 (verilog-keyword-completion verilog-tf-keywords))
5864 ((eq state 'cpp)
5865 (save-excursion (verilog-var-completion))
5866 (verilog-keyword-completion verilog-cpp-keywords))
5868 ((eq state 'cparenexp)
5869 (save-excursion (verilog-var-completion)))
5871 (t;--Anywhere else
5872 (save-excursion (verilog-var-completion))
5873 (verilog-func-completion 'both)
5874 (verilog-keyword-completion verilog-separator-keywords))))
5876 ;; Now we have built a list of all matches. Give response to caller
5877 (verilog-completion-response))))
5879 (defun verilog-completion-response ()
5880 (cond ((or (equal verilog-flag 'lambda) (null verilog-flag))
5881 ;; This was not called by all-completions
5882 (if (null verilog-all)
5883 ;; Return nil if there was no matching label
5885 ;; Get longest string common in the labels
5886 (let* ((elm (cdr verilog-all))
5887 (match (car verilog-all))
5888 (min (length match))
5889 tmp)
5890 (if (string= match verilog-str)
5891 ;; Return t if first match was an exact match
5892 (setq match t)
5893 (while (not (null elm))
5894 ;; Find longest common string
5895 (if (< (setq tmp (verilog-string-diff match (car elm))) min)
5896 (progn
5897 (setq min tmp)
5898 (setq match (substring match 0 min))))
5899 ;; Terminate with match=t if this is an exact match
5900 (if (string= (car elm) verilog-str)
5901 (progn
5902 (setq match t)
5903 (setq elm nil))
5904 (setq elm (cdr elm)))))
5905 ;; If this is a test just for exact match, return nil ot t
5906 (if (and (equal verilog-flag 'lambda) (not (equal match 't)))
5908 match))))
5909 ;; If flag is t, this was called by all-completions. Return
5910 ;; list of all possible completions
5911 (verilog-flag
5912 verilog-all)))
5914 (defvar verilog-last-word-numb 0)
5915 (defvar verilog-last-word-shown nil)
5916 (defvar verilog-last-completions nil)
5918 (defun verilog-complete-word ()
5919 "Complete word at current point.
5920 \(See also `verilog-toggle-completions', `verilog-type-keywords',
5921 and `verilog-separator-keywords'.)"
5922 (interactive)
5923 (let* ((b (save-excursion (skip-chars-backward "a-zA-Z0-9_") (point)))
5924 (e (save-excursion (skip-chars-forward "a-zA-Z0-9_") (point)))
5925 (verilog-str (buffer-substring b e))
5926 ;; The following variable is used in verilog-completion
5927 (verilog-buffer-to-use (current-buffer))
5928 (allcomp (if (and verilog-toggle-completions
5929 (string= verilog-last-word-shown verilog-str))
5930 verilog-last-completions
5931 (all-completions verilog-str 'verilog-completion)))
5932 (match (if verilog-toggle-completions
5933 "" (try-completion
5934 verilog-str (mapcar '(lambda (elm)
5935 (cons elm 0)) allcomp)))))
5936 ;; Delete old string
5937 (delete-region b e)
5939 ;; Toggle-completions inserts whole labels
5940 (if verilog-toggle-completions
5941 (progn
5942 ;; Update entry number in list
5943 (setq verilog-last-completions allcomp
5944 verilog-last-word-numb
5945 (if (>= verilog-last-word-numb (1- (length allcomp)))
5947 (1+ verilog-last-word-numb)))
5948 (setq verilog-last-word-shown (elt allcomp verilog-last-word-numb))
5949 ;; Display next match or same string if no match was found
5950 (if (not (null allcomp))
5951 (insert "" verilog-last-word-shown)
5952 (insert "" verilog-str)
5953 (message "(No match)")))
5954 ;; The other form of completion does not necessarily do that.
5956 ;; Insert match if found, or the original string if no match
5957 (if (or (null match) (equal match 't))
5958 (progn (insert "" verilog-str)
5959 (message "(No match)"))
5960 (insert "" match))
5961 ;; Give message about current status of completion
5962 (cond ((equal match 't)
5963 (if (not (null (cdr allcomp)))
5964 (message "(Complete but not unique)")
5965 (message "(Sole completion)")))
5966 ;; Display buffer if the current completion didn't help
5967 ;; on completing the label.
5968 ((and (not (null (cdr allcomp))) (= (length verilog-str)
5969 (length match)))
5970 (with-output-to-temp-buffer "*Completions*"
5971 (display-completion-list allcomp))
5972 ;; Wait for a key press. Then delete *Completion* window
5973 (momentary-string-display "" (point))
5974 (delete-window (get-buffer-window (get-buffer "*Completions*")))
5975 )))))
5977 (defun verilog-show-completions ()
5978 "Show all possible completions at current point."
5979 (interactive)
5980 (let* ((b (save-excursion (skip-chars-backward "a-zA-Z0-9_") (point)))
5981 (e (save-excursion (skip-chars-forward "a-zA-Z0-9_") (point)))
5982 (verilog-str (buffer-substring b e))
5983 ;; The following variable is used in verilog-completion
5984 (verilog-buffer-to-use (current-buffer))
5985 (allcomp (if (and verilog-toggle-completions
5986 (string= verilog-last-word-shown verilog-str))
5987 verilog-last-completions
5988 (all-completions verilog-str 'verilog-completion))))
5989 ;; Show possible completions in a temporary buffer.
5990 (with-output-to-temp-buffer "*Completions*"
5991 (display-completion-list allcomp))
5992 ;; Wait for a key press. Then delete *Completion* window
5993 (momentary-string-display "" (point))
5994 (delete-window (get-buffer-window (get-buffer "*Completions*")))))
5997 (defun verilog-get-default-symbol ()
5998 "Return symbol around current point as a string."
5999 (save-excursion
6000 (buffer-substring (progn
6001 (skip-chars-backward " \t")
6002 (skip-chars-backward "a-zA-Z0-9_")
6003 (point))
6004 (progn
6005 (skip-chars-forward "a-zA-Z0-9_")
6006 (point)))))
6008 (defun verilog-build-defun-re (str &optional arg)
6009 "Return function/task/module starting with STR as regular expression.
6010 With optional second ARG non-nil, STR is the complete name of the instruction."
6011 (if arg
6012 (concat "^\\(function\\|task\\|module\\)[ \t]+\\(" str "\\)\\>")
6013 (concat "^\\(function\\|task\\|module\\)[ \t]+\\(" str "[a-zA-Z0-9_]*\\)\\>")))
6015 (defun verilog-comp-defun (verilog-str verilog-pred verilog-flag)
6016 "Function passed to `completing-read', `try-completion' or `all-completions'.
6017 Returns a completion on any function name based on VERILOG-STR prefix. If
6018 VERILOG-PRED is non-nil, it must be a function to be called for every match
6019 to check if this should really be a match. If VERILOG-FLAG is t, the
6020 function returns a list of all possible completions. If it is nil it
6021 returns a string, the longest possible completion, or t if VERILOG-STR is
6022 an exact match. If VERILOG-FLAG is 'lambda, the function returns t if
6023 VERILOG-STR is an exact match, nil otherwise."
6024 (save-excursion
6025 (let ((verilog-all nil)
6026 match)
6028 ;; Set buffer to use for searching labels. This should be set
6029 ;; within functions which use verilog-completions
6030 (set-buffer verilog-buffer-to-use)
6032 (let ((verilog-str verilog-str))
6033 ;; Build regular expression for functions
6034 (if (string= verilog-str "")
6035 (setq verilog-str (verilog-build-defun-re "[a-zA-Z_]"))
6036 (setq verilog-str (verilog-build-defun-re verilog-str)))
6037 (goto-char (point-min))
6039 ;; Build a list of all possible completions
6040 (while (verilog-re-search-forward verilog-str nil t)
6041 (setq match (buffer-substring (match-beginning 2) (match-end 2)))
6042 (if (or (null verilog-pred)
6043 (funcall verilog-pred match))
6044 (setq verilog-all (cons match verilog-all)))))
6046 ;; Now we have built a list of all matches. Give response to caller
6047 (verilog-completion-response))))
6049 (defun verilog-goto-defun ()
6050 "Move to specified Verilog module/task/function.
6051 The default is a name found in the buffer around point.
6052 If search fails, other files are checked based on
6053 `verilog-library-flags'."
6054 (interactive)
6055 (let* ((default (verilog-get-default-symbol))
6056 ;; The following variable is used in verilog-comp-function
6057 (verilog-buffer-to-use (current-buffer))
6058 (label (if (not (string= default ""))
6059 ;; Do completion with default
6060 (completing-read (concat "Goto-Label: (default "
6061 default ") ")
6062 'verilog-comp-defun nil nil "")
6063 ;; There is no default value. Complete without it
6064 (completing-read "Goto-Label: "
6065 'verilog-comp-defun nil nil "")))
6067 ;; Make sure library paths are correct, in case need to resolve module
6068 (verilog-auto-reeval-locals)
6069 (verilog-getopt-flags)
6070 ;; If there was no response on prompt, use default value
6071 (if (string= label "")
6072 (setq label default))
6073 ;; Goto right place in buffer if label is not an empty string
6074 (or (string= label "")
6075 (progn
6076 (save-excursion
6077 (goto-char (point-min))
6078 (setq pt
6079 (re-search-forward (verilog-build-defun-re label t) nil t)))
6080 (when pt
6081 (goto-char pt)
6082 (beginning-of-line))
6084 (verilog-goto-defun-file label))))
6086 ;; Eliminate compile warning
6087 (defvar occur-pos-list)
6089 (defun verilog-showscopes ()
6090 "List all scopes in this module."
6091 (interactive)
6092 (let ((buffer (current-buffer))
6093 (linenum 1)
6094 (nlines 0)
6095 (first 1)
6096 (prevpos (point-min))
6097 (final-context-start (make-marker))
6098 (regexp "\\(module\\s-+\\w+\\s-*(\\)\\|\\(\\w+\\s-+\\w+\\s-*(\\)"))
6099 (with-output-to-temp-buffer "*Occur*"
6100 (save-excursion
6101 (message (format "Searching for %s ..." regexp))
6102 ;; Find next match, but give up if prev match was at end of buffer.
6103 (while (and (not (= prevpos (point-max)))
6104 (verilog-re-search-forward regexp nil t))
6105 (goto-char (match-beginning 0))
6106 (beginning-of-line)
6107 (save-match-data
6108 (setq linenum (+ linenum (count-lines prevpos (point)))))
6109 (setq prevpos (point))
6110 (goto-char (match-end 0))
6111 (let* ((start (save-excursion
6112 (goto-char (match-beginning 0))
6113 (forward-line (if (< nlines 0) nlines (- nlines)))
6114 (point)))
6115 (end (save-excursion
6116 (goto-char (match-end 0))
6117 (if (> nlines 0)
6118 (forward-line (1+ nlines))
6119 (forward-line 1))
6120 (point)))
6121 (tag (format "%3d" linenum))
6122 (empty (make-string (length tag) ?\ ))
6123 tem)
6124 (save-excursion
6125 (setq tem (make-marker))
6126 (set-marker tem (point))
6127 (set-buffer standard-output)
6128 (setq occur-pos-list (cons tem occur-pos-list))
6129 (or first (zerop nlines)
6130 (insert "--------\n"))
6131 (setq first nil)
6132 (insert-buffer-substring buffer start end)
6133 (backward-char (- end start))
6134 (setq tem (if (< nlines 0) (- nlines) nlines))
6135 (while (> tem 0)
6136 (insert empty ?:)
6137 (forward-line 1)
6138 (setq tem (1- tem)))
6139 (let ((this-linenum linenum))
6140 (set-marker final-context-start
6141 (+ (point) (- (match-end 0) (match-beginning 0))))
6142 (while (< (point) final-context-start)
6143 (if (null tag)
6144 (setq tag (format "%3d" this-linenum)))
6145 (insert tag ?:)))))))
6146 (set-buffer-modified-p nil))))
6149 ;; Highlight helper functions
6150 (defconst verilog-directive-regexp "\\(translate\\|coverage\\|lint\\)_")
6151 (defun verilog-within-translate-off ()
6152 "Return point if within translate-off region, else nil."
6153 (and (save-excursion
6154 (re-search-backward
6155 (concat "//\\s-*.*\\s-*" verilog-directive-regexp "\\(on\\|off\\)\\>")
6156 nil t))
6157 (equal "off" (match-string 2))
6158 (point)))
6160 (defun verilog-start-translate-off (limit)
6161 "Return point before translate-off directive if before LIMIT, else nil."
6162 (when (re-search-forward
6163 (concat "//\\s-*.*\\s-*" verilog-directive-regexp "off\\>")
6164 limit t)
6165 (match-beginning 0)))
6167 (defun verilog-back-to-start-translate-off (limit)
6168 "Return point before translate-off directive if before LIMIT, else nil."
6169 (when (re-search-backward
6170 (concat "//\\s-*.*\\s-*" verilog-directive-regexp "off\\>")
6171 limit t)
6172 (match-beginning 0)))
6174 (defun verilog-end-translate-off (limit)
6175 "Return point after translate-on directive if before LIMIT, else nil."
6177 (re-search-forward (concat
6178 "//\\s-*.*\\s-*" verilog-directive-regexp "on\\>") limit t))
6180 (defun verilog-match-translate-off (limit)
6181 "Match a translate-off block, setting `match-data' and returning t, else nil.
6182 Bound search by LIMIT."
6183 (when (< (point) limit)
6184 (let ((start (or (verilog-within-translate-off)
6185 (verilog-start-translate-off limit)))
6186 (case-fold-search t))
6187 (when start
6188 (let ((end (or (verilog-end-translate-off limit) limit)))
6189 (set-match-data (list start end))
6190 (goto-char end))))))
6192 (defun verilog-font-lock-match-item (limit)
6193 "Match, and move over, any declaration item after point.
6194 Bound search by LIMIT. Adapted from
6195 `font-lock-match-c-style-declaration-item-and-skip-to-next'."
6196 (condition-case nil
6197 (save-restriction
6198 (narrow-to-region (point-min) limit)
6199 ;; match item
6200 (when (looking-at "\\s-*\\([a-zA-Z]\\w*\\)")
6201 (save-match-data
6202 (goto-char (match-end 1))
6203 ;; move to next item
6204 (if (looking-at "\\(\\s-*,\\)")
6205 (goto-char (match-end 1))
6206 (end-of-line) t))))
6207 (error nil)))
6210 ;; Added by Subbu Meiyappan for Header
6212 (defun verilog-header ()
6213 "Insert a standard Verilog file header.
6214 See also `verilog-sk-header' for an alternative format."
6215 (interactive)
6216 (let ((start (point)))
6217 (insert "\
6218 //-----------------------------------------------------------------------------
6219 // Title : <title>
6220 // Project : <project>
6221 //-----------------------------------------------------------------------------
6222 // File : <filename>
6223 // Author : <author>
6224 // Created : <credate>
6225 // Last modified : <moddate>
6226 //-----------------------------------------------------------------------------
6227 // Description :
6228 // <description>
6229 //-----------------------------------------------------------------------------
6230 // Copyright (c) <copydate> by <company> This model is the confidential and
6231 // proprietary property of <company> and the possession or use of this
6232 // file requires a written license from <company>.
6233 //------------------------------------------------------------------------------
6234 // Modification history :
6235 // <modhist>
6236 //-----------------------------------------------------------------------------
6239 (goto-char start)
6240 (search-forward "<filename>")
6241 (replace-match (buffer-name) t t)
6242 (search-forward "<author>") (replace-match "" t t)
6243 (insert (user-full-name))
6244 (insert " <" (user-login-name) "@" (system-name) ">")
6245 (search-forward "<credate>") (replace-match "" t t)
6246 (verilog-insert-date)
6247 (search-forward "<moddate>") (replace-match "" t t)
6248 (verilog-insert-date)
6249 (search-forward "<copydate>") (replace-match "" t t)
6250 (verilog-insert-year)
6251 (search-forward "<modhist>") (replace-match "" t t)
6252 (verilog-insert-date)
6253 (insert " : created")
6254 (goto-char start)
6255 (let (string)
6256 (setq string (read-string "title: "))
6257 (search-forward "<title>")
6258 (replace-match string t t)
6259 (setq string (read-string "project: " verilog-project))
6260 (setq verilog-project string)
6261 (search-forward "<project>")
6262 (replace-match string t t)
6263 (setq string (read-string "Company: " verilog-company))
6264 (setq verilog-company string)
6265 (search-forward "<company>")
6266 (replace-match string t t)
6267 (search-forward "<company>")
6268 (replace-match string t t)
6269 (search-forward "<company>")
6270 (replace-match string t t)
6271 (search-backward "<description>")
6272 (replace-match "" t t))))
6274 ;; verilog-header Uses the verilog-insert-date function
6276 (defun verilog-insert-date ()
6277 "Insert date from the system."
6278 (interactive)
6279 (if verilog-date-scientific-format
6280 (insert (format-time-string "%Y/%m/%d"))
6281 (insert (format-time-string "%d.%m.%Y"))))
6283 (defun verilog-insert-year ()
6284 "Insert year from the system."
6285 (interactive)
6286 (insert (format-time-string "%Y")))
6290 ;; Signal list parsing
6293 ;; Elements of a signal list
6294 (defsubst verilog-sig-name (sig)
6295 (car sig))
6296 (defsubst verilog-sig-bits (sig)
6297 (nth 1 sig))
6298 (defsubst verilog-sig-comment (sig)
6299 (nth 2 sig))
6300 (defsubst verilog-sig-memory (sig)
6301 (nth 3 sig))
6302 (defsubst verilog-sig-enum (sig)
6303 (nth 4 sig))
6304 (defsubst verilog-sig-signed (sig)
6305 (nth 5 sig))
6306 (defsubst verilog-sig-type (sig)
6307 (nth 6 sig))
6308 (defsubst verilog-sig-multidim (sig)
6309 (nth 7 sig))
6310 (defsubst verilog-sig-multidim-string (sig)
6311 (if (verilog-sig-multidim sig)
6312 (let ((str "") (args (verilog-sig-multidim sig)))
6313 (while args
6314 (setq str (concat str (car args)))
6315 (setq args (cdr args)))
6316 str)))
6317 (defsubst verilog-sig-modport (sig)
6318 (nth 8 sig))
6319 (defsubst verilog-sig-width (sig)
6320 (verilog-make-width-expression (verilog-sig-bits sig)))
6322 (defsubst verilog-alw-get-inputs (sigs)
6323 (nth 2 sigs))
6324 (defsubst verilog-alw-get-outputs (sigs)
6325 (nth 0 sigs))
6326 (defsubst verilog-alw-get-uses-delayed (sigs)
6327 (nth 3 sigs))
6329 (defun verilog-signals-not-in (in-list not-list)
6330 "Return list of signals in IN-LIST that aren't also in NOT-LIST.
6331 Also remove any duplicates in IN-LIST.
6332 Signals must be in standard (base vector) form."
6333 (let (out-list)
6334 (while in-list
6335 (if (not (or (assoc (car (car in-list)) not-list)
6336 (assoc (car (car in-list)) out-list)))
6337 (setq out-list (cons (car in-list) out-list)))
6338 (setq in-list (cdr in-list)))
6339 (nreverse out-list)))
6340 ;;(verilog-signals-not-in '(("A" "") ("B" "") ("DEL" "[2:3]")) '(("DEL" "") ("EXT" "")))
6342 (defun verilog-signals-in (in-list other-list)
6343 "Return list of signals in IN-LIST that are also in OTHER-LIST.
6344 Signals must be in standard (base vector) form."
6345 (let (out-list)
6346 (while in-list
6347 (if (assoc (car (car in-list)) other-list)
6348 (setq out-list (cons (car in-list) out-list)))
6349 (setq in-list (cdr in-list)))
6350 (nreverse out-list)))
6351 ;;(verilog-signals-in '(("A" "") ("B" "") ("DEL" "[2:3]")) '(("DEL" "") ("EXT" "")))
6353 (defun verilog-signals-memory (in-list)
6354 "Return list of signals in IN-LIST that are memoried (multidimensional)."
6355 (let (out-list)
6356 (while in-list
6357 (if (nth 3 (car in-list))
6358 (setq out-list (cons (car in-list) out-list)))
6359 (setq in-list (cdr in-list)))
6360 out-list))
6361 ;;(verilog-signals-memory '(("A" nil nil "[3:0]")) '(("B" nil nil nil)))
6363 (defun verilog-signals-sort-compare (a b)
6364 "Compare signal A and B for sorting."
6365 (string< (car a) (car b)))
6367 (defun verilog-signals-not-params (in-list)
6368 "Return list of signals in IN-LIST that aren't parameters or numeric constants."
6369 (let (out-list)
6370 (while in-list
6371 (unless (boundp (intern (concat "vh-" (car (car in-list)))))
6372 (setq out-list (cons (car in-list) out-list)))
6373 (setq in-list (cdr in-list)))
6374 (nreverse out-list)))
6376 (defun verilog-signals-combine-bus (in-list)
6377 "Return a list of signals in IN-LIST, with busses combined.
6378 Duplicate signals are also removed. For example A[2] and A[1] become A[2:1]."
6379 (let (combo buswarn
6380 out-list
6381 sig highbit lowbit ; Temp information about current signal
6382 sv-name sv-highbit sv-lowbit ; Details about signal we are forming
6383 sv-comment sv-memory sv-enum sv-signed sv-type sv-multidim sv-busstring
6384 sv-modport
6385 bus)
6386 ;; Shove signals so duplicated signals will be adjacent
6387 (setq in-list (sort in-list `verilog-signals-sort-compare))
6388 (while in-list
6389 (setq sig (car in-list))
6390 ;; No current signal; form from existing details
6391 (unless sv-name
6392 (setq sv-name (verilog-sig-name sig)
6393 sv-highbit nil
6394 sv-busstring nil
6395 sv-comment (verilog-sig-comment sig)
6396 sv-memory (verilog-sig-memory sig)
6397 sv-enum (verilog-sig-enum sig)
6398 sv-signed (verilog-sig-signed sig)
6399 sv-type (verilog-sig-type sig)
6400 sv-multidim (verilog-sig-multidim sig)
6401 sv-modport (verilog-sig-modport sig)
6402 combo ""
6403 buswarn ""))
6404 ;; Extract bus details
6405 (setq bus (verilog-sig-bits sig))
6406 (cond ((and bus
6407 (or (and (string-match "\\[\\([0-9]+\\):\\([0-9]+\\)\\]" bus)
6408 (setq highbit (string-to-number (match-string 1 bus))
6409 lowbit (string-to-number
6410 (match-string 2 bus))))
6411 (and (string-match "\\[\\([0-9]+\\)\\]" bus)
6412 (setq highbit (string-to-number (match-string 1 bus))
6413 lowbit highbit))))
6414 ;; Combine bits in bus
6415 (if sv-highbit
6416 (setq sv-highbit (max highbit sv-highbit)
6417 sv-lowbit (min lowbit sv-lowbit))
6418 (setq sv-highbit highbit
6419 sv-lowbit lowbit)))
6420 (bus
6421 ;; String, probably something like `preproc:0
6422 (setq sv-busstring bus)))
6423 ;; Peek ahead to next signal
6424 (setq in-list (cdr in-list))
6425 (setq sig (car in-list))
6426 (cond ((and sig (equal sv-name (verilog-sig-name sig)))
6427 ;; Combine with this signal
6428 (when (and sv-busstring
6429 (not (equal sv-busstring (verilog-sig-bits sig))))
6430 (when nil ;; Debugging
6431 (message (concat "Warning, can't merge into single bus "
6432 sv-name bus
6433 ", the AUTOs may be wrong")))
6434 (setq buswarn ", Couldn't Merge"))
6435 (if (verilog-sig-comment sig) (setq combo ", ..."))
6436 (setq sv-memory (or sv-memory (verilog-sig-memory sig))
6437 sv-enum (or sv-enum (verilog-sig-enum sig))
6438 sv-signed (or sv-signed (verilog-sig-signed sig))
6439 sv-type (or sv-type (verilog-sig-type sig))
6440 sv-multidim (or sv-multidim (verilog-sig-multidim sig))
6441 sv-modport (or sv-modport (verilog-sig-modport sig))))
6442 ;; Doesn't match next signal, add to queue, zero in prep for next
6443 ;; Note sig may also be nil for the last signal in the list
6445 (setq out-list
6446 (cons
6447 (list sv-name
6448 (or sv-busstring
6449 (if sv-highbit
6450 (concat "[" (int-to-string sv-highbit) ":"
6451 (int-to-string sv-lowbit) "]")))
6452 (concat sv-comment combo buswarn)
6453 sv-memory sv-enum sv-signed sv-type sv-multidim sv-modport)
6454 out-list)
6455 sv-name nil))))
6457 out-list))
6459 (defun verilog-sig-tieoff (sig &optional no-width)
6460 "Return tieoff expression for given SIG, with appropriate width.
6461 Ignore width if optional NO-WIDTH is set."
6462 (let* ((width (if no-width nil (verilog-sig-width sig))))
6463 (concat
6464 (if (and verilog-active-low-regexp
6465 (string-match verilog-active-low-regexp (verilog-sig-name sig)))
6466 "~" "")
6467 (cond ((not width)
6468 "0")
6469 ((string-match "^[0-9]+$" width)
6470 (concat width (if (verilog-sig-signed sig) "'sh0" "'h0")))
6472 (concat "{" width "{1'b0}}"))))))
6475 ;; Port/Wire/Etc Reading
6478 (defun verilog-read-inst-backward-name ()
6479 "Internal. Move point back to beginning of inst-name."
6480 (verilog-backward-open-paren)
6481 (let (done)
6482 (while (not done)
6483 (verilog-re-search-backward-quick "\\()\\|\\b[a-zA-Z0-9`_\$]\\|\\]\\)" nil nil) ; ] isn't word boundary
6484 (cond ((looking-at ")")
6485 (verilog-backward-open-paren))
6486 (t (setq done t)))))
6487 (while (looking-at "\\]")
6488 (verilog-backward-open-bracket)
6489 (verilog-re-search-backward-quick "\\(\\b[a-zA-Z0-9`_\$]\\|\\]\\)" nil nil))
6490 (skip-chars-backward "a-zA-Z0-9`_$"))
6492 (defun verilog-read-inst-module ()
6493 "Return module_name when point is inside instantiation."
6494 (save-excursion
6495 (verilog-read-inst-backward-name)
6496 ;; Skip over instantiation name
6497 (verilog-re-search-backward-quick "\\(\\b[a-zA-Z0-9`_\$]\\|)\\)" nil nil) ; ) isn't word boundary
6498 ;; Check for parameterized instantiations
6499 (when (looking-at ")")
6500 (verilog-backward-open-paren)
6501 (verilog-re-search-backward-quick "\\b[a-zA-Z0-9`_\$]" nil nil))
6502 (skip-chars-backward "a-zA-Z0-9'_$")
6503 (looking-at "[a-zA-Z0-9`_\$]+")
6504 ;; Important: don't use match string, this must work with Emacs 19 font-lock on
6505 (buffer-substring-no-properties (match-beginning 0) (match-end 0))))
6507 (defun verilog-read-inst-name ()
6508 "Return instance_name when point is inside instantiation."
6509 (save-excursion
6510 (verilog-read-inst-backward-name)
6511 (looking-at "[a-zA-Z0-9`_\$]+")
6512 ;; Important: don't use match string, this must work with Emacs 19 font-lock on
6513 (buffer-substring-no-properties (match-beginning 0) (match-end 0))))
6515 (defun verilog-read-module-name ()
6516 "Return module name when after its ( or ;."
6517 (save-excursion
6518 (re-search-backward "[(;]")
6519 (verilog-re-search-backward-quick "\\b[a-zA-Z0-9`_\$]" nil nil)
6520 (skip-chars-backward "a-zA-Z0-9`_$")
6521 (looking-at "[a-zA-Z0-9`_\$]+")
6522 ;; Important: don't use match string, this must work with Emacs 19 font-lock on
6523 (verilog-symbol-detick
6524 (buffer-substring-no-properties (match-beginning 0) (match-end 0)) t)))
6526 (defun verilog-read-inst-param-value ()
6527 "Return list of parameters and values when point is inside instantiation."
6528 (save-excursion
6529 (verilog-read-inst-backward-name)
6530 ;; Skip over instantiation name
6531 (verilog-re-search-backward-quick "\\(\\b[a-zA-Z0-9`_\$]\\|)\\)" nil nil) ; ) isn't word boundary
6532 ;; If there are parameterized instantiations
6533 (when (looking-at ")")
6534 (let ((end-pt (point))
6535 params
6536 param-name paren-beg-pt param-value)
6537 (verilog-backward-open-paren)
6538 (while (verilog-re-search-forward-quick "\\." end-pt t)
6539 (verilog-re-search-forward-quick "\\([a-zA-Z0-9`_\$]\\)" nil nil)
6540 (skip-chars-backward "a-zA-Z0-9'_$")
6541 (looking-at "[a-zA-Z0-9`_\$]+")
6542 (setq param-name (buffer-substring-no-properties
6543 (match-beginning 0) (match-end 0)))
6544 (verilog-re-search-forward-quick "(" nil nil)
6545 (setq paren-beg-pt (point))
6546 (verilog-forward-close-paren)
6547 (setq param-value (verilog-string-remove-spaces
6548 (buffer-substring-no-properties
6549 paren-beg-pt (1- (point)))))
6550 (setq params (cons (list param-name param-value) params)))
6551 params))))
6553 (defun verilog-read-auto-params (num-param &optional max-param)
6554 "Return parameter list inside auto.
6555 Optional NUM-PARAM and MAX-PARAM check for a specific number of parameters."
6556 (let ((olist))
6557 (save-excursion
6558 ;; /*AUTOPUNT("parameter", "parameter")*/
6559 (search-backward "(")
6560 (while (looking-at "(?\\s *\"\\([^\"]*\\)\"\\s *,?")
6561 (setq olist (cons (match-string 1) olist))
6562 (goto-char (match-end 0))))
6563 (or (eq nil num-param)
6564 (<= num-param (length olist))
6565 (error "%s: Expected %d parameters" (verilog-point-text) num-param))
6566 (if (eq max-param nil) (setq max-param num-param))
6567 (or (eq nil max-param)
6568 (>= max-param (length olist))
6569 (error "%s: Expected <= %d parameters" (verilog-point-text) max-param))
6570 (nreverse olist)))
6572 (defun verilog-read-decls ()
6573 "Compute signal declaration information for the current module at point.
6574 Return a array of [outputs inouts inputs wire reg assign const]."
6575 (let ((end-mod-point (or (verilog-get-end-of-defun t) (point-max)))
6576 (functask 0) (paren 0) (sig-paren 0) (v2kargs-ok t)
6577 sigs-in sigs-out sigs-inout sigs-wire sigs-reg sigs-assign sigs-const
6578 sigs-gparam sigs-intf
6579 vec expect-signal keywd newsig rvalue enum io signed typedefed multidim
6580 modport)
6581 (save-excursion
6582 (verilog-beg-of-defun)
6583 (setq sigs-const (verilog-read-auto-constants (point) end-mod-point))
6584 (while (< (point) end-mod-point)
6585 ;;(if dbg (setq dbg (cons (format "Pt %s Vec %s Kwd'%s'\n" (point) vec keywd) dbg)))
6586 (cond
6587 ((looking-at "//")
6588 (if (looking-at "[^\n]*synopsys\\s +enum\\s +\\([a-zA-Z0-9_]+\\)")
6589 (setq enum (match-string 1)))
6590 (search-forward "\n"))
6591 ((looking-at "/\\*")
6592 (forward-char 2)
6593 (if (looking-at "[^*]*synopsys\\s +enum\\s +\\([a-zA-Z0-9_]+\\)")
6594 (setq enum (match-string 1)))
6595 (or (search-forward "*/")
6596 (error "%s: Unmatched /* */, at char %d" (verilog-point-text) (point))))
6597 ((looking-at "(\\*")
6598 (forward-char 2)
6599 (or (looking-at "\\s-*)") ; It's an "always @ (*)"
6600 (search-forward "*)")
6601 (error "%s: Unmatched (* *), at char %d" (verilog-point-text) (point))))
6602 ((eq ?\" (following-char))
6603 (or (re-search-forward "[^\\]\"" nil t) ;; don't forward-char first, since we look for a non backslash first
6604 (error "%s: Unmatched quotes, at char %d" (verilog-point-text) (point))))
6605 ((eq ?\; (following-char))
6606 (setq vec nil io nil expect-signal nil newsig nil paren 0 rvalue nil
6607 v2kargs-ok nil)
6608 (forward-char 1))
6609 ((eq ?= (following-char))
6610 (setq rvalue t newsig nil)
6611 (forward-char 1))
6612 ((and (eq ?, (following-char))
6613 (eq paren sig-paren))
6614 (setq rvalue nil)
6615 (forward-char 1))
6616 ;; ,'s can occur inside {} & funcs
6617 ((looking-at "[{(]")
6618 (setq paren (1+ paren))
6619 (forward-char 1))
6620 ((looking-at "[})]")
6621 (setq paren (1- paren))
6622 (forward-char 1)
6623 (when (< paren sig-paren)
6624 (setq expect-signal nil))) ; ) that ends variables inside v2k arg list
6625 ((looking-at "\\s-*\\(\\[[^]]+\\]\\)")
6626 (goto-char (match-end 0))
6627 (cond (newsig ; Memory, not just width. Patch last signal added's memory (nth 3)
6628 (setcar (cdr (cdr (cdr newsig))) (match-string 1)))
6629 (vec ;; Multidimensional
6630 (setq multidim (cons vec multidim))
6631 (setq vec (verilog-string-replace-matches
6632 "\\s-+" "" nil nil (match-string 1))))
6633 (t ;; Bit width
6634 (setq vec (verilog-string-replace-matches
6635 "\\s-+" "" nil nil (match-string 1))))))
6636 ;; Normal or escaped identifier -- note we remember the \ if escaped
6637 ((looking-at "\\s-*\\([a-zA-Z0-9`_$]+\\|\\\\[^ \t\n\f]+\\)")
6638 (goto-char (match-end 0))
6639 (setq keywd (match-string 1))
6640 (when (string-match "^\\\\" keywd)
6641 (setq keywd (concat keywd " "))) ;; Escaped ID needs space at end
6642 (cond ((equal keywd "input")
6643 (setq vec nil enum nil rvalue nil newsig nil signed nil typedefed nil multidim nil sig-paren paren
6644 expect-signal 'sigs-in io t modport nil))
6645 ((equal keywd "output")
6646 (setq vec nil enum nil rvalue nil newsig nil signed nil typedefed nil multidim nil sig-paren paren
6647 expect-signal 'sigs-out io t modport nil))
6648 ((equal keywd "inout")
6649 (setq vec nil enum nil rvalue nil newsig nil signed nil typedefed nil multidim nil sig-paren paren
6650 expect-signal 'sigs-inout io t modport nil))
6651 ((equal keywd "parameter")
6652 (setq vec nil enum nil rvalue nil signed nil typedefed nil multidim nil sig-paren paren
6653 expect-signal 'sigs-gparam io t modport nil))
6654 ((member keywd '("wire" "tri" "tri0" "tri1" "triand" "trior" "wand" "wor"))
6655 (unless io (setq vec nil enum nil rvalue nil signed nil typedefed nil multidim nil sig-paren paren
6656 expect-signal 'sigs-wire modport nil)))
6657 ((member keywd '("reg" "trireg"
6658 "byte" "shortint" "int" "longint" "integer" "time"
6659 "bit" "logic"))
6660 (unless io (setq vec nil enum nil rvalue nil signed nil typedefed nil multidim nil sig-paren paren
6661 expect-signal 'sigs-reg modport nil)))
6662 ((equal keywd "assign")
6663 (setq vec nil enum nil rvalue nil signed nil typedefed nil multidim nil sig-paren paren
6664 expect-signal 'sigs-assign modport nil))
6665 ((member keywd '("supply0" "supply1" "supply"
6666 "localparam" "genvar"))
6667 (unless io (setq vec nil enum nil rvalue nil signed nil typedefed nil multidim nil sig-paren paren
6668 expect-signal 'sigs-const modport nil)))
6669 ((equal keywd "signed")
6670 (setq signed "signed"))
6671 ((member keywd '("class" "clocking" "covergroup" "function"
6672 "property" "randsequence" "sequence" "task"))
6673 (setq functask (1+ functask)))
6674 ((member keywd '("endclass" "endclocking" "endgroup" "endfunction"
6675 "endproperty" "endsequence" "endtask"))
6676 (setq functask (1- functask)))
6677 ;; Ifdef? Ignore name of define
6678 ((member keywd '("`ifdef" "`ifndef"))
6679 (setq rvalue t))
6680 ;; Type?
6681 ((verilog-typedef-name-p keywd)
6682 (setq typedefed keywd))
6683 ;; Interface with optional modport in v2k arglist?
6684 ;; Skip over parsing modport, and take the interface name as the type
6685 ((and v2kargs-ok
6686 (eq paren 1)
6687 (looking-at "\\s-*\\(\\.\\(\\s-*[a-zA-Z0-9`_$]+\\)\\|\\)\\s-*[a-zA-Z0-9`_$]+"))
6688 (when (match-end 2) (goto-char (match-end 2)))
6689 (setq vec nil enum nil rvalue nil newsig nil signed nil typedefed keywd multidim nil sig-paren paren
6690 expect-signal 'sigs-intf io t modport (match-string 2)))
6691 ;; New signal, maybe?
6692 ((and expect-signal
6693 (eq functask 0)
6694 (not rvalue)
6695 (not (member keywd verilog-keywords)))
6696 ;; Add new signal to expect-signal's variable
6697 (setq newsig (list keywd vec nil nil enum signed typedefed multidim modport))
6698 (set expect-signal (cons newsig
6699 (symbol-value expect-signal))))))
6701 (forward-char 1)))
6702 (skip-syntax-forward " "))
6703 ;; Return arguments
6704 (vector (nreverse sigs-out)
6705 (nreverse sigs-inout)
6706 (nreverse sigs-in)
6707 (nreverse sigs-wire)
6708 (nreverse sigs-reg)
6709 (nreverse sigs-assign)
6710 (nreverse sigs-const)
6711 (nreverse sigs-gparam)
6712 (nreverse sigs-intf)))))
6714 (eval-when-compile
6715 ;; Prevent compile warnings; these are let's, not globals
6716 ;; Do not remove the eval-when-compile
6717 ;; - we want a error when we are debugging this code if they are refed.
6718 (defvar sigs-in)
6719 (defvar sigs-inout)
6720 (defvar sigs-out)
6721 (defvar sigs-intf))
6724 (defsubst verilog-modi-get-decls (modi)
6725 (verilog-modi-cache-results modi 'verilog-read-decls))
6727 (defsubst verilog-modi-get-sub-decls (modi)
6728 (verilog-modi-cache-results modi 'verilog-read-sub-decls))
6731 ;; Signal reading for given module
6732 ;; Note these all take modi's - as returned from the
6733 ;; verilog-modi-current function.
6734 (defsubst verilog-decls-get-outputs (decls)
6735 (aref decls 0))
6736 (defsubst verilog-decls-get-inouts (decls)
6737 (aref decls 1))
6738 (defsubst verilog-decls-get-inputs (decls)
6739 (aref decls 2))
6740 (defsubst verilog-decls-get-wires (decls)
6741 (aref decls 3))
6742 (defsubst verilog-decls-get-regs (decls)
6743 (aref decls 4))
6744 (defsubst verilog-decls-get-assigns (decls)
6745 (aref decls 5))
6746 (defsubst verilog-decls-get-consts (decls)
6747 (aref decls 6))
6748 (defsubst verilog-decls-get-gparams (decls)
6749 (aref decls 7))
6750 (defsubst verilog-decls-get-interfaces (decls)
6751 (aref decls 8))
6752 (defsubst verilog-subdecls-get-outputs (subdecls)
6753 (aref subdecls 0))
6754 (defsubst verilog-subdecls-get-inouts (subdecls)
6755 (aref subdecls 1))
6756 (defsubst verilog-subdecls-get-inputs (subdecls)
6757 (aref subdecls 2))
6758 (defsubst verilog-subdecls-get-interfaces (subdecls)
6759 (aref subdecls 3))
6762 (defun verilog-read-sub-decls-sig (submoddecls comment port sig vec multidim)
6763 "For `verilog-read-sub-decls-line', add a signal."
6764 (let (portdata)
6765 (when sig
6766 (setq port (verilog-symbol-detick-denumber port))
6767 (setq sig (verilog-symbol-detick-denumber sig))
6768 (if sig (setq sig (verilog-string-replace-matches "^\\s-*[---+~!|&]+\\s-*" "" nil nil sig)))
6769 (if vec (setq vec (verilog-symbol-detick-denumber vec)))
6770 (if multidim (setq multidim (mapcar `verilog-symbol-detick-denumber multidim)))
6771 (unless (or (not sig)
6772 (equal sig "")) ;; Ignore .foo(1'b1) assignments
6773 (cond ((setq portdata (assoc port (verilog-decls-get-inouts submoddecls)))
6774 (setq sigs-inout (cons (list sig vec (concat "To/From " comment) nil nil
6775 (verilog-sig-signed portdata)
6776 (verilog-sig-type portdata)
6777 multidim)
6778 sigs-inout)))
6779 ((setq portdata (assoc port (verilog-decls-get-outputs submoddecls)))
6780 (setq sigs-out (cons (list sig vec (concat "From " comment) nil nil
6781 (verilog-sig-signed portdata)
6782 (verilog-sig-type portdata)
6783 multidim)
6784 sigs-out)))
6785 ((setq portdata (assoc port (verilog-decls-get-inputs submoddecls)))
6786 (setq sigs-in (cons (list sig vec (concat "To " comment) nil nil
6787 (verilog-sig-signed portdata)
6788 (verilog-sig-type portdata)
6789 multidim)
6790 sigs-in)))
6791 ((setq portdata (assoc port (verilog-decls-get-interfaces submoddecls)))
6792 (setq sigs-intf (cons (list sig vec (concat "To/From " comment) nil nil
6793 (verilog-sig-signed portdata)
6794 (verilog-sig-type portdata)
6795 multidim)
6796 sigs-intf)))
6797 ;; (t -- warning pin isn't defined.) ; Leave for lint tool
6798 )))))
6800 (defun verilog-read-sub-decls-expr (submoddecls comment port expr)
6801 "For `verilog-read-sub-decls-line', parse a subexpression and add signals."
6802 ;;(message "vrsde: '%s'" expr)
6803 ;; Replace special /*[....]*/ comments inserted by verilog-auto-inst-port
6804 (setq expr (verilog-string-replace-matches "/\\*\\(\\[[^*]+\\]\\)\\*/" "\\1" nil nil expr))
6805 ;; Remove front operators
6806 (setq expr (verilog-string-replace-matches "^\\s-*[---+~!|&]+\\s-*" "" nil nil expr))
6808 (cond
6809 ;; {..., a, b} requires us to recurse on a,b
6810 ((string-match "^\\s-*{\\([^{}]*\\)}\\s-*$" expr)
6811 (unless verilog-auto-ignore-concat
6812 (let ((mlst (split-string (match-string 1 expr) ","))
6813 mstr)
6814 (while (setq mstr (pop mlst))
6815 (verilog-read-sub-decls-expr submoddecls comment port mstr)))))
6817 (let (sig vec multidim)
6818 (cond ;; Find \signal. Final space is part of escaped signal name
6819 ((string-match "^\\s-*\\(\\\\[^ \t\n\f]+\\s-\\)" expr)
6820 ;;(message "vrsde-s: '%s'" (match-string 1 expr))
6821 (setq sig (match-string 1 expr)
6822 expr (substring expr (match-end 0))))
6823 ;; Find signal
6824 ((string-match "^\\s-*\\([^[({).\\]+\\)" expr)
6825 ;;(message "vrsde-s: '%s'" (match-string 1 expr))
6826 (setq sig (verilog-string-remove-spaces (match-string 1 expr))
6827 expr (substring expr (match-end 0)))))
6828 ;; Find [vector] or [multi][multi][multi][vector]
6829 (while (string-match "^\\s-*\\(\\[[^]]+\\]\\)" expr)
6830 ;;(message "vrsde-v: '%s'" (match-string 1 expr))
6831 (when vec (setq multidim (cons vec multidim)))
6832 (setq vec (match-string 1 expr)
6833 expr (substring expr (match-end 0))))
6834 ;; If found signal, and nothing unrecognized, add the signal
6835 ;;(message "vrsde-rem: '%s'" expr)
6836 (when (and sig (string-match "^\\s-*$" expr))
6837 (verilog-read-sub-decls-sig submoddecls comment port sig vec multidim))))))
6839 (defun verilog-read-sub-decls-line (submoddecls comment)
6840 "For `verilog-read-sub-decls', read lines of port defs until none match anymore.
6841 Return the list of signals found, using submodi to look up each port."
6842 (let (done port)
6843 (save-excursion
6844 (forward-line 1)
6845 (while (not done)
6846 ;; Get port name
6847 (cond ((looking-at "\\s-*\\.\\s-*\\([a-zA-Z0-9`_$]*\\)\\s-*(\\s-*")
6848 (setq port (match-string 1))
6849 (goto-char (match-end 0)))
6850 ((looking-at "\\s-*\\.\\s-*\\(\\\\[^ \t\n\f]*\\)\\s-*(\\s-*")
6851 (setq port (concat (match-string 1) " ")) ;; escaped id's need trailing space
6852 (goto-char (match-end 0)))
6853 ((looking-at "\\s-*\\.[^(]*(")
6854 (setq port nil) ;; skip this line
6855 (goto-char (match-end 0)))
6857 (setq port nil done t))) ;; Unknown, ignore rest of line
6858 ;; Get signal name. Point is at the first-non-space after (
6859 ;; We intentionally ignore (non-escaped) signals with .s in them
6860 ;; this prevents AUTOWIRE etc from noticing hierarchical sigs.
6861 (when port
6862 (cond ((looking-at "\\([^[({).\\]*\\)\\s-*)")
6863 (verilog-read-sub-decls-sig
6864 submoddecls comment port
6865 (verilog-string-remove-spaces (match-string 1)) ; sig
6866 nil nil)) ; vec multidim
6868 ((looking-at "\\([^[({).\\]*\\)\\s-*\\(\\[[^]]+\\]\\)\\s-*)")
6869 (verilog-read-sub-decls-sig
6870 submoddecls comment port
6871 (verilog-string-remove-spaces (match-string 1)) ; sig
6872 (match-string 2) nil)) ; vec multidim
6873 ;; Fastpath was above looking-at's.
6874 ;; For something more complicated invoke a parser
6875 ((looking-at "[^)]+")
6876 (verilog-read-sub-decls-expr
6877 submoddecls comment port
6878 (buffer-substring
6879 (point) (1- (progn (backward-char 1) ; start at (
6880 (forward-sexp 1) (point)))))))) ; expr
6882 (forward-line 1)))))
6884 (defun verilog-read-sub-decls ()
6885 "Internally parse signals going to modules under this module.
6886 Return a array of [ outputs inouts inputs ] signals for modules that are
6887 instantiated in this module. For example if declare A A (.B(SIG)) and SIG
6888 is a output, then SIG will be included in the list.
6890 This only works on instantiations created with /*AUTOINST*/ converted by
6891 \\[verilog-auto-inst]. Otherwise, it would have to read in the whole
6892 component library to determine connectivity of the design.
6894 One work around for this problem is to manually create // Inputs and //
6895 Outputs comments above subcell signals, for example:
6897 module ModuleName (
6898 // Outputs
6899 .out (out),
6900 // Inputs
6901 .in (in));"
6902 (save-excursion
6903 (let ((end-mod-point (verilog-get-end-of-defun t))
6904 st-point end-inst-point
6905 ;; below 3 modified by verilog-read-sub-decls-line
6906 sigs-out sigs-inout sigs-in sigs-intf)
6907 (verilog-beg-of-defun)
6908 (while (verilog-re-search-forward "\\(/\\*AUTOINST\\*/\\|\\.\\*\\)" end-mod-point t)
6909 (save-excursion
6910 (goto-char (match-beginning 0))
6911 (unless (verilog-inside-comment-p)
6912 ;; Attempt to snarf a comment
6913 (let* ((submod (verilog-read-inst-module))
6914 (inst (verilog-read-inst-name))
6915 (comment (concat inst " of " submod ".v"))
6916 submodi submoddecls)
6917 (when (setq submodi (verilog-modi-lookup submod t))
6918 (setq submoddecls (verilog-modi-get-decls submodi))
6919 ;; This could have used a list created by verilog-auto-inst
6920 ;; However I want it to be runnable even on user's manually added signals
6921 (verilog-backward-open-paren)
6922 (setq end-inst-point (save-excursion (forward-sexp 1) (point))
6923 st-point (point))
6924 (while (re-search-forward "\\s *(?\\s *// Interfaces" end-inst-point t)
6925 (verilog-read-sub-decls-line submoddecls comment)) ;; Modifies sigs-out
6926 (goto-char st-point)
6927 (while (re-search-forward "\\s *(?\\s *// Outputs" end-inst-point t)
6928 (verilog-read-sub-decls-line submoddecls comment)) ;; Modifies sigs-out
6929 (goto-char st-point)
6930 (while (re-search-forward "\\s *// Inouts" end-inst-point t)
6931 (verilog-read-sub-decls-line submoddecls comment)) ;; Modifies sigs-inout
6932 (goto-char st-point)
6933 (while (re-search-forward "\\s *// Inputs" end-inst-point t)
6934 (verilog-read-sub-decls-line submoddecls comment)) ;; Modifies sigs-in
6935 )))))
6936 ;; Combine duplicate bits
6937 ;;(setq rr (vector sigs-out sigs-inout sigs-in))
6938 (vector (verilog-signals-combine-bus (nreverse sigs-out))
6939 (verilog-signals-combine-bus (nreverse sigs-inout))
6940 (verilog-signals-combine-bus (nreverse sigs-in))
6941 (verilog-signals-combine-bus (nreverse sigs-intf))))))
6943 (defun verilog-read-inst-pins ()
6944 "Return an array of [ pins ] for the current instantiation at point.
6945 For example if declare A A (.B(SIG)) then B will be included in the list."
6946 (save-excursion
6947 (let ((end-mod-point (point)) ;; presume at /*AUTOINST*/ point
6948 pins pin)
6949 (verilog-backward-open-paren)
6950 (while (re-search-forward "\\.\\([^(,) \t\n\f]*\\)\\s-*" end-mod-point t)
6951 (setq pin (match-string 1))
6952 (unless (verilog-inside-comment-p)
6953 (setq pins (cons (list pin) pins))
6954 (when (looking-at "(")
6955 (forward-sexp 1))))
6956 (vector pins))))
6958 (defun verilog-read-arg-pins ()
6959 "Return an array of [ pins ] for the current argument declaration at point."
6960 (save-excursion
6961 (let ((end-mod-point (point)) ;; presume at /*AUTOARG*/ point
6962 pins pin)
6963 (verilog-backward-open-paren)
6964 (while (re-search-forward "\\([a-zA-Z0-9$_.%`]+\\)" end-mod-point t)
6965 (setq pin (match-string 1))
6966 (unless (verilog-inside-comment-p)
6967 (setq pins (cons (list pin) pins))))
6968 (vector pins))))
6970 (defun verilog-read-auto-constants (beg end-mod-point)
6971 "Return a list of AUTO_CONSTANTs used in the region from BEG to END-MOD-POINT."
6972 ;; Insert new
6973 (save-excursion
6974 (let (sig-list tpl-end-pt)
6975 (goto-char beg)
6976 (while (re-search-forward "\\<AUTO_CONSTANT" end-mod-point t)
6977 (if (not (looking-at "\\s *("))
6978 (error "%s: Missing () after AUTO_CONSTANT" (verilog-point-text)))
6979 (search-forward "(" end-mod-point)
6980 (setq tpl-end-pt (save-excursion
6981 (backward-char 1)
6982 (forward-sexp 1) ;; Moves to paren that closes argdecl's
6983 (backward-char 1)
6984 (point)))
6985 (while (re-search-forward "\\s-*\\([\"a-zA-Z0-9$_.%`]+\\)\\s-*,*" tpl-end-pt t)
6986 (setq sig-list (cons (list (match-string 1) nil nil) sig-list))))
6987 sig-list)))
6989 (defun verilog-read-auto-lisp (start end)
6990 "Look for and evaluate a AUTO_LISP between START and END."
6991 (save-excursion
6992 (goto-char start)
6993 (while (re-search-forward "\\<AUTO_LISP(" end t)
6994 (backward-char)
6995 (let* ((beg-pt (prog1 (point)
6996 (forward-sexp 1))) ;; Closing paren
6997 (end-pt (point)))
6998 (eval-region beg-pt end-pt nil)))))
7000 (eval-when-compile
7001 ;; Prevent compile warnings; these are let's, not globals
7002 ;; Do not remove the eval-when-compile
7003 ;; - we want a error when we are debugging this code if they are refed.
7004 (defvar sigs-in)
7005 (defvar sigs-out)
7006 (defvar got-sig)
7007 (defvar got-rvalue)
7008 (defvar uses-delayed)
7009 (defvar vector-skip-list))
7011 (defun verilog-read-always-signals-recurse
7012 (exit-keywd rvalue ignore-next)
7013 "Recursive routine for parentheses/bracket matching.
7014 EXIT-KEYWD is expression to stop at, nil if top level.
7015 RVALUE is true if at right hand side of equal.
7016 IGNORE-NEXT is true to ignore next token, fake from inside case statement."
7017 (let* ((semi-rvalue (equal "endcase" exit-keywd)) ;; true if after a ; we are looking for rvalue
7018 keywd last-keywd sig-tolk sig-last-tolk gotend got-sig got-rvalue end-else-check)
7019 ;;(if dbg (setq dbg (concat dbg (format "Recursion %S %S %S\n" exit-keywd rvalue ignore-next))))
7020 (while (not (or (eobp) gotend))
7021 (cond
7022 ((looking-at "//")
7023 (search-forward "\n"))
7024 ((looking-at "/\\*")
7025 (or (search-forward "*/")
7026 (error "%s: Unmatched /* */, at char %d" (verilog-point-text) (point))))
7027 ((looking-at "(\\*")
7028 (or (looking-at "(\\*\\s-*)") ; It's a "always @ (*)"
7029 (search-forward "*)")
7030 (error "%s: Unmatched (* *), at char %d" (verilog-point-text) (point))))
7031 (t (setq keywd (buffer-substring-no-properties
7032 (point)
7033 (save-excursion (when (eq 0 (skip-chars-forward "a-zA-Z0-9$_.%`"))
7034 (forward-char 1))
7035 (point)))
7036 sig-last-tolk sig-tolk
7037 sig-tolk nil)
7038 ;;(if dbg (setq dbg (concat dbg (format "\tPt=%S %S\trv=%S in=%S ee=%S gs=%S\n" (point) keywd rvalue ignore-next end-else-check got-sig))))
7039 (cond
7040 ((equal keywd "\"")
7041 (or (re-search-forward "[^\\]\"" nil t)
7042 (error "%s: Unmatched quotes, at char %d" (verilog-point-text) (point))))
7043 ;; else at top level loop, keep parsing
7044 ((and end-else-check (equal keywd "else"))
7045 ;;(if dbg (setq dbg (concat dbg (format "\tif-check-else %s\n" keywd))))
7046 ;; no forward movement, want to see else in lower loop
7047 (setq end-else-check nil))
7048 ;; End at top level loop
7049 ((and end-else-check (looking-at "[^ \t\n\f]"))
7050 ;;(if dbg (setq dbg (concat dbg (format "\tif-check-else-other %s\n" keywd))))
7051 (setq gotend t))
7052 ;; Final statement?
7053 ((and exit-keywd (equal keywd exit-keywd))
7054 (setq gotend t)
7055 (forward-char (length keywd)))
7056 ;; Standard tokens...
7057 ((equal keywd ";")
7058 (setq ignore-next nil rvalue semi-rvalue)
7059 ;; Final statement at top level loop?
7060 (when (not exit-keywd)
7061 ;;(if dbg (setq dbg (concat dbg (format "\ttop-end-check %s\n" keywd))))
7062 (setq end-else-check t))
7063 (forward-char 1))
7064 ((equal keywd "'")
7065 (if (looking-at "'[sS]?[hdxboHDXBO]?[ \t]*[0-9a-fA-F_xzXZ?]+")
7066 (goto-char (match-end 0))
7067 (forward-char 1)))
7068 ((equal keywd ":") ;; Case statement, begin/end label, x?y:z
7069 (cond ((equal "endcase" exit-keywd) ;; case x: y=z; statement next
7070 (setq ignore-next nil rvalue nil))
7071 ((equal "?" exit-keywd) ;; x?y:z rvalue
7072 ) ;; NOP
7073 ((equal "]" exit-keywd) ;; [x:y] rvalue
7074 ) ;; NOP
7075 (got-sig ;; label: statement
7076 (setq ignore-next nil rvalue semi-rvalue got-sig nil))
7077 ((not rvalue) ;; begin label
7078 (setq ignore-next t rvalue nil)))
7079 (forward-char 1))
7080 ((equal keywd "=")
7081 (if (and (eq (char-before) ?< )
7082 (not rvalue))
7083 (setq uses-delayed 1))
7084 (setq ignore-next nil rvalue t)
7085 (forward-char 1))
7086 ((equal keywd "?")
7087 (forward-char 1)
7088 (verilog-read-always-signals-recurse ":" rvalue nil))
7089 ((equal keywd "[")
7090 (forward-char 1)
7091 (verilog-read-always-signals-recurse "]" t nil))
7092 ((equal keywd "(")
7093 (forward-char 1)
7094 (cond (sig-last-tolk ;; Function call; zap last signal
7095 (setq got-sig nil)))
7096 (cond ((equal last-keywd "for")
7097 (verilog-read-always-signals-recurse ";" nil nil)
7098 (verilog-read-always-signals-recurse ";" t nil)
7099 (verilog-read-always-signals-recurse ")" nil nil))
7100 (t (verilog-read-always-signals-recurse ")" t nil))))
7101 ((equal keywd "begin")
7102 (skip-syntax-forward "w_")
7103 (verilog-read-always-signals-recurse "end" nil nil)
7104 ;;(if dbg (setq dbg (concat dbg (format "\tgot-end %s\n" exit-keywd))))
7105 (setq ignore-next nil rvalue semi-rvalue)
7106 (if (not exit-keywd) (setq end-else-check t)))
7107 ((or (equal keywd "case")
7108 (equal keywd "casex")
7109 (equal keywd "casez"))
7110 (skip-syntax-forward "w_")
7111 (verilog-read-always-signals-recurse "endcase" t nil)
7112 (setq ignore-next nil rvalue semi-rvalue)
7113 (if (not exit-keywd) (setq gotend t))) ;; top level begin/end
7114 ((string-match "^[$`a-zA-Z_]" keywd) ;; not exactly word constituent
7115 (cond ((or (equal keywd "`ifdef")
7116 (equal keywd "`ifndef"))
7117 (setq ignore-next t))
7118 ((or ignore-next
7119 (member keywd verilog-keywords)
7120 (string-match "^\\$" keywd)) ;; PLI task
7121 (setq ignore-next nil))
7123 (setq keywd (verilog-symbol-detick-denumber keywd))
7124 (when got-sig
7125 (if got-rvalue (setq sigs-in (cons got-sig sigs-in))
7126 (setq sigs-out (cons got-sig sigs-out)))
7127 ;;(if dbg (setq dbg (concat dbg (format "\t\tgot-sig=%S rv=%S\n" got-sig got-rvalue))))
7129 (setq got-rvalue rvalue
7130 got-sig (if (or (not keywd)
7131 (assoc keywd (if got-rvalue sigs-in sigs-out)))
7132 nil (list keywd nil nil))
7133 sig-tolk t)))
7134 (skip-chars-forward "a-zA-Z0-9$_.%`"))
7136 (forward-char 1)))
7137 ;; End of non-comment token
7138 (setq last-keywd keywd)))
7139 (skip-syntax-forward " "))
7140 ;; Append the final pending signal
7141 (when got-sig
7142 (if got-rvalue (setq sigs-in (cons got-sig sigs-in))
7143 (setq sigs-out (cons got-sig sigs-out)))
7144 ;;(if dbg (setq dbg (concat dbg (format "\t\tgot-sig=%S rv=%S\n" got-sig got-rvalue))))
7145 (setq got-sig nil))
7146 ;;(if dbg (setq dbg (concat dbg (format "ENDRecursion %s\n" exit-keywd))))
7149 (defun verilog-read-always-signals ()
7150 "Parse always block at point and return list of (outputs inout inputs)."
7151 ;; Insert new
7152 (save-excursion
7153 (let* (;;(dbg "")
7154 sigs-in sigs-out
7155 uses-delayed) ;; Found signal/rvalue; push if not function
7156 (search-forward ")")
7157 (verilog-read-always-signals-recurse nil nil nil)
7158 ;;(if dbg (with-current-buffer (get-buffer-create "*vl-dbg*")) (delete-region (point-min) (point-max)) (insert dbg) (setq dbg ""))
7159 ;; Return what was found
7160 (list sigs-out nil sigs-in uses-delayed))))
7162 (defun verilog-read-instants ()
7163 "Parse module at point and return list of ( ( file instance ) ... )."
7164 (verilog-beg-of-defun)
7165 (let* ((end-mod-point (verilog-get-end-of-defun t))
7166 (state nil)
7167 (instants-list nil))
7168 (save-excursion
7169 (while (< (point) end-mod-point)
7170 ;; Stay at level 0, no comments
7171 (while (progn
7172 (setq state (parse-partial-sexp (point) end-mod-point 0 t nil))
7173 (or (> (car state) 0) ; in parens
7174 (nth 5 state) ; comment
7176 (forward-line 1))
7177 (beginning-of-line)
7178 (if (looking-at "^\\s-*\\([a-zA-Z0-9`_$]+\\)\\s-+\\([a-zA-Z0-9`_$]+\\)\\s-*(")
7179 ;;(if (looking-at "^\\(.+\\)$")
7180 (let ((module (match-string 1))
7181 (instant (match-string 2)))
7182 (if (not (member module verilog-keywords))
7183 (setq instants-list (cons (list module instant) instants-list)))))
7184 (forward-line 1)))
7185 instants-list))
7188 (defun verilog-read-auto-template (module)
7189 "Look for a auto_template for the instantiation of the given MODULE.
7190 If found returns the signal name connections. Return REGEXP and
7191 list of ( (signal_name connection_name)... )."
7192 (save-excursion
7193 ;; Find beginning
7194 (let ((tpl-regexp "\\([0-9]+\\)")
7195 (lineno 0)
7196 (templateno 0)
7197 tpl-sig-list tpl-wild-list tpl-end-pt rep)
7198 (cond ((or
7199 (re-search-backward (concat "^\\s-*/?\\*?\\s-*" module "\\s-+AUTO_TEMPLATE") nil t)
7200 (progn
7201 (goto-char (point-min))
7202 (re-search-forward (concat "^\\s-*/?\\*?\\s-*" module "\\s-+AUTO_TEMPLATE") nil t)))
7203 (goto-char (match-end 0))
7204 ;; Parse "REGEXP"
7205 ;; We reserve @"..." for future lisp expressions that evaluate once-per-AUTOINST
7206 (when (looking-at "\\s-*\"\\([^\"]*\\)\"")
7207 (setq tpl-regexp (match-string 1))
7208 (goto-char (match-end 0)))
7209 (search-forward "(")
7210 ;; Parse lines in the template
7211 (when verilog-auto-inst-template-numbers
7212 (save-excursion
7213 (goto-char (point-min))
7214 (while (search-forward "AUTO_TEMPLATE" nil t)
7215 (setq templateno (1+ templateno)))))
7216 (setq tpl-end-pt (save-excursion
7217 (backward-char 1)
7218 (forward-sexp 1) ;; Moves to paren that closes argdecl's
7219 (backward-char 1)
7220 (point)))
7222 (while (< (point) tpl-end-pt)
7223 (cond ((looking-at "\\s-*\\.\\([a-zA-Z0-9`_$]+\\)\\s-*(\\(.*\\))\\s-*\\(,\\|)\\s-*;\\)")
7224 (setq tpl-sig-list (cons (list
7225 (match-string-no-properties 1)
7226 (match-string-no-properties 2)
7227 templateno lineno)
7228 tpl-sig-list))
7229 (goto-char (match-end 0)))
7230 ;; Regexp form??
7231 ((looking-at
7232 ;; Regexp bug in XEmacs disallows ][ inside [], and wants + last
7233 "\\s-*\\.\\(\\([a-zA-Z0-9`_$+@^.*?|---]+\\|[][]\\|\\\\[()|]\\)+\\)\\s-*(\\(.*\\))\\s-*\\(,\\|)\\s-*;\\)")
7234 (setq rep (match-string-no-properties 3))
7235 (goto-char (match-end 0))
7236 (setq tpl-wild-list
7237 (cons (list
7238 (concat "^"
7239 (verilog-string-replace-matches "@" "\\\\([0-9]+\\\\)" nil nil
7240 (match-string 1))
7241 "$")
7243 templateno lineno)
7244 tpl-wild-list)))
7245 ((looking-at "[ \t\f]+")
7246 (goto-char (match-end 0)))
7247 ((looking-at "\n")
7248 (setq lineno (1+ lineno))
7249 (goto-char (match-end 0)))
7250 ((looking-at "//")
7251 (search-forward "\n"))
7252 ((looking-at "/\\*")
7253 (forward-char 2)
7254 (or (search-forward "*/")
7255 (error "%s: Unmatched /* */, at char %d" (verilog-point-text) (point))))
7257 (error "%s: AUTO_TEMPLATE parsing error: %s"
7258 (verilog-point-text)
7259 (progn (looking-at ".*$") (match-string 0))))))
7260 ;; Return
7261 (vector tpl-regexp
7262 (list tpl-sig-list tpl-wild-list)))
7263 ;; If no template found
7264 (t (vector tpl-regexp nil))))))
7265 ;;(progn (find-file "auto-template.v") (verilog-read-auto-template "ptl_entry"))
7267 (defun verilog-set-define (defname defvalue &optional buffer enumname)
7268 "Set the definition DEFNAME to the DEFVALUE in the given BUFFER.
7269 Optionally associate it with the specified enumeration ENUMNAME."
7270 (with-current-buffer (or buffer (current-buffer))
7271 (let ((mac (intern (concat "vh-" defname))))
7272 ;;(message "Define %s=%s" defname defvalue) (sleep-for 1)
7273 ;; Need to define to a constant if no value given
7274 (set (make-local-variable mac)
7275 (if (equal defvalue "") "1" defvalue)))
7276 (if enumname
7277 (let ((enumvar (intern (concat "venum-" enumname))))
7278 ;;(message "Define %s=%s" defname defvalue) (sleep-for 1)
7279 (unless (boundp enumvar) (set enumvar nil))
7280 (make-local-variable enumvar)
7281 (add-to-list enumvar defname)))))
7283 (defun verilog-read-defines (&optional filename recurse subcall)
7284 "Read `defines and parameters for the current file, or optional FILENAME.
7285 If the filename is provided, `verilog-library-flags' will be used to
7286 resolve it. If optional RECURSE is non-nil, recurse through `includes.
7288 Parameters must be simple assignments to constants, or have their own
7289 \"parameter\" label rather than a list of parameters. Thus:
7291 parameter X = 5, Y = 10; // Ok
7292 parameter X = {1'b1, 2'h2}; // Ok
7293 parameter X = {1'b1, 2'h2}, Y = 10; // Bad, make into 2 parameter lines
7295 Defines must be simple text substitutions, one on a line, starting
7296 at the beginning of the line. Any ifdefs or multiline comments around the
7297 define are ignored.
7299 Defines are stored inside Emacs variables using the name vh-{definename}.
7301 This function is useful for setting vh-* variables. The file variables
7302 feature can be used to set defines that `verilog-mode' can see; put at the
7303 *END* of your file something like:
7305 // Local Variables:
7306 // vh-macro:\"macro_definition\"
7307 // End:
7309 If macros are defined earlier in the same file and you want their values,
7310 you can read them automatically (provided `enable-local-eval' is on):
7312 // Local Variables:
7313 // eval:(verilog-read-defines)
7314 // eval:(verilog-read-defines \"group_standard_includes.v\")
7315 // End:
7317 Note these are only read when the file is first visited, you must use
7318 \\[find-alternate-file] RET to have these take effect after editing them!
7320 If you want to disable the \"Process `eval' or hook local variables\"
7321 warning message, you need to add to your .emacs file:
7323 (setq enable-local-eval t)"
7324 (let ((origbuf (current-buffer)))
7325 (save-excursion
7326 (unless subcall (verilog-getopt-flags))
7327 (when filename
7328 (let ((fns (verilog-library-filenames filename (buffer-file-name))))
7329 (if fns
7330 (set-buffer (find-file-noselect (car fns)))
7331 (error (concat (verilog-point-text)
7332 ": Can't find verilog-read-defines file: " filename)))))
7333 (when recurse
7334 (goto-char (point-min))
7335 (while (re-search-forward "^\\s-*`include\\s-+\\([^ \t\n\f]+\\)" nil t)
7336 (let ((inc (verilog-string-replace-matches "\"" "" nil nil (match-string-no-properties 1))))
7337 (unless (verilog-inside-comment-p)
7338 (verilog-read-defines inc recurse t)))))
7339 ;; Read `defines
7340 ;; note we don't use verilog-re... it's faster this way, and that
7341 ;; function has problems when comments are at the end of the define
7342 (goto-char (point-min))
7343 (while (re-search-forward "^\\s-*`define\\s-+\\([a-zA-Z0-9_$]+\\)\\s-+\\(.*\\)$" nil t)
7344 (let ((defname (match-string-no-properties 1))
7345 (defvalue (match-string-no-properties 2)))
7346 (setq defvalue (verilog-string-replace-matches "\\s-*/[/*].*$" "" nil nil defvalue))
7347 (verilog-set-define defname defvalue origbuf)))
7348 ;; Hack: Read parameters
7349 (goto-char (point-min))
7350 (while (re-search-forward
7351 "^\\s-*\\(parameter\\|localparam\\)\\(\\s-*\\[[^]]*\\]\\)?\\s-+" nil t)
7352 (let (enumname)
7353 ;; The primary way of getting defines is verilog-read-decls
7354 ;; However, that isn't called yet for included files, so we'll add another scheme
7355 (if (looking-at "[^\n]*synopsys\\s +enum\\s +\\([a-zA-Z0-9_]+\\)")
7356 (setq enumname (match-string-no-properties 1)))
7357 (forward-comment 999)
7358 (while (looking-at "\\s-*,?\\s-*\\([a-zA-Z0-9_$]+\\)\\s-*=\\s-*\\([^;,]*\\),?\\s-*")
7359 (verilog-set-define (match-string-no-properties 1) (match-string-no-properties 2) origbuf enumname)
7360 (goto-char (match-end 0))
7361 (forward-comment 999)))))))
7363 (defun verilog-read-includes ()
7364 "Read `includes for the current file.
7365 This will find all of the `includes which are at the beginning of lines,
7366 ignoring any ifdefs or multiline comments around them.
7367 `verilog-read-defines' is then performed on the current and each included
7368 file.
7370 It is often useful put at the *END* of your file something like:
7372 // Local Variables:
7373 // eval:(verilog-read-defines)
7374 // eval:(verilog-read-includes)
7375 // End:
7377 Note includes are only read when the file is first visited, you must use
7378 \\[find-alternate-file] RET to have these take effect after editing them!
7380 It is good to get in the habit of including all needed files in each .v
7381 file that needs it, rather than waiting for compile time. This will aid
7382 this process, Verilint, and readability. To prevent defining the same
7383 variable over and over when many modules are compiled together, put a test
7384 around the inside each include file:
7386 foo.v (a include):
7387 `ifdef _FOO_V // include if not already included
7388 `else
7389 `define _FOO_V
7390 ... contents of file
7391 `endif // _FOO_V"
7392 ;;slow: (verilog-read-defines nil t))
7393 (save-excursion
7394 (verilog-getopt-flags)
7395 (goto-char (point-min))
7396 (while (re-search-forward "^\\s-*`include\\s-+\\([^ \t\n\f]+\\)" nil t)
7397 (let ((inc (verilog-string-replace-matches "\"" "" nil nil (match-string 1))))
7398 (verilog-read-defines inc nil t)))))
7400 (defun verilog-read-signals (&optional start end)
7401 "Return a simple list of all possible signals in the file.
7402 Bounded by optional region from START to END. Overly aggressive but fast.
7403 Some macros and such are also found and included. For dinotrace.el."
7404 (let (sigs-all keywd)
7405 (progn;save-excursion
7406 (goto-char (or start (point-min)))
7407 (setq end (or end (point-max)))
7408 (while (re-search-forward "[\"/a-zA-Z_.%`]" end t)
7409 (forward-char -1)
7410 (cond
7411 ((looking-at "//")
7412 (search-forward "\n"))
7413 ((looking-at "/\\*")
7414 (search-forward "*/"))
7415 ((looking-at "(\\*")
7416 (or (looking-at "(\\*\\s-*)") ; It's a "always @ (*)"
7417 (search-forward "*)")))
7418 ((eq ?\" (following-char))
7419 (re-search-forward "[^\\]\"")) ;; don't forward-char first, since we look for a non backslash first
7420 ((looking-at "\\s-*\\([a-zA-Z0-9$_.%`]+\\)")
7421 (goto-char (match-end 0))
7422 (setq keywd (match-string-no-properties 1))
7423 (or (member keywd verilog-keywords)
7424 (member keywd sigs-all)
7425 (setq sigs-all (cons keywd sigs-all))))
7426 (t (forward-char 1))))
7427 ;; Return list
7428 sigs-all)))
7431 ;; Argument file parsing
7434 (defun verilog-getopt (arglist)
7435 "Parse -f, -v etc arguments in ARGLIST list or string."
7436 (unless (listp arglist) (setq arglist (list arglist)))
7437 (let ((space-args '())
7438 arg next-param)
7439 ;; Split on spaces, so users can pass whole command lines
7440 (while arglist
7441 (setq arg (car arglist)
7442 arglist (cdr arglist))
7443 (while (string-match "^\\([^ \t\n\f]+\\)[ \t\n\f]*\\(.*$\\)" arg)
7444 (setq space-args (append space-args
7445 (list (match-string-no-properties 1 arg))))
7446 (setq arg (match-string 2 arg))))
7447 ;; Parse arguments
7448 (while space-args
7449 (setq arg (car space-args)
7450 space-args (cdr space-args))
7451 (cond
7452 ;; Need another arg
7453 ((equal arg "-f")
7454 (setq next-param arg))
7455 ((equal arg "-v")
7456 (setq next-param arg))
7457 ((equal arg "-y")
7458 (setq next-param arg))
7459 ;; +libext+(ext1)+(ext2)...
7460 ((string-match "^\\+libext\\+\\(.*\\)" arg)
7461 (setq arg (match-string 1 arg))
7462 (while (string-match "\\([^+]+\\)\\+?\\(.*\\)" arg)
7463 (verilog-add-list-unique `verilog-library-extensions
7464 (match-string 1 arg))
7465 (setq arg (match-string 2 arg))))
7467 ((or (string-match "^-D\\([^+=]*\\)[+=]\\(.*\\)" arg) ;; -Ddefine=val
7468 (string-match "^-D\\([^+=]*\\)\\(\\)" arg) ;; -Ddefine
7469 (string-match "^\\+define\\([^+=]*\\)[+=]\\(.*\\)" arg) ;; +define+val
7470 (string-match "^\\+define\\([^+=]*\\)\\(\\)" arg)) ;; +define+define
7471 (verilog-set-define (match-string 1 arg) (match-string 2 arg)))
7473 ((or (string-match "^\\+incdir\\+\\(.*\\)" arg) ;; +incdir+dir
7474 (string-match "^-I\\(.*\\)" arg)) ;; -Idir
7475 (verilog-add-list-unique `verilog-library-directories
7476 (match-string 1 (substitute-in-file-name arg))))
7477 ;; Ignore
7478 ((equal "+librescan" arg))
7479 ((string-match "^-U\\(.*\\)" arg)) ;; -Udefine
7480 ;; Second parameters
7481 ((equal next-param "-f")
7482 (setq next-param nil)
7483 (verilog-getopt-file (substitute-in-file-name arg)))
7484 ((equal next-param "-v")
7485 (setq next-param nil)
7486 (verilog-add-list-unique `verilog-library-files
7487 (substitute-in-file-name arg)))
7488 ((equal next-param "-y")
7489 (setq next-param nil)
7490 (verilog-add-list-unique `verilog-library-directories
7491 (substitute-in-file-name arg)))
7492 ;; Filename
7493 ((string-match "^[^-+]" arg)
7494 (verilog-add-list-unique `verilog-library-files
7495 (substitute-in-file-name arg)))
7496 ;; Default - ignore; no warning
7497 ))))
7498 ;;(verilog-getopt (list "+libext+.a+.b" "+incdir+foodir" "+define+a+aval" "-f" "otherf" "-v" "library" "-y" "dir"))
7500 (defun verilog-getopt-file (filename)
7501 "Read Verilog options from the specified FILENAME."
7502 (save-excursion
7503 (let ((fns (verilog-library-filenames filename (buffer-file-name)))
7504 (orig-buffer (current-buffer))
7505 line)
7506 (if fns
7507 (set-buffer (find-file-noselect (car fns)))
7508 (error (concat (verilog-point-text)
7509 ": Can't find verilog-getopt-file -f file: " filename)))
7510 (goto-char (point-min))
7511 (while (not (eobp))
7512 (setq line (buffer-substring (point)
7513 (save-excursion (end-of-line) (point))))
7514 (forward-line 1)
7515 (when (string-match "//" line)
7516 (setq line (substring line 0 (match-beginning 0))))
7517 (with-current-buffer orig-buffer ; Variables are buffer-local, so need right context.
7518 (verilog-getopt line))))))
7520 (defun verilog-getopt-flags ()
7521 "Convert `verilog-library-flags' into standard library variables."
7522 ;; If the flags are local, then all the outputs should be local also
7523 (when (local-variable-p `verilog-library-flags (current-buffer))
7524 (mapc 'make-local-variable '(verilog-library-extensions
7525 verilog-library-directories
7526 verilog-library-files
7527 verilog-library-flags)))
7528 ;; Allow user to customize
7529 (run-hooks 'verilog-before-getopt-flags-hook)
7530 ;; Process arguments
7531 (verilog-getopt verilog-library-flags)
7532 ;; Allow user to customize
7533 (run-hooks 'verilog-getopt-flags-hook))
7535 (defun verilog-add-list-unique (varref object)
7536 "Append to VARREF list the given OBJECT,
7537 unless it is already a member of the variable's list."
7538 (unless (member object (symbol-value varref))
7539 (set varref (append (symbol-value varref) (list object))))
7540 varref)
7541 ;;(progn (setq l '()) (verilog-add-list-unique `l "a") (verilog-add-list-unique `l "a") l)
7545 ;; Cached directory support
7548 (defvar verilog-dir-cache-preserving nil
7549 "If set, the directory cache is enabled, and file system changes are ignored.
7550 See `verilog-dir-exists-p' and `verilog-dir-files'.")
7552 ;; If adding new cached variable, add also to verilog-preserve-dir-cache
7553 (defvar verilog-dir-cache-list nil
7554 "Alist of (((Cwd Dirname) Results)...) for caching `verilog-dir-files'.")
7555 (defvar verilog-dir-cache-lib-filenames nil
7556 "Cached data for `verilog-library-filenames'.")
7558 (defmacro verilog-preserve-dir-cache (&rest body)
7559 "Execute the BODY forms, allowing directory cache preservation within BODY.
7560 This means that changes inside BODY made to the file system will not be
7561 seen by the `verilog-dir-files' and related functions."
7562 `(let ((verilog-dir-cache-preserving t)
7563 verilog-dir-cache-list
7564 verilog-dir-cache-lib-filenames)
7565 (progn ,@body)))
7567 (defun verilog-dir-files (dirname)
7568 "Return all filenames in the DIRNAME directory.
7569 Relative paths depend on the `default-directory'.
7570 Results are cached if inside `verilog-preserve-dir-cache'."
7571 (unless verilog-dir-cache-preserving
7572 (setq verilog-dir-cache-list nil)) ;; Cache disabled
7573 ;; We don't use expand-file-name on the dirname to make key, as it's slow
7574 (let* ((cache-key (list dirname default-directory))
7575 (fass (assoc cache-key verilog-dir-cache-list))
7576 exp-dirname data)
7577 (cond (fass ;; Return data from cache hit
7578 (nth 1 fass))
7580 (setq exp-dirname (expand-file-name dirname)
7581 data (and (file-directory-p exp-dirname)
7582 (directory-files exp-dirname nil nil nil)))
7583 ;; Note we also encache nil for non-existing dirs.
7584 (setq verilog-dir-cache-list (cons (list cache-key data)
7585 verilog-dir-cache-list))
7586 data))))
7587 ;; Miss-and-hit test:
7588 ;;(verilog-preserve-dir-cache (prin1 (verilog-dir-files "."))
7589 ;; (prin1 (verilog-dir-files ".")) nil)
7591 (defun verilog-dir-file-exists-p (filename)
7592 "Return true if FILENAME exists.
7593 Like `file-exists-p' but results are cached if inside
7594 `verilog-preserve-dir-cache'."
7595 (let* ((dirname (file-name-directory filename))
7596 ;; Correct for file-name-nondirectory returning same if no slash.
7597 (dirnamed (if (or (not dirname) (equal dirname filename))
7598 default-directory dirname))
7599 (flist (verilog-dir-files dirnamed)))
7600 (and flist
7601 (member (file-name-nondirectory filename) flist)
7602 t)))
7603 ;;(verilog-dir-file-exists-p "verilog-mode.el")
7604 ;;(verilog-dir-file-exists-p "../verilog-mode/verilog-mode.el")
7608 ;; Module name lookup
7611 (defun verilog-module-inside-filename-p (module filename)
7612 "Return point if MODULE is specified inside FILENAME, else nil.
7613 Allows version control to check out the file if need be."
7614 (and (or (file-exists-p filename)
7615 (and (fboundp 'vc-backend)
7616 (vc-backend filename)))
7617 (let (pt)
7618 (with-current-buffer (find-file-noselect filename)
7619 (save-excursion
7620 (goto-char (point-min))
7621 (while (and
7622 ;; It may be tempting to look for verilog-defun-re,
7623 ;; don't, it slows things down a lot!
7624 (verilog-re-search-forward-quick "\\<module\\>" nil t)
7625 (verilog-re-search-forward-quick "[(;]" nil t))
7626 (if (equal module (verilog-read-module-name))
7627 (setq pt (point))))
7628 pt)))))
7630 (defun verilog-is-number (symbol)
7631 "Return true if SYMBOL is number-like."
7632 (or (string-match "^[0-9 \t:]+$" symbol)
7633 (string-match "^[---]*[0-9]+$" symbol)
7634 (string-match "^[0-9 \t]+'s?[hdxbo][0-9a-fA-F_xz? \t]*$" symbol)))
7636 (defun verilog-symbol-detick (symbol wing-it)
7637 "Return an expanded SYMBOL name without any defines.
7638 If the variable vh-{symbol} is defined, return that value.
7639 If undefined, and WING-IT, return just SYMBOL without the tick, else nil."
7640 (while (and symbol (string-match "^`" symbol))
7641 (setq symbol (substring symbol 1))
7642 (setq symbol
7643 (if (boundp (intern (concat "vh-" symbol)))
7644 ;; Emacs has a bug where boundp on a buffer-local
7645 ;; variable in only one buffer returns t in another.
7646 ;; This can confuse, so check for nil.
7647 (let ((val (eval (intern (concat "vh-" symbol)))))
7648 (if (eq val nil)
7649 (if wing-it symbol nil)
7650 val))
7651 (if wing-it symbol nil))))
7652 symbol)
7653 ;;(verilog-symbol-detick "`mod" nil)
7655 (defun verilog-symbol-detick-denumber (symbol)
7656 "Return SYMBOL with defines converted and any numbers dropped to nil."
7657 (when (string-match "^`" symbol)
7658 ;; This only will work if the define is a simple signal, not
7659 ;; something like a[b]. Sorry, it should be substituted into the parser
7660 (setq symbol
7661 (verilog-string-replace-matches
7662 "\[[^0-9: \t]+\]" "" nil nil
7663 (or (verilog-symbol-detick symbol nil)
7664 (if verilog-auto-sense-defines-constant
7666 symbol)))))
7667 (if (verilog-is-number symbol)
7669 symbol))
7671 (defun verilog-symbol-detick-text (text)
7672 "Return TEXT without any known defines.
7673 If the variable vh-{symbol} is defined, substitute that value."
7674 (let ((ok t) symbol val)
7675 (while (and ok (string-match "`\\([a-zA-Z0-9_]+\\)" text))
7676 (setq symbol (match-string 1 text))
7677 ;;(message symbol)
7678 (cond ((and
7679 (boundp (intern (concat "vh-" symbol)))
7680 ;; Emacs has a bug where boundp on a buffer-local
7681 ;; variable in only one buffer returns t in another.
7682 ;; This can confuse, so check for nil.
7683 (setq val (eval (intern (concat "vh-" symbol)))))
7684 (setq text (replace-match val nil nil text)))
7685 (t (setq ok nil)))))
7686 text)
7687 ;;(progn (setq vh-mod "`foo" vh-foo "bar") (verilog-symbol-detick-text "bar `mod `undefed"))
7689 (defun verilog-expand-dirnames (&optional dirnames)
7690 "Return a list of existing directories given a list of wildcarded DIRNAMES.
7691 Or, just the existing dirnames themselves if there are no wildcards."
7692 ;; Note this function is performance critical.
7693 ;; Do not call anything that requires disk access that cannot be cached.
7694 (interactive)
7695 (unless dirnames (error "`verilog-library-directories' should include at least '.'"))
7696 (setq dirnames (reverse dirnames)) ; not nreverse
7697 (let ((dirlist nil)
7698 pattern dirfile dirfiles dirname root filename rest basefile)
7699 (while dirnames
7700 (setq dirname (substitute-in-file-name (car dirnames))
7701 dirnames (cdr dirnames))
7702 (cond ((string-match (concat "^\\(\\|[/\\]*[^*?]*[/\\]\\)" ;; root
7703 "\\([^/\\]*[*?][^/\\]*\\)" ;; filename with *?
7704 "\\(.*\\)") ;; rest
7705 dirname)
7706 (setq root (match-string 1 dirname)
7707 filename (match-string 2 dirname)
7708 rest (match-string 3 dirname)
7709 pattern filename)
7710 ;; now replace those * and ? with .+ and .
7711 ;; use ^ and /> to get only whole file names
7712 (setq pattern (verilog-string-replace-matches "[*]" ".+" nil nil pattern)
7713 pattern (verilog-string-replace-matches "[?]" "." nil nil pattern)
7714 pattern (concat "^" pattern "$")
7715 dirfiles (verilog-dir-files root))
7716 (while dirfiles
7717 (setq basefile (car dirfiles)
7718 dirfile (expand-file-name (concat root basefile rest))
7719 dirfiles (cdr dirfiles))
7720 (if (and (string-match pattern basefile)
7721 ;; Don't allow abc/*/rtl to match abc/rtl via ..
7722 (not (equal basefile "."))
7723 (not (equal basefile ".."))
7724 (file-directory-p dirfile))
7725 (setq dirlist (cons dirfile dirlist)))))
7726 ;; Defaults
7728 (if (file-directory-p dirname)
7729 (setq dirlist (cons dirname dirlist))))))
7730 dirlist))
7731 ;;(verilog-expand-dirnames (list "." ".." "nonexist" "../*" "/home/wsnyder/*/v"))
7733 (defun verilog-library-filenames (filename current &optional check-ext)
7734 "Return a search path to find the given FILENAME or module name.
7735 Uses the CURRENT filename, `verilog-library-directories' and
7736 `verilog-library-extensions' variables to build the path.
7737 With optional CHECK-EXT also check `verilog-library-extensions'."
7738 (unless verilog-dir-cache-preserving
7739 (setq verilog-dir-cache-lib-filenames nil))
7740 (let* ((cache-key (list filename current check-ext))
7741 (fass (assoc cache-key verilog-dir-cache-lib-filenames))
7742 chkdirs chkdir chkexts fn outlist)
7743 (cond (fass ;; Return data from cache hit
7744 (nth 1 fass))
7746 ;; Note this expand can't be easily cached, as we need to
7747 ;; pick up buffer-local variables for newly read sub-module files
7748 (setq chkdirs (verilog-expand-dirnames verilog-library-directories))
7749 (while chkdirs
7750 (setq chkdir (expand-file-name (car chkdirs)
7751 (file-name-directory current))
7752 chkexts (if check-ext verilog-library-extensions `("")))
7753 (while chkexts
7754 (setq fn (expand-file-name (concat filename (car chkexts))
7755 chkdir))
7756 ;;(message "Check for %s" fn)
7757 (if (verilog-dir-file-exists-p fn)
7758 (setq outlist (cons (expand-file-name
7759 fn (file-name-directory current))
7760 outlist)))
7761 (setq chkexts (cdr chkexts)))
7762 (setq chkdirs (cdr chkdirs)))
7763 (setq outlist (nreverse outlist))
7764 (setq verilog-dir-cache-lib-filenames
7765 (cons (list cache-key outlist)
7766 verilog-dir-cache-lib-filenames))
7767 outlist))))
7769 (defun verilog-module-filenames (module current)
7770 "Return a search path to find the given MODULE name.
7771 Uses the CURRENT filename, `verilog-library-extensions',
7772 `verilog-library-directories' and `verilog-library-files'
7773 variables to build the path."
7774 ;; Return search locations for it
7775 (append (list current) ; first, current buffer
7776 (verilog-library-filenames module current t)
7777 verilog-library-files)) ; finally, any libraries
7780 ;; Module Information
7782 ;; Many of these functions work on "modi" a module information structure
7783 ;; A modi is: [module-name-string file-name begin-point]
7785 (defvar verilog-cache-enabled t
7786 "If true, enable caching of signals, etc. Set to nil for debugging to make things SLOW!")
7788 (defvar verilog-modi-cache-list nil
7789 "Cache of ((Module Function) Buf-Tick Buf-Modtime Func-Returns)...
7790 For speeding up verilog-modi-get-* commands.
7791 Buffer-local.")
7793 (make-variable-buffer-local 'verilog-modi-cache-list)
7795 (defvar verilog-modi-cache-preserve-tick nil
7796 "Modification tick after which the cache is still considered valid.
7797 Use `verilog-preserve-modi-cache' to set it.")
7798 (defvar verilog-modi-cache-preserve-buffer nil
7799 "Modification tick after which the cache is still considered valid.
7800 Use `verilog-preserve-modi-cache' to set it.")
7802 (defun verilog-modi-current ()
7803 "Return the modi structure for the module currently at point."
7804 (let* (name pt)
7805 ;; read current module's name
7806 (save-excursion
7807 (verilog-re-search-backward-quick verilog-defun-re nil nil)
7808 (verilog-re-search-forward-quick "(" nil nil)
7809 (setq name (verilog-read-module-name))
7810 (setq pt (point)))
7811 ;; return
7812 (vector name (or (buffer-file-name) (current-buffer)) pt)))
7814 (defvar verilog-modi-lookup-last-mod nil "Cache of last module looked up.")
7815 (defvar verilog-modi-lookup-last-modi nil "Cache of last modi returned.")
7816 (defvar verilog-modi-lookup-last-current nil "Cache of last `current-buffer' looked up.")
7817 (defvar verilog-modi-lookup-last-tick nil "Cache of last `buffer-modified-tick' looked up.")
7819 (defun verilog-modi-lookup (module allow-cache &optional ignore-error)
7820 "Find the file and point at which MODULE is defined.
7821 If ALLOW-CACHE is set, check and remember cache of previous lookups.
7822 Return modi if successful, else print message unless IGNORE-ERROR is true."
7823 (let* ((current (or (buffer-file-name) (current-buffer))))
7824 (cond ((and verilog-modi-lookup-last-modi
7825 verilog-cache-enabled
7826 allow-cache
7827 (equal verilog-modi-lookup-last-mod module)
7828 (equal verilog-modi-lookup-last-current current)
7829 (equal verilog-modi-lookup-last-tick (buffer-modified-tick)))
7830 ;; ok as is
7832 (t (let* ((realmod (verilog-symbol-detick module t))
7833 (orig-filenames (verilog-module-filenames realmod current))
7834 (filenames orig-filenames)
7836 (while (and filenames (not pt))
7837 (if (not (setq pt (verilog-module-inside-filename-p realmod (car filenames))))
7838 (setq filenames (cdr filenames))))
7839 (cond (pt (setq verilog-modi-lookup-last-modi
7840 (vector realmod (car filenames) pt)))
7841 (t (setq verilog-modi-lookup-last-modi nil)
7842 (or ignore-error
7843 (error (concat (verilog-point-text)
7844 ": Can't locate " module " module definition"
7845 (if (not (equal module realmod))
7846 (concat " (Expanded macro to " realmod ")")
7848 "\n Check the verilog-library-directories variable."
7849 "\n I looked in (if not listed, doesn't exist):\n\t"
7850 (mapconcat 'concat orig-filenames "\n\t"))))))
7851 (setq verilog-modi-lookup-last-mod module
7852 verilog-modi-lookup-last-current current
7853 verilog-modi-lookup-last-tick (buffer-modified-tick)))))
7854 verilog-modi-lookup-last-modi))
7856 (defsubst verilog-modi-name (modi)
7857 (aref modi 0))
7858 (defsubst verilog-modi-file-or-buffer (modi)
7859 (aref modi 1))
7860 (defsubst verilog-modi-point (modi)
7861 (aref modi 2))
7863 (defun verilog-modi-filename (modi)
7864 "Filename of MODI, or name of buffer if it's never been saved."
7865 (if (bufferp (verilog-modi-file-or-buffer modi))
7866 (or (buffer-file-name (verilog-modi-file-or-buffer modi))
7867 (buffer-name (verilog-modi-file-or-buffer modi)))
7868 (verilog-modi-file-or-buffer modi)))
7870 (defun verilog-modi-goto (modi)
7871 "Move point/buffer to specified MODI."
7872 (or modi (error "Passed unfound modi to goto, check earlier"))
7873 (set-buffer (if (bufferp (verilog-modi-file-or-buffer modi))
7874 (verilog-modi-file-or-buffer modi)
7875 (find-file-noselect (verilog-modi-file-or-buffer modi))))
7876 (or (equal major-mode `verilog-mode) ;; Put into Verilog mode to get syntax
7877 (verilog-mode))
7878 (goto-char (verilog-modi-point modi)))
7880 (defun verilog-goto-defun-file (module)
7881 "Move point to the file at which a given MODULE is defined."
7882 (interactive "sGoto File for Module: ")
7883 (let* ((modi (verilog-modi-lookup module nil)))
7884 (when modi
7885 (verilog-modi-goto modi)
7886 (switch-to-buffer (current-buffer)))))
7888 (defun verilog-modi-cache-results (modi function)
7889 "Run on MODI the given FUNCTION. Locate the module in a file.
7890 Cache the output of function so next call may have faster access."
7891 (let (fass)
7892 (save-excursion ;; Cache is buffer-local so can't avoid this.
7893 (verilog-modi-goto modi)
7894 (if (and (setq fass (assoc (list modi function)
7895 verilog-modi-cache-list))
7896 ;; Destroy caching when incorrect; Modified or file changed
7897 (not (and verilog-cache-enabled
7898 (or (equal (buffer-modified-tick) (nth 1 fass))
7899 (and verilog-modi-cache-preserve-tick
7900 (<= verilog-modi-cache-preserve-tick (nth 1 fass))
7901 (equal verilog-modi-cache-preserve-buffer (current-buffer))))
7902 (equal (visited-file-modtime) (nth 2 fass)))))
7903 (setq verilog-modi-cache-list nil
7904 fass nil))
7905 (cond (fass
7906 ;; Return data from cache hit
7907 (nth 3 fass))
7909 ;; Read from file
7910 ;; Clear then restore any hilighting to make emacs19 happy
7911 (let ((fontlocked (when (and (boundp 'font-lock-mode)
7912 font-lock-mode)
7913 (font-lock-mode 0)
7915 func-returns)
7916 (setq func-returns (funcall function))
7917 (when fontlocked (font-lock-mode t))
7918 ;; Cache for next time
7919 (setq verilog-modi-cache-list
7920 (cons (list (list modi function)
7921 (buffer-modified-tick)
7922 (visited-file-modtime)
7923 func-returns)
7924 verilog-modi-cache-list))
7925 func-returns))))))
7927 (defun verilog-modi-cache-add (modi function element sig-list)
7928 "Add function return results to the module cache.
7929 Update MODI's cache for given FUNCTION so that the return ELEMENT of that
7930 function now contains the additional SIG-LIST parameters."
7931 (let (fass)
7932 (save-excursion
7933 (verilog-modi-goto modi)
7934 (if (setq fass (assoc (list modi function)
7935 verilog-modi-cache-list))
7936 (let ((func-returns (nth 3 fass)))
7937 (aset func-returns element
7938 (append sig-list (aref func-returns element))))))))
7940 (defmacro verilog-preserve-modi-cache (&rest body)
7941 "Execute the BODY forms, allowing cache preservation within BODY.
7942 This means that changes to the buffer will not result in the cache being
7943 flushed. If the changes affect the modsig state, they must call the
7944 modsig-cache-add-* function, else the results of later calls may be
7945 incorrect. Without this, changes are assumed to be adding/removing signals
7946 and invalidating the cache."
7947 `(let ((verilog-modi-cache-preserve-tick (buffer-modified-tick))
7948 (verilog-modi-cache-preserve-buffer (current-buffer)))
7949 (progn ,@body)))
7952 (defun verilog-signals-matching-enum (in-list enum)
7953 "Return all signals in IN-LIST matching the given ENUM."
7954 (let (out-list)
7955 (while in-list
7956 (if (equal (verilog-sig-enum (car in-list)) enum)
7957 (setq out-list (cons (car in-list) out-list)))
7958 (setq in-list (cdr in-list)))
7959 ;; New scheme
7960 (let* ((enumvar (intern (concat "venum-" enum)))
7961 (enumlist (and (boundp enumvar) (eval enumvar))))
7962 (while enumlist
7963 (add-to-list 'out-list (list (car enumlist)))
7964 (setq enumlist (cdr enumlist))))
7965 (nreverse out-list)))
7967 (defun verilog-signals-matching-regexp (in-list regexp)
7968 "Return all signals in IN-LIST matching the given REGEXP, if non-nil."
7969 (if (or (not regexp) (equal regexp ""))
7970 in-list
7971 (let (out-list)
7972 (while in-list
7973 (if (string-match regexp (verilog-sig-name (car in-list)))
7974 (setq out-list (cons (car in-list) out-list)))
7975 (setq in-list (cdr in-list)))
7976 (nreverse out-list))))
7978 (defun verilog-signals-not-matching-regexp (in-list regexp)
7979 "Return all signals in IN-LIST not matching the given REGEXP, if non-nil."
7980 (if (or (not regexp) (equal regexp ""))
7981 in-list
7982 (let (out-list)
7983 (while in-list
7984 (if (not (string-match regexp (verilog-sig-name (car in-list))))
7985 (setq out-list (cons (car in-list) out-list)))
7986 (setq in-list (cdr in-list)))
7987 (nreverse out-list))))
7989 (defun verilog-signals-matching-dir-re (in-list decl-type regexp)
7990 "Return all signals in IN-LIST matching the given directional REGEXP,
7991 if non-nil."
7992 (if (or (not regexp) (equal regexp ""))
7993 in-list
7994 (let (out-list to-match)
7995 (while in-list
7996 ;; Note verilog-insert-one-definition matches on this order
7997 (setq to-match (concat
7998 decl-type
7999 " " (verilog-sig-signed (car in-list))
8000 " " (verilog-sig-multidim (car in-list))
8001 (verilog-sig-bits (car in-list))))
8002 (if (string-match regexp to-match)
8003 (setq out-list (cons (car in-list) out-list)))
8004 (setq in-list (cdr in-list)))
8005 (nreverse out-list))))
8007 ;; Combined
8008 (defun verilog-decls-get-signals (decls)
8009 (append
8010 (verilog-decls-get-outputs decls)
8011 (verilog-decls-get-inouts decls)
8012 (verilog-decls-get-inputs decls)
8013 (verilog-decls-get-wires decls)
8014 (verilog-decls-get-regs decls)
8015 (verilog-decls-get-assigns decls)
8016 (verilog-decls-get-consts decls)
8017 (verilog-decls-get-gparams decls)))
8019 (defun verilog-decls-get-ports (decls)
8020 (append
8021 (verilog-decls-get-outputs decls)
8022 (verilog-decls-get-inouts decls)
8023 (verilog-decls-get-inputs decls)))
8025 (defsubst verilog-modi-cache-add-outputs (modi sig-list)
8026 (verilog-modi-cache-add modi 'verilog-read-decls 0 sig-list))
8027 (defsubst verilog-modi-cache-add-inouts (modi sig-list)
8028 (verilog-modi-cache-add modi 'verilog-read-decls 1 sig-list))
8029 (defsubst verilog-modi-cache-add-inputs (modi sig-list)
8030 (verilog-modi-cache-add modi 'verilog-read-decls 2 sig-list))
8031 (defsubst verilog-modi-cache-add-wires (modi sig-list)
8032 (verilog-modi-cache-add modi 'verilog-read-decls 3 sig-list))
8033 (defsubst verilog-modi-cache-add-regs (modi sig-list)
8034 (verilog-modi-cache-add modi 'verilog-read-decls 4 sig-list))
8036 (defun verilog-signals-from-signame (signame-list)
8037 "Return signals in standard form from SIGNAME-LIST, a simple list of signal names."
8038 (mapcar (function (lambda (name) (list name nil nil)))
8039 signame-list))
8042 ;; Auto creation utilities
8045 (defun verilog-auto-re-search-do (search-for func)
8046 "Search for the given auto text regexp SEARCH-FOR, and perform FUNC where it occurs."
8047 (goto-char (point-min))
8048 (while (verilog-re-search-forward search-for nil t)
8049 (funcall func)))
8051 (defun verilog-insert-one-definition (sig type indent-pt)
8052 "Print out a definition for SIG of the given TYPE,
8053 with appropriate INDENT-PT indentation."
8054 (indent-to indent-pt)
8055 ;; Note verilog-signals-matching-dir-re matches on this order
8056 (insert type)
8057 (when (verilog-sig-modport sig)
8058 (insert "." (verilog-sig-modport sig)))
8059 (when (verilog-sig-signed sig)
8060 (insert " " (verilog-sig-signed sig)))
8061 (when (verilog-sig-multidim sig)
8062 (insert " " (verilog-sig-multidim-string sig)))
8063 (when (verilog-sig-bits sig)
8064 (insert " " (verilog-sig-bits sig)))
8065 (indent-to (max 24 (+ indent-pt 16)))
8066 (unless (= (char-syntax (preceding-char)) ?\ )
8067 (insert " ")) ; Need space between "]name" if indent-to did nothing
8068 (insert (verilog-sig-name sig)))
8070 (defun verilog-insert-definition (sigs direction indent-pt v2k &optional dont-sort)
8071 "Print out a definition for a list of SIGS of the given DIRECTION,
8072 with appropriate INDENT-PT indentation. If V2K, use Verilog 2001 I/O
8073 format. Sort unless DONT-SORT. DIRECTION is normally wire/reg/output."
8074 (or dont-sort
8075 (setq sigs (sort (copy-alist sigs) `verilog-signals-sort-compare)))
8076 (while sigs
8077 (let ((sig (car sigs)))
8078 (verilog-insert-one-definition
8080 ;; Want "type x" or "output type x", not "wire type x"
8081 (cond ((verilog-sig-type sig)
8082 (concat
8083 (if (not (member direction '("wire" "interface")))
8084 (concat direction " "))
8085 (verilog-sig-type sig)))
8086 (t direction))
8087 indent-pt)
8088 (insert (if v2k "," ";"))
8089 (if (or (not (verilog-sig-comment sig))
8090 (equal "" (verilog-sig-comment sig)))
8091 (insert "\n")
8092 (indent-to (max 48 (+ indent-pt 40)))
8093 (insert (concat "// " (verilog-sig-comment sig) "\n")))
8094 (setq sigs (cdr sigs)))))
8096 (eval-when-compile
8097 (if (not (boundp 'indent-pt))
8098 (defvar indent-pt nil "Local used by insert-indent")))
8100 (defun verilog-insert-indent (&rest stuff)
8101 "Indent to position stored in local `indent-pt' variable, then insert STUFF.
8102 Presumes that any newlines end a list element."
8103 (let ((need-indent t))
8104 (while stuff
8105 (if need-indent (indent-to indent-pt))
8106 (setq need-indent nil)
8107 (insert (car stuff))
8108 (setq need-indent (string-match "\n$" (car stuff))
8109 stuff (cdr stuff)))))
8110 ;;(let ((indent-pt 10)) (verilog-insert-indent "hello\n" "addon" "there\n"))
8112 (defun verilog-repair-open-comma ()
8113 "Insert comma if previous argument is other than a open parenthesis or endif."
8114 ;; We can't just search backward for ) as it might be inside another expression.
8115 ;; Also want "`ifdef X input foo `endif" to just leave things to the human to deal with
8116 (save-excursion
8117 (verilog-backward-syntactic-ws)
8118 (when (and (not (save-excursion ;; Not beginning (, or existing ,
8119 (backward-char 1)
8120 (looking-at "[(,]")))
8121 (not (save-excursion ;; Not `endif, or user define
8122 (backward-char 1)
8123 (skip-chars-backward "[a-zA-Z0-9_`]")
8124 (looking-at "`"))))
8125 (insert ","))))
8127 (defun verilog-repair-close-comma ()
8128 "If point is at a comma followed by a close parenthesis, fix it.
8129 This repairs those mis-inserted by a AUTOARG."
8130 ;; It would be much nicer if Verilog allowed extra commas like Perl does!
8131 (save-excursion
8132 (verilog-forward-close-paren)
8133 (backward-char 1)
8134 (verilog-backward-syntactic-ws)
8135 (backward-char 1)
8136 (when (looking-at ",")
8137 (delete-char 1))))
8139 (defun verilog-get-list (start end)
8140 "Return the elements of a comma separated list between START and END."
8141 (interactive)
8142 (let ((my-list (list))
8143 my-string)
8144 (save-excursion
8145 (while (< (point) end)
8146 (when (re-search-forward "\\([^,{]+\\)" end t)
8147 (setq my-string (verilog-string-remove-spaces (match-string 1)))
8148 (setq my-list (nconc my-list (list my-string) ))
8149 (goto-char (match-end 0))))
8150 my-list)))
8152 (defun verilog-make-width-expression (range-exp)
8153 "Return an expression calculating the length of a range [x:y] in RANGE-EXP."
8154 ;; strip off the []
8155 (cond ((not range-exp)
8156 "1")
8158 (if (string-match "^\\[\\(.*\\)\\]$" range-exp)
8159 (setq range-exp (match-string 1 range-exp)))
8160 (cond ((not range-exp)
8161 "1")
8162 ;; [#:#] We can compute a numeric result
8163 ((string-match "^\\s *\\([0-9]+\\)\\s *:\\s *\\([0-9]+\\)\\s *$"
8164 range-exp)
8165 (int-to-string
8166 (1+ (abs (- (string-to-number (match-string 1 range-exp))
8167 (string-to-number (match-string 2 range-exp)))))))
8168 ;; [PARAM-1:0] can just return PARAM
8169 ((string-match "^\\s *\\([a-zA-Z_][a-zA-Z0-9_]*\\)\\s *-\\s *1\\s *:\\s *0\\s *$" range-exp)
8170 (match-string 1 range-exp))
8171 ;; [arbitrary] need math
8172 ((string-match "^\\(.*\\)\\s *:\\s *\\(.*\\)\\s *$" range-exp)
8173 (concat "(1+(" (match-string 1 range-exp) ")"
8174 (if (equal "0" (match-string 2 range-exp))
8175 "" ;; Don't bother with -(0)
8176 (concat "-(" (match-string 2 range-exp) ")"))
8177 ")"))
8178 (t nil)))))
8179 ;;(verilog-make-width-expression "`A:`B")
8181 (defun verilog-simplify-range-expression (range-exp)
8182 "Return a simplified range expression with constants eliminated from RANGE-EXP."
8183 (let ((out range-exp)
8184 (last-pass ""))
8185 (while (not (equal last-pass out))
8186 (setq last-pass out)
8187 (while (string-match "(\\<\\([0-9A-Z-az_]+\\)\\>)" out)
8188 (setq out (replace-match "\\1" nil nil out)))
8189 (while (string-match "\\<\\([0-9]+\\)\\>\\s *\\+\\s *\\<\\([0-9]+\\)\\>" out)
8190 (setq out (replace-match
8191 (int-to-string (+ (string-to-number (match-string 1 out))
8192 (string-to-number (match-string 2 out))))
8193 nil nil out)))
8194 (while (string-match "\\<\\([0-9]+\\)\\>\\s *\\-\\s *\\<\\([0-9]+\\)\\>" out)
8195 (setq out (replace-match
8196 (int-to-string (- (string-to-number (match-string 1 out))
8197 (string-to-number (match-string 2 out))))
8198 nil nil out))))
8199 out))
8200 ;;(verilog-simplify-range-expression "1")
8201 ;;(verilog-simplify-range-expression "(((16)+1)-3)")
8203 (defun verilog-typedef-name-p (variable-name)
8204 "Return true if the VARIABLE-NAME is a type definition."
8205 (when verilog-typedef-regexp
8206 (string-match verilog-typedef-regexp variable-name)))
8209 ;; Auto deletion
8212 (defun verilog-delete-autos-lined ()
8213 "Delete autos that occupy multiple lines, between begin and end comments."
8214 (let ((pt (point)))
8215 (forward-line 1)
8216 (when (and
8217 (looking-at "\\s-*// Beginning")
8218 (search-forward "// End of automatic" nil t))
8219 ;; End exists
8220 (end-of-line)
8221 (delete-region pt (point))
8222 (forward-line 1))))
8224 (defun verilog-forward-close-paren ()
8225 "Find the close parenthesis that match the current point.
8226 Ignore other close parenthesis with matching open parens."
8227 (let ((parens 1))
8228 (while (> parens 0)
8229 (unless (verilog-re-search-forward-quick "[()]" nil t)
8230 (error "%s: Mismatching ()" (verilog-point-text)))
8231 (cond ((= (preceding-char) ?\( )
8232 (setq parens (1+ parens)))
8233 ((= (preceding-char) ?\) )
8234 (setq parens (1- parens)))))))
8236 (defun verilog-backward-open-paren ()
8237 "Find the open parenthesis that match the current point.
8238 Ignore other open parenthesis with matching close parens."
8239 (let ((parens 1))
8240 (while (> parens 0)
8241 (unless (verilog-re-search-backward-quick "[()]" nil t)
8242 (error "%s: Mismatching ()" (verilog-point-text)))
8243 (cond ((= (following-char) ?\) )
8244 (setq parens (1+ parens)))
8245 ((= (following-char) ?\( )
8246 (setq parens (1- parens)))))))
8248 (defun verilog-backward-open-bracket ()
8249 "Find the open bracket that match the current point.
8250 Ignore other open bracket with matching close bracket."
8251 (let ((parens 1))
8252 (while (> parens 0)
8253 (unless (verilog-re-search-backward-quick "[][]" nil t)
8254 (error "%s: Mismatching []" (verilog-point-text)))
8255 (cond ((= (following-char) ?\] )
8256 (setq parens (1+ parens)))
8257 ((= (following-char) ?\[ )
8258 (setq parens (1- parens)))))))
8260 (defun verilog-delete-to-paren ()
8261 "Delete the automatic inst/sense/arg created by autos.
8262 Deletion stops at the matching end parenthesis."
8263 (delete-region (point)
8264 (save-excursion
8265 (verilog-backward-open-paren)
8266 (forward-sexp 1) ;; Moves to paren that closes argdecl's
8267 (backward-char 1)
8268 (point))))
8270 (defun verilog-auto-star-safe ()
8271 "Return if a .* AUTOINST is safe to delete or expand.
8272 It was created by the AUTOS themselves, or by the user."
8273 (and verilog-auto-star-expand
8274 (looking-at "[ \t\n\f,]*\\([)]\\|// \\(Outputs\\|Inouts\\|Inputs\\)\\)")))
8276 (defun verilog-delete-auto-star-all ()
8277 "Delete a .* AUTOINST, if it is safe."
8278 (when (verilog-auto-star-safe)
8279 (verilog-delete-to-paren)))
8281 (defun verilog-delete-auto-star-implicit ()
8282 "Delete all .* implicit connections created by `verilog-auto-star'.
8283 This function will be called automatically at save unless
8284 `verilog-auto-star-save' is set, any non-templated expanded pins will be
8285 removed."
8286 (interactive)
8287 (let (paren-pt indent have-close-paren)
8288 (save-excursion
8289 (goto-char (point-min))
8290 ;; We need to match these even outside of comments.
8291 ;; For reasonable performance, we don't check if inside comments, sorry.
8292 (while (re-search-forward "// Implicit \\.\\*" nil t)
8293 (setq paren-pt (point))
8294 (beginning-of-line)
8295 (setq have-close-paren
8296 (save-excursion
8297 (when (search-forward ");" paren-pt t)
8298 (setq indent (current-indentation))
8299 t)))
8300 (delete-region (point) (+ 1 paren-pt)) ; Nuke line incl CR
8301 (when have-close-paren
8302 ;; Delete extra commentary
8303 (save-excursion
8304 (while (progn
8305 (forward-line -1)
8306 (looking-at "\\s *//\\s *\\(Outputs\\|Inouts\\|Inputs\\)\n"))
8307 (delete-region (match-beginning 0) (match-end 0))))
8308 ;; If it is simple, we can put the ); on the same line as the last text
8309 (let ((rtn-pt (point)))
8310 (save-excursion
8311 (while (progn (backward-char 1)
8312 (looking-at "[ \t\n\f]")))
8313 (when (looking-at ",")
8314 (delete-region (+ 1 (point)) rtn-pt))))
8315 (when (bolp)
8316 (indent-to indent))
8317 (insert ");\n")
8318 ;; Still need to kill final comma - always is one as we put one after the .*
8319 (re-search-backward ",")
8320 (delete-char 1))))))
8322 (defun verilog-delete-auto ()
8323 "Delete the automatic outputs, regs, and wires created by \\[verilog-auto].
8324 Use \\[verilog-auto] to re-insert the updated AUTOs.
8326 The hooks `verilog-before-delete-auto-hook' and `verilog-delete-auto-hook' are
8327 called before and after this function, respectively."
8328 (interactive)
8329 (save-excursion
8330 (if (buffer-file-name)
8331 (find-file-noselect (buffer-file-name))) ;; To check we have latest version
8332 ;; Allow user to customize
8333 (run-hooks 'verilog-before-delete-auto-hook)
8335 ;; Remove those that have multi-line insertions, possibly with parameters
8336 (verilog-auto-re-search-do
8337 (concat "/\\*"
8338 (eval-when-compile
8339 (verilog-regexp-words
8340 `("AUTOASCIIENUM" "AUTOCONCATCOMMENT" "AUTODEFINEVALUE"
8341 "AUTOINOUT" "AUTOINOUTCOMP" "AUTOINOUTMODULE"
8342 "AUTOINPUT" "AUTOINSERTLISP" "AUTOOUTPUT" "AUTOOUTPUTEVERY"
8343 "AUTOREG" "AUTOREGINPUT" "AUTORESET" "AUTOTIEOFF"
8344 "AUTOUNUSED" "AUTOWIRE")))
8345 ;; Optional parens or quoted parameter or .* for (((...)))
8346 "\\(\\|([^)]*)\\|(\"[^\"]*\")\\|.*?\\)"
8347 "\\*/")
8348 'verilog-delete-autos-lined)
8349 ;; Remove those that are in parenthesis
8350 (verilog-auto-re-search-do
8351 (concat "/\\*"
8352 (eval-when-compile
8353 (verilog-regexp-words
8354 `("AS" "AUTOARG" "AUTOCONCATWIDTH" "AUTOINST" "AUTOINSTPARAM"
8355 "AUTOSENSE")))
8356 "\\*/")
8357 'verilog-delete-to-paren)
8358 ;; Do .* instantiations, but avoid removing any user pins by looking for our magic comments
8359 (verilog-auto-re-search-do "\\.\\*"
8360 'verilog-delete-auto-star-all)
8361 ;; Remove template comments ... anywhere in case was pasted after AUTOINST removed
8362 (goto-char (point-min))
8363 (while (re-search-forward "\\s-*// \\(Templated\\|Implicit \\.\\*\\)[ \tLT0-9]*$" nil t)
8364 (replace-match ""))
8366 ;; Final customize
8367 (run-hooks 'verilog-delete-auto-hook)))
8370 ;; Auto inject
8373 (defun verilog-inject-auto ()
8374 "Examine legacy non-AUTO code and insert AUTOs in appropriate places.
8376 Any always @ blocks with sensitivity lists that match computed lists will
8377 be replaced with /*AS*/ comments.
8379 Any cells will get /*AUTOINST*/ added to the end of the pin list.
8380 Pins with have identical names will be deleted.
8382 Argument lists will not be deleted, /*AUTOARG*/ will only be inserted to
8383 support adding new ports. You may wish to delete older ports yourself.
8385 For example:
8387 module ExampInject (i, o);
8388 input i;
8389 input j;
8390 output o;
8391 always @ (i or j)
8392 o = i | j;
8393 InstModule instName
8394 (.foobar(baz),
8395 j(j));
8396 endmodule
8398 Typing \\[verilog-inject-auto] will make this into:
8400 module ExampInject (i, o/*AUTOARG*/
8401 // Inputs
8403 input i;
8404 output o;
8405 always @ (/*AS*/i or j)
8406 o = i | j;
8407 InstModule instName
8408 (.foobar(baz),
8409 /*AUTOINST*/
8410 // Outputs
8411 j(j));
8412 endmodule"
8413 (interactive)
8414 (verilog-auto t))
8416 (defun verilog-inject-arg ()
8417 "Inject AUTOARG into new code. See `verilog-inject-auto'."
8418 ;; Presume one module per file.
8419 (save-excursion
8420 (goto-char (point-min))
8421 (while (verilog-re-search-forward-quick "\\<module\\>" nil t)
8422 (let ((endmodp (save-excursion
8423 (verilog-re-search-forward-quick "\\<endmodule\\>" nil t)
8424 (point))))
8425 ;; See if there's already a comment .. inside a comment so not verilog-re-search
8426 (when (not (re-search-forward "/\\*AUTOARG\\*/" endmodp t))
8427 (verilog-re-search-forward-quick ";" nil t)
8428 (backward-char 1)
8429 (verilog-backward-syntactic-ws)
8430 (backward-char 1) ; Moves to paren that closes argdecl's
8431 (when (looking-at ")")
8432 (insert "/*AUTOARG*/")))))))
8434 (defun verilog-inject-sense ()
8435 "Inject AUTOSENSE into new code. See `verilog-inject-auto'."
8436 (save-excursion
8437 (goto-char (point-min))
8438 (while (verilog-re-search-forward-quick "\\<always\\s *@\\s *(" nil t)
8439 (let* ((start-pt (point))
8440 (modi (verilog-modi-current))
8441 (moddecls (verilog-modi-get-decls modi))
8442 pre-sigs
8443 got-sigs)
8444 (backward-char 1)
8445 (forward-sexp 1)
8446 (backward-char 1) ;; End )
8447 (when (not (verilog-re-search-backward "/\\*\\(AUTOSENSE\\|AS\\)\\*/" start-pt t))
8448 (setq pre-sigs (verilog-signals-from-signame
8449 (verilog-read-signals start-pt (point)))
8450 got-sigs (verilog-auto-sense-sigs moddecls nil))
8451 (when (not (or (verilog-signals-not-in pre-sigs got-sigs) ; Both are equal?
8452 (verilog-signals-not-in got-sigs pre-sigs)))
8453 (delete-region start-pt (point))
8454 (insert "/*AS*/")))))))
8456 (defun verilog-inject-inst ()
8457 "Inject AUTOINST into new code. See `verilog-inject-auto'."
8458 (save-excursion
8459 (goto-char (point-min))
8460 ;; It's hard to distinguish modules; we'll instead search for pins.
8461 (while (verilog-re-search-forward-quick "\\.\\s *[a-zA-Z0-9`_\$]+\\s *(\\s *[a-zA-Z0-9`_\$]+\\s *)" nil t)
8462 (verilog-backward-open-paren) ;; Inst start
8463 (cond
8464 ((= (preceding-char) ?\#) ;; #(...) parameter section, not pin. Skip.
8465 (forward-char 1)
8466 (verilog-forward-close-paren)) ;; Parameters done
8468 (forward-char 1)
8469 (let ((indent-pt (+ (current-column)))
8470 (end-pt (save-excursion (verilog-forward-close-paren) (point))))
8471 (cond ((verilog-re-search-forward "\\(/\\*AUTOINST\\*/\\|\\.\\*\\)" end-pt t)
8472 (goto-char end-pt)) ;; Already there, continue search with next instance
8474 ;; Delete identical interconnect
8475 (let ((case-fold-search nil)) ;; So we don't convert upper-to-lower, etc
8476 (while (verilog-re-search-forward "\\.\\s *\\([a-zA-Z0-9`_\$]+\\)*\\s *(\\s *\\1\\s *)\\s *" end-pt t)
8477 (delete-region (match-beginning 0) (match-end 0))
8478 (setq end-pt (- end-pt (- (match-end 0) (match-beginning 0)))) ;; Keep it correct
8479 (while (or (looking-at "[ \t\n\f,]+")
8480 (looking-at "//[^\n]*"))
8481 (delete-region (match-beginning 0) (match-end 0))
8482 (setq end-pt (- end-pt (- (match-end 0) (match-beginning 0)))))))
8483 (verilog-forward-close-paren)
8484 (backward-char 1)
8485 ;; Not verilog-re-search, as we don't want to strip comments
8486 (while (re-search-backward "[ \t\n\f]+" (- (point) 1) t)
8487 (delete-region (match-beginning 0) (match-end 0)))
8488 (insert "\n")
8489 (indent-to indent-pt)
8490 (insert "/*AUTOINST*/")))))))))
8493 ;; Auto save
8496 (defun verilog-auto-save-check ()
8497 "On saving see if we need auto update."
8498 (cond ((not verilog-auto-save-policy)) ; disabled
8499 ((not (save-excursion
8500 (save-match-data
8501 (let ((case-fold-search nil))
8502 (goto-char (point-min))
8503 (re-search-forward "AUTO" nil t))))))
8504 ((eq verilog-auto-save-policy 'force)
8505 (verilog-auto))
8506 ((not (buffer-modified-p)))
8507 ((eq verilog-auto-update-tick (buffer-modified-tick))) ; up-to-date
8508 ((eq verilog-auto-save-policy 'detect)
8509 (verilog-auto))
8511 (when (yes-or-no-p "AUTO statements not recomputed, do it now? ")
8512 (verilog-auto))
8513 ;; Don't ask again if didn't update
8514 (set (make-local-variable 'verilog-auto-update-tick) (buffer-modified-tick))))
8515 (when (not verilog-auto-star-save)
8516 (verilog-delete-auto-star-implicit))
8517 nil) ;; Always return nil -- we don't write the file ourselves
8519 (defun verilog-auto-read-locals ()
8520 "Return file local variable segment at bottom of file."
8521 (save-excursion
8522 (goto-char (point-max))
8523 (if (re-search-backward "Local Variables:" nil t)
8524 (buffer-substring-no-properties (point) (point-max))
8525 "")))
8527 (defun verilog-auto-reeval-locals (&optional force)
8528 "Read file local variable segment at bottom of file if it has changed.
8529 If FORCE, always reread it."
8530 (make-local-variable 'verilog-auto-last-file-locals)
8531 (let ((curlocal (verilog-auto-read-locals)))
8532 (when (or force (not (equal verilog-auto-last-file-locals curlocal)))
8533 (setq verilog-auto-last-file-locals curlocal)
8534 ;; Note this may cause this function to be recursively invoked,
8535 ;; because hack-local-variables may call (verilog-mode)
8536 ;; The above when statement will prevent it from recursing forever.
8537 (hack-local-variables)
8538 t)))
8541 ;; Auto creation
8544 (defun verilog-auto-arg-ports (sigs message indent-pt)
8545 "Print a list of ports for a AUTOINST.
8546 Takes SIGS list, adds MESSAGE to front and inserts each at INDENT-PT."
8547 (when sigs
8548 (when verilog-auto-arg-sort
8549 (setq sigs (sort (copy-alist sigs) `verilog-signals-sort-compare)))
8550 (insert "\n")
8551 (indent-to indent-pt)
8552 (insert message)
8553 (insert "\n")
8554 (let ((space ""))
8555 (indent-to indent-pt)
8556 (while sigs
8557 (cond ((> (+ 2 (current-column) (length (verilog-sig-name (car sigs)))) fill-column)
8558 (insert "\n")
8559 (indent-to indent-pt))
8560 (t (insert space)))
8561 (insert (verilog-sig-name (car sigs)) ",")
8562 (setq sigs (cdr sigs)
8563 space " ")))))
8565 (defun verilog-auto-arg ()
8566 "Expand AUTOARG statements.
8567 Replace the argument declarations at the beginning of the
8568 module with ones automatically derived from input and output
8569 statements. This can be dangerous if the module is instantiated
8570 using position-based connections, so use only name-based when
8571 instantiating the resulting module. Long lines are split based
8572 on the `fill-column', see \\[set-fill-column].
8574 Limitations:
8575 Concatenation and outputting partial busses is not supported.
8577 Typedefs must match `verilog-typedef-regexp', which is disabled by default.
8579 For example:
8581 module ExampArg (/*AUTOARG*/);
8582 input i;
8583 output o;
8584 endmodule
8586 Typing \\[verilog-auto] will make this into:
8588 module ExampArg (/*AUTOARG*/
8589 // Outputs
8591 // Inputs
8594 input i;
8595 output o;
8596 endmodule
8598 The argument declarations may be printed in declaration order to best suit
8599 order based instantiations, or alphabetically, based on the
8600 `verilog-auto-arg-sort' variable.
8602 Any ports declared between the ( and /*AUTOARG*/ are presumed to be
8603 predeclared and are not redeclared by AUTOARG. AUTOARG will make a
8604 conservative guess on adding a comma for the first signal, if you have
8605 any ifdefs or complicated expressions before the AUTOARG you will need
8606 to choose the comma yourself.
8608 Avoid declaring ports manually, as it makes code harder to maintain."
8609 (save-excursion
8610 (let* ((modi (verilog-modi-current))
8611 (moddecls (verilog-modi-get-decls modi))
8612 (skip-pins (aref (verilog-read-arg-pins) 0)))
8613 (verilog-repair-open-comma)
8614 (verilog-auto-arg-ports (verilog-signals-not-in
8615 (verilog-decls-get-outputs moddecls)
8616 skip-pins)
8617 "// Outputs"
8618 verilog-indent-level-declaration)
8619 (verilog-auto-arg-ports (verilog-signals-not-in
8620 (verilog-decls-get-inouts moddecls)
8621 skip-pins)
8622 "// Inouts"
8623 verilog-indent-level-declaration)
8624 (verilog-auto-arg-ports (verilog-signals-not-in
8625 (verilog-decls-get-inputs moddecls)
8626 skip-pins)
8627 "// Inputs"
8628 verilog-indent-level-declaration)
8629 (verilog-repair-close-comma)
8630 (unless (eq (char-before) ?/ )
8631 (insert "\n"))
8632 (indent-to verilog-indent-level-declaration))))
8634 (defun verilog-auto-inst-port-map (port-st)
8635 nil)
8637 (defvar vl-cell-type nil "See `verilog-auto-inst'.") ; Prevent compile warning
8638 (defvar vl-cell-name nil "See `verilog-auto-inst'.") ; Prevent compile warning
8639 (defvar vl-modport nil "See `verilog-auto-inst'.") ; Prevent compile warning
8640 (defvar vl-name nil "See `verilog-auto-inst'.") ; Prevent compile warning
8641 (defvar vl-width nil "See `verilog-auto-inst'.") ; Prevent compile warning
8642 (defvar vl-dir nil "See `verilog-auto-inst'.") ; Prevent compile warning
8644 (defun verilog-auto-inst-port (port-st indent-pt tpl-list tpl-num for-star par-values)
8645 "Print out a instantiation connection for this PORT-ST.
8646 Insert to INDENT-PT, use template TPL-LIST.
8647 @ are instantiation numbers, replaced with TPL-NUM.
8648 @\"(expression @)\" are evaluated, with @ as a variable.
8649 If FOR-STAR add comment it is a .* expansion.
8650 If PAR-VALUES replace final strings with these parameter values."
8651 (let* ((port (verilog-sig-name port-st))
8652 (tpl-ass (or (assoc port (car tpl-list))
8653 (verilog-auto-inst-port-map port-st)))
8654 ;; vl-* are documented for user use
8655 (vl-name (verilog-sig-name port-st))
8656 (vl-width (verilog-sig-width port-st))
8657 (vl-modport (verilog-sig-modport port-st))
8658 (vl-bits (if (or verilog-auto-inst-vector
8659 (not (assoc port vector-skip-list))
8660 (not (equal (verilog-sig-bits port-st)
8661 (verilog-sig-bits (assoc port vector-skip-list)))))
8662 (or (verilog-sig-bits port-st) "")
8663 ""))
8664 (case-fold-search nil)
8665 (check-values par-values)
8666 tpl-net)
8667 ;; Replace parameters in bit-width
8668 (when (and check-values
8669 (not (equal vl-bits "")))
8670 (while check-values
8671 (setq vl-bits (verilog-string-replace-matches
8672 (concat "\\<" (nth 0 (car check-values)) "\\>")
8673 (concat "(" (nth 1 (car check-values)) ")")
8674 t t vl-bits)
8675 check-values (cdr check-values)))
8676 (setq vl-bits (verilog-simplify-range-expression vl-bits))) ; Not in the loop for speed
8677 ;; Default net value if not found
8678 (setq tpl-net (concat port
8679 (if vl-modport (concat "." vl-modport) "")
8680 (if (verilog-sig-multidim port-st)
8681 (concat "/*" (verilog-sig-multidim-string port-st)
8682 vl-bits "*/")
8683 (concat vl-bits))))
8684 ;; Find template
8685 (cond (tpl-ass ; Template of exact port name
8686 (setq tpl-net (nth 1 tpl-ass)))
8687 ((nth 1 tpl-list) ; Wildcards in template, search them
8688 (let ((wildcards (nth 1 tpl-list)))
8689 (while wildcards
8690 (when (string-match (nth 0 (car wildcards)) port)
8691 (setq tpl-ass (car wildcards) ; so allow @ parsing
8692 tpl-net (replace-match (nth 1 (car wildcards))
8693 t nil port)))
8694 (setq wildcards (cdr wildcards))))))
8695 ;; Parse Templated variable
8696 (when tpl-ass
8697 ;; Evaluate @"(lispcode)"
8698 (when (string-match "@\".*[^\\]\"" tpl-net)
8699 (while (string-match "@\"\\(\\([^\\\"]*\\(\\\\.\\)*\\)*\\)\"" tpl-net)
8700 (setq tpl-net
8701 (concat
8702 (substring tpl-net 0 (match-beginning 0))
8703 (save-match-data
8704 (let* ((expr (match-string 1 tpl-net))
8705 (value
8706 (progn
8707 (setq expr (verilog-string-replace-matches "\\\\\"" "\"" nil nil expr))
8708 (setq expr (verilog-string-replace-matches "@" tpl-num nil nil expr))
8709 (prin1 (eval (car (read-from-string expr)))
8710 (lambda (ch) ())))))
8711 (if (numberp value) (setq value (number-to-string value)))
8712 value))
8713 (substring tpl-net (match-end 0))))))
8714 ;; Replace @ and [] magic variables in final output
8715 (setq tpl-net (verilog-string-replace-matches "@" tpl-num nil nil tpl-net))
8716 (setq tpl-net (verilog-string-replace-matches "\\[\\]" vl-bits nil nil tpl-net)))
8717 ;; Insert it
8718 (indent-to indent-pt)
8719 (insert "." port)
8720 (indent-to verilog-auto-inst-column)
8721 (insert "(" tpl-net "),")
8722 (cond (tpl-ass
8723 (indent-to (+ (if (< verilog-auto-inst-column 48) 24 16)
8724 verilog-auto-inst-column))
8725 (insert " // Templated")
8726 (when verilog-auto-inst-template-numbers
8727 (insert " T" (int-to-string (nth 2 tpl-ass))
8728 " L" (int-to-string (nth 3 tpl-ass)))))
8729 (for-star
8730 (indent-to (+ (if (< verilog-auto-inst-column 48) 24 16)
8731 verilog-auto-inst-column))
8732 (insert " // Implicit .\*"))) ;For some reason the . or * must be escaped...
8733 (insert "\n")))
8734 ;;(verilog-auto-inst-port (list "foo" "[5:0]") 10 (list (list "foo" "a@\"(% (+ @ 1) 4)\"a")) "3")
8735 ;;(x "incom[@\"(+ (* 8 @) 7)\":@\"(* 8 @)\"]")
8736 ;;(x ".out (outgo[@\"(concat (+ (* 8 @) 7) \\\":\\\" ( * 8 @))\"]));")
8738 (defun verilog-auto-inst-first ()
8739 "Insert , etc before first ever port in this instant, as part of \\[verilog-auto-inst]."
8740 ;; Do we need a trailing comma?
8741 ;; There maybe a ifdef or something similar before us. What a mess. Thus
8742 ;; to avoid trouble we only insert on preceeding ) or *.
8743 ;; Insert first port on new line
8744 (insert "\n") ;; Must insert before search, so point will move forward if insert comma
8745 (save-excursion
8746 (verilog-re-search-backward "[^ \t\n\f]" nil nil)
8747 (when (looking-at ")\\|\\*") ;; Generally don't insert, unless we are fairly sure
8748 (forward-char 1)
8749 (insert ","))))
8751 (defun verilog-auto-star ()
8752 "Expand SystemVerilog .* pins, as part of \\[verilog-auto].
8754 If `verilog-auto-star-expand' is set, .* pins are treated if they were
8755 AUTOINST statements, otherwise they are ignored. For safety, Verilog mode
8756 will also ignore any .* that are not last in your pin list (this prevents
8757 it from deleting pins following the .* when it expands the AUTOINST.)
8759 On writing your file, unless `verilog-auto-star-save' is set, any
8760 non-templated expanded pins will be removed. You may do this at any time
8761 with \\[verilog-delete-auto-star-implicit].
8763 If you are converting a module to use .* for the first time, you may wish
8764 to use \\[verilog-inject-auto] and then replace the created AUTOINST with .*.
8766 See `verilog-auto-inst' for examples, templates, and more information."
8767 (when (verilog-auto-star-safe)
8768 (verilog-auto-inst)))
8770 (defun verilog-auto-inst ()
8771 "Expand AUTOINST statements, as part of \\[verilog-auto].
8772 Replace the pin connections to an instantiation with ones
8773 automatically derived from the module header of the instantiated netlist.
8775 If `verilog-auto-star-expand' is set, also expand SystemVerilog .* ports,
8776 and delete them before saving unless `verilog-auto-star-save' is set.
8777 See `verilog-auto-star' for more information.
8779 Limitations:
8780 Module names must be resolvable to filenames by adding a
8781 `verilog-library-extensions', and being found in the same directory, or
8782 by changing the variable `verilog-library-flags' or
8783 `verilog-library-directories'. Macros `modname are translated through the
8784 vh-{name} Emacs variable, if that is not found, it just ignores the `.
8786 In templates you must have one signal per line, ending in a ), or ));,
8787 and have proper () nesting, including a final ); to end the template.
8789 Typedefs must match `verilog-typedef-regexp', which is disabled by default.
8791 SystemVerilog multidimensional input/output has only experimental support.
8793 Parameters referenced by the instantiation will remain symbolic, unless
8794 `verilog-auto-inst-param-value' is set.
8796 For example, first take the submodule InstModule.v:
8798 module InstModule (o,i)
8799 output [31:0] o;
8800 input i;
8801 wire [31:0] o = {32{i}};
8802 endmodule
8804 This is then used in a upper level module:
8806 module ExampInst (o,i)
8807 output o;
8808 input i;
8809 InstModule instName
8810 (/*AUTOINST*/);
8811 endmodule
8813 Typing \\[verilog-auto] will make this into:
8815 module ExampInst (o,i)
8816 output o;
8817 input i;
8818 InstModule instName
8819 (/*AUTOINST*/
8820 // Outputs
8821 .ov (ov[31:0]),
8822 // Inputs
8823 .i (i));
8824 endmodule
8826 Where the list of inputs and outputs came from the inst module.
8828 Exceptions:
8830 Unless you are instantiating a module multiple times, or the module is
8831 something trivial like an adder, DO NOT CHANGE SIGNAL NAMES ACROSS HIERARCHY.
8832 It just makes for unmaintainable code. To sanitize signal names, try
8833 vrename from URL `http://www.veripool.org'.
8835 When you need to violate this suggestion there are two ways to list
8836 exceptions, placing them before the AUTOINST, or using templates.
8838 Any ports defined before the /*AUTOINST*/ are not included in the list of
8839 automatics. This is similar to making a template as described below, but
8840 is restricted to simple connections just like you normally make. Also note
8841 that any signals before the AUTOINST will only be picked up by AUTOWIRE if
8842 you have the appropriate // Input or // Output comment, and exactly the
8843 same line formatting as AUTOINST itself uses.
8845 InstModule instName
8846 (// Inputs
8847 .i (my_i_dont_mess_with_it),
8848 /*AUTOINST*/
8849 // Outputs
8850 .ov (ov[31:0]));
8853 Templates:
8855 For multiple instantiations based upon a single template, create a
8856 commented out template:
8858 /* InstModule AUTO_TEMPLATE (
8859 .sig3 (sigz[]),
8863 Templates go ABOVE the instantiation(s). When an instantiation is
8864 expanded `verilog-mode' simply searches up for the closest template.
8865 Thus you can have multiple templates for the same module, just alternate
8866 between the template for an instantiation and the instantiation itself.
8868 The module name must be the same as the name of the module in the
8869 instantiation name, and the code \"AUTO_TEMPLATE\" must be in these exact
8870 words and capitalized. Only signals that must be different for each
8871 instantiation need to be listed.
8873 Inside a template, a [] in a connection name (with nothing else inside
8874 the brackets) will be replaced by the same bus subscript as it is being
8875 connected to, or the [] will be removed if it is a single bit signal.
8876 Generally it is a good idea to do this for all connections in a template,
8877 as then they will work for any width signal, and with AUTOWIRE. See
8878 PTL_BUS becoming PTL_BUSNEW below.
8880 If you have a complicated template, set `verilog-auto-inst-template-numbers'
8881 to see which regexps are matching. Don't leave that mode set after
8882 debugging is completed though, it will result in lots of extra differences
8883 and merge conflicts.
8885 For example:
8887 /* InstModule AUTO_TEMPLATE (
8888 .ptl_bus (ptl_busnew[]),
8891 InstModule ms2m (/*AUTOINST*/);
8893 Typing \\[verilog-auto] will make this into:
8895 InstModule ms2m (/*AUTOINST*/
8896 // Outputs
8897 .NotInTemplate (NotInTemplate),
8898 .ptl_bus (ptl_busnew[3:0]), // Templated
8899 ....
8901 @ Templates:
8903 It is common to instantiate a cell multiple times, so templates make it
8904 trivial to substitute part of the cell name into the connection name.
8906 /* InstName AUTO_TEMPLATE <optional \"REGEXP\"> (
8907 .sig1 (sigx[@]),
8908 .sig2 (sigy[@\"(% (+ 1 @) 4)\"]),
8912 If no regular expression is provided immediately after the AUTO_TEMPLATE
8913 keyword, then the @ character in any connection names will be replaced
8914 with the instantiation number; the first digits found in the cell's
8915 instantiation name.
8917 If a regular expression is provided, the @ character will be replaced
8918 with the first \(\) grouping that matches against the cell name. Using a
8919 regexp of \"\\([0-9]+\\)\" provides identical values for @ as when no
8920 regexp is provided. If you use multiple layers of parenthesis,
8921 \"test\\([^0-9]+\\)_\\([0-9]+\\)\" would replace @ with non-number
8922 characters after test and before _, whereas
8923 \"\\(test\\([a-z]+\\)_\\([0-9]+\\)\\)\" would replace @ with the entire
8924 match.
8926 For example:
8928 /* InstModule AUTO_TEMPLATE (
8929 .ptl_mapvalidx (ptl_mapvalid[@]),
8930 .ptl_mapvalidp1x (ptl_mapvalid[@\"(% (+ 1 @) 4)\"]),
8933 InstModule ms2m (/*AUTOINST*/);
8935 Typing \\[verilog-auto] will make this into:
8937 InstModule ms2m (/*AUTOINST*/
8938 // Outputs
8939 .ptl_mapvalidx (ptl_mapvalid[2]),
8940 .ptl_mapvalidp1x (ptl_mapvalid[3]));
8942 Note the @ character was replaced with the 2 from \"ms2m\".
8944 Alternatively, using a regular expression for @:
8946 /* InstModule AUTO_TEMPLATE \"_\\([a-z]+\\)\" (
8947 .ptl_mapvalidx (@_ptl_mapvalid),
8948 .ptl_mapvalidp1x (ptl_mapvalid_@),
8951 InstModule ms2_FOO (/*AUTOINST*/);
8952 InstModule ms2_BAR (/*AUTOINST*/);
8954 Typing \\[verilog-auto] will make this into:
8956 InstModule ms2_FOO (/*AUTOINST*/
8957 // Outputs
8958 .ptl_mapvalidx (FOO_ptl_mapvalid),
8959 .ptl_mapvalidp1x (ptl_mapvalid_FOO));
8960 InstModule ms2_BAR (/*AUTOINST*/
8961 // Outputs
8962 .ptl_mapvalidx (BAR_ptl_mapvalid),
8963 .ptl_mapvalidp1x (ptl_mapvalid_BAR));
8966 Regexp Templates:
8968 A template entry of the form
8970 .pci_req\\([0-9]+\\)_l (pci_req_jtag_[\\1]),
8972 will apply an Emacs style regular expression search for any port beginning
8973 in pci_req followed by numbers and ending in _l and connecting that to
8974 the pci_req_jtag_[] net, with the bus subscript coming from what matches
8975 inside the first set of \\( \\). Thus pci_req2_l becomes pci_req_jtag_[2].
8977 Since \\([0-9]+\\) is so common and ugly to read, a @ in the port name
8978 does the same thing. (Note a @ in the connection/replacement text is
8979 completely different -- still use \\1 there!) Thus this is the same as
8980 the above template:
8982 .pci_req@_l (pci_req_jtag_[\\1]),
8984 Here's another example to remove the _l, useful when naming conventions
8985 specify _ alone to mean active low. Note the use of [] to keep the bus
8986 subscript:
8988 .\\(.*\\)_l (\\1_[]),
8990 Lisp Templates:
8992 First any regular expression template is expanded.
8994 If the syntax @\"( ... )\" is found in a connection, the expression in
8995 quotes will be evaluated as a Lisp expression, with @ replaced by the
8996 instantiation number. The MAPVALIDP1X example above would put @+1 modulo
8997 4 into the brackets. Quote all double-quotes inside the expression with
8998 a leading backslash (\\\"). There are special variables defined that are
8999 useful in these Lisp functions:
9001 vl-name Name portion of the input/output port.
9002 vl-bits Bus bits portion of the input/output port ('[2:0]').
9003 vl-width Width of the input/output port ('3' for [2:0]).
9004 May be a (...) expression if bits isn't a constant.
9005 vl-dir Direction of the pin input/output/inout/interface.
9006 vl-modport The modport, if an interface with a modport.
9007 vl-cell-type Module name/type of the cell ('InstModule').
9008 vl-cell-name Instance name of the cell ('instName').
9010 Normal Lisp variables may be used in expressions. See
9011 `verilog-read-defines' which can set vh-{definename} variables for use
9012 here. Also, any comments of the form:
9014 /*AUTO_LISP(setq foo 1)*/
9016 will evaluate any Lisp expression inside the parenthesis between the
9017 beginning of the buffer and the point of the AUTOINST. This allows
9018 functions to be defined or variables to be changed between instantiations.
9019 (See also `verilog-auto-insert-lisp' if you want the output from your
9020 lisp function to be inserted.)
9022 Note that when using lisp expressions errors may occur when @ is not a
9023 number; you may need to use the standard Emacs Lisp functions
9024 `number-to-string' and `string-to-number'.
9026 After the evaluation is completed, @ substitution and [] substitution
9027 occur."
9028 (save-excursion
9029 ;; Find beginning
9030 (let* ((pt (point))
9031 (for-star (save-excursion (backward-char 2) (looking-at "\\.\\*")))
9032 (indent-pt (save-excursion (verilog-backward-open-paren)
9033 (1+ (current-column))))
9034 (verilog-auto-inst-column (max verilog-auto-inst-column
9035 (+ 16 (* 8 (/ (+ indent-pt 7) 8)))))
9036 (modi (verilog-modi-current))
9037 (moddecls (verilog-modi-get-decls modi))
9038 (vector-skip-list (unless verilog-auto-inst-vector
9039 (verilog-decls-get-signals moddecls)))
9040 submod submodi submoddecls
9041 inst skip-pins tpl-list tpl-num did-first par-values)
9043 ;; Find module name that is instantiated
9044 (setq submod (verilog-read-inst-module)
9045 inst (verilog-read-inst-name)
9046 vl-cell-type submod
9047 vl-cell-name inst
9048 skip-pins (aref (verilog-read-inst-pins) 0))
9050 ;; Parse any AUTO_LISP() before here
9051 (verilog-read-auto-lisp (point-min) pt)
9053 ;; Read parameters (after AUTO_LISP)
9054 (setq par-values (and verilog-auto-inst-param-value
9055 (verilog-read-inst-param-value)))
9057 ;; Lookup position, etc of submodule
9058 ;; Note this may raise an error
9059 (when (setq submodi (verilog-modi-lookup submod t))
9060 (setq submoddecls (verilog-modi-get-decls submodi))
9061 ;; If there's a number in the instantiation, it may be a argument to the
9062 ;; automatic variable instantiation program.
9063 (let* ((tpl-info (verilog-read-auto-template submod))
9064 (tpl-regexp (aref tpl-info 0)))
9065 (setq tpl-num (if (string-match tpl-regexp inst)
9066 (match-string 1 inst)
9068 tpl-list (aref tpl-info 1)))
9069 ;; Find submodule's signals and dump
9070 (let ((sig-list (verilog-signals-not-in
9071 (verilog-decls-get-interfaces submoddecls)
9072 skip-pins))
9073 (vl-dir "interface"))
9074 (when sig-list
9075 (when (not did-first) (verilog-auto-inst-first) (setq did-first t))
9076 (indent-to indent-pt)
9077 ;; Note these are searched for in verilog-read-sub-decls.
9078 (insert "// Interfaces\n")
9079 (mapc (lambda (port)
9080 (verilog-auto-inst-port port indent-pt
9081 tpl-list tpl-num for-star par-values))
9082 sig-list)))
9083 (let ((sig-list (verilog-signals-not-in
9084 (verilog-decls-get-outputs submoddecls)
9085 skip-pins))
9086 (vl-dir "output"))
9087 (when sig-list
9088 (when (not did-first) (verilog-auto-inst-first) (setq did-first t))
9089 (indent-to indent-pt)
9090 (insert "// Outputs\n")
9091 (mapc (lambda (port)
9092 (verilog-auto-inst-port port indent-pt
9093 tpl-list tpl-num for-star par-values))
9094 sig-list)))
9095 (let ((sig-list (verilog-signals-not-in
9096 (verilog-decls-get-inouts submoddecls)
9097 skip-pins))
9098 (vl-dir "inout"))
9099 (when sig-list
9100 (when (not did-first) (verilog-auto-inst-first) (setq did-first t))
9101 (indent-to indent-pt)
9102 (insert "// Inouts\n")
9103 (mapc (lambda (port)
9104 (verilog-auto-inst-port port indent-pt
9105 tpl-list tpl-num for-star par-values))
9106 sig-list)))
9107 (let ((sig-list (verilog-signals-not-in
9108 (verilog-decls-get-inputs submoddecls)
9109 skip-pins))
9110 (vl-dir "input"))
9111 (when sig-list
9112 (when (not did-first) (verilog-auto-inst-first) (setq did-first t))
9113 (indent-to indent-pt)
9114 (insert "// Inputs\n")
9115 (mapc (lambda (port)
9116 (verilog-auto-inst-port port indent-pt
9117 tpl-list tpl-num for-star par-values))
9118 sig-list)))
9119 ;; Kill extra semi
9120 (save-excursion
9121 (cond (did-first
9122 (re-search-backward "," pt t)
9123 (delete-char 1)
9124 (insert ");")
9125 (search-forward "\n") ;; Added by inst-port
9126 (delete-backward-char 1)
9127 (if (search-forward ")" nil t) ;; From user, moved up a line
9128 (delete-backward-char 1))
9129 (if (search-forward ";" nil t) ;; Don't error if user had syntax error and forgot it
9130 (delete-backward-char 1)))))))))
9132 (defun verilog-auto-inst-param ()
9133 "Expand AUTOINSTPARAM statements, as part of \\[verilog-auto].
9134 Replace the parameter connections to an instantiation with ones
9135 automatically derived from the module header of the instantiated netlist.
9137 See \\[verilog-auto-inst] for limitations, and templates to customize the
9138 output.
9140 For example, first take the submodule InstModule.v:
9142 module InstModule (o,i)
9143 parameter PAR;
9144 endmodule
9146 This is then used in a upper level module:
9148 module ExampInst (o,i)
9149 parameter PAR;
9150 InstModule #(/*AUTOINSTPARAM*/)
9151 instName (/*AUTOINST*/);
9152 endmodule
9154 Typing \\[verilog-auto] will make this into:
9156 module ExampInst (o,i)
9157 output o;
9158 input i;
9159 InstModule #(/*AUTOINSTPARAM*/
9160 // Parameters
9161 .PAR (PAR));
9162 instName (/*AUTOINST*/);
9163 endmodule
9165 Where the list of parameter connections come from the inst module.
9167 Templates:
9169 You can customize the parameter connections using AUTO_TEMPLATEs,
9170 just as you would with \\[verilog-auto-inst]."
9171 (save-excursion
9172 ;; Find beginning
9173 (let* ((pt (point))
9174 (indent-pt (save-excursion (verilog-backward-open-paren)
9175 (1+ (current-column))))
9176 (verilog-auto-inst-column (max verilog-auto-inst-column
9177 (+ 16 (* 8 (/ (+ indent-pt 7) 8)))))
9178 (modi (verilog-modi-current))
9179 (moddecls (verilog-modi-get-decls modi))
9180 (vector-skip-list (unless verilog-auto-inst-vector
9181 (verilog-decls-get-signals moddecls)))
9182 submod submodi submoddecls
9183 inst skip-pins tpl-list tpl-num did-first)
9184 ;; Find module name that is instantiated
9185 (setq submod (save-excursion
9186 ;; Get to the point where AUTOINST normally is to read the module
9187 (verilog-re-search-forward-quick "[(;]" nil nil)
9188 (verilog-read-inst-module))
9189 inst (save-excursion
9190 ;; Get to the point where AUTOINST normally is to read the module
9191 (verilog-re-search-forward-quick "[(;]" nil nil)
9192 (verilog-read-inst-name))
9193 vl-cell-type submod
9194 vl-cell-name inst
9195 skip-pins (aref (verilog-read-inst-pins) 0))
9197 ;; Parse any AUTO_LISP() before here
9198 (verilog-read-auto-lisp (point-min) pt)
9200 ;; Lookup position, etc of submodule
9201 ;; Note this may raise an error
9202 (when (setq submodi (verilog-modi-lookup submod t))
9203 (setq submoddecls (verilog-modi-get-decls submodi))
9204 ;; If there's a number in the instantiation, it may be a argument to the
9205 ;; automatic variable instantiation program.
9206 (let* ((tpl-info (verilog-read-auto-template submod))
9207 (tpl-regexp (aref tpl-info 0)))
9208 (setq tpl-num (if (string-match tpl-regexp inst)
9209 (match-string 1 inst)
9211 tpl-list (aref tpl-info 1)))
9212 ;; Find submodule's signals and dump
9213 (let ((sig-list (verilog-signals-not-in
9214 (verilog-decls-get-gparams submoddecls)
9215 skip-pins))
9216 (vl-dir "parameter"))
9217 (when sig-list
9218 (when (not did-first) (verilog-auto-inst-first) (setq did-first t))
9219 (indent-to indent-pt)
9220 ;; Note these are searched for in verilog-read-sub-decls.
9221 (insert "// Parameters\n")
9222 (mapc (lambda (port)
9223 (verilog-auto-inst-port port indent-pt
9224 tpl-list tpl-num nil nil))
9225 sig-list)))
9226 ;; Kill extra semi
9227 (save-excursion
9228 (cond (did-first
9229 (re-search-backward "," pt t)
9230 (delete-char 1)
9231 (insert ")")
9232 (search-forward "\n") ;; Added by inst-port
9233 (delete-backward-char 1)
9234 (if (search-forward ")" nil t) ;; From user, moved up a line
9235 (delete-backward-char 1)))))))))
9237 (defun verilog-auto-reg ()
9238 "Expand AUTOREG statements, as part of \\[verilog-auto].
9239 Make reg statements for any output that isn't already declared,
9240 and isn't a wire output from a block.
9242 Limitations:
9243 This ONLY detects outputs of AUTOINSTants (see `verilog-read-sub-decls').
9245 This does NOT work on memories, declare those yourself.
9247 An example:
9249 module ExampReg (o,i)
9250 output o;
9251 input i;
9252 /*AUTOREG*/
9253 always o = i;
9254 endmodule
9256 Typing \\[verilog-auto] will make this into:
9258 module ExampReg (o,i)
9259 output o;
9260 input i;
9261 /*AUTOREG*/
9262 // Beginning of automatic regs (for this module's undeclared outputs)
9263 reg o;
9264 // End of automatics
9265 always o = i;
9266 endmodule"
9267 (save-excursion
9268 ;; Point must be at insertion point.
9269 (let* ((indent-pt (current-indentation))
9270 (modi (verilog-modi-current))
9271 (moddecls (verilog-modi-get-decls modi))
9272 (modsubdecls (verilog-modi-get-sub-decls modi))
9273 (sig-list (verilog-signals-not-in
9274 (verilog-decls-get-outputs moddecls)
9275 (append (verilog-decls-get-wires moddecls)
9276 (verilog-decls-get-regs moddecls)
9277 (verilog-decls-get-assigns moddecls)
9278 (verilog-decls-get-consts moddecls)
9279 (verilog-decls-get-gparams moddecls)
9280 (verilog-subdecls-get-outputs modsubdecls)
9281 (verilog-subdecls-get-inouts modsubdecls)))))
9282 (forward-line 1)
9283 (when sig-list
9284 (verilog-insert-indent "// Beginning of automatic regs (for this module's undeclared outputs)\n")
9285 (verilog-insert-definition sig-list "reg" indent-pt nil)
9286 (verilog-modi-cache-add-regs modi sig-list)
9287 (verilog-insert-indent "// End of automatics\n")))))
9289 (defun verilog-auto-reg-input ()
9290 "Expand AUTOREGINPUT statements, as part of \\[verilog-auto].
9291 Make reg statements instantiation inputs that aren't already declared.
9292 This is useful for making a top level shell for testing the module that is
9293 to be instantiated.
9295 Limitations:
9296 This ONLY detects inputs of AUTOINSTants (see `verilog-read-sub-decls').
9298 This does NOT work on memories, declare those yourself.
9300 An example (see `verilog-auto-inst' for what else is going on here):
9302 module ExampRegInput (o,i)
9303 output o;
9304 input i;
9305 /*AUTOREGINPUT*/
9306 InstModule instName
9307 (/*AUTOINST*/);
9308 endmodule
9310 Typing \\[verilog-auto] will make this into:
9312 module ExampRegInput (o,i)
9313 output o;
9314 input i;
9315 /*AUTOREGINPUT*/
9316 // Beginning of automatic reg inputs (for undeclared ...
9317 reg [31:0] iv; // From inst of inst.v
9318 // End of automatics
9319 InstModule instName
9320 (/*AUTOINST*/
9321 // Outputs
9322 .o (o[31:0]),
9323 // Inputs
9324 .iv (iv));
9325 endmodule"
9326 (save-excursion
9327 ;; Point must be at insertion point.
9328 (let* ((indent-pt (current-indentation))
9329 (modi (verilog-modi-current))
9330 (moddecls (verilog-modi-get-decls modi))
9331 (modsubdecls (verilog-modi-get-sub-decls modi))
9332 (sig-list (verilog-signals-combine-bus
9333 (verilog-signals-not-in
9334 (append (verilog-subdecls-get-inputs modsubdecls)
9335 (verilog-subdecls-get-inouts modsubdecls))
9336 (verilog-decls-get-signals moddecls)))))
9337 (forward-line 1)
9338 (when sig-list
9339 (verilog-insert-indent "// Beginning of automatic reg inputs (for undeclared instantiated-module inputs)\n")
9340 (verilog-insert-definition sig-list "reg" indent-pt nil)
9341 (verilog-modi-cache-add-regs modi sig-list)
9342 (verilog-insert-indent "// End of automatics\n")))))
9344 (defun verilog-auto-wire ()
9345 "Expand AUTOWIRE statements, as part of \\[verilog-auto].
9346 Make wire statements for instantiations outputs that aren't
9347 already declared.
9349 Limitations:
9350 This ONLY detects outputs of AUTOINSTants (see `verilog-read-sub-decls'),
9351 and all busses must have widths, such as those from AUTOINST, or using []
9352 in AUTO_TEMPLATEs.
9354 This does NOT work on memories or SystemVerilog .name connections,
9355 declare those yourself.
9357 Verilog mode will add \"Couldn't Merge\" comments to signals it cannot
9358 determine how to bus together. This occurs when you have ports with
9359 non-numeric or non-sequential bus subscripts. If Verilog mode
9360 mis-guessed, you'll have to declare them yourself.
9362 An example (see `verilog-auto-inst' for what else is going on here):
9364 module ExampWire (o,i)
9365 output o;
9366 input i;
9367 /*AUTOWIRE*/
9368 InstModule instName
9369 (/*AUTOINST*/);
9370 endmodule
9372 Typing \\[verilog-auto] will make this into:
9374 module ExampWire (o,i)
9375 output o;
9376 input i;
9377 /*AUTOWIRE*/
9378 // Beginning of automatic wires
9379 wire [31:0] ov; // From inst of inst.v
9380 // End of automatics
9381 InstModule instName
9382 (/*AUTOINST*/
9383 // Outputs
9384 .ov (ov[31:0]),
9385 // Inputs
9386 .i (i));
9387 wire o = | ov;
9388 endmodule"
9389 (save-excursion
9390 ;; Point must be at insertion point.
9391 (let* ((indent-pt (current-indentation))
9392 (modi (verilog-modi-current))
9393 (moddecls (verilog-modi-get-decls modi))
9394 (modsubdecls (verilog-modi-get-sub-decls modi))
9395 (sig-list (verilog-signals-combine-bus
9396 (verilog-signals-not-in
9397 (append (verilog-subdecls-get-outputs modsubdecls)
9398 (verilog-subdecls-get-inouts modsubdecls))
9399 (verilog-decls-get-signals moddecls)))))
9400 (forward-line 1)
9401 (when sig-list
9402 (verilog-insert-indent "// Beginning of automatic wires (for undeclared instantiated-module outputs)\n")
9403 (verilog-insert-definition sig-list "wire" indent-pt nil)
9404 (verilog-modi-cache-add-wires modi sig-list)
9405 (verilog-insert-indent "// End of automatics\n")
9406 (when nil ;; Too slow on huge modules, plus makes everyone's module change
9407 (beginning-of-line)
9408 (setq pnt (point))
9409 (verilog-pretty-declarations quiet)
9410 (goto-char pnt)
9411 (verilog-pretty-expr t "//"))))))
9413 (defun verilog-auto-output (&optional with-params)
9414 "Expand AUTOOUTPUT statements, as part of \\[verilog-auto].
9415 Make output statements for any output signal from an /*AUTOINST*/ that
9416 isn't a input to another AUTOINST. This is useful for modules which
9417 only instantiate other modules.
9419 Limitations:
9420 This ONLY detects outputs of AUTOINSTants (see `verilog-read-sub-decls').
9422 If placed inside the parenthesis of a module declaration, it creates
9423 Verilog 2001 style, else uses Verilog 1995 style.
9425 If any concatenation, or bit-subscripts are missing in the AUTOINSTant's
9426 instantiation, all bets are off. (For example due to a AUTO_TEMPLATE).
9428 Typedefs must match `verilog-typedef-regexp', which is disabled by default.
9430 Signals matching `verilog-auto-output-ignore-regexp' are not included.
9432 An example (see `verilog-auto-inst' for what else is going on here):
9434 module ExampOutput (ov,i)
9435 input i;
9436 /*AUTOOUTPUT*/
9437 InstModule instName
9438 (/*AUTOINST*/);
9439 endmodule
9441 Typing \\[verilog-auto] will make this into:
9443 module ExampOutput (ov,i)
9444 input i;
9445 /*AUTOOUTPUT*/
9446 // Beginning of automatic outputs (from unused autoinst outputs)
9447 output [31:0] ov; // From inst of inst.v
9448 // End of automatics
9449 InstModule instName
9450 (/*AUTOINST*/
9451 // Outputs
9452 .ov (ov[31:0]),
9453 // Inputs
9454 .i (i));
9455 endmodule
9457 You may also provide an optional regular expression, in which case only
9458 signals matching the regular expression will be included. For example the
9459 same expansion will result from only extracting outputs starting with ov:
9461 /*AUTOOUTPUT(\"^ov\")*/"
9462 (save-excursion
9463 ;; Point must be at insertion point.
9464 (let* ((indent-pt (current-indentation))
9465 (regexp (and with-params
9466 (nth 0 (verilog-read-auto-params 1))))
9467 (v2k (verilog-in-paren))
9468 (modi (verilog-modi-current))
9469 (moddecls (verilog-modi-get-decls modi))
9470 (modsubdecls (verilog-modi-get-sub-decls modi))
9471 (sig-list (verilog-signals-not-in
9472 (verilog-subdecls-get-outputs modsubdecls)
9473 (append (verilog-decls-get-outputs moddecls)
9474 (verilog-decls-get-inouts moddecls)
9475 (verilog-subdecls-get-inputs modsubdecls)
9476 (verilog-subdecls-get-inouts modsubdecls)))))
9477 (when regexp
9478 (setq sig-list (verilog-signals-matching-regexp
9479 sig-list regexp)))
9480 (setq sig-list (verilog-signals-not-matching-regexp
9481 sig-list verilog-auto-output-ignore-regexp))
9482 (forward-line 1)
9483 (when v2k (verilog-repair-open-comma))
9484 (when sig-list
9485 (verilog-insert-indent "// Beginning of automatic outputs (from unused autoinst outputs)\n")
9486 (verilog-insert-definition sig-list "output" indent-pt v2k)
9487 (verilog-modi-cache-add-outputs modi sig-list)
9488 (verilog-insert-indent "// End of automatics\n"))
9489 (when v2k (verilog-repair-close-comma)))))
9491 (defun verilog-auto-output-every ()
9492 "Expand AUTOOUTPUTEVERY statements, as part of \\[verilog-auto].
9493 Make output statements for any signals that aren't primary inputs or
9494 outputs already. This makes every signal in the design a output. This is
9495 useful to get Synopsys to preserve every signal in the design, since it
9496 won't optimize away the outputs.
9498 An example:
9500 module ExampOutputEvery (o,i,tempa,tempb)
9501 output o;
9502 input i;
9503 /*AUTOOUTPUTEVERY*/
9504 wire tempa = i;
9505 wire tempb = tempa;
9506 wire o = tempb;
9507 endmodule
9509 Typing \\[verilog-auto] will make this into:
9511 module ExampOutputEvery (o,i,tempa,tempb)
9512 output o;
9513 input i;
9514 /*AUTOOUTPUTEVERY*/
9515 // Beginning of automatic outputs (every signal)
9516 output tempb;
9517 output tempa;
9518 // End of automatics
9519 wire tempa = i;
9520 wire tempb = tempa;
9521 wire o = tempb;
9522 endmodule"
9523 (save-excursion
9524 ;;Point must be at insertion point
9525 (let* ((indent-pt (current-indentation))
9526 (v2k (verilog-in-paren))
9527 (modi (verilog-modi-current))
9528 (moddecls (verilog-modi-get-decls modi))
9529 (sig-list (verilog-signals-combine-bus
9530 (verilog-signals-not-in
9531 (verilog-decls-get-signals moddecls)
9532 (verilog-decls-get-ports moddecls)))))
9533 (forward-line 1)
9534 (when v2k (verilog-repair-open-comma))
9535 (when sig-list
9536 (verilog-insert-indent "// Beginning of automatic outputs (every signal)\n")
9537 (verilog-insert-definition sig-list "output" indent-pt v2k)
9538 (verilog-modi-cache-add-outputs modi sig-list)
9539 (verilog-insert-indent "// End of automatics\n"))
9540 (when v2k (verilog-repair-close-comma)))))
9542 (defun verilog-auto-input (&optional with-params)
9543 "Expand AUTOINPUT statements, as part of \\[verilog-auto].
9544 Make input statements for any input signal into an /*AUTOINST*/ that
9545 isn't declared elsewhere inside the module. This is useful for modules which
9546 only instantiate other modules.
9548 Limitations:
9549 This ONLY detects outputs of AUTOINSTants (see `verilog-read-sub-decls').
9551 If placed inside the parenthesis of a module declaration, it creates
9552 Verilog 2001 style, else uses Verilog 1995 style.
9554 If any concatenation, or bit-subscripts are missing in the AUTOINSTant's
9555 instantiation, all bets are off. (For example due to a AUTO_TEMPLATE).
9557 Typedefs must match `verilog-typedef-regexp', which is disabled by default.
9559 Signals matching `verilog-auto-input-ignore-regexp' are not included.
9561 An example (see `verilog-auto-inst' for what else is going on here):
9563 module ExampInput (ov,i)
9564 output [31:0] ov;
9565 /*AUTOINPUT*/
9566 InstModule instName
9567 (/*AUTOINST*/);
9568 endmodule
9570 Typing \\[verilog-auto] will make this into:
9572 module ExampInput (ov,i)
9573 output [31:0] ov;
9574 /*AUTOINPUT*/
9575 // Beginning of automatic inputs (from unused autoinst inputs)
9576 input i; // From inst of inst.v
9577 // End of automatics
9578 InstModule instName
9579 (/*AUTOINST*/
9580 // Outputs
9581 .ov (ov[31:0]),
9582 // Inputs
9583 .i (i));
9584 endmodule
9586 You may also provide an optional regular expression, in which case only
9587 signals matching the regular expression will be included. For example the
9588 same expansion will result from only extracting inputs starting with i:
9590 /*AUTOINPUT(\"^i\")*/"
9591 (save-excursion
9592 (let* ((indent-pt (current-indentation))
9593 (regexp (and with-params
9594 (nth 0 (verilog-read-auto-params 1))))
9595 (v2k (verilog-in-paren))
9596 (modi (verilog-modi-current))
9597 (moddecls (verilog-modi-get-decls modi))
9598 (modsubdecls (verilog-modi-get-sub-decls modi))
9599 (sig-list (verilog-signals-not-in
9600 (verilog-subdecls-get-inputs modsubdecls)
9601 (append (verilog-decls-get-inputs moddecls)
9602 (verilog-decls-get-inouts moddecls)
9603 (verilog-decls-get-wires moddecls)
9604 (verilog-decls-get-regs moddecls)
9605 (verilog-decls-get-consts moddecls)
9606 (verilog-decls-get-gparams moddecls)
9607 (verilog-subdecls-get-outputs modsubdecls)
9608 (verilog-subdecls-get-inouts modsubdecls)))))
9609 (when regexp
9610 (setq sig-list (verilog-signals-matching-regexp
9611 sig-list regexp)))
9612 (setq sig-list (verilog-signals-not-matching-regexp
9613 sig-list verilog-auto-input-ignore-regexp))
9614 (forward-line 1)
9615 (when v2k (verilog-repair-open-comma))
9616 (when sig-list
9617 (verilog-insert-indent "// Beginning of automatic inputs (from unused autoinst inputs)\n")
9618 (verilog-insert-definition sig-list "input" indent-pt v2k)
9619 (verilog-modi-cache-add-inputs modi sig-list)
9620 (verilog-insert-indent "// End of automatics\n"))
9621 (when v2k (verilog-repair-close-comma)))))
9623 (defun verilog-auto-inout (&optional with-params)
9624 "Expand AUTOINOUT statements, as part of \\[verilog-auto].
9625 Make inout statements for any inout signal in an /*AUTOINST*/ that
9626 isn't declared elsewhere inside the module.
9628 Limitations:
9629 This ONLY detects outputs of AUTOINSTants (see `verilog-read-sub-decls').
9631 If placed inside the parenthesis of a module declaration, it creates
9632 Verilog 2001 style, else uses Verilog 1995 style.
9634 If any concatenation, or bit-subscripts are missing in the AUTOINSTant's
9635 instantiation, all bets are off. (For example due to a AUTO_TEMPLATE).
9637 Typedefs must match `verilog-typedef-regexp', which is disabled by default.
9639 Signals matching `verilog-auto-inout-ignore-regexp' are not included.
9641 An example (see `verilog-auto-inst' for what else is going on here):
9643 module ExampInout (ov,i)
9644 input i;
9645 /*AUTOINOUT*/
9646 InstModule instName
9647 (/*AUTOINST*/);
9648 endmodule
9650 Typing \\[verilog-auto] will make this into:
9652 module ExampInout (ov,i)
9653 input i;
9654 /*AUTOINOUT*/
9655 // Beginning of automatic inouts (from unused autoinst inouts)
9656 inout [31:0] ov; // From inst of inst.v
9657 // End of automatics
9658 InstModule instName
9659 (/*AUTOINST*/
9660 // Inouts
9661 .ov (ov[31:0]),
9662 // Inputs
9663 .i (i));
9664 endmodule
9666 You may also provide an optional regular expression, in which case only
9667 signals matching the regular expression will be included. For example the
9668 same expansion will result from only extracting inouts starting with i:
9670 /*AUTOINOUT(\"^i\")*/"
9671 (save-excursion
9672 ;; Point must be at insertion point.
9673 (let* ((indent-pt (current-indentation))
9674 (regexp (and with-params
9675 (nth 0 (verilog-read-auto-params 1))))
9676 (v2k (verilog-in-paren))
9677 (modi (verilog-modi-current))
9678 (moddecls (verilog-modi-get-decls modi))
9679 (modsubdecls (verilog-modi-get-sub-decls modi))
9680 (sig-list (verilog-signals-not-in
9681 (verilog-subdecls-get-inouts modsubdecls)
9682 (append (verilog-decls-get-outputs moddecls)
9683 (verilog-decls-get-inouts moddecls)
9684 (verilog-decls-get-inputs moddecls)
9685 (verilog-subdecls-get-inputs modsubdecls)
9686 (verilog-subdecls-get-outputs modsubdecls)))))
9687 (when regexp
9688 (setq sig-list (verilog-signals-matching-regexp
9689 sig-list regexp)))
9690 (setq sig-list (verilog-signals-not-matching-regexp
9691 sig-list verilog-auto-inout-ignore-regexp))
9692 (forward-line 1)
9693 (when v2k (verilog-repair-open-comma))
9694 (when sig-list
9695 (verilog-insert-indent "// Beginning of automatic inouts (from unused autoinst inouts)\n")
9696 (verilog-insert-definition sig-list "inout" indent-pt v2k)
9697 (verilog-modi-cache-add-inouts modi sig-list)
9698 (verilog-insert-indent "// End of automatics\n"))
9699 (when v2k (verilog-repair-close-comma)))))
9701 (defun verilog-auto-inout-module (&optional complement)
9702 "Expand AUTOINOUTMODULE statements, as part of \\[verilog-auto].
9703 Take input/output/inout statements from the specified module and insert
9704 into the current module. This is useful for making null templates and
9705 shell modules which need to have identical I/O with another module.
9706 Any I/O which are already defined in this module will not be redefined.
9708 Limitations:
9709 If placed inside the parenthesis of a module declaration, it creates
9710 Verilog 2001 style, else uses Verilog 1995 style.
9712 Concatenation and outputting partial busses is not supported.
9714 Module names must be resolvable to filenames. See `verilog-auto-inst'.
9716 Signals are not inserted in the same order as in the original module,
9717 though they will appear to be in the same order to a AUTOINST
9718 instantiating either module.
9720 An example:
9722 module ExampShell (/*AUTOARG*/)
9723 /*AUTOINOUTMODULE(\"ExampMain\")*/
9724 endmodule
9726 module ExampMain (i,o,io)
9727 input i;
9728 output o;
9729 inout io;
9730 endmodule
9732 Typing \\[verilog-auto] will make this into:
9734 module ExampShell (/*AUTOARG*/i,o,io)
9735 /*AUTOINOUTMODULE(\"ExampMain\")*/
9736 // Beginning of automatic in/out/inouts (from specific module)
9737 output o;
9738 inout io;
9739 input i;
9740 // End of automatics
9741 endmodule
9743 You may also provide an optional regular expression, in which case only
9744 signals matching the regular expression will be included. For example the
9745 same expansion will result from only extracting signals starting with i:
9747 /*AUTOINOUTMODULE(\"ExampMain\",\"^i\")*/
9749 You may also provide an optional second regular expression, in
9750 which case only signals which have that pin direction and data
9751 type will be included. This matches against everything before
9752 the signal name in the declaration, for example against
9753 \"input\" (single bit), \"output logic\" (direction and type) or
9754 \"output [1:0]\" (direction and implicit type). You also
9755 probably want to skip spaces in your regexp.
9757 For example, the below will result in matching the output \"o\"
9758 against the previous example's module:
9760 /*AUTOINOUTMODULE(\"ExampMain\",\"\",\"^output.*\")*/"
9761 (save-excursion
9762 (let* ((params (verilog-read-auto-params 1 3))
9763 (submod (nth 0 params))
9764 (regexp (nth 1 params))
9765 (direction-re (nth 2 params))
9766 submodi)
9767 ;; Lookup position, etc of co-module
9768 ;; Note this may raise an error
9769 (when (setq submodi (verilog-modi-lookup submod t))
9770 (let* ((indent-pt (current-indentation))
9771 (v2k (verilog-in-paren))
9772 (modi (verilog-modi-current))
9773 (moddecls (verilog-modi-get-decls modi))
9774 (submoddecls (verilog-modi-get-decls submodi))
9775 (sig-list-i (verilog-signals-not-in
9776 (if complement
9777 (verilog-decls-get-outputs submoddecls)
9778 (verilog-decls-get-inputs submoddecls))
9779 (append (verilog-decls-get-inputs moddecls))))
9780 (sig-list-o (verilog-signals-not-in
9781 (if complement
9782 (verilog-decls-get-inputs submoddecls)
9783 (verilog-decls-get-outputs submoddecls))
9784 (append (verilog-decls-get-outputs moddecls))))
9785 (sig-list-io (verilog-signals-not-in
9786 (verilog-decls-get-inouts submoddecls)
9787 (append (verilog-decls-get-inouts moddecls))))
9788 (sig-list-if (verilog-signals-not-in
9789 (verilog-decls-get-interfaces submoddecls)
9790 (append (verilog-decls-get-interfaces moddecls)))))
9791 (forward-line 1)
9792 (setq sig-list-i (verilog-signals-matching-dir-re
9793 (verilog-signals-matching-regexp sig-list-i regexp)
9794 "input" direction-re)
9795 sig-list-o (verilog-signals-matching-dir-re
9796 (verilog-signals-matching-regexp sig-list-o regexp)
9797 "output" direction-re)
9798 sig-list-io (verilog-signals-matching-dir-re
9799 (verilog-signals-matching-regexp sig-list-io regexp)
9800 "inout" direction-re)
9801 sig-list-if (verilog-signals-matching-dir-re
9802 (verilog-signals-matching-regexp sig-list-if regexp)
9803 "interface" direction-re))
9804 (when v2k (verilog-repair-open-comma))
9805 (when (or sig-list-i sig-list-o sig-list-io)
9806 (verilog-insert-indent "// Beginning of automatic in/out/inouts (from specific module)\n")
9807 ;; Don't sort them so a upper AUTOINST will match the main module
9808 (verilog-insert-definition sig-list-o "output" indent-pt v2k t)
9809 (verilog-insert-definition sig-list-io "inout" indent-pt v2k t)
9810 (verilog-insert-definition sig-list-i "input" indent-pt v2k t)
9811 (verilog-insert-definition sig-list-if "interface" indent-pt v2k t)
9812 (verilog-modi-cache-add-inputs modi sig-list-i)
9813 (verilog-modi-cache-add-outputs modi sig-list-o)
9814 (verilog-modi-cache-add-inouts modi sig-list-io)
9815 (verilog-insert-indent "// End of automatics\n"))
9816 (when v2k (verilog-repair-close-comma)))))))
9818 (defun verilog-auto-inout-comp ()
9819 "Expand AUTOINOUTCOMP statements, as part of \\[verilog-auto].
9820 Take input/output/inout statements from the specified module and
9821 insert the inverse into the current module (inputs become outputs
9822 and vice-versa.) This is useful for making test and stimulus
9823 modules which need to have complementing I/O with another module.
9824 Any I/O which are already defined in this module will not be
9825 redefined.
9827 Limitations:
9828 If placed inside the parenthesis of a module declaration, it creates
9829 Verilog 2001 style, else uses Verilog 1995 style.
9831 Concatenation and outputting partial busses is not supported.
9833 Module names must be resolvable to filenames. See `verilog-auto-inst'.
9835 Signals are not inserted in the same order as in the original module,
9836 though they will appear to be in the same order to a AUTOINST
9837 instantiating either module.
9839 An example:
9841 module ExampShell (/*AUTOARG*/)
9842 /*AUTOINOUTCOMP(\"ExampMain\")*/
9843 endmodule
9845 module ExampMain (i,o,io)
9846 input i;
9847 output o;
9848 inout io;
9849 endmodule
9851 Typing \\[verilog-auto] will make this into:
9853 module ExampShell (/*AUTOARG*/i,o,io)
9854 /*AUTOINOUTCOMP(\"ExampMain\")*/
9855 // Beginning of automatic in/out/inouts (from specific module)
9856 output i;
9857 inout io;
9858 input o;
9859 // End of automatics
9860 endmodule
9862 You may also provide an optional regular expression, in which case only
9863 signals matching the regular expression will be included. For example the
9864 same expansion will result from only extracting signals starting with i:
9866 /*AUTOINOUTCOMP(\"ExampMain\",\"^i\")*/"
9867 (verilog-auto-inout-module t))
9869 (defun verilog-auto-insert-lisp ()
9870 "Expand AUTOINSERTLISP statements, as part of \\[verilog-auto].
9871 The Lisp code provided is called, and the Lisp code calls
9872 `insert` to insert text into the current file beginning on the
9873 line after the AUTOINSERTLISP.
9875 See also AUTO_LISP, which takes a Lisp expression and evaluates
9876 it during `verilog-auto-inst' but does not insert any text.
9878 An example:
9880 module ExampInsertLisp;
9881 /*AUTOINSERTLISP(my-verilog-insert-hello \"world\")*/
9882 endmodule
9884 // For this example we declare the function in the
9885 // module's file itself. Often you'd define it instead
9886 // in a site-start.el or .emacs file.
9888 Local Variables:
9889 eval:
9890 (defun my-verilog-insert-hello (who)
9891 (insert (concat \"initial $write(\\\"hello \" who \"\\\");\\n\")))
9892 End:
9895 Typing \\[verilog-auto] will call my-verilog-insert-hello and
9896 expand the above into:
9898 // Beginning of automatic insert lisp
9899 initial $write(\"hello world\");
9900 // End of automatics
9902 You can also call an external program and insert the returned
9903 text:
9905 /*AUTOINSERTLISP(insert (shell-command-to-string \"echo //hello\"))*/
9906 // Beginning of automatic insert lisp
9907 //hello
9908 // End of automatics"
9909 (save-excursion
9910 ;; Point is at end of /*AUTO...*/
9911 (let* ((indent-pt (current-indentation))
9912 (cmd-end-pt (save-excursion (search-backward ")")
9913 (forward-char)
9914 (point))) ;; Closing paren
9915 (cmd-beg-pt (save-excursion (goto-char cmd-end-pt)
9916 (backward-sexp 1)
9917 (point))) ;; Beginning paren
9918 (cmd (buffer-substring-no-properties cmd-beg-pt cmd-end-pt)))
9919 (forward-line 1)
9920 (let ((pre-eval-pt (point)))
9921 ;;Debug: (insert cmd)
9922 ;; Don't use eval-region as Xemacs has a bug where it goto-char's begin-pt
9923 (eval (read cmd))
9924 ;; If inserted something add the begin/end blocks
9925 (when (not (equal pre-eval-pt (point)))
9926 (when (not (bolp)) (insert "\n")) ;; If user forgot final newline, add it
9927 (save-excursion
9928 (goto-char pre-eval-pt)
9929 (verilog-insert-indent "// Beginning of automatic insert lisp\n"))
9930 (verilog-insert-indent "// End of automatics\n"))))))
9932 (defun verilog-auto-sense-sigs (moddecls presense-sigs)
9933 "Return list of signals for current AUTOSENSE block."
9934 (let* ((sigss (verilog-read-always-signals))
9935 (sig-list (verilog-signals-not-params
9936 (verilog-signals-not-in (verilog-alw-get-inputs sigss)
9937 (append (and (not verilog-auto-sense-include-inputs)
9938 (verilog-alw-get-outputs sigss))
9939 (verilog-decls-get-consts moddecls)
9940 (verilog-decls-get-gparams moddecls)
9941 presense-sigs)))))
9942 sig-list))
9944 (defun verilog-auto-sense ()
9945 "Expand AUTOSENSE statements, as part of \\[verilog-auto].
9946 Replace the always (/*AUTOSENSE*/) sensitivity list (/*AS*/ for short)
9947 with one automatically derived from all inputs declared in the always
9948 statement. Signals that are generated within the same always block are NOT
9949 placed into the sensitivity list (see `verilog-auto-sense-include-inputs').
9950 Long lines are split based on the `fill-column', see \\[set-fill-column].
9952 Limitations:
9953 Verilog does not allow memories (multidimensional arrays) in sensitivity
9954 lists. AUTOSENSE will thus exclude them, and add a /*memory or*/ comment.
9956 Constant signals:
9957 AUTOSENSE cannot always determine if a `define is a constant or a signal
9958 (it could be in a include file for example). If a `define or other signal
9959 is put into the AUTOSENSE list and is not desired, use the AUTO_CONSTANT
9960 declaration anywhere in the module (parenthesis are required):
9962 /* AUTO_CONSTANT ( `this_is_really_constant_dont_autosense_it ) */
9964 Better yet, use a parameter, which will be understood to be constant
9965 automatically.
9967 OOps!
9968 If AUTOSENSE makes a mistake, please report it. (First try putting
9969 a begin/end after your always!) As a workaround, if a signal that
9970 shouldn't be in the sensitivity list was, use the AUTO_CONSTANT above.
9971 If a signal should be in the sensitivity list wasn't, placing it before
9972 the /*AUTOSENSE*/ comment will prevent it from being deleted when the
9973 autos are updated (or added if it occurs there already).
9975 An example:
9977 always @ (/*AS*/) begin
9978 /* AUTO_CONSTANT (`constant) */
9979 outin = ina | inb | `constant;
9980 out = outin;
9983 Typing \\[verilog-auto] will make this into:
9985 always @ (/*AS*/ina or inb) begin
9986 /* AUTO_CONSTANT (`constant) */
9987 outin = ina | inb | `constant;
9988 out = outin;
9991 Note in Verilog 2001, you can often get the same result from the new @*
9992 operator. (This was added to the language in part due to AUTOSENSE!)
9994 always @* begin
9995 outin = ina | inb | `constant;
9996 out = outin;
9997 end"
9998 (save-excursion
9999 ;; Find beginning
10000 (let* ((start-pt (save-excursion
10001 (verilog-re-search-backward "(" nil t)
10002 (point)))
10003 (indent-pt (save-excursion
10004 (or (and (goto-char start-pt) (1+ (current-column)))
10005 (current-indentation))))
10006 (modi (verilog-modi-current))
10007 (moddecls (verilog-modi-get-decls modi))
10008 (sig-memories (verilog-signals-memory
10009 (append
10010 (verilog-decls-get-regs moddecls)
10011 (verilog-decls-get-wires moddecls))))
10012 sig-list not-first presense-sigs)
10013 ;; Read signals in always, eliminate outputs from sense list
10014 (setq presense-sigs (verilog-signals-from-signame
10015 (save-excursion
10016 (verilog-read-signals start-pt (point)))))
10017 (setq sig-list (verilog-auto-sense-sigs moddecls presense-sigs))
10018 (when sig-memories
10019 (let ((tlen (length sig-list)))
10020 (setq sig-list (verilog-signals-not-in sig-list sig-memories))
10021 (if (not (eq tlen (length sig-list))) (insert " /*memory or*/ "))))
10022 (if (and presense-sigs ;; Add a "or" if not "(.... or /*AUTOSENSE*/"
10023 (save-excursion (goto-char (point))
10024 (verilog-re-search-backward "[a-zA-Z0-9$_.%`]+" start-pt t)
10025 (verilog-re-search-backward "\\s-" start-pt t)
10026 (while (looking-at "\\s-`endif")
10027 (verilog-re-search-backward "[a-zA-Z0-9$_.%`]+" start-pt t)
10028 (verilog-re-search-backward "\\s-" start-pt t))
10029 (not (looking-at "\\s-or\\b"))))
10030 (setq not-first t))
10031 (setq sig-list (sort sig-list `verilog-signals-sort-compare))
10032 (while sig-list
10033 (cond ((> (+ 4 (current-column) (length (verilog-sig-name (car sig-list)))) fill-column) ;+4 for width of or
10034 (insert "\n")
10035 (indent-to indent-pt)
10036 (if not-first (insert "or ")))
10037 (not-first (insert " or ")))
10038 (insert (verilog-sig-name (car sig-list)))
10039 (setq sig-list (cdr sig-list)
10040 not-first t)))))
10042 (defun verilog-auto-reset ()
10043 "Expand AUTORESET statements, as part of \\[verilog-auto].
10044 Replace the /*AUTORESET*/ comment with code to initialize all
10045 registers set elsewhere in the always block.
10047 Limitations:
10048 AUTORESET will not clear memories.
10050 AUTORESET uses <= if there are any <= assigmnents in the block,
10051 else it uses =.
10053 /*AUTORESET*/ presumes that any signals mentioned between the previous
10054 begin/case/if statement and the AUTORESET comment are being reset manually
10055 and should not be automatically reset. This includes omitting any signals
10056 used on the right hand side of assignments.
10058 By default, AUTORESET will include the width of the signal in the autos,
10059 this is a recent change. To control this behavior, see
10060 `verilog-auto-reset-widths'.
10062 AUTORESET ties signals to deasserted, which is presumed to be zero.
10063 Signals that match `verilog-active-low-regexp' will be deasserted by tieing
10064 them to a one.
10066 An example:
10068 always @(posedge clk or negedge reset_l) begin
10069 if (!reset_l) begin
10070 c <= 1;
10071 /*AUTORESET*/
10073 else begin
10074 a <= in_a;
10075 b <= in_b;
10076 c <= in_c;
10080 Typing \\[verilog-auto] will make this into:
10082 always @(posedge core_clk or negedge reset_l) begin
10083 if (!reset_l) begin
10084 c <= 1;
10085 /*AUTORESET*/
10086 // Beginning of autoreset for uninitialized flops
10087 a <= 0;
10088 b <= 0;
10089 // End of automatics
10091 else begin
10092 a <= in_a;
10093 b <= in_b;
10094 c <= in_c;
10096 end"
10098 (interactive)
10099 (save-excursion
10100 ;; Find beginning
10101 (let* ((indent-pt (current-indentation))
10102 (modi (verilog-modi-current))
10103 (moddecls (verilog-modi-get-decls modi))
10104 (all-list (verilog-decls-get-signals moddecls))
10105 sigss sig-list prereset-sigs assignment-str)
10106 ;; Read signals in always, eliminate outputs from reset list
10107 (setq prereset-sigs (verilog-signals-from-signame
10108 (save-excursion
10109 (verilog-read-signals
10110 (save-excursion
10111 (verilog-re-search-backward "\\(@\\|\\<begin\\>\\|\\<if\\>\\|\\<case\\>\\)" nil t)
10112 (point))
10113 (point)))))
10114 (save-excursion
10115 (verilog-re-search-backward "@" nil t)
10116 (setq sigss (verilog-read-always-signals)))
10117 (setq assignment-str (if (verilog-alw-get-uses-delayed sigss)
10118 (concat " <= " verilog-assignment-delay)
10119 " = "))
10120 (setq sig-list (verilog-signals-not-in (verilog-alw-get-outputs sigss)
10121 prereset-sigs))
10122 (setq sig-list (sort sig-list `verilog-signals-sort-compare))
10123 (when sig-list
10124 (insert "\n");
10125 (indent-to indent-pt)
10126 (insert "// Beginning of autoreset for uninitialized flops\n");
10127 (indent-to indent-pt)
10128 (while sig-list
10129 (let ((sig (or (assoc (verilog-sig-name (car sig-list)) all-list) ;; As sig-list has no widths
10130 (car sig-list))))
10131 (insert (verilog-sig-name sig)
10132 assignment-str
10133 (verilog-sig-tieoff sig (not verilog-auto-reset-widths))
10134 ";\n")
10135 (indent-to indent-pt)
10136 (setq sig-list (cdr sig-list))))
10137 (insert "// End of automatics")))))
10139 (defun verilog-auto-tieoff ()
10140 "Expand AUTOTIEOFF statements, as part of \\[verilog-auto].
10141 Replace the /*AUTOTIEOFF*/ comment with code to wire-tie all unused output
10142 signals to deasserted.
10144 /*AUTOTIEOFF*/ is used to make stub modules; modules that have the same
10145 input/output list as another module, but no internals. Specifically, it
10146 finds all outputs in the module, and if that input is not otherwise declared
10147 as a register or wire, creates a tieoff.
10149 AUTORESET ties signals to deasserted, which is presumed to be zero.
10150 Signals that match `verilog-active-low-regexp' will be deasserted by tieing
10151 them to a one.
10153 An example of making a stub for another module:
10155 module ExampStub (/*AUTOINST*/);
10156 /*AUTOINOUTMODULE(\"Foo\")*/
10157 /*AUTOTIEOFF*/
10158 // verilator lint_off UNUSED
10159 wire _unused_ok = &{1'b0,
10160 /*AUTOUNUSED*/
10161 1'b0};
10162 // verilator lint_on UNUSED
10163 endmodule
10165 Typing \\[verilog-auto] will make this into:
10167 module ExampStub (/*AUTOINST*/...);
10168 /*AUTOINOUTMODULE(\"Foo\")*/
10169 // Beginning of autotieoff
10170 output [2:0] foo;
10171 // End of automatics
10173 /*AUTOTIEOFF*/
10174 // Beginning of autotieoff
10175 wire [2:0] foo = 3'b0;
10176 // End of automatics
10178 endmodule"
10179 (interactive)
10180 (save-excursion
10181 ;; Find beginning
10182 (let* ((indent-pt (current-indentation))
10183 (modi (verilog-modi-current))
10184 (moddecls (verilog-modi-get-decls modi))
10185 (modsubdecls (verilog-modi-get-sub-decls modi))
10186 (sig-list (verilog-signals-not-in
10187 (verilog-decls-get-outputs moddecls)
10188 (append (verilog-decls-get-wires moddecls)
10189 (verilog-decls-get-regs moddecls)
10190 (verilog-decls-get-assigns moddecls)
10191 (verilog-decls-get-consts moddecls)
10192 (verilog-decls-get-gparams moddecls)
10193 (verilog-subdecls-get-outputs modsubdecls)
10194 (verilog-subdecls-get-inouts modsubdecls)))))
10195 (when sig-list
10196 (forward-line 1)
10197 (verilog-insert-indent "// Beginning of automatic tieoffs (for this module's unterminated outputs)\n")
10198 (setq sig-list (sort (copy-alist sig-list) `verilog-signals-sort-compare))
10199 (verilog-modi-cache-add-wires modi sig-list) ; Before we trash list
10200 (while sig-list
10201 (let ((sig (car sig-list)))
10202 (verilog-insert-one-definition sig "wire" indent-pt)
10203 (indent-to (max 48 (+ indent-pt 40)))
10204 (insert "= " (verilog-sig-tieoff sig)
10205 ";\n")
10206 (setq sig-list (cdr sig-list))))
10207 (verilog-insert-indent "// End of automatics\n")))))
10209 (defun verilog-auto-unused ()
10210 "Expand AUTOUNUSED statements, as part of \\[verilog-auto].
10211 Replace the /*AUTOUNUSED*/ comment with a comma separated list of all unused
10212 input and inout signals.
10214 /*AUTOUNUSED*/ is used to make stub modules; modules that have the same
10215 input/output list as another module, but no internals. Specifically, it
10216 finds all inputs and inouts in the module, and if that input is not otherwise
10217 used, adds it to a comma separated list.
10219 The comma separated list is intended to be used to create a _unused_ok
10220 signal. Using the exact name \"_unused_ok\" for name of the temporary
10221 signal is recommended as it will insure maximum forward compatibility, it
10222 also makes lint warnings easy to understand; ignore any unused warnings
10223 with \"unused\" in the signal name.
10225 To reduce simulation time, the _unused_ok signal should be forced to a
10226 constant to prevent wiggling. The easiest thing to do is use a
10227 reduction-and with 1'b0 as shown.
10229 This way all unused signals are in one place, making it convenient to add
10230 your tool's specific pragmas around the assignment to disable any unused
10231 warnings.
10233 You can add signals you do not want included in AUTOUNUSED with
10234 `verilog-auto-unused-ignore-regexp'.
10236 An example of making a stub for another module:
10238 module ExampStub (/*AUTOINST*/);
10239 /*AUTOINOUTMODULE(\"Examp\")*/
10240 /*AUTOTIEOFF*/
10241 // verilator lint_off UNUSED
10242 wire _unused_ok = &{1'b0,
10243 /*AUTOUNUSED*/
10244 1'b0};
10245 // verilator lint_on UNUSED
10246 endmodule
10248 Typing \\[verilog-auto] will make this into:
10251 // verilator lint_off UNUSED
10252 wire _unused_ok = &{1'b0,
10253 /*AUTOUNUSED*/
10254 // Beginning of automatics
10255 unused_input_a,
10256 unused_input_b,
10257 unused_input_c,
10258 // End of automatics
10259 1'b0};
10260 // verilator lint_on UNUSED
10261 endmodule"
10262 (interactive)
10263 (save-excursion
10264 ;; Find beginning
10265 (let* ((indent-pt (progn (search-backward "/*") (current-column)))
10266 (modi (verilog-modi-current))
10267 (moddecls (verilog-modi-get-decls modi))
10268 (modsubdecls (verilog-modi-get-sub-decls modi))
10269 (sig-list (verilog-signals-not-in
10270 (append (verilog-decls-get-inputs moddecls)
10271 (verilog-decls-get-inouts moddecls))
10272 (append (verilog-subdecls-get-inputs modsubdecls)
10273 (verilog-subdecls-get-inouts modsubdecls)))))
10274 (setq sig-list (verilog-signals-not-matching-regexp
10275 sig-list verilog-auto-unused-ignore-regexp))
10276 (when sig-list
10277 (forward-line 1)
10278 (verilog-insert-indent "// Beginning of automatic unused inputs\n")
10279 (setq sig-list (sort (copy-alist sig-list) `verilog-signals-sort-compare))
10280 (while sig-list
10281 (let ((sig (car sig-list)))
10282 (indent-to indent-pt)
10283 (insert (verilog-sig-name sig) ",\n")
10284 (setq sig-list (cdr sig-list))))
10285 (verilog-insert-indent "// End of automatics\n")))))
10287 (defun verilog-enum-ascii (signm elim-regexp)
10288 "Convert an enum name SIGNM to an ascii string for insertion.
10289 Remove user provided prefix ELIM-REGEXP."
10290 (or elim-regexp (setq elim-regexp "_ DONT MATCH IT_"))
10291 (let ((case-fold-search t))
10292 ;; All upper becomes all lower for readability
10293 (downcase (verilog-string-replace-matches elim-regexp "" nil nil signm))))
10295 (defun verilog-auto-ascii-enum ()
10296 "Expand AUTOASCIIENUM statements, as part of \\[verilog-auto].
10297 Create a register to contain the ASCII decode of a enumerated signal type.
10298 This will allow trace viewers to show the ASCII name of states.
10300 First, parameters are built into a enumeration using the synopsys enum
10301 comment. The comment must be between the keyword and the symbol.
10302 \(Annoying, but that's what Synopsys's dc_shell FSM reader requires.)
10304 Next, registers which that enum applies to are also tagged with the same
10305 enum. Synopsys also suggests labeling state vectors, but `verilog-mode'
10306 doesn't care.
10308 Finally, a AUTOASCIIENUM command is used.
10310 The first parameter is the name of the signal to be decoded.
10311 If and only if the first parameter width is 2^(number of states
10312 in enum) and does NOT match the width of the enum, the signal
10313 is assumed to be a one hot decode. Otherwise, it's a normal
10314 encoded state vector.
10316 The second parameter is the name to store the ASCII code into. For the
10317 signal foo, I suggest the name _foo__ascii, where the leading _ indicates
10318 a signal that is just for simulation, and the magic characters _ascii
10319 tell viewers like Dinotrace to display in ASCII format.
10321 The final optional parameter is a string which will be removed from the
10322 state names.
10324 An example:
10326 //== State enumeration
10327 parameter [2:0] // synopsys enum state_info
10328 SM_IDLE = 3'b000,
10329 SM_SEND = 3'b001,
10330 SM_WAIT1 = 3'b010;
10331 //== State variables
10332 reg [2:0] /* synopsys enum state_info */
10333 state_r; /* synopsys state_vector state_r */
10334 reg [2:0] /* synopsys enum state_info */
10335 state_e1;
10337 /*AUTOASCIIENUM(\"state_r\", \"state_ascii_r\", \"SM_\")*/
10339 Typing \\[verilog-auto] will make this into:
10341 ... same front matter ...
10343 /*AUTOASCIIENUM(\"state_r\", \"state_ascii_r\", \"SM_\")*/
10344 // Beginning of automatic ASCII enum decoding
10345 reg [39:0] state_ascii_r; // Decode of state_r
10346 always @(state_r) begin
10347 case ({state_r})
10348 SM_IDLE: state_ascii_r = \"idle \";
10349 SM_SEND: state_ascii_r = \"send \";
10350 SM_WAIT1: state_ascii_r = \"wait1\";
10351 default: state_ascii_r = \"%Erro\";
10352 endcase
10354 // End of automatics"
10355 (save-excursion
10356 (let* ((params (verilog-read-auto-params 2 3))
10357 (undecode-name (nth 0 params))
10358 (ascii-name (nth 1 params))
10359 (elim-regexp (nth 2 params))
10361 (indent-pt (current-indentation))
10362 (modi (verilog-modi-current))
10363 (moddecls (verilog-modi-get-decls modi))
10365 (sig-list-consts (append (verilog-decls-get-consts moddecls)
10366 (verilog-decls-get-gparams moddecls)))
10367 (sig-list-all (append (verilog-decls-get-regs moddecls)
10368 (verilog-decls-get-outputs moddecls)
10369 (verilog-decls-get-inouts moddecls)
10370 (verilog-decls-get-inputs moddecls)
10371 (verilog-decls-get-wires moddecls)))
10373 (undecode-sig (or (assoc undecode-name sig-list-all)
10374 (error "%s: Signal %s not found in design" (verilog-point-text) undecode-name)))
10375 (undecode-enum (or (verilog-sig-enum undecode-sig)
10376 (error "%s: Signal %s does not have a enum tag" (verilog-point-text) undecode-name)))
10378 (enum-sigs (verilog-signals-not-in
10379 (or (verilog-signals-matching-enum sig-list-consts undecode-enum)
10380 (error "%s: No state definitions for %s" (verilog-point-text) undecode-enum))
10381 nil))
10383 (one-hot (and ;; width(enum) != width(sig)
10384 (or (not (verilog-sig-bits (car enum-sigs)))
10385 (not (equal (verilog-sig-width (car enum-sigs))
10386 (verilog-sig-width undecode-sig))))
10387 ;; count(enums) == width(sig)
10388 (equal (number-to-string (length enum-sigs))
10389 (verilog-sig-width undecode-sig))))
10390 (enum-chars 0)
10391 (ascii-chars 0))
10393 ;; Find number of ascii chars needed
10394 (let ((tmp-sigs enum-sigs))
10395 (while tmp-sigs
10396 (setq enum-chars (max enum-chars (length (verilog-sig-name (car tmp-sigs))))
10397 ascii-chars (max ascii-chars (length (verilog-enum-ascii
10398 (verilog-sig-name (car tmp-sigs))
10399 elim-regexp)))
10400 tmp-sigs (cdr tmp-sigs))))
10402 (forward-line 1)
10403 (verilog-insert-indent "// Beginning of automatic ASCII enum decoding\n")
10404 (let ((decode-sig-list (list (list ascii-name (format "[%d:0]" (- (* ascii-chars 8) 1))
10405 (concat "Decode of " undecode-name) nil nil))))
10406 (verilog-insert-definition decode-sig-list "reg" indent-pt nil)
10407 (verilog-modi-cache-add-regs modi decode-sig-list))
10409 (verilog-insert-indent "always @(" undecode-name ") begin\n")
10410 (setq indent-pt (+ indent-pt verilog-indent-level))
10411 (indent-to indent-pt)
10412 (insert "case ({" undecode-name "})\n")
10413 (setq indent-pt (+ indent-pt verilog-case-indent))
10415 (let ((tmp-sigs enum-sigs)
10416 (chrfmt (format "%%-%ds %s = \"%%-%ds\";\n"
10417 (+ (if one-hot 9 1) (max 8 enum-chars))
10418 ascii-name ascii-chars))
10419 (errname (substring "%Error" 0 (min 6 ascii-chars))))
10420 (while tmp-sigs
10421 (verilog-insert-indent
10422 (concat
10423 (format chrfmt
10424 (concat (if one-hot "(")
10425 (if one-hot (verilog-sig-width undecode-sig))
10426 ;; We use a shift instead of var[index]
10427 ;; so that a non-one hot value will show as error.
10428 (if one-hot "'b1<<")
10429 (verilog-sig-name (car tmp-sigs))
10430 (if one-hot ")") ":")
10431 (verilog-enum-ascii (verilog-sig-name (car tmp-sigs))
10432 elim-regexp))))
10433 (setq tmp-sigs (cdr tmp-sigs)))
10434 (verilog-insert-indent (format chrfmt "default:" errname)))
10436 (setq indent-pt (- indent-pt verilog-case-indent))
10437 (verilog-insert-indent "endcase\n")
10438 (setq indent-pt (- indent-pt verilog-indent-level))
10439 (verilog-insert-indent "end\n"
10440 "// End of automatics\n"))))
10442 (defun verilog-auto-templated-rel ()
10443 "Replace Templated relative line numbers with absolute line numbers.
10444 Internal use only. This hacks around the line numbers in AUTOINST Templates
10445 being different from the final output's line numbering."
10446 (let ((templateno 0) (template-line (list 0)))
10447 ;; Find line number each template is on
10448 (goto-char (point-min))
10449 (while (search-forward "AUTO_TEMPLATE" nil t)
10450 (setq templateno (1+ templateno))
10451 (setq template-line
10452 (cons (count-lines (point-min) (point)) template-line)))
10453 (setq template-line (nreverse template-line))
10454 ;; Replace T# L# with absolute line number
10455 (goto-char (point-min))
10456 (while (re-search-forward " Templated T\\([0-9]+\\) L\\([0-9]+\\)" nil t)
10457 (replace-match
10458 (concat " Templated "
10459 (int-to-string (+ (nth (string-to-number (match-string 1))
10460 template-line)
10461 (string-to-number (match-string 2)))))
10462 t t))))
10466 ;; Auto top level
10469 (defun verilog-auto (&optional inject) ; Use verilog-inject-auto instead of passing a arg
10470 "Expand AUTO statements.
10471 Look for any /*AUTO...*/ commands in the code, as used in
10472 instantiations or argument headers. Update the list of signals
10473 following the /*AUTO...*/ command.
10475 Use \\[verilog-delete-auto] to remove the AUTOs.
10477 Use \\[verilog-inject-auto] to insert AUTOs for the first time.
10479 Use \\[verilog-faq] for a pointer to frequently asked questions.
10481 The hooks `verilog-before-auto-hook' and `verilog-auto-hook' are
10482 called before and after this function, respectively.
10484 For example:
10485 module ModuleName (/*AUTOARG*/)
10486 /*AUTOINPUT*/
10487 /*AUTOOUTPUT*/
10488 /*AUTOWIRE*/
10489 /*AUTOREG*/
10490 InstMod instName #(/*AUTOINSTPARAM*/) (/*AUTOINST*/);
10492 You can also update the AUTOs from the shell using:
10493 emacs --batch <filenames.v> -f verilog-batch-auto
10494 Or fix indentation with:
10495 emacs --batch <filenames.v> -f verilog-batch-indent
10496 Likewise, you can delete or inject AUTOs with:
10497 emacs --batch <filenames.v> -f verilog-batch-delete-auto
10498 emacs --batch <filenames.v> -f verilog-batch-inject-auto
10500 Using \\[describe-function], see also:
10501 `verilog-auto-arg' for AUTOARG module instantiations
10502 `verilog-auto-ascii-enum' for AUTOASCIIENUM enumeration decoding
10503 `verilog-auto-inout-comp' for AUTOINOUTCOMP copy complemented i/o
10504 `verilog-auto-inout-module' for AUTOINOUTMODULE copying i/o from elsewhere
10505 `verilog-auto-inout' for AUTOINOUT making hierarchy inouts
10506 `verilog-auto-input' for AUTOINPUT making hierarchy inputs
10507 `verilog-auto-insert-lisp' for AUTOINSERTLISP insert code from lisp function
10508 `verilog-auto-inst' for AUTOINST instantiation pins
10509 `verilog-auto-star' for AUTOINST .* SystemVerilog pins
10510 `verilog-auto-inst-param' for AUTOINSTPARAM instantiation params
10511 `verilog-auto-output' for AUTOOUTPUT making hierarchy outputs
10512 `verilog-auto-output-every' for AUTOOUTPUTEVERY making all outputs
10513 `verilog-auto-reg' for AUTOREG registers
10514 `verilog-auto-reg-input' for AUTOREGINPUT instantiation registers
10515 `verilog-auto-reset' for AUTORESET flop resets
10516 `verilog-auto-sense' for AUTOSENSE always sensitivity lists
10517 `verilog-auto-tieoff' for AUTOTIEOFF output tieoffs
10518 `verilog-auto-unused' for AUTOUNUSED unused inputs/inouts
10519 `verilog-auto-wire' for AUTOWIRE instantiation wires
10521 `verilog-read-defines' for reading `define values
10522 `verilog-read-includes' for reading `includes
10524 If you have bugs with these autos, please file an issue at
10525 URL `http://www.veripool.org/verilog-mode' or contact the AUTOAUTHOR
10526 Wilson Snyder (wsnyder@wsnyder.org)."
10527 (interactive)
10528 (unless noninteractive (message "Updating AUTOs..."))
10529 (if (fboundp 'dinotrace-unannotate-all)
10530 (dinotrace-unannotate-all))
10531 (let ((oldbuf (if (not (buffer-modified-p))
10532 (buffer-string)))
10533 ;; Before version 20, match-string with font-lock returns a
10534 ;; vector that is not equal to the string. IE if on "input"
10535 ;; nil==(equal "input" (progn (looking-at "input") (match-string 0)))
10536 (fontlocked (when (and (boundp 'font-lock-mode)
10537 font-lock-mode)
10538 (font-lock-mode 0)
10540 ;; Cache directories; we don't write new files, so can't change
10541 (verilog-dir-cache-preserving t))
10542 (unwind-protect
10543 (save-excursion
10544 ;; If we're not in verilog-mode, change syntax table so parsing works right
10545 (unless (eq major-mode `verilog-mode) (verilog-mode))
10546 ;; Allow user to customize
10547 (run-hooks 'verilog-before-auto-hook)
10548 ;; Try to save the user from needing to revert-file to reread file local-variables
10549 (verilog-auto-reeval-locals)
10550 (verilog-read-auto-lisp (point-min) (point-max))
10551 (verilog-getopt-flags)
10552 ;; From here on out, we can cache anything we read from disk
10553 (verilog-preserve-dir-cache
10554 ;; These two may seem obvious to do always, but on large includes it can be way too slow
10555 (when verilog-auto-read-includes
10556 (verilog-read-includes)
10557 (verilog-read-defines nil nil t))
10558 ;; This particular ordering is important
10559 ;; INST: Lower modules correct, no internal dependencies, FIRST
10560 (verilog-preserve-modi-cache
10561 ;; Clear existing autos else we'll be screwed by existing ones
10562 (verilog-delete-auto)
10563 ;; Injection if appropriate
10564 (when inject
10565 (verilog-inject-inst)
10566 (verilog-inject-sense)
10567 (verilog-inject-arg))
10569 ;; Do user inserts first, so their code can insert AUTOs
10570 ;; We may provide a AUTOINSERTLISPLAST if another cleanup pass is needed
10571 (verilog-auto-re-search-do "/\\*AUTOINSERTLISP(.*?)\\*/"
10572 'verilog-auto-insert-lisp)
10573 ;; Expand instances before need the signals the instances input/output
10574 (verilog-auto-re-search-do "/\\*AUTOINSTPARAM\\*/" 'verilog-auto-inst-param)
10575 (verilog-auto-re-search-do "/\\*AUTOINST\\*/" 'verilog-auto-inst)
10576 (verilog-auto-re-search-do "\\.\\*" 'verilog-auto-star)
10577 ;; Doesn't matter when done, but combine it with a common changer
10578 (verilog-auto-re-search-do "/\\*\\(AUTOSENSE\\|AS\\)\\*/" 'verilog-auto-sense)
10579 (verilog-auto-re-search-do "/\\*AUTORESET\\*/" 'verilog-auto-reset)
10580 ;; Must be done before autoin/out as creates a reg
10581 (verilog-auto-re-search-do "/\\*AUTOASCIIENUM([^)]*)\\*/" 'verilog-auto-ascii-enum)
10583 ;; first in/outs from other files
10584 (verilog-auto-re-search-do "/\\*AUTOINOUTMODULE([^)]*)\\*/" 'verilog-auto-inout-module)
10585 (verilog-auto-re-search-do "/\\*AUTOINOUTCOMP([^)]*)\\*/" 'verilog-auto-inout-comp)
10586 ;; next in/outs which need previous sucked inputs first
10587 (verilog-auto-re-search-do "/\\*AUTOOUTPUT\\((\"[^\"]*\")\\)\\*/"
10588 '(lambda () (verilog-auto-output t)))
10589 (verilog-auto-re-search-do "/\\*AUTOOUTPUT\\*/" 'verilog-auto-output)
10590 (verilog-auto-re-search-do "/\\*AUTOINPUT\\((\"[^\"]*\")\\)\\*/"
10591 '(lambda () (verilog-auto-input t)))
10592 (verilog-auto-re-search-do "/\\*AUTOINPUT\\*/" 'verilog-auto-input)
10593 (verilog-auto-re-search-do "/\\*AUTOINOUT\\((\"[^\"]*\")\\)\\*/"
10594 '(lambda () (verilog-auto-inout t)))
10595 (verilog-auto-re-search-do "/\\*AUTOINOUT\\*/" 'verilog-auto-inout)
10596 ;; Then tie off those in/outs
10597 (verilog-auto-re-search-do "/\\*AUTOTIEOFF\\*/" 'verilog-auto-tieoff)
10598 ;; Wires/regs must be after inputs/outputs
10599 (verilog-auto-re-search-do "/\\*AUTOWIRE\\*/" 'verilog-auto-wire)
10600 (verilog-auto-re-search-do "/\\*AUTOREG\\*/" 'verilog-auto-reg)
10601 (verilog-auto-re-search-do "/\\*AUTOREGINPUT\\*/" 'verilog-auto-reg-input)
10602 ;; outputevery needs AUTOOUTPUTs done first
10603 (verilog-auto-re-search-do "/\\*AUTOOUTPUTEVERY\\*/" 'verilog-auto-output-every)
10604 ;; After we've created all new variables
10605 (verilog-auto-re-search-do "/\\*AUTOUNUSED\\*/" 'verilog-auto-unused)
10606 ;; Must be after all inputs outputs are generated
10607 (verilog-auto-re-search-do "/\\*AUTOARG\\*/" 'verilog-auto-arg)
10608 ;; Fix line numbers (comments only)
10609 (verilog-auto-templated-rel)))
10611 (run-hooks 'verilog-auto-hook)
10613 (set (make-local-variable 'verilog-auto-update-tick) (buffer-modified-tick))
10615 ;; If end result is same as when started, clear modified flag
10616 (cond ((and oldbuf (equal oldbuf (buffer-string)))
10617 (set-buffer-modified-p nil)
10618 (unless noninteractive (message "Updating AUTOs...done (no changes)")))
10619 (t (unless noninteractive (message "Updating AUTOs...done")))))
10620 ;; Unwind forms
10621 (progn
10622 ;; Restore font-lock
10623 (when fontlocked (font-lock-mode t))))))
10627 ;; Skeleton based code insertion
10629 (defvar verilog-template-map
10630 (let ((map (make-sparse-keymap)))
10631 (define-key map "a" 'verilog-sk-always)
10632 (define-key map "b" 'verilog-sk-begin)
10633 (define-key map "c" 'verilog-sk-case)
10634 (define-key map "f" 'verilog-sk-for)
10635 (define-key map "g" 'verilog-sk-generate)
10636 (define-key map "h" 'verilog-sk-header)
10637 (define-key map "i" 'verilog-sk-initial)
10638 (define-key map "j" 'verilog-sk-fork)
10639 (define-key map "m" 'verilog-sk-module)
10640 (define-key map "p" 'verilog-sk-primitive)
10641 (define-key map "r" 'verilog-sk-repeat)
10642 (define-key map "s" 'verilog-sk-specify)
10643 (define-key map "t" 'verilog-sk-task)
10644 (define-key map "w" 'verilog-sk-while)
10645 (define-key map "x" 'verilog-sk-casex)
10646 (define-key map "z" 'verilog-sk-casez)
10647 (define-key map "?" 'verilog-sk-if)
10648 (define-key map ":" 'verilog-sk-else-if)
10649 (define-key map "/" 'verilog-sk-comment)
10650 (define-key map "A" 'verilog-sk-assign)
10651 (define-key map "F" 'verilog-sk-function)
10652 (define-key map "I" 'verilog-sk-input)
10653 (define-key map "O" 'verilog-sk-output)
10654 (define-key map "S" 'verilog-sk-state-machine)
10655 (define-key map "=" 'verilog-sk-inout)
10656 (define-key map "W" 'verilog-sk-wire)
10657 (define-key map "R" 'verilog-sk-reg)
10658 (define-key map "D" 'verilog-sk-define-signal)
10659 map)
10660 "Keymap used in Verilog mode for smart template operations.")
10664 ;; Place the templates into Verilog Mode. They may be inserted under any key.
10665 ;; C-c C-t will be the default. If you use templates a lot, you
10666 ;; may want to consider moving the binding to another key in your .emacs
10667 ;; file.
10669 ;(define-key verilog-mode-map "\C-ct" verilog-template-map)
10670 (define-key verilog-mode-map "\C-c\C-t" verilog-template-map)
10672 ;;; ---- statement skeletons ------------------------------------------
10674 (define-skeleton verilog-sk-prompt-condition
10675 "Prompt for the loop condition."
10676 "[condition]: " str )
10678 (define-skeleton verilog-sk-prompt-init
10679 "Prompt for the loop init statement."
10680 "[initial statement]: " str )
10682 (define-skeleton verilog-sk-prompt-inc
10683 "Prompt for the loop increment statement."
10684 "[increment statement]: " str )
10686 (define-skeleton verilog-sk-prompt-name
10687 "Prompt for the name of something."
10688 "[name]: " str)
10690 (define-skeleton verilog-sk-prompt-clock
10691 "Prompt for the name of something."
10692 "name and edge of clock(s): " str)
10694 (defvar verilog-sk-reset nil)
10695 (defun verilog-sk-prompt-reset ()
10696 "Prompt for the name of a state machine reset."
10697 (setq verilog-sk-reset (read-string "name of reset: " "rst")))
10700 (define-skeleton verilog-sk-prompt-state-selector
10701 "Prompt for the name of a state machine selector."
10702 "name of selector (eg {a,b,c,d}): " str )
10704 (define-skeleton verilog-sk-prompt-output
10705 "Prompt for the name of something."
10706 "output: " str)
10708 (define-skeleton verilog-sk-prompt-msb
10709 "Prompt for least significant bit specification."
10710 "msb:" str & ?: & '(verilog-sk-prompt-lsb) | -1 )
10712 (define-skeleton verilog-sk-prompt-lsb
10713 "Prompt for least significant bit specification."
10714 "lsb:" str )
10716 (defvar verilog-sk-p nil)
10717 (define-skeleton verilog-sk-prompt-width
10718 "Prompt for a width specification."
10720 (progn
10721 (setq verilog-sk-p (point))
10722 (verilog-sk-prompt-msb)
10723 (if (> (point) verilog-sk-p) "] " " ")))
10725 (defun verilog-sk-header ()
10726 "Insert a descriptive header at the top of the file.
10727 See also `verilog-header' for an alternative format."
10728 (interactive "*")
10729 (save-excursion
10730 (goto-char (point-min))
10731 (verilog-sk-header-tmpl)))
10733 (define-skeleton verilog-sk-header-tmpl
10734 "Insert a comment block containing the module title, author, etc."
10735 "[Description]: "
10736 "// -*- Mode: Verilog -*-"
10737 "\n// Filename : " (buffer-name)
10738 "\n// Description : " str
10739 "\n// Author : " (user-full-name)
10740 "\n// Created On : " (current-time-string)
10741 "\n// Last Modified By: " (user-full-name)
10742 "\n// Last Modified On: " (current-time-string)
10743 "\n// Update Count : 0"
10744 "\n// Status : Unknown, Use with caution!"
10745 "\n")
10747 (define-skeleton verilog-sk-module
10748 "Insert a module definition."
10750 > "module " '(verilog-sk-prompt-name) " (/*AUTOARG*/ ) ;" \n
10751 > _ \n
10752 > (- verilog-indent-level-behavioral) "endmodule" (progn (electric-verilog-terminate-line) nil))
10754 (define-skeleton verilog-sk-primitive
10755 "Insert a task definition."
10757 > "primitive " '(verilog-sk-prompt-name) " ( " '(verilog-sk-prompt-output) ("input:" ", " str ) " );"\n
10758 > _ \n
10759 > (- verilog-indent-level-behavioral) "endprimitive" (progn (electric-verilog-terminate-line) nil))
10761 (define-skeleton verilog-sk-task
10762 "Insert a task definition."
10764 > "task " '(verilog-sk-prompt-name) & ?; \n
10765 > _ \n
10766 > "begin" \n
10767 > \n
10768 > (- verilog-indent-level-behavioral) "end" \n
10769 > (- verilog-indent-level-behavioral) "endtask" (progn (electric-verilog-terminate-line) nil))
10771 (define-skeleton verilog-sk-function
10772 "Insert a function definition."
10774 > "function [" '(verilog-sk-prompt-width) | -1 '(verilog-sk-prompt-name) ?; \n
10775 > _ \n
10776 > "begin" \n
10777 > \n
10778 > (- verilog-indent-level-behavioral) "end" \n
10779 > (- verilog-indent-level-behavioral) "endfunction" (progn (electric-verilog-terminate-line) nil))
10781 (define-skeleton verilog-sk-always
10782 "Insert always block. Uses the minibuffer to prompt
10783 for sensitivity list."
10785 > "always @ ( /*AUTOSENSE*/ ) begin\n"
10786 > _ \n
10787 > (- verilog-indent-level-behavioral) "end" \n >
10790 (define-skeleton verilog-sk-initial
10791 "Insert an initial block."
10793 > "initial begin\n"
10794 > _ \n
10795 > (- verilog-indent-level-behavioral) "end" \n > )
10797 (define-skeleton verilog-sk-specify
10798 "Insert specify block. "
10800 > "specify\n"
10801 > _ \n
10802 > (- verilog-indent-level-behavioral) "endspecify" \n > )
10804 (define-skeleton verilog-sk-generate
10805 "Insert generate block. "
10807 > "generate\n"
10808 > _ \n
10809 > (- verilog-indent-level-behavioral) "endgenerate" \n > )
10811 (define-skeleton verilog-sk-begin
10812 "Insert begin end block. Uses the minibuffer to prompt for name."
10814 > "begin" '(verilog-sk-prompt-name) \n
10815 > _ \n
10816 > (- verilog-indent-level-behavioral) "end"
10819 (define-skeleton verilog-sk-fork
10820 "Insert a fork join block."
10822 > "fork\n"
10823 > "begin" \n
10824 > _ \n
10825 > (- verilog-indent-level-behavioral) "end" \n
10826 > "begin" \n
10827 > \n
10828 > (- verilog-indent-level-behavioral) "end" \n
10829 > (- verilog-indent-level-behavioral) "join" \n
10833 (define-skeleton verilog-sk-case
10834 "Build skeleton case statement, prompting for the selector expression,
10835 and the case items."
10836 "[selector expression]: "
10837 > "case (" str ") " \n
10838 > ("case selector: " str ": begin" \n > _ \n > (- verilog-indent-level-behavioral) "end" \n > )
10839 resume: > (- verilog-case-indent) "endcase" (progn (electric-verilog-terminate-line) nil))
10841 (define-skeleton verilog-sk-casex
10842 "Build skeleton casex statement, prompting for the selector expression,
10843 and the case items."
10844 "[selector expression]: "
10845 > "casex (" str ") " \n
10846 > ("case selector: " str ": begin" \n > _ \n > (- verilog-indent-level-behavioral) "end" \n > )
10847 resume: > (- verilog-case-indent) "endcase" (progn (electric-verilog-terminate-line) nil))
10849 (define-skeleton verilog-sk-casez
10850 "Build skeleton casez statement, prompting for the selector expression,
10851 and the case items."
10852 "[selector expression]: "
10853 > "casez (" str ") " \n
10854 > ("case selector: " str ": begin" \n > _ \n > (- verilog-indent-level-behavioral) "end" \n > )
10855 resume: > (- verilog-case-indent) "endcase" (progn (electric-verilog-terminate-line) nil))
10857 (define-skeleton verilog-sk-if
10858 "Insert a skeleton if statement."
10859 > "if (" '(verilog-sk-prompt-condition) & ")" " begin" \n
10860 > _ \n
10861 > (- verilog-indent-level-behavioral) "end " \n )
10863 (define-skeleton verilog-sk-else-if
10864 "Insert a skeleton else if statement."
10865 > (verilog-indent-line) "else if ("
10866 (progn (setq verilog-sk-p (point)) nil) '(verilog-sk-prompt-condition) (if (> (point) verilog-sk-p) ") " -1 ) & " begin" \n
10867 > _ \n
10868 > "end" (progn (electric-verilog-terminate-line) nil))
10870 (define-skeleton verilog-sk-datadef
10871 "Common routine to get data definition."
10873 '(verilog-sk-prompt-width) | -1 ("name (RET to end):" str ", ") -2 ";" \n)
10875 (define-skeleton verilog-sk-input
10876 "Insert an input definition."
10878 > "input [" '(verilog-sk-datadef))
10880 (define-skeleton verilog-sk-output
10881 "Insert an output definition."
10883 > "output [" '(verilog-sk-datadef))
10885 (define-skeleton verilog-sk-inout
10886 "Insert an inout definition."
10888 > "inout [" '(verilog-sk-datadef))
10890 (defvar verilog-sk-signal nil)
10891 (define-skeleton verilog-sk-def-reg
10892 "Insert a reg definition."
10894 > "reg [" '(verilog-sk-prompt-width) | -1 verilog-sk-signal ";" \n (verilog-pretty-declarations) )
10896 (defun verilog-sk-define-signal ()
10897 "Insert a definition of signal under point at top of module."
10898 (interactive "*")
10899 (let* ((sig-re "[a-zA-Z0-9_]*")
10900 (v1 (buffer-substring
10901 (save-excursion
10902 (skip-chars-backward sig-re)
10903 (point))
10904 (save-excursion
10905 (skip-chars-forward sig-re)
10906 (point)))))
10907 (if (not (member v1 verilog-keywords))
10908 (save-excursion
10909 (setq verilog-sk-signal v1)
10910 (verilog-beg-of-defun)
10911 (verilog-end-of-statement)
10912 (verilog-forward-syntactic-ws)
10913 (verilog-sk-def-reg)
10914 (message "signal at point is %s" v1))
10915 (message "object at point (%s) is a keyword" v1))))
10917 (define-skeleton verilog-sk-wire
10918 "Insert a wire definition."
10920 > "wire [" '(verilog-sk-datadef))
10922 (define-skeleton verilog-sk-reg
10923 "Insert a reg definition."
10925 > "reg [" '(verilog-sk-datadef))
10927 (define-skeleton verilog-sk-assign
10928 "Insert a skeleton assign statement."
10930 > "assign " '(verilog-sk-prompt-name) " = " _ ";" \n)
10932 (define-skeleton verilog-sk-while
10933 "Insert a skeleton while loop statement."
10935 > "while (" '(verilog-sk-prompt-condition) ") begin" \n
10936 > _ \n
10937 > (- verilog-indent-level-behavioral) "end " (progn (electric-verilog-terminate-line) nil))
10939 (define-skeleton verilog-sk-repeat
10940 "Insert a skeleton repeat loop statement."
10942 > "repeat (" '(verilog-sk-prompt-condition) ") begin" \n
10943 > _ \n
10944 > (- verilog-indent-level-behavioral) "end " (progn (electric-verilog-terminate-line) nil))
10946 (define-skeleton verilog-sk-for
10947 "Insert a skeleton while loop statement."
10949 > "for ("
10950 '(verilog-sk-prompt-init) "; "
10951 '(verilog-sk-prompt-condition) "; "
10952 '(verilog-sk-prompt-inc)
10953 ") begin" \n
10954 > _ \n
10955 > (- verilog-indent-level-behavioral) "end " (progn (electric-verilog-terminate-line) nil))
10957 (define-skeleton verilog-sk-comment
10958 "Inserts three comment lines, making a display comment."
10960 > "/*\n"
10961 > "* " _ \n
10962 > "*/")
10964 (define-skeleton verilog-sk-state-machine
10965 "Insert a state machine definition."
10966 "Name of state variable: "
10967 '(setq input "state")
10968 > "// State registers for " str | -23 \n
10969 '(setq verilog-sk-state str)
10970 > "reg [" '(verilog-sk-prompt-width) | -1 verilog-sk-state ", next_" verilog-sk-state ?; \n
10971 '(setq input nil)
10972 > \n
10973 > "// State FF for " verilog-sk-state \n
10974 > "always @ ( " (read-string "clock:" "posedge clk") " or " (verilog-sk-prompt-reset) " ) begin" \n
10975 > "if ( " verilog-sk-reset " ) " verilog-sk-state " = 0; else" \n
10976 > verilog-sk-state " = next_" verilog-sk-state ?; \n
10977 > (- verilog-indent-level-behavioral) "end" (progn (electric-verilog-terminate-line) nil)
10978 > \n
10979 > "// Next State Logic for " verilog-sk-state \n
10980 > "always @ ( /*AUTOSENSE*/ ) begin\n"
10981 > "case (" '(verilog-sk-prompt-state-selector) ") " \n
10982 > ("case selector: " str ": begin" \n > "next_" verilog-sk-state " = " _ ";" \n > (- verilog-indent-level-behavioral) "end" \n )
10983 resume: > (- verilog-case-indent) "endcase" (progn (electric-verilog-terminate-line) nil)
10984 > (- verilog-indent-level-behavioral) "end" (progn (electric-verilog-terminate-line) nil))
10988 ;; Include file loading with mouse/return event
10990 ;; idea & first impl.: M. Rouat (eldo-mode.el)
10991 ;; second (emacs/xemacs) impl.: G. Van der Plas (spice-mode.el)
10993 (if (featurep 'xemacs)
10994 (require 'overlay))
10996 (defconst verilog-include-file-regexp
10997 "^`include\\s-+\"\\([^\n\"]*\\)\""
10998 "Regexp that matches the include file.")
11000 (defvar verilog-mode-mouse-map
11001 (let ((map (make-sparse-keymap))) ; as described in info pages, make a map
11002 (set-keymap-parent map verilog-mode-map)
11003 ;; mouse button bindings
11004 (define-key map "\r" 'verilog-load-file-at-point)
11005 (if (featurep 'xemacs)
11006 (define-key map 'button2 'verilog-load-file-at-mouse);ffap-at-mouse ?
11007 (define-key map [mouse-2] 'verilog-load-file-at-mouse))
11008 (if (featurep 'xemacs)
11009 (define-key map 'Sh-button2 'mouse-yank) ; you wanna paste don't you ?
11010 (define-key map [S-mouse-2] 'mouse-yank-at-click))
11011 map)
11012 "Map containing mouse bindings for `verilog-mode'.")
11015 (defun verilog-colorize-include-files (beg end old-len)
11016 "This function colorizes included files when the mouse passes over them.
11017 Clicking on the middle-mouse button loads them in a buffer (as in dired)."
11018 (save-excursion
11019 (save-match-data
11020 (let (end-point)
11021 (goto-char end)
11022 (setq end-point (verilog-get-end-of-line))
11023 (goto-char beg)
11024 (beginning-of-line) ; scan entire line !
11025 ;; delete overlays existing on this line
11026 (let ((overlays (overlays-in (point) end-point)))
11027 (while overlays
11028 (if (and
11029 (overlay-get (car overlays) 'detachable)
11030 (overlay-get (car overlays) 'verilog-include-file))
11031 (delete-overlay (car overlays)))
11032 (setq overlays (cdr overlays)))) ; let
11033 ;; make new ones, could reuse deleted one ?
11034 (while (search-forward-regexp verilog-include-file-regexp end-point t)
11035 (let (ov)
11036 (goto-char (match-beginning 1))
11037 (setq ov (make-overlay (match-beginning 1) (match-end 1)))
11038 (overlay-put ov 'start-closed 't)
11039 (overlay-put ov 'end-closed 't)
11040 (overlay-put ov 'evaporate 't)
11041 (overlay-put ov 'verilog-include-file 't)
11042 (overlay-put ov 'mouse-face 'highlight)
11043 (overlay-put ov 'local-map verilog-mode-mouse-map)))))))
11046 (defun verilog-colorize-include-files-buffer ()
11047 "Colorize an include file."
11048 (interactive)
11049 ;; delete overlays
11050 (let ((overlays (overlays-in (point-min) (point-max))))
11051 (while overlays
11052 (if (and
11053 (overlay-get (car overlays) 'detachable)
11054 (overlay-get (car overlays) 'verilog-include-file))
11055 (delete-overlay (car overlays)))
11056 (setq overlays (cdr overlays)))) ; let
11057 ;; remake overlays
11058 (verilog-colorize-include-files (point-min) (point-max) nil))
11060 ;; ffap-at-mouse isn't useful for Verilog mode. It uses library paths.
11061 ;; so define this function to do more or less the same as ffap-at-mouse
11062 ;; but first resolve filename...
11063 (defun verilog-load-file-at-mouse (event)
11064 "Load file under button 2 click's EVENT.
11065 Files are checked based on `verilog-library-directories'."
11066 (interactive "@e")
11067 (save-excursion ;; implement a Verilog specific ffap-at-mouse
11068 (mouse-set-point event)
11069 (beginning-of-line)
11070 (if (looking-at verilog-include-file-regexp)
11071 (if (and (car (verilog-library-filenames
11072 (match-string 1) (buffer-file-name)))
11073 (file-readable-p (car (verilog-library-filenames
11074 (match-string 1) (buffer-file-name)))))
11075 (find-file (car (verilog-library-filenames
11076 (match-string 1) (buffer-file-name))))
11077 (progn
11078 (message
11079 "File '%s' isn't readable, use shift-mouse2 to paste in this field"
11080 (match-string 1)))))))
11082 ;; ffap isn't useable for Verilog mode. It uses library paths.
11083 ;; so define this function to do more or less the same as ffap
11084 ;; but first resolve filename...
11085 (defun verilog-load-file-at-point ()
11086 "Load file under point.
11087 Files are checked based on `verilog-library-directories'."
11088 (interactive)
11089 (save-excursion ;; implement a Verilog specific ffap
11090 (beginning-of-line)
11091 (if (looking-at verilog-include-file-regexp)
11092 (if (and
11093 (car (verilog-library-filenames
11094 (match-string 1) (buffer-file-name)))
11095 (file-readable-p (car (verilog-library-filenames
11096 (match-string 1) (buffer-file-name)))))
11097 (find-file (car (verilog-library-filenames
11098 (match-string 1) (buffer-file-name))))))))
11102 ;; Bug reporting
11105 (defun verilog-faq ()
11106 "Tell the user their current version, and where to get the FAQ etc."
11107 (interactive)
11108 (with-output-to-temp-buffer "*verilog-mode help*"
11109 (princ (format "You are using verilog-mode %s\n" verilog-mode-version))
11110 (princ "\n")
11111 (princ "For new releases, see http://www.verilog.com\n")
11112 (princ "\n")
11113 (princ "For frequently asked questions, see http://www.veripool.org/verilog-mode-faq.html\n")
11114 (princ "\n")
11115 (princ "To submit a bug, use M-x verilog-submit-bug-report\n")
11116 (princ "\n")))
11118 (autoload 'reporter-submit-bug-report "reporter")
11119 (defvar reporter-prompt-for-summary-p)
11121 (defun verilog-submit-bug-report ()
11122 "Submit via mail a bug report on verilog-mode.el."
11123 (interactive)
11124 (let ((reporter-prompt-for-summary-p t))
11125 (reporter-submit-bug-report
11126 "mac@verilog.com"
11127 (concat "verilog-mode v" verilog-mode-version)
11129 verilog-align-ifelse
11130 verilog-auto-endcomments
11131 verilog-auto-hook
11132 verilog-auto-indent-on-newline
11133 verilog-auto-inst-vector
11134 verilog-auto-inst-template-numbers
11135 verilog-auto-lineup
11136 verilog-auto-newline
11137 verilog-auto-save-policy
11138 verilog-auto-sense-defines-constant
11139 verilog-auto-sense-include-inputs
11140 verilog-before-auto-hook
11141 verilog-case-indent
11142 verilog-cexp-indent
11143 verilog-compiler
11144 verilog-coverage
11145 verilog-highlight-translate-off
11146 verilog-indent-begin-after-if
11147 verilog-indent-declaration-macros
11148 verilog-indent-level
11149 verilog-indent-level-behavioral
11150 verilog-indent-level-declaration
11151 verilog-indent-level-directive
11152 verilog-indent-level-module
11153 verilog-indent-lists
11154 verilog-library-flags
11155 verilog-library-directories
11156 verilog-library-extensions
11157 verilog-library-files
11158 verilog-linter
11159 verilog-minimum-comment-distance
11160 verilog-mode-hook
11161 verilog-simulator
11162 verilog-tab-always-indent
11163 verilog-tab-to-comment
11165 nil nil
11166 (concat "Hi Mac,
11168 I want to report a bug. I've read the `Bugs' section of `Info' on
11169 Emacs, so I know how to make a clear and unambiguous report. To get
11170 to that Info section, I typed
11172 M-x info RET m " invocation-name " RET m bugs RET
11174 Before I go further, I want to say that Verilog mode has changed my life.
11175 I save so much time, my files are colored nicely, my co workers respect
11176 my coding ability... until now. I'd really appreciate anything you
11177 could do to help me out with this minor deficiency in the product.
11179 If you have bugs with the AUTO functions, please CC the AUTOAUTHOR Wilson
11180 Snyder (wsnyder@wsnyder.org) and/or see http://www.veripool.org.
11181 You may also want to look at the Verilog-Mode FAQ, see
11182 http://www.veripool.org/verilog-mode-faq.html.
11184 To reproduce the bug, start a fresh Emacs via " invocation-name "
11185 -no-init-file -no-site-file'. In a new buffer, in Verilog mode, type
11186 the code included below.
11188 Given those lines, I expected [[Fill in here]] to happen;
11189 but instead, [[Fill in here]] happens!.
11191 == The code: =="))))
11193 (provide 'verilog-mode)
11195 ;; Local Variables:
11196 ;; checkdoc-permit-comma-termination-flag:t
11197 ;; checkdoc-force-docstrings-flag:nil
11198 ;; End:
11200 ;; arch-tag: 87923725-57b3-41b5-9494-be21118c6a6f
11201 ;;; verilog-mode.el ends here