Mercurial > emacs
annotate lisp/progmodes/ld-script.el @ 66934:f24fb79ea180
(savehist-mode-hook): Re-add the var.
(savehist-mode): Use it.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 16 Nov 2005 17:20:25 +0000 |
parents | 11e1b8967398 |
children | eb21ba2b7c0b |
rev | line source |
---|---|
52304 | 1 ;;; ld-script.el --- GNU linker script editing mode for Emacs |
2 | |
64699
629afbe74e61
Update copyright for release of 22.1 for progmodes directory.
Nick Roberts <nickrob@snap.net.nz>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
52304 | 4 |
5 ;; Author: Masatake YAMATO<jet@gyve.org> | |
6 ;; Keywords: languages, faces | |
7 | |
52563
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
9 |
52304 | 10 ;; This program is free software; you can redistribute it and/or modify |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; This program is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with this program; see the file COPYING. If not, write to the | |
64085 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
52304 | 24 |
52563
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
25 ;;; Commentary: |
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
26 |
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
27 ;; Major mode for editing GNU linker (ld) scripts. |
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
28 |
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
29 ;;; Code: |
52304 | 30 |
31 ;; Custom | |
32 (defgroup ld-script nil | |
33 "GNU linker script code editing commands for Emacs." | |
34 :prefix "ld-script-" | |
35 :group 'languages) | |
36 | |
63459
fe2fc708f3ef
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-419
Miles Bader <miles@gnu.org>
parents:
52563
diff
changeset
|
37 (defvar ld-script-location-counter-face 'ld-script-location-counter) |
fe2fc708f3ef
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-419
Miles Bader <miles@gnu.org>
parents:
52563
diff
changeset
|
38 (defface ld-script-location-counter |
52304 | 39 '((t (:weight bold :inherit font-lock-builtin-face))) |
40 "Face for location counter in GNU ld script." | |
41 :group 'ld-script) | |
42 | |
43 ;; Syntax rules | |
52563
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
44 (defvar ld-script-mode-syntax-table |
52304 | 45 (let ((st (make-syntax-table))) |
46 (modify-syntax-entry ?\ "-" st) | |
47 (modify-syntax-entry ?{ "(}" st) | |
48 (modify-syntax-entry ?} "){" st) | |
49 (modify-syntax-entry ?\( "()" st) | |
50 (modify-syntax-entry ?\) ")(" st) | |
51 (modify-syntax-entry ?\[ "(]" st) | |
52 (modify-syntax-entry ?\] ")[" st) | |
53 (modify-syntax-entry ?_ "w" st) | |
54 (modify-syntax-entry ?. "_" st) | |
55 (modify-syntax-entry ?\\ "\\" st) | |
56 (modify-syntax-entry ?: "." st) | |
57 (modify-syntax-entry ?, "." st) | |
58 (modify-syntax-entry ?? "." st) | |
59 (modify-syntax-entry ?= "." st) | |
60 (modify-syntax-entry ?* ". 23" st) | |
61 (modify-syntax-entry ?/ ". 14" st) | |
62 (modify-syntax-entry ?+ "." st) | |
63 (modify-syntax-entry ?- "." st) | |
64 (modify-syntax-entry ?! "." st) | |
65 (modify-syntax-entry ?~ "." st) | |
66 (modify-syntax-entry ?% "." st) | |
67 (modify-syntax-entry ?< "." st) | |
68 (modify-syntax-entry ?> "." st) | |
69 (modify-syntax-entry ?& "." st) | |
70 (modify-syntax-entry ?| "." st) | |
71 (modify-syntax-entry ?\" "\"" st) | |
72 st) | |
73 "Syntax table used while in `ld-script-mode'.") | |
74 | |
75 ;; Font lock keywords | |
52563
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
76 (defvar ld-script-keywords |
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
77 '("ENTRY" "INCLUDE" "INPUT" "GROUP" |
52304 | 78 "OUTPUT" "SEARCH_DIR" "STARTUP" |
79 "OUTPUT_FORMAT" "TARGET" | |
80 "ASSERT" "EXTERN" "FORCE_COMMON_ALLOCATION" "NOCROSSREFS" "OUTPUT_ARCH" | |
52563
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
81 "PROVIDE" |
52304 | 82 "SECTIONS" "SORT" "COMMON" "KEEP" |
83 "BYTE" "SHORT" "LONG" "QUAD" "SQAD" | |
84 "FILL" | |
85 "CREATE_OBJECT_SYMBOLS" | |
86 "CONSTRUCTORS" | |
87 "NOLOAD" "DSECT" "COPY" "INFO" "OVERLAY" | |
88 "AT" | |
89 "MEMORY" | |
90 "PHDRS" "FILEHDR" "FLAGS" | |
91 "PT_NULL" "PT_LOAD" "PT_DYNAMIC" "PT_INTERP" "PT_NONE" "PT_SHLIB" "PT_PHDR" | |
92 "VERSION") | |
93 "Keywords used of GNU ld script.") | |
94 | |
52563
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
95 (defvar ld-script-builtins |
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
96 '("ABSOLUTE" |
52304 | 97 "ADDR" |
98 "ALIGN" | |
99 "BLOCK" | |
66613
11e1b8967398
(ld-script-builtins): Add more words: "DATA_SEGMENT_ALIGN",
Masatake YAMATO <jet@gyve.org>
parents:
64993
diff
changeset
|
100 "DATA_SEGMENT_ALIGN" |
11e1b8967398
(ld-script-builtins): Add more words: "DATA_SEGMENT_ALIGN",
Masatake YAMATO <jet@gyve.org>
parents:
64993
diff
changeset
|
101 "DATA_SEGMENT_END" |
11e1b8967398
(ld-script-builtins): Add more words: "DATA_SEGMENT_ALIGN",
Masatake YAMATO <jet@gyve.org>
parents:
64993
diff
changeset
|
102 "DATA_SEGMENT_RELRO_END" |
52304 | 103 "DEFINED" |
66613
11e1b8967398
(ld-script-builtins): Add more words: "DATA_SEGMENT_ALIGN",
Masatake YAMATO <jet@gyve.org>
parents:
64993
diff
changeset
|
104 "LENGTH" |
52304 | 105 "LOADADDR" |
106 "MAX" | |
107 "MIN" | |
108 "NEXT" | |
66613
11e1b8967398
(ld-script-builtins): Add more words: "DATA_SEGMENT_ALIGN",
Masatake YAMATO <jet@gyve.org>
parents:
64993
diff
changeset
|
109 "ORIGIN" |
11e1b8967398
(ld-script-builtins): Add more words: "DATA_SEGMENT_ALIGN",
Masatake YAMATO <jet@gyve.org>
parents:
64993
diff
changeset
|
110 "SEGMENT_START" |
52304 | 111 "SIZEOF" |
112 "SIZEOF_HEADERS" | |
113 "sizeof_headers") | |
114 "Builtin functions of GNU ld script.") | |
115 | |
116 (defvar ld-script-font-lock-keywords | |
117 `((,(regexp-opt ld-script-keywords 'words) | |
118 1 font-lock-keyword-face) | |
119 (,(regexp-opt ld-script-builtins 'words) | |
120 1 font-lock-builtin-face) | |
121 ("/DISCARD/" . font-lock-warning-face) | |
122 ("##\\|#[^#\n]+$" . font-lock-preprocessor-face) | |
123 ("\\W\\(\\.\\)\\W" 1 ld-script-location-counter-face) | |
124 ) | |
52563
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
125 "Default font-lock-keywords for `ld-script-mode'.") |
52304 | 126 |
127 ;;;###autoload | |
66613
11e1b8967398
(ld-script-builtins): Add more words: "DATA_SEGMENT_ALIGN",
Masatake YAMATO <jet@gyve.org>
parents:
64993
diff
changeset
|
128 (add-to-list 'auto-mode-alist '("\\.ld[s]?\\(\\.in\\)?$" . ld-script-mode)) |
52304 | 129 |
130 ;;;###autoload | |
131 (define-derived-mode ld-script-mode nil "LD-Script" | |
132 "A major mode to edit GNU ld script files" | |
133 (set (make-local-variable 'comment-start) "/* ") | |
134 (set (make-local-variable 'comment-end) " */") | |
135 (set (make-local-variable 'indent-line-function) #'indent-relative) | |
136 (set (make-local-variable 'font-lock-defaults) '(ld-script-font-lock-keywords nil))) | |
137 | |
52563
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
138 (provide 'ld-script) |
2cb7c7b883e5
Add Commentary section, minor cleanup of file header.
John Paul Wallington <jpw@pobox.com>
parents:
52401
diff
changeset
|
139 |
52401 | 140 ;;; arch-tag: 83280b6b-e6fc-4d00-a630-922d7aec5593 |
52304 | 141 ;;; ld-script.el ends here |