1 ;;; asm-mode.el --- mode for editing assembler code
3 ;; Copyright (C) 1991 Free Software Foundation, Inc.
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
7 ;; Keywords: tools, languages
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 ;; This mode was written by Eric S. Raymond <esr@snark.thyrsus.com>,
29 ;; inspired by an earlier asm-mode by Martin Neitzel.
31 ;; This minor mode is based on text mode. It defines a private abbrev table
32 ;; that can be used to save abbrevs for assembler mnemonics. It binds just
35 ;; TAB tab to next tab stop
36 ;; : outdent preceding label, tab to tab stop
37 ;; comment char place or move comment
38 ;; asm-comment-char specifies which character this is;
39 ;; you can use a different character in different
41 ;; C-j, C-m newline and tab to tab stop
43 ;; Code is indented to the first tab stop level.
45 ;; This mode runs two hooks:
46 ;; 1) An asm-mode-set-comment-hook before the part of the initialization
47 ;; depending on asm-comment-char, and
48 ;; 2) an asm-mode-hook at the end of initialization.
53 "Mode for editing assembler code."
56 (defcustom asm-comment-char ?\
;
57 "*The comment-start character assumed by Asm mode."
61 (defvar asm-mode-syntax-table nil
62 "Syntax table used while in Asm mode.")
64 (defvar asm-mode-abbrev-table nil
65 "Abbrev table used while in Asm mode.")
66 (define-abbrev-table 'asm-mode-abbrev-table
())
68 (defvar asm-mode-map nil
69 "Keymap for Asm mode.")
73 (setq asm-mode-map
(make-sparse-keymap))
74 ;; Note that the comment character isn't set up until asm-mode is called.
75 (define-key asm-mode-map
":" 'asm-colon
)
76 (define-key asm-mode-map
"\C-c;" 'comment-region
)
77 (define-key asm-mode-map
"\C-i" 'tab-to-tab-stop
)
78 (define-key asm-mode-map
"\C-j" 'asm-newline
)
79 (define-key asm-mode-map
"\C-m" 'asm-newline
)
82 (defconst asm-font-lock-keywords
83 '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\(\\.[lLwWbBsS]\\)?\\)?"
84 (1 font-lock-function-name-face
) (3 font-lock-keyword-face nil t
))
85 ("^\\s +\\(\\(\\sw\\|\\s_\\)+\\(\\.[lLwWbBsS]\\)?\\)" 1 font-lock-keyword-face
))
86 "Additional expressions to highlight in Assembler mode.")
88 (defvar asm-code-level-empty-comment-pattern nil
)
89 (defvar asm-flush-left-empty-comment-pattern nil
)
90 (defvar asm-inline-empty-comment-pattern nil
)
94 "Major mode for editing typical assembler code.
95 Features a private abbrev table and the following bindings:
97 \\[asm-colon]\toutdent a preceding label, tab to next tab stop.
98 \\[tab-to-tab-stop]\ttab to next tab stop.
99 \\[asm-newline]\tnewline, then tab to next tab stop.
100 \\[asm-comment]\tsmart placement of assembler comments.
102 The character used for making comments is set by the variable
103 `asm-comment-char' (which defaults to `?\\;').
105 Alternatively, you may set this variable in `asm-mode-set-comment-hook',
106 which is called near the beginning of mode initialization.
108 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
114 (kill-all-local-variables)
115 (setq mode-name
"Assembler")
116 (setq major-mode
'asm-mode
)
117 (setq local-abbrev-table asm-mode-abbrev-table
)
118 (make-local-variable 'font-lock-defaults
)
119 (setq font-lock-defaults
'(asm-font-lock-keywords))
120 (make-local-variable 'asm-mode-syntax-table
)
121 (setq asm-mode-syntax-table
(make-syntax-table))
122 (set-syntax-table asm-mode-syntax-table
)
124 (run-hooks 'asm-mode-set-comment-hook
)
125 ;; Make our own local child of asm-mode-map
126 ;; so we can define our own comment character.
127 (use-local-map (nconc (make-sparse-keymap) asm-mode-map
))
128 (local-set-key (vector asm-comment-char
) 'asm-comment
)
130 (modify-syntax-entry asm-comment-char
131 "<" asm-mode-syntax-table
)
132 (modify-syntax-entry ?
\n
133 ">" asm-mode-syntax-table
)
134 (let ((cs (regexp-quote (char-to-string asm-comment-char
))))
135 (make-local-variable 'comment-start
)
136 (setq comment-start
(concat (char-to-string asm-comment-char
) " "))
137 (make-local-variable 'comment-start-skip
)
138 (setq comment-start-skip
(concat cs
"+[ \t]*"))
139 (setq asm-inline-empty-comment-pattern
(concat "^.+" cs
"+ *$"))
140 (setq asm-code-level-empty-comment-pattern
(concat "^[\t ]+" cs cs
" *$"))
141 (setq asm-flush-left-empty-comment-pattern
(concat "^" cs cs cs
" *$"))
143 (make-local-variable 'comment-end
)
144 (setq comment-end
"")
145 (setq fill-prefix
"\t")
146 (run-hooks 'asm-mode-hook
))
149 "Insert a colon; if it follows a label, delete the label's indentation."
153 (if (looking-at "[ \t]+\\(\\sw\\|\\s_\\)+$")
154 (delete-horizontal-space)))
159 (defun asm-newline ()
160 "Insert LFD + fill-prefix, to bring us back to code-indent level."
162 (if (eolp) (delete-horizontal-space))
167 (defun asm-line-matches (pattern &optional withcomment
)
170 (looking-at pattern
)))
172 (defun asm-pop-comment-level ()
173 ;; Delete an empty comment ending current line. Then set up for a new one,
174 ;; on the current line if it was all comment, otherwise above it
176 (delete-horizontal-space)
177 (while (= (preceding-char) asm-comment-char
)
178 (delete-backward-char 1))
179 (delete-horizontal-space)
187 (defun asm-comment ()
188 "Convert an empty comment to a `larger' kind, or start a new one.
189 These are the known comment classes:
191 1 -- comment to the right of the code (at the comment-column)
192 2 -- comment on its own line, indented like code
193 3 -- comment on its own line, beginning at the left-most column.
195 Suggested usage: while writing your code, trigger asm-comment
196 repeatedly until you are satisfied with the kind of comment."
200 ;; Blank line? Then start comment at code indent level.
201 ((asm-line-matches "^[ \t]*$")
202 (delete-horizontal-space)
204 (insert asm-comment-char comment-start
))
206 ;; Nonblank line with no comment chars in it?
207 ;; Then start a comment at the current comment column
208 ((asm-line-matches (format "^[^%c\n]+$" asm-comment-char
))
209 (indent-for-comment))
211 ;; Flush-left comment present? Just insert character.
212 ((asm-line-matches asm-flush-left-empty-comment-pattern
)
213 (insert asm-comment-char
))
215 ;; Empty code-level comment already present?
216 ;; Then start flush-left comment, on line above if this one is nonempty.
217 ((asm-line-matches asm-code-level-empty-comment-pattern
)
218 (asm-pop-comment-level)
219 (insert asm-comment-char asm-comment-char comment-start
))
221 ;; Empty comment ends line?
222 ;; Then make code-level comment, on line above if this one is nonempty.
223 ((asm-line-matches asm-inline-empty-comment-pattern
)
224 (asm-pop-comment-level)
226 (insert asm-comment-char comment-start
))
228 ;; If all else fails, insert character
230 (insert asm-comment-char
))
237 ;;; asm-mode.el ends here