Mercurial > emacs
annotate lisp/progmodes/asm-mode.el @ 45483:81cb13e7ce4f
*** empty log message ***
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Thu, 23 May 2002 10:20:12 +0000 |
parents | eb15bee6f5e7 |
children | 99a31f21f1c9 |
rev | line source |
---|---|
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
1 ;;; asm-mode.el --- mode for editing assembler code |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
2 |
869 | 3 ;; Copyright (C) 1991 Free Software Foundation, Inc. |
4 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> |
11098 | 6 ;; Maintainer: FSF |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
7 ;; Keywords: tools, languages |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
8 |
473 | 9 ;; This file is part of GNU Emacs. |
10 | |
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 | |
869 | 13 ;; the Free Software Foundation; either version 2, or (at your option) |
473 | 14 ;; any later version. |
15 | |
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. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 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. | |
473 | 25 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
26 ;;; Commentary: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
27 |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
28 ;; This mode was written by Eric S. Raymond <esr@snark.thyrsus.com>, |
473 | 29 ;; inspired by an earlier asm-mode by Martin Neitzel. |
30 | |
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 | |
33 ;; five keys: | |
34 ;; | |
35 ;; TAB tab to next tab stop | |
36 ;; : outdent preceding label, tab to tab stop | |
11105
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
37 ;; comment char place or move comment |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
38 ;; asm-comment-char specifies which character this is; |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
39 ;; you can use a different character in different |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
40 ;; Asm mode buffers. |
473 | 41 ;; C-j, C-m newline and tab to tab stop |
42 ;; | |
43 ;; Code is indented to the first tab stop level. | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
44 |
473 | 45 ;; This mode runs two hooks: |
11098 | 46 ;; 1) An asm-mode-set-comment-hook before the part of the initialization |
473 | 47 ;; depending on asm-comment-char, and |
48 ;; 2) an asm-mode-hook at the end of initialization. | |
49 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
50 ;;; Code: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
51 |
20781 | 52 (defgroup asm nil |
53 "Mode for editing assembler code." | |
54 :group 'languages) | |
55 | |
23312 | 56 (defcustom asm-comment-char ?\; |
20781 | 57 "*The comment-start character assumed by Asm mode." |
58 :type 'character | |
59 :group 'asm) | |
473 | 60 |
61 (defvar asm-mode-syntax-table nil | |
2670 | 62 "Syntax table used while in Asm mode.") |
473 | 63 |
64 (defvar asm-mode-abbrev-table nil | |
2670 | 65 "Abbrev table used while in Asm mode.") |
473 | 66 (define-abbrev-table 'asm-mode-abbrev-table ()) |
67 | |
68 (defvar asm-mode-map nil | |
2670 | 69 "Keymap for Asm mode.") |
473 | 70 |
71 (if asm-mode-map | |
72 nil | |
73 (setq asm-mode-map (make-sparse-keymap)) | |
11105
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
74 ;; Note that the comment character isn't set up until asm-mode is called. |
473 | 75 (define-key asm-mode-map ":" 'asm-colon) |
15481 | 76 (define-key asm-mode-map "\C-c;" 'comment-region) |
473 | 77 (define-key asm-mode-map "\C-i" 'tab-to-tab-stop) |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
78 (define-key asm-mode-map "\C-j" 'asm-newline) |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
79 (define-key asm-mode-map "\C-m" 'asm-newline) |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
80 ) |
473 | 81 |
9385
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
82 (defconst asm-font-lock-keywords |
25481
f26b378dc6a2
(asm-mode): Set comment-start properly from asm-comment-char.
Richard M. Stallman <rms@gnu.org>
parents:
23312
diff
changeset
|
83 '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\(\\.[lLwWbBsS]\\)?\\)?" |
9385
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
84 (1 font-lock-function-name-face) (3 font-lock-keyword-face nil t)) |
25481
f26b378dc6a2
(asm-mode): Set comment-start properly from asm-comment-char.
Richard M. Stallman <rms@gnu.org>
parents:
23312
diff
changeset
|
85 ("^\\s +\\(\\(\\sw\\|\\s_\\)+\\(\\.[lLwWbBsS]\\)?\\)" 1 font-lock-keyword-face)) |
9385
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
86 "Additional expressions to highlight in Assembler mode.") |
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
87 |
473 | 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) | |
91 | |
92 ;;;###autoload | |
93 (defun asm-mode () | |
94 "Major mode for editing typical assembler code. | |
2670 | 95 Features a private abbrev table and the following bindings: |
473 | 96 |
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. | |
101 | |
102 The character used for making comments is set by the variable | |
23312 | 103 `asm-comment-char' (which defaults to `?\\;'). |
473 | 104 |
11098 | 105 Alternatively, you may set this variable in `asm-mode-set-comment-hook', |
106 which is called near the beginning of mode initialization. | |
473 | 107 |
2670 | 108 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. |
473 | 109 |
6469 | 110 Special commands: |
111 \\{asm-mode-map} | |
473 | 112 " |
113 (interactive) | |
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) | |
9472
06623e3543db
* asm-mode.el: (asm-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9385
diff
changeset
|
118 (make-local-variable 'font-lock-defaults) |
06623e3543db
* asm-mode.el: (asm-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9385
diff
changeset
|
119 (setq font-lock-defaults '(asm-font-lock-keywords)) |
473 | 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) | |
11105
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
123 |
473 | 124 (run-hooks 'asm-mode-set-comment-hook) |
11105
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
125 ;; Make our own local child of asm-mode-map |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
126 ;; so we can define our own comment character. |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
127 (use-local-map (nconc (make-sparse-keymap) asm-mode-map)) |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
128 (local-set-key (vector asm-comment-char) 'asm-comment) |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
129 |
473 | 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) | |
25481
f26b378dc6a2
(asm-mode): Set comment-start properly from asm-comment-char.
Richard M. Stallman <rms@gnu.org>
parents:
23312
diff
changeset
|
136 (setq comment-start (concat (char-to-string asm-comment-char) " ")) |
473 | 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 " *$")) | |
142 ) | |
143 (make-local-variable 'comment-end) | |
144 (setq comment-end "") | |
145 (setq fill-prefix "\t") | |
11105
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
146 (run-hooks 'asm-mode-hook)) |
473 | 147 |
148 (defun asm-colon () | |
149 "Insert a colon; if it follows a label, delete the label's indentation." | |
150 (interactive) | |
151 (save-excursion | |
152 (beginning-of-line) | |
153 (if (looking-at "[ \t]+\\(\\sw\\|\\s_\\)+$") | |
154 (delete-horizontal-space))) | |
155 (insert ":") | |
156 (tab-to-tab-stop) | |
157 ) | |
158 | |
159 (defun asm-newline () | |
160 "Insert LFD + fill-prefix, to bring us back to code-indent level." | |
161 (interactive) | |
162 (if (eolp) (delete-horizontal-space)) | |
163 (insert "\n") | |
164 (tab-to-tab-stop) | |
165 ) | |
166 | |
167 (defun asm-line-matches (pattern &optional withcomment) | |
168 (save-excursion | |
169 (beginning-of-line) | |
170 (looking-at pattern))) | |
171 | |
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 | |
175 (end-of-line) | |
176 (delete-horizontal-space) | |
177 (while (= (preceding-char) asm-comment-char) | |
178 (delete-backward-char 1)) | |
179 (delete-horizontal-space) | |
180 (if (bolp) | |
181 nil | |
182 (beginning-of-line) | |
183 (open-line 1)) | |
184 ) | |
185 | |
186 | |
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: | |
190 | |
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. | |
194 | |
195 Suggested usage: while writing your code, trigger asm-comment | |
196 repeatedly until you are satisfied with the kind of comment." | |
197 (interactive) | |
198 (cond | |
199 | |
200 ;; Blank line? Then start comment at code indent level. | |
201 ((asm-line-matches "^[ \t]*$") | |
202 (delete-horizontal-space) | |
203 (tab-to-tab-stop) | |
204 (insert asm-comment-char comment-start)) | |
205 | |
206 ;; Nonblank line with no comment chars in it? | |
207 ;; Then start a comment at the current comment column | |
7384
2395bbd3dd6e
(asm-comment): Don't match newline.
Karl Heuer <kwzh@gnu.org>
parents:
6469
diff
changeset
|
208 ((asm-line-matches (format "^[^%c\n]+$" asm-comment-char)) |
473 | 209 (indent-for-comment)) |
210 | |
211 ;; Flush-left comment present? Just insert character. | |
212 ((asm-line-matches asm-flush-left-empty-comment-pattern) | |
213 (insert asm-comment-char)) | |
214 | |
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)) | |
220 | |
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) | |
225 (tab-to-tab-stop) | |
226 (insert asm-comment-char comment-start)) | |
227 | |
228 ;; If all else fails, insert character | |
229 (t | |
230 (insert asm-comment-char)) | |
231 | |
232 ) | |
233 (end-of-line)) | |
234 | |
18383 | 235 (provide 'asm-mode) |
236 | |
473 | 237 ;;; asm-mode.el ends here |