Mercurial > emacs
annotate lisp/language/viet-util.el @ 24102:1086aa5db591
Major rewrite to support cleaner method of dumping; a
static "bss" section is used for heap space during preload, and
bss data is now written to the proper section area when dumping.
(need_to_recreate_heap): Renamed to using_dynamic_heap.
(heap_index_in_executable): Obsolete variable removed.
(data_section): New variable.
(data_start_va): Renamed to data_start.
(data_start_file): Obsolete variable removed.
(bss_section):
(extra_bss_size):
(bss_section_static):
(bss_start_static):
(bss_size_static):
(extra_bss_size_static):
(heap_section): New variables.
(_start): Remove code based on old unexec method. Call init_heap
to initialize sbrk heap.
(close_file_data): Update size of file when closing, so that
unexec doesn't have to work out exact size in advance.
(get_bss_info_from_map_file):
(get_section_size): Obsolete functions removed.
(rva_to_section): Fix minor bug, and add a work-around for a bug
in very old linkers.
(offset_to_section):
(relocate_offset): New functions.
(OFFSET_TO_RVA):
(RVA_TO_OFFSET):
(RVA_TO_SECTION_OFFSET):
(PTR_TO_RVA):
(PTR_TO_OFFSET):
(OFFSET_TO_PTR): New macros.
(get_section_info): Modify to support new unexec method;
determines address ranges in process that need dumping, and COFF
sections where data will be dumped. Allows for static and global
bss data to be in separate ranges. No longer relies on knowledge
of section names.
(copy_executable_and_dump_data_section): Renamed
copy_executable_and_dump_data. Completely rewritten to copy
executable section by section, so that raw data areas can be
expanded to hold dumped data as necessary. Allows for bss data to
be in same section as initialized data. Reduces size of static
heap section to that used during preload.
(dump_bss_and_heap):
(w32_fatal_reload_error):
(read_in_bss):
(map_in_heap): Obsolete functions removed.
(unexec): Rounds off preload heap to nearest page rather than
virtual allocation unit. Modified to match other changes.
author | Andrew Innes <andrewi@gnu.org> |
---|---|
date | Sun, 17 Jan 1999 19:21:24 +0000 |
parents | e54fbf58812f |
children | 60eb71a9f901 |
rev | line source |
---|---|
17315
a3ca5e15c82a
Fix the format of the first line.
Kenichi Handa <handa@m17n.org>
parents:
17171
diff
changeset
|
1 ;;; viet-util.el --- utilities for Vietnamese |
17052 | 2 |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
18377
8b4a66c66dd6
Change copyright notice.
Richard M. Stallman <rms@gnu.org>
parents:
18309
diff
changeset
|
4 ;; Licensed to the Free Software Foundation. |
17052 | 5 |
6 ;; Keywords: mule, multilingual, Vietnamese | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs 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 ;; GNU Emacs 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 | |
17071 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
17052 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; Vietnamese uses ASCII characters and additional 134 unique | |
28 ;; characters (these are Latin alphabets with various diacritical and | |
29 ;; tone marks). As far as I know, Vietnamese now has 4 different ways | |
30 ;; for representing these characters: VISCII, VSCII, VIQR, and | |
31 ;; Unicode. VISCII and VSCII are simple 1-byte code which assigns 134 | |
32 ;; unique characters in control-code area (0x00..0x1F) and right half | |
33 ;; area (0x80..0xFF). VIQR is a menmonic encoding specification | |
34 ;; representing diacritical marks by following ASCII characters. | |
35 | |
36 ;;; Code: | |
37 | |
18970
5bbc07f4c61e
(setup-vietnamese-environment): Add autoload cookie.
Kenichi Handa <handa@m17n.org>
parents:
18552
diff
changeset
|
38 ;;;###autoload |
22880
125bb37b2e27
(viet-encode-viscii-char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20738
diff
changeset
|
39 (defun viet-encode-viscii-char (char) |
125bb37b2e27
(viet-encode-viscii-char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20738
diff
changeset
|
40 "Return VISCII character code of CHAR if appropriate." |
125bb37b2e27
(viet-encode-viscii-char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20738
diff
changeset
|
41 (aref (char-table-extra-slot viet-viscii-nonascii-translation-table 0) |
125bb37b2e27
(viet-encode-viscii-char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20738
diff
changeset
|
42 char)) |
125bb37b2e27
(viet-encode-viscii-char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20738
diff
changeset
|
43 |
125bb37b2e27
(viet-encode-viscii-char): New function.
Kenichi Handa <handa@m17n.org>
parents:
20738
diff
changeset
|
44 ;;;###autoload |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17777
diff
changeset
|
45 (defun setup-vietnamese-environment () |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
46 "Setup multilingual environment (MULE) for Vietnamese VISCII users." |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17777
diff
changeset
|
47 (interactive) |
22987
708271862495
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22880
diff
changeset
|
48 (set-language-environment "Vietnamese")) |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17777
diff
changeset
|
49 |
17052 | 50 ;; VIQR is a menmonic encoding specification for Vietnamese. |
51 ;; It represents diacritical marks by ASCII characters as follows: | |
52 ;; ------------+----------+-------- | |
53 ;; mark | mnemonic | example | |
54 ;; ------------+----------+--------- | |
55 ;; breve | ( | a( -> ,1e(B | |
56 ;; circumflex | ^ | a^ -> ,1b(B | |
57 ;; horn | + | o+ -> ,1=(B | |
58 ;; ------------+----------+--------- | |
59 ;; acute | ' | a' -> ,1a(B | |
60 ;; grave | ` | a` -> ,1`(B | |
61 ;; hook above | ? | a? -> ,1d(B | |
62 ;; tilde | ~ | a~ -> ,1c(B | |
63 ;; dot below | . | a. -> ,1U(B | |
64 ;; ------------+----------+--------- | |
65 ;; d bar | dd | dd -> ,1p(B | |
66 ;; ------------+----------+--------- | |
67 | |
68 (defvar viet-viqr-alist | |
69 '(;; lowercase | |
70 (?,1!(B . "a('") ; 161 | |
71 (?,1"(B . "a(`") ; 162 | |
72 (?,1#(B . "a(.") ; 163 | |
73 (?,1$(B . "a^'") ; 164 | |
74 (?,1%(B . "a^`") ; 165 | |
75 (?,1&(B . "a^?") ; 166 | |
76 (?,1'(B . "a^.") ; 167 | |
77 (?,1((B . "e~") ; 168 | |
78 (?,1)(B . "e.") ; 169 | |
79 (?,1*(B . "e^'") ; 170 | |
80 (?,1+(B . "e^`") ; 171 | |
81 (?,1,(B . "e^?") ; 172 | |
82 (?,1-(B . "e^~") ; 173 | |
83 (?,1.(B . "e^.") ; 174 | |
84 (?,1/(B . "o^'") ; 175 | |
85 (?,10(B . "o^`") ; 176 | |
86 (?,11(B . "o^?") ; 177 | |
87 (?,12(B . "o^~") ; 178 | |
88 (?,15(B . "o^.") ; 181 | |
89 (?,16(B . "o+`") ; 182 | |
90 (?,17(B . "o+?") ; 183 | |
91 (?,18(B . "i.") ; 184 | |
92 (?,1=(B . "o+") ; 189 | |
93 (?,1>(B . "o+'") ; 190 | |
94 (?,1F(B . "a(?") ; 198 | |
95 (?,1G(B . "a(~") ; 199 | |
96 (?,1O(B . "y`") ; 207 | |
97 (?,1Q(B . "u+'") ; 209 | |
98 (?,1U(B . "a.") ; 213 | |
99 (?,1V(B . "y?") ; 214 | |
100 (?,1W(B . "u+`") ; 215 | |
101 (?,1X(B . "u+?") ; 216 | |
102 (?,1[(B . "y~") ; 219 | |
103 (?,1\(B . "y.") ; 220 | |
104 (?,1^(B . "o+~") ; 222 | |
105 (?,1_(B . "u+") ; 223 | |
106 (?,1`(B . "a`") ; 224 | |
107 (?,1a(B . "a'") ; 225 | |
108 (?,1b(B . "a^") ; 226 | |
109 (?,1c(B . "a~") ; 227 | |
110 (?,1d(B . "a?") ; 228 | |
111 (?,1e(B . "a(") ; 229 | |
112 (?,1f(B . "u+~") ; 230 | |
113 (?,1g(B . "a^~") ; 231 | |
114 (?,1h(B . "e`") ; 232 | |
115 (?,1i(B . "e'") ; 233 | |
116 (?,1j(B . "e^") ; 234 | |
117 (?,1k(B . "e?") ; 235 | |
118 (?,1l(B . "i`") ; 236 | |
119 (?,1m(B . "i'") ; 237 | |
120 (?,1n(B . "i~") ; 238 | |
121 (?,1o(B . "i?") ; 239 | |
122 (?,1p(B . "dd") ; 240 | |
123 (?,1q(B . "u+.") ; 241 | |
124 (?,1r(B . "o`") ; 242 | |
125 (?,1s(B . "o'") ; 243 | |
126 (?,1t(B . "o^") ; 244 | |
127 (?,1u(B . "o~") ; 245 | |
128 (?,1v(B . "o?") ; 246 | |
129 (?,1w(B . "o.") ; 247 | |
130 (?,1x(B . "u.") ; 248 | |
131 (?,1y(B . "u`") ; 249 | |
132 (?,1z(B . "u'") ; 250 | |
133 (?,1{(B . "u~") ; 251 | |
134 (?,1|(B . "u?") ; 252 | |
135 (?,1}(B . "y'") ; 253 | |
136 (?,1~(B . "o+.") ; 254 | |
137 | |
138 ;; upper case | |
139 (?,2!(B . "A('") ; 161 | |
140 (?,2"(B . "A(`") ; 162 | |
141 (?,2#(B . "A(.") ; 163 | |
142 (?,2$(B . "A^'") ; 164 | |
143 (?,2%(B . "A^`") ; 165 | |
144 (?,2&(B . "A^?") ; 166 | |
145 (?,2'(B . "A^.") ; 167 | |
146 (?,2((B . "E~") ; 168 | |
147 (?,2)(B . "E.") ; 169 | |
148 (?,2*(B . "E^'") ; 170 | |
149 (?,2+(B . "E^`") ; 171 | |
150 (?,2,(B . "E^?") ; 172 | |
151 (?,2-(B . "E^~") ; 173 | |
152 (?,2.(B . "E^.") ; 174 | |
153 (?,2/(B . "O^'") ; 175 | |
154 (?,20(B . "O^`") ; 176 | |
155 (?,21(B . "O^?") ; 177 | |
156 (?,22(B . "O^~") ; 178 | |
157 (?,25(B . "O^.") ; 181 | |
158 (?,26(B . "O+`") ; 182 | |
159 (?,27(B . "O+?") ; 183 | |
160 (?,28(B . "I.") ; 184 | |
161 (?,2=(B . "O+") ; 189 | |
162 (?,2>(B . "O+'") ; 190 | |
163 (?,2F(B . "A(?") ; 198 | |
164 (?,2G(B . "A(~") ; 199 | |
165 (?,2O(B . "Y`") ; 207 | |
166 (?,2Q(B . "U+'") ; 209 | |
167 (?,2U(B . "A.") ; 213 | |
168 (?,2V(B . "Y?") ; 214 | |
169 (?,2W(B . "U+`") ; 215 | |
170 (?,2X(B . "U+?") ; 216 | |
171 (?,2[(B . "Y~") ; 219 | |
172 (?,2\(B . "Y.") ; 220 | |
173 (?,2^(B . "O+~") ; 222 | |
174 (?,2_(B . "U+") ; 223 | |
175 (?,2`(B . "A`") ; 224 | |
176 (?,2a(B . "A'") ; 225 | |
177 (?,2b(B . "A^") ; 226 | |
178 (?,2c(B . "A~") ; 227 | |
179 (?,2d(B . "A?") ; 228 | |
180 (?,2e(B . "A(") ; 229 | |
181 (?,2f(B . "U+~") ; 230 | |
182 (?,2g(B . "A^~") ; 231 | |
183 (?,2h(B . "E`") ; 232 | |
184 (?,2i(B . "E'") ; 233 | |
185 (?,2j(B . "E^") ; 234 | |
186 (?,2k(B . "E?") ; 235 | |
187 (?,2l(B . "I`") ; 236 | |
188 (?,2m(B . "I'") ; 237 | |
189 (?,2n(B . "I~") ; 238 | |
190 (?,2o(B . "I?") ; 239 | |
191 (?,2p(B . "DD") ; 240 | |
192 (?,2p(B . "dD") ; 240 | |
193 (?,2p(B . "Dd") ; 240 | |
194 (?,2q(B . "U+.") ; 241 | |
195 (?,2r(B . "O`") ; 242 | |
196 (?,2s(B . "O'") ; 243 | |
197 (?,2t(B . "O^") ; 244 | |
198 (?,2u(B . "O~") ; 245 | |
199 (?,2v(B . "O?") ; 246 | |
200 (?,2w(B . "O.") ; 247 | |
201 (?,2x(B . "U.") ; 248 | |
202 (?,2y(B . "U`") ; 249 | |
203 (?,2z(B . "U'") ; 250 | |
204 (?,2{(B . "U~") ; 251 | |
205 (?,2|(B . "U?") ; 252 | |
206 (?,2}(B . "Y'") ; 253 | |
207 (?,2~(B . "O+.") ; 254 | |
208 | |
209 ;; escape from composition | |
210 (?\( . "\\(") ; breve (left parenthesis) | |
211 (?^ . "\\^") ; circumflex (caret) | |
212 (?+ . "\\+") ; horn (plus sign) | |
213 (?' . "\\'") ; acute (apostrophe) | |
214 (?` . "\\`") ; grave (backquote) | |
215 (?? . "\\?") ; hook above (question mark) | |
216 (?~ . "\\~") ; tilde (tilde) | |
217 (?. . "\\.") ; dot below (period) | |
218 (?d . "\\d") ; d-bar (d) | |
219 (?\\ . "\\\\") ; literal backslash | |
220 ) | |
221 "Alist of Vietnamese characters vs corresponding `VIQR' string.") | |
222 | |
223 ;; Regular expression matching single Vietnamese character represented | |
224 ;; by VIQR. | |
225 (defconst viqr-regexp | |
226 "[aeiouyAEIOUY]\\([(^+]?['`?~.]\\|[(^+]\\)\\|[Dd][Dd]") | |
227 | |
228 ;;;###autoload | |
229 (defun viet-decode-viqr-region (from to) | |
230 "Convert `VIQR' mnemonics of the current region to Vietnamese characaters. | |
231 When called from a program, expects two arguments, | |
232 positions (integers or markers) specifying the stretch of the region." | |
233 (interactive "r") | |
234 (save-restriction | |
235 (narrow-to-region from to) | |
236 (goto-char (point-min)) | |
237 (while (re-search-forward viqr-regexp nil t) | |
238 (let* ((viqr (buffer-substring (match-beginning 0) (match-end 0))) | |
17171
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
239 (ch (car (rassoc viqr viet-viqr-alist)))) |
17052 | 240 (if ch |
241 (progn | |
242 (delete-region (match-beginning 0) (match-end 0)) | |
243 (insert ch))))))) | |
244 | |
245 ;;;###autoload | |
246 (defun viet-decode-viqr-buffer () | |
247 "Convert `VIQR' mnemonics of the current buffer to Vietnamese characaters." | |
248 (interactive) | |
249 (viet-decode-viqr-region (point-min) (point-max))) | |
250 | |
251 ;;;###autoload | |
252 (defun viet-encode-viqr-region (from to) | |
253 "Convert Vietnamese characaters of the current region to `VIQR' mnemonics. | |
254 When called from a program, expects two arguments, | |
255 positions (integers or markers) specifying the stretch of the region." | |
256 (interactive "r") | |
257 (save-restriction | |
258 (narrow-to-region from to) | |
259 (goto-char (point-min)) | |
260 (while (re-search-forward "\\cv" nil t) | |
261 (let* ((ch (preceding-char)) | |
17171
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
262 (viqr (cdr (assq ch viet-viqr-alist)))) |
17052 | 263 (if viqr |
264 (progn | |
265 (delete-char -1) | |
266 (insert viqr))))))) | |
267 | |
268 ;;;###autoload | |
269 (defun viet-encode-viqr-buffer () | |
270 "Convert Vietnamese characaters of the current buffer to `VIQR' mnemonics." | |
271 (interactive) | |
272 (viet-encode-viqr-region (point-min) (point-max))) | |
273 | |
17171
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
274 ;;;###autoload |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
275 (defun viqr-post-read-conversion (len) |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
276 (save-excursion |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
277 (save-restriction |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
278 (narrow-to-region (point) (+ (point) len)) |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
279 (let ((buffer-modified-p (buffer-modified-p))) |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
280 (viet-decode-viqr-region (point-min) (point-max)) |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
281 (set-buffer-modified-p buffer-modified-p) |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
282 (- (point-max) (point-min)))))) |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
283 |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
284 ;;;###autoload |
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
285 (defun viqr-pre-write-conversion (from to) |
23521
616acf65d243
(viqr-pre-write-conversion): Use with-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
22987
diff
changeset
|
286 (let ((old-buf (current-buffer))) |
23544
e54fbf58812f
(viqr-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23521
diff
changeset
|
287 (set-buffer (generate-new-buffer " *temp*")) |
e54fbf58812f
(viqr-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23521
diff
changeset
|
288 (if (stringp from) |
e54fbf58812f
(viqr-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23521
diff
changeset
|
289 (insert from) |
e54fbf58812f
(viqr-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23521
diff
changeset
|
290 (insert-buffer-substring old-buf from to)) |
e54fbf58812f
(viqr-pre-write-conversion): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23521
diff
changeset
|
291 (viet-encode-viqr-region (point-min) (point-max)) |
17777
081f940a8d1f
(viqr-pre-write-conversion): Make it work
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
292 ;; Should return nil as annotations. |
081f940a8d1f
(viqr-pre-write-conversion): Make it work
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
293 nil)) |
17171
6f95d429f32d
(viet-decode-viqr-region): Supply correct
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
294 |
17052 | 295 ;;; |
18309
bd8b521f5218
Provide XXX-util instead of
Kenichi Handa <handa@m17n.org>
parents:
18203
diff
changeset
|
296 (provide 'viet-util) |
17052 | 297 |
298 ;;; viet-util.el ends here |