Mercurial > emacs
annotate lisp/progmodes/asm-mode.el @ 10559:dcb43c6d4c42
Integer width changes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 27 Jan 1995 01:43:02 +0000 |
parents | 06623e3543db |
children | 03b481b6cec2 |
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> |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
6 ;; Last-Modified: 14 Jul 1992 |
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 |
869 | 9 ;; @(#)asm-mode.el 1.7 |
473 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
869 | 15 ;; the Free Software Foundation; either version 2, or (at your option) |
473 | 16 ;; any later version. |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
25 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
26 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
27 ;;; Commentary: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
28 |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
29 ;; This mode was written by Eric S. Raymond <esr@snark.thyrsus.com>, |
473 | 30 ;; inspired by an earlier asm-mode by Martin Neitzel. |
31 | |
32 ;; This minor mode is based on text mode. It defines a private abbrev table | |
33 ;; that can be used to save abbrevs for assembler mnemonics. It binds just | |
34 ;; five keys: | |
35 ;; | |
36 ;; TAB tab to next tab stop | |
37 ;; : outdent preceding label, tab to tab stop | |
38 ;; ; place or move comment | |
39 ;; C-j, C-m newline and tab to tab stop | |
40 ;; | |
41 ;; Code is indented to the first tab stop level. | |
42 ;; The ; key inserts copies of the value of asm-comment-char at an | |
43 ;; appropriate spot. | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
44 |
473 | 45 ;; This mode runs two hooks: |
46 ;; 1) An asm-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. | |
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 |
473 | 52 (defvar asm-comment-char ?; |
2670 | 53 "*The comment-start character assumed by Asm mode.") |
473 | 54 |
55 (defvar asm-mode-syntax-table nil | |
2670 | 56 "Syntax table used while in Asm mode.") |
473 | 57 |
58 (defvar asm-mode-abbrev-table nil | |
2670 | 59 "Abbrev table used while in Asm mode.") |
473 | 60 (define-abbrev-table 'asm-mode-abbrev-table ()) |
61 | |
62 (defvar asm-mode-map nil | |
2670 | 63 "Keymap for Asm mode.") |
473 | 64 |
65 (if asm-mode-map | |
66 nil | |
67 (setq asm-mode-map (make-sparse-keymap)) | |
68 (define-key asm-mode-map ";" 'asm-comment) | |
69 (define-key asm-mode-map ":" 'asm-colon) | |
70 (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
|
71 (define-key asm-mode-map "\C-j" 'asm-newline) |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
72 (define-key asm-mode-map "\C-m" 'asm-newline) |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
73 ) |
473 | 74 |
9385
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
75 (defconst asm-font-lock-keywords |
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
76 '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\)?" |
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
77 (1 font-lock-function-name-face) (3 font-lock-keyword-face nil t)) |
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
78 ("^\\s +\\(\\(\\sw\\|\\s_\\)+\\)" 1 font-lock-keyword-face)) |
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
79 "Additional expressions to highlight in Assembler mode.") |
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
80 |
473 | 81 (defvar asm-code-level-empty-comment-pattern nil) |
82 (defvar asm-flush-left-empty-comment-pattern nil) | |
83 (defvar asm-inline-empty-comment-pattern nil) | |
84 | |
85 ;;;###autoload | |
86 (defun asm-mode () | |
87 "Major mode for editing typical assembler code. | |
2670 | 88 Features a private abbrev table and the following bindings: |
473 | 89 |
90 \\[asm-colon]\toutdent a preceding label, tab to next tab stop. | |
91 \\[tab-to-tab-stop]\ttab to next tab stop. | |
92 \\[asm-newline]\tnewline, then tab to next tab stop. | |
93 \\[asm-comment]\tsmart placement of assembler comments. | |
94 | |
95 The character used for making comments is set by the variable | |
2670 | 96 `asm-comment-char' (which defaults to `?;'). |
473 | 97 |
2670 | 98 Alternatively, you may set this variable in `asm-set-comment-hook', which is |
473 | 99 called near the beginning of mode initialization. |
100 | |
2670 | 101 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. |
473 | 102 |
6469 | 103 Special commands: |
104 \\{asm-mode-map} | |
473 | 105 " |
106 (interactive) | |
107 (kill-all-local-variables) | |
108 (use-local-map asm-mode-map) | |
109 (setq mode-name "Assembler") | |
110 (setq major-mode 'asm-mode) | |
111 (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
|
112 (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
|
113 (setq font-lock-defaults '(asm-font-lock-keywords)) |
473 | 114 (make-local-variable 'asm-mode-syntax-table) |
115 (setq asm-mode-syntax-table (make-syntax-table)) | |
116 (set-syntax-table asm-mode-syntax-table) | |
117 (run-hooks 'asm-mode-set-comment-hook) | |
118 (modify-syntax-entry asm-comment-char | |
119 "<" asm-mode-syntax-table) | |
120 (modify-syntax-entry ?\n | |
121 ">" asm-mode-syntax-table) | |
122 (let ((cs (regexp-quote (char-to-string asm-comment-char)))) | |
123 (make-local-variable 'comment-start) | |
124 (setq comment-start (concat cs " ")) | |
125 (make-local-variable 'comment-start-skip) | |
126 (setq comment-start-skip (concat cs "+[ \t]*")) | |
127 (setq asm-inline-empty-comment-pattern (concat "^.+" cs "+ *$")) | |
128 (setq asm-code-level-empty-comment-pattern (concat "^[\t ]+" cs cs " *$")) | |
129 (setq asm-flush-left-empty-comment-pattern (concat "^" cs cs cs " *$")) | |
130 ) | |
131 (make-local-variable 'comment-end) | |
132 (setq comment-end "") | |
133 (make-local-variable 'comment-column) | |
134 (setq comment-column 32) | |
135 (setq fill-prefix "\t") | |
136 (run-hooks 'asm-mode-hook) | |
137 ) | |
138 | |
139 | |
140 (defun asm-colon () | |
141 "Insert a colon; if it follows a label, delete the label's indentation." | |
142 (interactive) | |
143 (save-excursion | |
144 (beginning-of-line) | |
145 (if (looking-at "[ \t]+\\(\\sw\\|\\s_\\)+$") | |
146 (delete-horizontal-space))) | |
147 (insert ":") | |
148 (tab-to-tab-stop) | |
149 ) | |
150 | |
151 (defun asm-newline () | |
152 "Insert LFD + fill-prefix, to bring us back to code-indent level." | |
153 (interactive) | |
154 (if (eolp) (delete-horizontal-space)) | |
155 (insert "\n") | |
156 (tab-to-tab-stop) | |
157 ) | |
158 | |
159 (defun asm-line-matches (pattern &optional withcomment) | |
160 (save-excursion | |
161 (beginning-of-line) | |
162 (looking-at pattern))) | |
163 | |
164 (defun asm-pop-comment-level () | |
165 ;; Delete an empty comment ending current line. Then set up for a new one, | |
166 ;; on the current line if it was all comment, otherwise above it | |
167 (end-of-line) | |
168 (delete-horizontal-space) | |
169 (while (= (preceding-char) asm-comment-char) | |
170 (delete-backward-char 1)) | |
171 (delete-horizontal-space) | |
172 (if (bolp) | |
173 nil | |
174 (beginning-of-line) | |
175 (open-line 1)) | |
176 ) | |
177 | |
178 | |
179 (defun asm-comment () | |
180 "Convert an empty comment to a `larger' kind, or start a new one. | |
181 These are the known comment classes: | |
182 | |
183 1 -- comment to the right of the code (at the comment-column) | |
184 2 -- comment on its own line, indented like code | |
185 3 -- comment on its own line, beginning at the left-most column. | |
186 | |
187 Suggested usage: while writing your code, trigger asm-comment | |
188 repeatedly until you are satisfied with the kind of comment." | |
189 (interactive) | |
190 (cond | |
191 | |
192 ;; Blank line? Then start comment at code indent level. | |
193 ((asm-line-matches "^[ \t]*$") | |
194 (delete-horizontal-space) | |
195 (tab-to-tab-stop) | |
196 (insert asm-comment-char comment-start)) | |
197 | |
198 ;; Nonblank line with no comment chars in it? | |
199 ;; 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
|
200 ((asm-line-matches (format "^[^%c\n]+$" asm-comment-char)) |
473 | 201 (indent-for-comment)) |
202 | |
203 ;; Flush-left comment present? Just insert character. | |
204 ((asm-line-matches asm-flush-left-empty-comment-pattern) | |
205 (insert asm-comment-char)) | |
206 | |
207 ;; Empty code-level comment already present? | |
208 ;; Then start flush-left comment, on line above if this one is nonempty. | |
209 ((asm-line-matches asm-code-level-empty-comment-pattern) | |
210 (asm-pop-comment-level) | |
211 (insert asm-comment-char asm-comment-char comment-start)) | |
212 | |
213 ;; Empty comment ends line? | |
214 ;; Then make code-level comment, on line above if this one is nonempty. | |
215 ((asm-line-matches asm-inline-empty-comment-pattern) | |
216 (asm-pop-comment-level) | |
217 (tab-to-tab-stop) | |
218 (insert asm-comment-char comment-start)) | |
219 | |
220 ;; If all else fails, insert character | |
221 (t | |
222 (insert asm-comment-char)) | |
223 | |
224 ) | |
225 (end-of-line)) | |
226 | |
227 ;;; asm-mode.el ends here |