]> code.delx.au - gnu-emacs/blob - lisp/progmodes/ld-script.el
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97
[gnu-emacs] / lisp / progmodes / ld-script.el
1 ;;; ld-script.el --- GNU linker script editing mode for Emacs
2
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4
5 ;; Author: Masatake YAMATO<jet@gyve.org>
6 ;; Keywords: languages, faces
7
8 ;; This file is part of GNU Emacs.
9
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
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; Major mode for editing GNU linker (ld) scripts.
28
29 ;;; Code:
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
37 (defvar ld-script-location-counter-face 'ld-script-location-counter)
38 (defface ld-script-location-counter
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
44 (defvar ld-script-mode-syntax-table
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
76 (defvar ld-script-keywords
77 '("ENTRY" "INCLUDE" "INPUT" "GROUP"
78 "OUTPUT" "SEARCH_DIR" "STARTUP"
79 "OUTPUT_FORMAT" "TARGET"
80 "ASSERT" "EXTERN" "FORCE_COMMON_ALLOCATION" "NOCROSSREFS" "OUTPUT_ARCH"
81 "PROVIDE"
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
95 (defvar ld-script-builtins
96 '("ABSOLUTE"
97 "ADDR"
98 "ALIGN"
99 "BLOCK"
100 "DATA_SEGMENT_ALIGN"
101 "DATA_SEGMENT_END"
102 "DATA_SEGMENT_RELRO_END"
103 "DEFINED"
104 "LENGTH"
105 "LOADADDR"
106 "MAX"
107 "MIN"
108 "NEXT"
109 "ORIGIN"
110 "SEGMENT_START"
111 "SIZEOF"
112 "SIZEOF_HEADERS"
113 "sizeof_headers")
114 "Builtin functions of GNU ld script.")
115
116 (defvar ld-script-font-lock-keywords
117 (append
118 `((,(regexp-opt ld-script-keywords 'words)
119 1 font-lock-keyword-face)
120 (,(regexp-opt ld-script-builtins 'words)
121 1 font-lock-builtin-face)
122 ("/DISCARD/" . font-lock-warning-face)
123 ("\\W\\(\\.\\)\\W" 1 ld-script-location-counter-face)
124 )
125 cpp-font-lock-keywords)
126 "Default font-lock-keywords for `ld-script-mode'.")
127
128 ;; Linux-2.6.9 uses some different suffix for linker scripts:
129 ;; "ld", "lds", "lds.S", "lds.in", "ld.script", and "ld.script.balo".
130 ;; eCos uses "ld" and "ldi".
131 ;; Netbsd uses "ldscript.*".
132 ;;;###autoload
133 (add-to-list 'auto-mode-alist '("\\.ld[si]?\\>" . ld-script-mode))
134 (add-to-list 'auto-mode-alist '("ld\\.?script\\>" . ld-script-mode))
135
136 ;;;###autoload
137 (add-to-list 'auto-mode-alist '("\\.x[bdsru]?[cn]?\\'" . ld-script-mode))
138
139 ;;;###autoload
140 (define-derived-mode ld-script-mode nil "LD-Script"
141 "A major mode to edit GNU ld script files"
142 (set (make-local-variable 'comment-start) "/* ")
143 (set (make-local-variable 'comment-end) " */")
144 (set (make-local-variable 'font-lock-defaults)
145 '(ld-script-font-lock-keywords nil)))
146
147 (provide 'ld-script)
148
149 ;; arch-tag: 83280b6b-e6fc-4d00-a630-922d7aec5593
150 ;;; ld-script.el ends here