Mercurial > emacs
annotate lisp/international/ccl.el @ 80407:5f25ace3fc90
* emacs-lisp/find-func.el (find-function-search-for-symbol):
Strip extension from .emacs.el to make sure symbol is searched
in .emacs too.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Mon, 31 Mar 2008 22:11:58 +0000 |
parents | b6fdfff4ae81 |
children | 606f2d163a64 |
rev | line source |
---|---|
17315
a3ca5e15c82a
Fix the format of the first line.
Kenichi Handa <handa@m17n.org>
parents:
17297
diff
changeset
|
1 ;;; ccl.el --- CCL (Code Conversion Language) compiler |
17052 | 2 |
74544 | 3 ;; Copyright (C) 1997, 1998, 2001, 2002, 2003, 2004, 2005, |
79709 | 4 ;; 2006, 2007, 2008 Free Software Foundation, Inc. |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
74544
diff
changeset
|
5 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
79709 | 6 ;; 2005, 2006, 2007, 2008 |
62274 | 7 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
8 ;; Registration Number H14PRO021 | |
17052 | 9 |
10 ;; Keywords: CCL, mule, multilingual, character set, coding-system | |
11 | |
12 ;; This file is part of GNU Emacs. | |
13 | |
14 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
15 ;; it under the terms of the GNU General Public License as published by | |
78310
2daf9c28b3a4
Restore comma mistakenly removed in last change.
Glenn Morris <rgm@gnu.org>
parents:
78301
diff
changeset
|
16 ;; the Free Software Foundation; either version 3, or (at your option) |
17052 | 17 ;; any later version. |
18 | |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
17071 | 25 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
27 ;; Boston, MA 02110-1301, USA. | |
17052 | 28 |
29 ;;; Commentary: | |
30 | |
31 ;; CCL (Code Conversion Language) is a simple programming language to | |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
32 ;; be used for various kind of code conversion. A CCL program is |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
33 ;; compiled to CCL code (vector of integers) and executed by the CCL |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
34 ;; interpreter in Emacs. |
17052 | 35 ;; |
36 ;; CCL is used for code conversion at process I/O and file I/O for | |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
37 ;; non-standard coding-systems. In addition, it is used for |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
38 ;; calculating code points of X fonts from character codes. |
17052 | 39 ;; However, since CCL is designed as a powerful programming language, |
40 ;; it can be used for more generic calculation. For instance, | |
41 ;; combination of three or more arithmetic operations can be | |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
42 ;; calculated faster than in Emacs Lisp. |
17052 | 43 ;; |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
44 ;; The syntax and semantics of CCL programs are described in the |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
45 ;; documentation of `define-ccl-program'. |
17052 | 46 |
47 ;;; Code: | |
48 | |
21645 | 49 (defgroup ccl nil |
50 "CCL (Code Conversion Language) compiler." | |
51 :prefix "ccl-" | |
52 :group 'i18n) | |
53 | |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
54 (defconst ccl-command-table |
17052 | 55 [if branch loop break repeat write-repeat write-read-repeat |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
56 read read-if read-branch write call end |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
57 read-multibyte-character write-multibyte-character |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
58 translate-character |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
59 iterate-multiple-map map-multiple map-single lookup-integer |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
60 lookup-character] |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
61 "Vector of CCL commands (symbols).") |
17052 | 62 |
63 ;; Put a property to each symbol of CCL commands for the compiler. | |
64 (let (op (i 0) (len (length ccl-command-table))) | |
65 (while (< i len) | |
66 (setq op (aref ccl-command-table i)) | |
67 (put op 'ccl-compile-function (intern (format "ccl-compile-%s" op))) | |
68 (setq i (1+ i)))) | |
69 | |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
70 (defconst ccl-code-table |
17052 | 71 [set-register |
72 set-short-const | |
73 set-const | |
74 set-array | |
75 jump | |
76 jump-cond | |
77 write-register-jump | |
78 write-register-read-jump | |
79 write-const-jump | |
80 write-const-read-jump | |
81 write-string-jump | |
82 write-array-read-jump | |
83 read-jump | |
84 branch | |
85 read-register | |
86 write-expr-const | |
87 read-branch | |
88 write-register | |
89 write-expr-register | |
90 call | |
91 write-const-string | |
92 write-array | |
93 end | |
94 set-assign-expr-const | |
95 set-assign-expr-register | |
96 set-expr-const | |
97 set-expr-register | |
98 jump-cond-expr-const | |
99 jump-cond-expr-register | |
100 read-jump-cond-expr-const | |
101 read-jump-cond-expr-register | |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
102 ex-cmd |
17052 | 103 ] |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
104 "Vector of CCL compiled codes (symbols).") |
17052 | 105 |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
106 (defconst ccl-extended-code-table |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
107 [read-multibyte-character |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
108 write-multibyte-character |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
109 translate-character |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
110 translate-character-const-tbl |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
111 nil nil nil nil nil nil nil nil nil nil nil nil ; 0x04-0x0f |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
112 iterate-multiple-map |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
113 map-multiple |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
114 map-single |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
115 lookup-int-const-tbl |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
116 lookup-char-const-tbl |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
117 ] |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
118 "Vector of CCL extended compiled codes (symbols).") |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
119 |
17052 | 120 ;; Put a property to each symbol of CCL codes for the disassembler. |
121 (let (code (i 0) (len (length ccl-code-table))) | |
122 (while (< i len) | |
123 (setq code (aref ccl-code-table i)) | |
124 (put code 'ccl-code i) | |
125 (put code 'ccl-dump-function (intern (format "ccl-dump-%s" code))) | |
126 (setq i (1+ i)))) | |
127 | |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
128 (let (code (i 0) (len (length ccl-extended-code-table))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
129 (while (< i len) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
130 (setq code (aref ccl-extended-code-table i)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
131 (if code |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
132 (progn |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
133 (put code 'ccl-ex-code i) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
134 (put code 'ccl-dump-function (intern (format "ccl-dump-%s" code))))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
135 (setq i (1+ i)))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
136 |
17052 | 137 (defconst ccl-jump-code-list |
138 '(jump jump-cond write-register-jump write-register-read-jump | |
139 write-const-jump write-const-read-jump write-string-jump | |
140 write-array-read-jump read-jump)) | |
141 | |
142 ;; Put a property `jump-flag' to each CCL code which execute jump in | |
143 ;; some way. | |
144 (let ((l ccl-jump-code-list)) | |
145 (while l | |
146 (put (car l) 'jump-flag t) | |
147 (setq l (cdr l)))) | |
148 | |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
149 (defconst ccl-register-table |
17052 | 150 [r0 r1 r2 r3 r4 r5 r6 r7] |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
151 "Vector of CCL registers (symbols).") |
17052 | 152 |
153 ;; Put a property to indicate register number to each symbol of CCL. | |
154 ;; registers. | |
155 (let (reg (i 0) (len (length ccl-register-table))) | |
156 (while (< i len) | |
157 (setq reg (aref ccl-register-table i)) | |
158 (put reg 'ccl-register-number i) | |
159 (setq i (1+ i)))) | |
160 | |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
161 (defconst ccl-arith-table |
17052 | 162 [+ - * / % & | ^ << >> <8 >8 // nil nil nil |
163 < > == <= >= != de-sjis en-sjis] | |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
164 "Vector of CCL arithmetic/logical operators (symbols).") |
17052 | 165 |
166 ;; Put a property to each symbol of CCL operators for the compiler. | |
167 (let (arith (i 0) (len (length ccl-arith-table))) | |
168 (while (< i len) | |
169 (setq arith (aref ccl-arith-table i)) | |
170 (if arith (put arith 'ccl-arith-code i)) | |
171 (setq i (1+ i)))) | |
172 | |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
173 (defconst ccl-assign-arith-table |
17052 | 174 [+= -= *= /= %= &= |= ^= <<= >>= <8= >8= //=] |
21977
fe7ef7cd642a
Cancel the previous change for
Kenichi Handa <handa@m17n.org>
parents:
21669
diff
changeset
|
175 "Vector of CCL assignment operators (symbols).") |
17052 | 176 |
177 ;; Put a property to each symbol of CCL assignment operators for the compiler. | |
178 (let (arith (i 0) (len (length ccl-assign-arith-table))) | |
179 (while (< i len) | |
180 (setq arith (aref ccl-assign-arith-table i)) | |
181 (put arith 'ccl-self-arith-code i) | |
182 (setq i (1+ i)))) | |
183 | |
184 (defvar ccl-program-vector nil | |
185 "Working vector of CCL codes produced by CCL compiler.") | |
186 (defvar ccl-current-ic 0 | |
187 "The current index for `ccl-program-vector'.") | |
188 | |
189 ;; Embed integer DATA in `ccl-program-vector' at `ccl-current-ic' and | |
190 ;; increment it. If IC is specified, embed DATA at IC. | |
191 (defun ccl-embed-data (data &optional ic) | |
192 (if ic | |
193 (aset ccl-program-vector ic data) | |
30705
b37405134317
(ccl-embed-data): Make ccl-program-vector
Kenichi Handa <handa@m17n.org>
parents:
29429
diff
changeset
|
194 (let ((len (length ccl-program-vector))) |
b37405134317
(ccl-embed-data): Make ccl-program-vector
Kenichi Handa <handa@m17n.org>
parents:
29429
diff
changeset
|
195 (if (>= ccl-current-ic len) |
b37405134317
(ccl-embed-data): Make ccl-program-vector
Kenichi Handa <handa@m17n.org>
parents:
29429
diff
changeset
|
196 (let ((new (make-vector (* len 2) nil))) |
b37405134317
(ccl-embed-data): Make ccl-program-vector
Kenichi Handa <handa@m17n.org>
parents:
29429
diff
changeset
|
197 (while (> len 0) |
b37405134317
(ccl-embed-data): Make ccl-program-vector
Kenichi Handa <handa@m17n.org>
parents:
29429
diff
changeset
|
198 (setq len (1- len)) |
b37405134317
(ccl-embed-data): Make ccl-program-vector
Kenichi Handa <handa@m17n.org>
parents:
29429
diff
changeset
|
199 (aset new len (aref ccl-program-vector len))) |
b37405134317
(ccl-embed-data): Make ccl-program-vector
Kenichi Handa <handa@m17n.org>
parents:
29429
diff
changeset
|
200 (setq ccl-program-vector new)))) |
17052 | 201 (aset ccl-program-vector ccl-current-ic data) |
202 (setq ccl-current-ic (1+ ccl-current-ic)))) | |
203 | |
25064
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
204 ;; Embed pair of SYMBOL and PROP where (get SYMBOL PROP) should give |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
205 ;; proper index number for SYMBOL. PROP should be |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
206 ;; `translation-table-id', `translation-hash-table-id' |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
207 ;; `code-conversion-map-id', or `ccl-program-idx'. |
25064
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
208 (defun ccl-embed-symbol (symbol prop) |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
209 (ccl-embed-data (cons symbol prop))) |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
210 |
17052 | 211 ;; Embed string STR of length LEN in `ccl-program-vector' at |
212 ;; `ccl-current-ic'. | |
213 (defun ccl-embed-string (len str) | |
214 (let ((i 0)) | |
215 (while (< i len) | |
216 (ccl-embed-data (logior (ash (aref str i) 16) | |
217 (if (< (1+ i) len) | |
218 (ash (aref str (1+ i)) 8) | |
219 0) | |
220 (if (< (+ i 2) len) | |
221 (aref str (+ i 2)) | |
222 0))) | |
223 (setq i (+ i 3))))) | |
224 | |
225 ;; Embed a relative jump address to `ccl-current-ic' in | |
226 ;; `ccl-program-vector' at IC without altering the other bit field. | |
227 (defun ccl-embed-current-address (ic) | |
228 (let ((relative (- ccl-current-ic (1+ ic)))) | |
229 (aset ccl-program-vector ic | |
230 (logior (aref ccl-program-vector ic) (ash relative 8))))) | |
231 | |
232 ;; Embed CCL code for the operation OP and arguments REG and DATA in | |
233 ;; `ccl-program-vector' at `ccl-current-ic' in the following format. | |
234 ;; |----------------- integer (28-bit) ------------------| | |
235 ;; |------------ 20-bit ------------|- 3-bit --|- 5-bit -| | |
236 ;; |------------- DATA -------------|-- REG ---|-- OP ---| | |
237 ;; If REG2 is specified, embed a code in the following format. | |
238 ;; |------- 17-bit ------|- 3-bit --|- 3-bit --|- 5-bit -| | |
239 ;; |-------- DATA -------|-- REG2 --|-- REG ---|-- OP ---| | |
240 | |
241 ;; If REG is a CCL register symbol (e.g. r0, r1...), the register | |
242 ;; number is embedded. If OP is one of unconditional jumps, DATA is | |
47939
5f47d61ffbdc
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
46493
diff
changeset
|
243 ;; changed to a relative jump address. |
17052 | 244 |
245 (defun ccl-embed-code (op reg data &optional reg2) | |
246 (if (and (> data 0) (get op 'jump-flag)) | |
247 ;; DATA is an absolute jump address. Make it relative to the | |
248 ;; next of jump code. | |
249 (setq data (- data (1+ ccl-current-ic)))) | |
250 (let ((code (logior (get op 'ccl-code) | |
251 (ash | |
252 (if (symbolp reg) (get reg 'ccl-register-number) reg) 5) | |
253 (if reg2 | |
254 (logior (ash (get reg2 'ccl-register-number) 8) | |
255 (ash data 11)) | |
256 (ash data 8))))) | |
30705
b37405134317
(ccl-embed-data): Make ccl-program-vector
Kenichi Handa <handa@m17n.org>
parents:
29429
diff
changeset
|
257 (ccl-embed-data code))) |
17052 | 258 |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
259 ;; extended ccl command format |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
260 ;; |- 14-bit -|- 3-bit --|- 3-bit --|- 3-bit --|- 5-bit -| |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
261 ;; |- EX-OP --|-- REG3 --|-- REG2 --|-- REG ---|-- OP ---| |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
262 (defun ccl-embed-extended-command (ex-op reg reg2 reg3) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
263 (let ((data (logior (ash (get ex-op 'ccl-ex-code) 3) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
264 (if (symbolp reg3) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
265 (get reg3 'ccl-register-number) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
266 0)))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
267 (ccl-embed-code 'ex-cmd reg data reg2))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
268 |
17052 | 269 ;; Just advance `ccl-current-ic' by INC. |
270 (defun ccl-increment-ic (inc) | |
271 (setq ccl-current-ic (+ ccl-current-ic inc))) | |
272 | |
273 ;; If non-nil, index of the start of the current loop. | |
274 (defvar ccl-loop-head nil) | |
275 ;; If non-nil, list of absolute addresses of the breaking points of | |
276 ;; the current loop. | |
277 (defvar ccl-breaks nil) | |
278 | |
279 ;;;###autoload | |
280 (defun ccl-compile (ccl-program) | |
36466 | 281 "Return the compiled code of CCL-PROGRAM as a vector of integers." |
17052 | 282 (if (or (null (consp ccl-program)) |
283 (null (integerp (car ccl-program))) | |
284 (null (listp (car (cdr ccl-program))))) | |
285 (error "CCL: Invalid CCL program: %s" ccl-program)) | |
286 (if (null (vectorp ccl-program-vector)) | |
287 (setq ccl-program-vector (make-vector 8192 0))) | |
288 (setq ccl-loop-head nil ccl-breaks nil) | |
289 (setq ccl-current-ic 0) | |
290 | |
291 ;; The first element is the buffer magnification. | |
292 (ccl-embed-data (car ccl-program)) | |
293 | |
294 ;; The second element is the address of the start CCL code for | |
295 ;; processing end of input buffer (we call it eof-processor). We | |
296 ;; set it later. | |
297 (ccl-increment-ic 1) | |
298 | |
299 ;; Compile the main body of the CCL program. | |
300 (ccl-compile-1 (car (cdr ccl-program))) | |
301 | |
302 ;; Embed the address of eof-processor. | |
303 (ccl-embed-data ccl-current-ic 1) | |
304 | |
305 ;; Then compile eof-processor. | |
306 (if (nth 2 ccl-program) | |
307 (ccl-compile-1 (nth 2 ccl-program))) | |
308 | |
309 ;; At last, embed termination code. | |
310 (ccl-embed-code 'end 0 0) | |
311 | |
312 (let ((vec (make-vector ccl-current-ic 0)) | |
313 (i 0)) | |
314 (while (< i ccl-current-ic) | |
315 (aset vec i (aref ccl-program-vector i)) | |
316 (setq i (1+ i))) | |
317 vec)) | |
318 | |
319 ;; Signal syntax error. | |
320 (defun ccl-syntax-error (cmd) | |
321 (error "CCL: Syntax error: %s" cmd)) | |
322 | |
323 ;; Check if ARG is a valid CCL register. | |
324 (defun ccl-check-register (arg cmd) | |
325 (if (get arg 'ccl-register-number) | |
326 arg | |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37827
diff
changeset
|
327 (error "CCL: Invalid register %s in %s" arg cmd))) |
17052 | 328 |
329 ;; Check if ARG is a valid CCL command. | |
330 (defun ccl-check-compile-function (arg cmd) | |
331 (or (get arg 'ccl-compile-function) | |
332 (error "CCL: Invalid command: %s" cmd))) | |
333 | |
334 ;; In the following code, most ccl-compile-XXXX functions return t if | |
335 ;; they end with unconditional jump, else return nil. | |
336 | |
337 ;; Compile CCL-BLOCK (see the syntax above). | |
338 (defun ccl-compile-1 (ccl-block) | |
339 (let (unconditional-jump | |
340 cmd) | |
341 (if (or (integerp ccl-block) | |
342 (stringp ccl-block) | |
343 (and ccl-block (symbolp (car ccl-block)))) | |
344 ;; This block consists of single statement. | |
345 (setq ccl-block (list ccl-block))) | |
346 | |
347 ;; Now CCL-BLOCK is a list of statements. Compile them one by | |
348 ;; one. | |
349 (while ccl-block | |
350 (setq cmd (car ccl-block)) | |
351 (setq unconditional-jump | |
352 (cond ((integerp cmd) | |
353 ;; SET statement for the register 0. | |
354 (ccl-compile-set (list 'r0 '= cmd))) | |
355 | |
356 ((stringp cmd) | |
357 ;; WRITE statement of string argument. | |
358 (ccl-compile-write-string cmd)) | |
359 | |
360 ((listp cmd) | |
361 ;; The other statements. | |
362 (cond ((eq (nth 1 cmd) '=) | |
363 ;; SET statement of the form `(REG = EXPRESSION)'. | |
364 (ccl-compile-set cmd)) | |
365 | |
366 ((and (symbolp (nth 1 cmd)) | |
367 (get (nth 1 cmd) 'ccl-self-arith-code)) | |
368 ;; SET statement with an assignment operation. | |
369 (ccl-compile-self-set cmd)) | |
370 | |
371 (t | |
372 (funcall (ccl-check-compile-function (car cmd) cmd) | |
373 cmd)))) | |
374 | |
375 (t | |
376 (ccl-syntax-error cmd)))) | |
377 (setq ccl-block (cdr ccl-block))) | |
378 unconditional-jump)) | |
379 | |
380 (defconst ccl-max-short-const (ash 1 19)) | |
381 (defconst ccl-min-short-const (ash -1 19)) | |
382 | |
383 ;; Compile SET statement. | |
384 (defun ccl-compile-set (cmd) | |
385 (let ((rrr (ccl-check-register (car cmd) cmd)) | |
386 (right (nth 2 cmd))) | |
387 (cond ((listp right) | |
388 ;; CMD has the form `(RRR = (XXX OP YYY))'. | |
389 (ccl-compile-expression rrr right)) | |
390 | |
391 ((integerp right) | |
392 ;; CMD has the form `(RRR = integer)'. | |
393 (if (and (<= right ccl-max-short-const) | |
394 (>= right ccl-min-short-const)) | |
395 (ccl-embed-code 'set-short-const rrr right) | |
396 (ccl-embed-code 'set-const rrr 0) | |
397 (ccl-embed-data right))) | |
398 | |
399 (t | |
400 ;; CMD has the form `(RRR = rrr [ array ])'. | |
401 (ccl-check-register right cmd) | |
402 (let ((ary (nth 3 cmd))) | |
403 (if (vectorp ary) | |
404 (let ((i 0) (len (length ary))) | |
405 (ccl-embed-code 'set-array rrr len right) | |
406 (while (< i len) | |
407 (ccl-embed-data (aref ary i)) | |
408 (setq i (1+ i)))) | |
409 (ccl-embed-code 'set-register rrr 0 right)))))) | |
410 nil) | |
411 | |
412 ;; Compile SET statement with ASSIGNMENT_OPERATOR. | |
413 (defun ccl-compile-self-set (cmd) | |
414 (let ((rrr (ccl-check-register (car cmd) cmd)) | |
415 (right (nth 2 cmd))) | |
416 (if (listp right) | |
417 ;; CMD has the form `(RRR ASSIGN_OP (XXX OP YYY))', compile | |
418 ;; the right hand part as `(r7 = (XXX OP YYY))' (note: the | |
419 ;; register 7 can be used for storing temporary value). | |
420 (progn | |
421 (ccl-compile-expression 'r7 right) | |
422 (setq right 'r7))) | |
423 ;; Now CMD has the form `(RRR ASSIGN_OP ARG)'. Compile it as | |
424 ;; `(RRR = (RRR OP ARG))'. | |
425 (ccl-compile-expression | |
426 rrr | |
427 (list rrr (intern (substring (symbol-name (nth 1 cmd)) 0 -1)) right))) | |
428 nil) | |
429 | |
430 ;; Compile SET statement of the form `(RRR = EXPR)'. | |
431 (defun ccl-compile-expression (rrr expr) | |
432 (let ((left (car expr)) | |
433 (op (get (nth 1 expr) 'ccl-arith-code)) | |
434 (right (nth 2 expr))) | |
435 (if (listp left) | |
436 (progn | |
437 ;; EXPR has the form `((EXPR2 OP2 ARG) OP RIGHT)'. Compile | |
438 ;; the first term as `(r7 = (EXPR2 OP2 ARG)).' | |
439 (ccl-compile-expression 'r7 left) | |
440 (setq left 'r7))) | |
441 | |
442 ;; Now EXPR has the form (LEFT OP RIGHT). | |
28152
1b7866e465bd
(ccl-compile-expression): Don't generate
Kenichi Handa <handa@m17n.org>
parents:
25064
diff
changeset
|
443 (if (and (eq rrr left) |
1b7866e465bd
(ccl-compile-expression): Don't generate
Kenichi Handa <handa@m17n.org>
parents:
25064
diff
changeset
|
444 (< op (length ccl-assign-arith-table))) |
17052 | 445 ;; Compile this SET statement as `(RRR OP= RIGHT)'. |
446 (if (integerp right) | |
447 (progn | |
448 (ccl-embed-code 'set-assign-expr-const rrr (ash op 3) 'r0) | |
449 (ccl-embed-data right)) | |
450 (ccl-check-register right expr) | |
451 (ccl-embed-code 'set-assign-expr-register rrr (ash op 3) right)) | |
452 | |
453 ;; Compile this SET statement as `(RRR = (LEFT OP RIGHT))'. | |
454 (if (integerp right) | |
455 (progn | |
456 (ccl-embed-code 'set-expr-const rrr (ash op 3) left) | |
457 (ccl-embed-data right)) | |
458 (ccl-check-register right expr) | |
459 (ccl-embed-code 'set-expr-register | |
460 rrr | |
461 (logior (ash op 3) (get right 'ccl-register-number)) | |
462 left))))) | |
463 | |
464 ;; Compile WRITE statement with string argument. | |
465 (defun ccl-compile-write-string (str) | |
29030
837bc0327945
(ccl-compile-write-string): Make STR unibyte.
Kenichi Handa <handa@m17n.org>
parents:
28152
diff
changeset
|
466 (setq str (string-as-unibyte str)) |
17052 | 467 (let ((len (length str))) |
468 (ccl-embed-code 'write-const-string 1 len) | |
469 (ccl-embed-string len str)) | |
470 nil) | |
471 | |
472 ;; Compile IF statement of the form `(if CONDITION TRUE-PART FALSE-PART)'. | |
473 ;; If READ-FLAG is non-nil, this statement has the form | |
474 ;; `(read-if (REG OPERATOR ARG) TRUE-PART FALSE-PART)'. | |
475 (defun ccl-compile-if (cmd &optional read-flag) | |
476 (if (and (/= (length cmd) 3) (/= (length cmd) 4)) | |
477 (error "CCL: Invalid number of arguments: %s" cmd)) | |
478 (let ((condition (nth 1 cmd)) | |
479 (true-cmds (nth 2 cmd)) | |
480 (false-cmds (nth 3 cmd)) | |
481 jump-cond-address | |
482 false-ic) | |
483 (if (and (listp condition) | |
484 (listp (car condition))) | |
485 ;; If CONDITION is a nested expression, the inner expression | |
486 ;; should be compiled at first as SET statement, i.e.: | |
487 ;; `(if ((X OP2 Y) OP Z) ...)' is compiled into two statements: | |
488 ;; `(r7 = (X OP2 Y)) (if (r7 OP Z) ...)'. | |
489 (progn | |
490 (ccl-compile-expression 'r7 (car condition)) | |
491 (setq condition (cons 'r7 (cdr condition))) | |
492 (setq cmd (cons (car cmd) | |
493 (cons condition (cdr (cdr cmd))))))) | |
494 | |
495 (setq jump-cond-address ccl-current-ic) | |
496 ;; Compile CONDITION. | |
497 (if (symbolp condition) | |
498 ;; CONDITION is a register. | |
499 (progn | |
500 (ccl-check-register condition cmd) | |
501 (ccl-embed-code 'jump-cond condition 0)) | |
502 ;; CONDITION is a simple expression of the form (RRR OP ARG). | |
503 (let ((rrr (car condition)) | |
504 (op (get (nth 1 condition) 'ccl-arith-code)) | |
505 (arg (nth 2 condition))) | |
506 (ccl-check-register rrr cmd) | |
507 (if (integerp arg) | |
508 (progn | |
509 (ccl-embed-code (if read-flag 'read-jump-cond-expr-const | |
510 'jump-cond-expr-const) | |
511 rrr 0) | |
512 (ccl-embed-data op) | |
513 (ccl-embed-data arg)) | |
514 (ccl-check-register arg cmd) | |
47939
5f47d61ffbdc
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
46493
diff
changeset
|
515 (ccl-embed-code (if read-flag 'read-jump-cond-expr-register |
17052 | 516 'jump-cond-expr-register) |
517 rrr 0) | |
518 (ccl-embed-data op) | |
519 (ccl-embed-data (get arg 'ccl-register-number))))) | |
520 | |
521 ;; Compile TRUE-PART. | |
522 (let ((unconditional-jump (ccl-compile-1 true-cmds))) | |
523 (if (null false-cmds) | |
524 ;; This is the place to jump to if condition is false. | |
23432
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
525 (progn |
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
526 (ccl-embed-current-address jump-cond-address) |
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
527 (setq unconditional-jump nil)) |
17052 | 528 (let (end-true-part-address) |
529 (if (not unconditional-jump) | |
530 (progn | |
531 ;; If TRUE-PART does not end with unconditional jump, we | |
532 ;; have to jump to the end of FALSE-PART from here. | |
533 (setq end-true-part-address ccl-current-ic) | |
534 (ccl-embed-code 'jump 0 0))) | |
535 ;; This is the place to jump to if CONDITION is false. | |
536 (ccl-embed-current-address jump-cond-address) | |
537 ;; Compile FALSE-PART. | |
538 (setq unconditional-jump | |
539 (and (ccl-compile-1 false-cmds) unconditional-jump)) | |
540 (if end-true-part-address | |
541 ;; This is the place to jump to after the end of TRUE-PART. | |
542 (ccl-embed-current-address end-true-part-address)))) | |
543 unconditional-jump))) | |
544 | |
545 ;; Compile BRANCH statement. | |
546 (defun ccl-compile-branch (cmd) | |
547 (if (< (length cmd) 3) | |
548 (error "CCL: Invalid number of arguments: %s" cmd)) | |
549 (ccl-compile-branch-blocks 'branch | |
550 (ccl-compile-branch-expression (nth 1 cmd) cmd) | |
551 (cdr (cdr cmd)))) | |
552 | |
553 ;; Compile READ statement of the form `(read-branch EXPR BLOCK0 BLOCK1 ...)'. | |
554 (defun ccl-compile-read-branch (cmd) | |
555 (if (< (length cmd) 3) | |
556 (error "CCL: Invalid number of arguments: %s" cmd)) | |
557 (ccl-compile-branch-blocks 'read-branch | |
558 (ccl-compile-branch-expression (nth 1 cmd) cmd) | |
559 (cdr (cdr cmd)))) | |
560 | |
561 ;; Compile EXPRESSION part of BRANCH statement and return register | |
562 ;; which holds a value of the expression. | |
563 (defun ccl-compile-branch-expression (expr cmd) | |
564 (if (listp expr) | |
565 ;; EXPR has the form `(EXPR2 OP ARG)'. Compile it as SET | |
566 ;; statement of the form `(r7 = (EXPR2 OP ARG))'. | |
567 (progn | |
568 (ccl-compile-expression 'r7 expr) | |
569 'r7) | |
570 (ccl-check-register expr cmd))) | |
571 | |
572 ;; Compile BLOCKs of BRANCH statement. CODE is 'branch or 'read-branch. | |
573 ;; REG is a register which holds a value of EXPRESSION part. BLOCKs | |
574 ;; is a list of CCL-BLOCKs. | |
575 (defun ccl-compile-branch-blocks (code rrr blocks) | |
576 (let ((branches (length blocks)) | |
577 branch-idx | |
578 jump-table-head-address | |
579 empty-block-indexes | |
580 block-tail-addresses | |
581 block-unconditional-jump) | |
582 (ccl-embed-code code rrr branches) | |
583 (setq jump-table-head-address ccl-current-ic) | |
584 ;; The size of jump table is the number of blocks plus 1 (for the | |
585 ;; case RRR is out of range). | |
586 (ccl-increment-ic (1+ branches)) | |
587 (setq empty-block-indexes (list branches)) | |
588 ;; Compile each block. | |
589 (setq branch-idx 0) | |
590 (while blocks | |
591 (if (null (car blocks)) | |
592 ;; This block is empty. | |
593 (setq empty-block-indexes (cons branch-idx empty-block-indexes) | |
594 block-unconditional-jump t) | |
595 ;; This block is not empty. | |
596 (ccl-embed-data (- ccl-current-ic jump-table-head-address) | |
597 (+ jump-table-head-address branch-idx)) | |
598 (setq block-unconditional-jump (ccl-compile-1 (car blocks))) | |
599 (if (not block-unconditional-jump) | |
600 (progn | |
601 ;; Jump address of the end of branches are embedded later. | |
602 ;; For the moment, just remember where to embed them. | |
603 (setq block-tail-addresses | |
604 (cons ccl-current-ic block-tail-addresses)) | |
605 (ccl-embed-code 'jump 0 0)))) | |
606 (setq branch-idx (1+ branch-idx)) | |
607 (setq blocks (cdr blocks))) | |
608 (if (not block-unconditional-jump) | |
609 ;; We don't need jump code at the end of the last block. | |
610 (setq block-tail-addresses (cdr block-tail-addresses) | |
611 ccl-current-ic (1- ccl-current-ic))) | |
612 ;; Embed jump address at the tailing jump commands of blocks. | |
613 (while block-tail-addresses | |
614 (ccl-embed-current-address (car block-tail-addresses)) | |
615 (setq block-tail-addresses (cdr block-tail-addresses))) | |
616 ;; For empty blocks, make entries in the jump table point directly here. | |
617 (while empty-block-indexes | |
618 (ccl-embed-data (- ccl-current-ic jump-table-head-address) | |
619 (+ jump-table-head-address (car empty-block-indexes))) | |
620 (setq empty-block-indexes (cdr empty-block-indexes)))) | |
621 ;; Branch command ends by unconditional jump if RRR is out of range. | |
622 nil) | |
623 | |
624 ;; Compile LOOP statement. | |
625 (defun ccl-compile-loop (cmd) | |
626 (if (< (length cmd) 2) | |
627 (error "CCL: Invalid number of arguments: %s" cmd)) | |
628 (let* ((ccl-loop-head ccl-current-ic) | |
629 (ccl-breaks nil) | |
630 unconditional-jump) | |
631 (setq cmd (cdr cmd)) | |
632 (if cmd | |
633 (progn | |
634 (setq unconditional-jump t) | |
635 (while cmd | |
636 (setq unconditional-jump | |
637 (and (ccl-compile-1 (car cmd)) unconditional-jump)) | |
638 (setq cmd (cdr cmd))) | |
639 (if (not ccl-breaks) | |
640 unconditional-jump | |
641 ;; Embed jump address for break statements encountered in | |
642 ;; this loop. | |
643 (while ccl-breaks | |
644 (ccl-embed-current-address (car ccl-breaks)) | |
645 (setq ccl-breaks (cdr ccl-breaks)))) | |
646 nil)))) | |
647 | |
648 ;; Compile BREAK statement. | |
649 (defun ccl-compile-break (cmd) | |
650 (if (/= (length cmd) 1) | |
651 (error "CCL: Invalid number of arguments: %s" cmd)) | |
652 (if (null ccl-loop-head) | |
653 (error "CCL: No outer loop: %s" cmd)) | |
654 (setq ccl-breaks (cons ccl-current-ic ccl-breaks)) | |
655 (ccl-embed-code 'jump 0 0) | |
656 t) | |
657 | |
658 ;; Compile REPEAT statement. | |
659 (defun ccl-compile-repeat (cmd) | |
660 (if (/= (length cmd) 1) | |
661 (error "CCL: Invalid number of arguments: %s" cmd)) | |
662 (if (null ccl-loop-head) | |
663 (error "CCL: No outer loop: %s" cmd)) | |
664 (ccl-embed-code 'jump 0 ccl-loop-head) | |
665 t) | |
666 | |
667 ;; Compile WRITE-REPEAT statement. | |
668 (defun ccl-compile-write-repeat (cmd) | |
669 (if (/= (length cmd) 2) | |
670 (error "CCL: Invalid number of arguments: %s" cmd)) | |
671 (if (null ccl-loop-head) | |
672 (error "CCL: No outer loop: %s" cmd)) | |
673 (let ((arg (nth 1 cmd))) | |
674 (cond ((integerp arg) | |
675 (ccl-embed-code 'write-const-jump 0 ccl-loop-head) | |
676 (ccl-embed-data arg)) | |
677 ((stringp arg) | |
29030
837bc0327945
(ccl-compile-write-string): Make STR unibyte.
Kenichi Handa <handa@m17n.org>
parents:
28152
diff
changeset
|
678 (setq arg (string-as-unibyte arg)) |
17052 | 679 (let ((len (length arg)) |
680 (i 0)) | |
681 (ccl-embed-code 'write-string-jump 0 ccl-loop-head) | |
682 (ccl-embed-data len) | |
683 (ccl-embed-string len arg))) | |
684 (t | |
685 (ccl-check-register arg cmd) | |
686 (ccl-embed-code 'write-register-jump arg ccl-loop-head)))) | |
687 t) | |
688 | |
689 ;; Compile WRITE-READ-REPEAT statement. | |
690 (defun ccl-compile-write-read-repeat (cmd) | |
691 (if (or (< (length cmd) 2) (> (length cmd) 3)) | |
692 (error "CCL: Invalid number of arguments: %s" cmd)) | |
693 (if (null ccl-loop-head) | |
694 (error "CCL: No outer loop: %s" cmd)) | |
695 (let ((rrr (ccl-check-register (nth 1 cmd) cmd)) | |
696 (arg (nth 2 cmd))) | |
697 (cond ((null arg) | |
698 (ccl-embed-code 'write-register-read-jump rrr ccl-loop-head)) | |
699 ((integerp arg) | |
700 (ccl-embed-code 'write-const-read-jump rrr arg ccl-loop-head)) | |
701 ((vectorp arg) | |
702 (let ((len (length arg)) | |
703 (i 0)) | |
704 (ccl-embed-code 'write-array-read-jump rrr ccl-loop-head) | |
705 (ccl-embed-data len) | |
706 (while (< i len) | |
707 (ccl-embed-data (aref arg i)) | |
708 (setq i (1+ i))))) | |
709 (t | |
710 (error "CCL: Invalid argument %s: %s" arg cmd))) | |
711 (ccl-embed-code 'read-jump rrr ccl-loop-head)) | |
712 t) | |
47939
5f47d61ffbdc
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
46493
diff
changeset
|
713 |
17052 | 714 ;; Compile READ statement. |
715 (defun ccl-compile-read (cmd) | |
716 (if (< (length cmd) 2) | |
717 (error "CCL: Invalid number of arguments: %s" cmd)) | |
718 (let* ((args (cdr cmd)) | |
719 (i (1- (length args)))) | |
720 (while args | |
721 (let ((rrr (ccl-check-register (car args) cmd))) | |
722 (ccl-embed-code 'read-register rrr i) | |
723 (setq args (cdr args) i (1- i))))) | |
724 nil) | |
725 | |
726 ;; Compile READ-IF statement. | |
727 (defun ccl-compile-read-if (cmd) | |
728 (ccl-compile-if cmd 'read)) | |
729 | |
730 ;; Compile WRITE statement. | |
731 (defun ccl-compile-write (cmd) | |
732 (if (< (length cmd) 2) | |
733 (error "CCL: Invalid number of arguments: %s" cmd)) | |
734 (let ((rrr (nth 1 cmd))) | |
735 (cond ((integerp rrr) | |
736 (ccl-embed-code 'write-const-string 0 rrr)) | |
737 ((stringp rrr) | |
738 (ccl-compile-write-string rrr)) | |
739 ((and (symbolp rrr) (vectorp (nth 2 cmd))) | |
740 (ccl-check-register rrr cmd) | |
741 ;; CMD has the form `(write REG ARRAY)'. | |
742 (let* ((arg (nth 2 cmd)) | |
743 (len (length arg)) | |
744 (i 0)) | |
745 (ccl-embed-code 'write-array rrr len) | |
746 (while (< i len) | |
747 (if (not (integerp (aref arg i))) | |
748 (error "CCL: Invalid argument %s: %s" arg cmd)) | |
749 (ccl-embed-data (aref arg i)) | |
750 (setq i (1+ i))))) | |
751 | |
752 ((symbolp rrr) | |
753 ;; CMD has the form `(write REG ...)'. | |
754 (let* ((args (cdr cmd)) | |
755 (i (1- (length args)))) | |
756 (while args | |
757 (setq rrr (ccl-check-register (car args) cmd)) | |
758 (ccl-embed-code 'write-register rrr i) | |
759 (setq args (cdr args) i (1- i))))) | |
760 | |
761 ((listp rrr) | |
762 ;; CMD has the form `(write (LEFT OP RIGHT))'. | |
763 (let ((left (car rrr)) | |
764 (op (get (nth 1 rrr) 'ccl-arith-code)) | |
765 (right (nth 2 rrr))) | |
766 (if (listp left) | |
767 (progn | |
768 ;; RRR has the form `((EXPR OP2 ARG) OP RIGHT)'. | |
769 ;; Compile the first term as `(r7 = (EXPR OP2 ARG))'. | |
770 (ccl-compile-expression 'r7 left) | |
771 (setq left 'r7))) | |
772 ;; Now RRR has the form `(ARG OP RIGHT)'. | |
773 (if (integerp right) | |
774 (progn | |
775 (ccl-embed-code 'write-expr-const 0 (ash op 3) left) | |
776 (ccl-embed-data right)) | |
777 (ccl-check-register right rrr) | |
778 (ccl-embed-code 'write-expr-register 0 | |
779 (logior (ash op 3) | |
53961
74d57e5bfed4
(ccl-compile-write): Pass `left' to
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
780 (get right 'ccl-register-number)) |
74d57e5bfed4
(ccl-compile-write): Pass `left' to
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
781 left)))) |
17052 | 782 |
783 (t | |
784 (error "CCL: Invalid argument: %s" cmd)))) | |
785 nil) | |
786 | |
787 ;; Compile CALL statement. | |
788 (defun ccl-compile-call (cmd) | |
789 (if (/= (length cmd) 2) | |
790 (error "CCL: Invalid number of arguments: %s" cmd)) | |
791 (if (not (symbolp (nth 1 cmd))) | |
792 (error "CCL: Subroutine should be a symbol: %s" cmd)) | |
25064
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
793 (ccl-embed-code 'call 1 0) |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
794 (ccl-embed-symbol (nth 1 cmd) 'ccl-program-idx) |
17052 | 795 nil) |
796 | |
797 ;; Compile END statement. | |
798 (defun ccl-compile-end (cmd) | |
799 (if (/= (length cmd) 1) | |
800 (error "CCL: Invalid number of arguments: %s" cmd)) | |
801 (ccl-embed-code 'end 0 0) | |
802 t) | |
803 | |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
804 ;; Compile read-multibyte-character |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
805 (defun ccl-compile-read-multibyte-character (cmd) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
806 (if (/= (length cmd) 3) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
807 (error "CCL: Invalid number of arguments: %s" cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
808 (let ((RRR (nth 1 cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
809 (rrr (nth 2 cmd))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
810 (ccl-check-register rrr cmd) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
811 (ccl-check-register RRR cmd) |
23432
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
812 (ccl-embed-extended-command 'read-multibyte-character rrr RRR 0)) |
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
813 nil) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
814 |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
815 ;; Compile write-multibyte-character |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
816 (defun ccl-compile-write-multibyte-character (cmd) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
817 (if (/= (length cmd) 3) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
818 (error "CCL: Invalid number of arguments: %s" cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
819 (let ((RRR (nth 1 cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
820 (rrr (nth 2 cmd))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
821 (ccl-check-register rrr cmd) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
822 (ccl-check-register RRR cmd) |
23432
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
823 (ccl-embed-extended-command 'write-multibyte-character rrr RRR 0)) |
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
824 nil) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
825 |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
826 ;; Compile translate-character |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
827 (defun ccl-compile-translate-character (cmd) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
828 (if (/= (length cmd) 4) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
829 (error "CCL: Invalid number of arguments: %s" cmd)) |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
830 (let ((Rrr (nth 1 cmd)) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
831 (RRR (nth 2 cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
832 (rrr (nth 3 cmd))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
833 (ccl-check-register rrr cmd) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
834 (ccl-check-register RRR cmd) |
24152
202b1402425b
(ccl-compile-translate-character): Handle
Kenichi Handa <handa@m17n.org>
parents:
23771
diff
changeset
|
835 (cond ((and (symbolp Rrr) (not (get Rrr 'ccl-register-number))) |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
836 (ccl-embed-extended-command 'translate-character-const-tbl |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
837 rrr RRR 0) |
25064
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
838 (ccl-embed-symbol Rrr 'translation-table-id)) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
839 (t |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
840 (ccl-check-register Rrr cmd) |
23432
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
841 (ccl-embed-extended-command 'translate-character rrr RRR Rrr)))) |
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
842 nil) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
843 |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
844 ;; Compile lookup-integer |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
845 (defun ccl-compile-lookup-integer (cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
846 (if (/= (length cmd) 4) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
847 (error "CCL: Invalid number of arguments: %s" cmd)) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
848 (let ((Rrr (nth 1 cmd)) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
849 (RRR (nth 2 cmd)) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
850 (rrr (nth 3 cmd))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
851 (ccl-check-register RRR cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
852 (ccl-check-register rrr cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
853 (cond ((and (symbolp Rrr) (not (get Rrr 'ccl-register-number))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
854 (ccl-embed-extended-command 'lookup-int-const-tbl |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
855 rrr RRR 0) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
856 (ccl-embed-symbol Rrr 'translation-hash-table-id)) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
857 (t |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
858 (error "CCL: non-constant table: %s" cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
859 ;; not implemented: |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
860 (ccl-check-register Rrr cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
861 (ccl-embed-extended-command 'lookup-int rrr RRR 0)))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
862 nil) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
863 |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
864 ;; Compile lookup-character |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
865 (defun ccl-compile-lookup-character (cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
866 (if (/= (length cmd) 4) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
867 (error "CCL: Invalid number of arguments: %s" cmd)) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
868 (let ((Rrr (nth 1 cmd)) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
869 (RRR (nth 2 cmd)) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
870 (rrr (nth 3 cmd))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
871 (ccl-check-register RRR cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
872 (ccl-check-register rrr cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
873 (cond ((and (symbolp Rrr) (not (get Rrr 'ccl-register-number))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
874 (ccl-embed-extended-command 'lookup-char-const-tbl |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
875 rrr RRR 0) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
876 (ccl-embed-symbol Rrr 'translation-hash-table-id)) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
877 (t |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
878 (error "CCL: non-constant table: %s" cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
879 ;; not implemented: |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
880 (ccl-check-register Rrr cmd) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
881 (ccl-embed-extended-command 'lookup-char rrr RRR 0)))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
882 nil) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
883 |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
884 (defun ccl-compile-iterate-multiple-map (cmd) |
23432
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
885 (ccl-compile-multiple-map-function 'iterate-multiple-map cmd) |
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
886 nil) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
887 |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
888 (defun ccl-compile-map-multiple (cmd) |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
889 (if (/= (length cmd) 4) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
890 (error "CCL: Invalid number of arguments: %s" cmd)) |
29429
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
891 (let (func arg) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
892 (setq func |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
893 (lambda (arg mp) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
894 (let ((len 0) result add) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
895 (while arg |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
896 (if (consp (car arg)) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
897 (setq add (funcall func (car arg) t) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
898 result (append result add) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
899 add (+ (- (car add)) 1)) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
900 (setq result |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
901 (append result |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
902 (list (car arg))) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
903 add 1)) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
904 (setq arg (cdr arg) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
905 len (+ len add))) |
47939
5f47d61ffbdc
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
46493
diff
changeset
|
906 (if mp |
29429
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
907 (cons (- len) result) |
1fa36ef2bb6c
(ccl-compile-translate-character): Don't check if Rrr has property
Kenichi Handa <handa@m17n.org>
parents:
29044
diff
changeset
|
908 result)))) |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
909 (setq arg (append (list (nth 0 cmd) (nth 1 cmd) (nth 2 cmd)) |
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
910 (funcall func (nth 3 cmd) nil))) |
23432
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
911 (ccl-compile-multiple-map-function 'map-multiple arg)) |
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
912 nil) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
913 |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
914 (defun ccl-compile-map-single (cmd) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
915 (if (/= (length cmd) 4) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
916 (error "CCL: Invalid number of arguments: %s" cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
917 (let ((RRR (nth 1 cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
918 (rrr (nth 2 cmd)) |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
919 (map (nth 3 cmd)) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
920 id) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
921 (ccl-check-register rrr cmd) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
922 (ccl-check-register RRR cmd) |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
923 (ccl-embed-extended-command 'map-single rrr RRR 0) |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
924 (cond ((symbolp map) |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
925 (if (get map 'code-conversion-map) |
25064
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
926 (ccl-embed-symbol map 'code-conversion-map-id) |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
927 (error "CCL: Invalid map: %s" map))) |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
928 (t |
23432
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
929 (error "CCL: Invalid type of arguments: %s" cmd)))) |
5f51adf0b6ec
(ccl-compile-if): If there's no false-cmds,
Kenichi Handa <handa@m17n.org>
parents:
23196
diff
changeset
|
930 nil) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
931 |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
932 (defun ccl-compile-multiple-map-function (command cmd) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
933 (if (< (length cmd) 4) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
934 (error "CCL: Invalid number of arguments: %s" cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
935 (let ((RRR (nth 1 cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
936 (rrr (nth 2 cmd)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
937 (args (nthcdr 3 cmd)) |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
938 map) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
939 (ccl-check-register rrr cmd) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
940 (ccl-check-register RRR cmd) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
941 (ccl-embed-extended-command command rrr RRR 0) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
942 (ccl-embed-data (length args)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
943 (while args |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
944 (setq map (car args)) |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
945 (cond ((symbolp map) |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
946 (if (get map 'code-conversion-map) |
25064
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
947 (ccl-embed-symbol map 'code-conversion-map-id) |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
948 (error "CCL: Invalid map: %s" map))) |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
949 ((numberp map) |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
950 (ccl-embed-data map)) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
951 (t |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
952 (error "CCL: Invalid type of arguments: %s" cmd))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
953 (setq args (cdr args))))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
954 |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
955 |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
956 ;;; CCL dump stuff |
17052 | 957 |
958 ;; To avoid byte-compiler warning. | |
959 (defvar ccl-code) | |
960 | |
961 ;;;###autoload | |
962 (defun ccl-dump (ccl-code) | |
963 "Disassemble compiled CCL-CODE." | |
964 (let ((len (length ccl-code)) | |
965 (buffer-mag (aref ccl-code 0))) | |
966 (cond ((= buffer-mag 0) | |
967 (insert "Don't output anything.\n")) | |
968 ((= buffer-mag 1) | |
969 (insert "Out-buffer must be as large as in-buffer.\n")) | |
970 (t | |
971 (insert | |
972 (format "Out-buffer must be %d times bigger than in-buffer.\n" | |
973 buffer-mag)))) | |
974 (insert "Main-body:\n") | |
975 (setq ccl-current-ic 2) | |
976 (if (> (aref ccl-code 1) 0) | |
977 (progn | |
978 (while (< ccl-current-ic (aref ccl-code 1)) | |
979 (ccl-dump-1)) | |
980 (insert "At EOF:\n"))) | |
981 (while (< ccl-current-ic len) | |
982 (ccl-dump-1)) | |
983 )) | |
984 | |
985 ;; Return a CCL code in `ccl-code' at `ccl-current-ic'. | |
986 (defun ccl-get-next-code () | |
987 (prog1 | |
988 (aref ccl-code ccl-current-ic) | |
989 (setq ccl-current-ic (1+ ccl-current-ic)))) | |
990 | |
991 (defun ccl-dump-1 () | |
992 (let* ((code (ccl-get-next-code)) | |
993 (cmd (aref ccl-code-table (logand code 31))) | |
994 (rrr (ash (logand code 255) -5)) | |
995 (cc (ash code -8))) | |
996 (insert (format "%5d:[%s] " (1- ccl-current-ic) cmd)) | |
47939
5f47d61ffbdc
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
46493
diff
changeset
|
997 (funcall (get cmd 'ccl-dump-function) rrr cc))) |
17052 | 998 |
999 (defun ccl-dump-set-register (rrr cc) | |
1000 (insert (format "r%d = r%d\n" rrr cc))) | |
1001 | |
1002 (defun ccl-dump-set-short-const (rrr cc) | |
1003 (insert (format "r%d = %d\n" rrr cc))) | |
1004 | |
1005 (defun ccl-dump-set-const (rrr ignore) | |
1006 (insert (format "r%d = %d\n" rrr (ccl-get-next-code)))) | |
1007 | |
1008 (defun ccl-dump-set-array (rrr cc) | |
1009 (let ((rrr2 (logand cc 7)) | |
1010 (len (ash cc -3)) | |
1011 (i 0)) | |
1012 (insert (format "r%d = array[r%d] of length %d\n\t" | |
1013 rrr rrr2 len)) | |
1014 (while (< i len) | |
1015 (insert (format "%d " (ccl-get-next-code))) | |
1016 (setq i (1+ i))) | |
1017 (insert "\n"))) | |
1018 | |
1019 (defun ccl-dump-jump (ignore cc &optional address) | |
1020 (insert (format "jump to %d(" (+ (or address ccl-current-ic) cc))) | |
1021 (if (>= cc 0) | |
1022 (insert "+")) | |
1023 (insert (format "%d)\n" (1+ cc)))) | |
1024 | |
1025 (defun ccl-dump-jump-cond (rrr cc) | |
1026 (insert (format "if (r%d == 0), " rrr)) | |
1027 (ccl-dump-jump nil cc)) | |
1028 | |
1029 (defun ccl-dump-write-register-jump (rrr cc) | |
1030 (insert (format "write r%d, " rrr)) | |
1031 (ccl-dump-jump nil cc)) | |
1032 | |
1033 (defun ccl-dump-write-register-read-jump (rrr cc) | |
1034 (insert (format "write r%d, read r%d, " rrr rrr)) | |
1035 (ccl-dump-jump nil cc) | |
1036 (ccl-get-next-code) ; Skip dummy READ-JUMP | |
1037 ) | |
1038 | |
1039 (defun ccl-extract-arith-op (cc) | |
1040 (aref ccl-arith-table (ash cc -6))) | |
1041 | |
1042 (defun ccl-dump-write-expr-const (ignore cc) | |
1043 (insert (format "write (r%d %s %d)\n" | |
1044 (logand cc 7) | |
1045 (ccl-extract-arith-op cc) | |
1046 (ccl-get-next-code)))) | |
1047 | |
1048 (defun ccl-dump-write-expr-register (ignore cc) | |
1049 (insert (format "write (r%d %s r%d)\n" | |
1050 (logand cc 7) | |
1051 (ccl-extract-arith-op cc) | |
1052 (logand (ash cc -3) 7)))) | |
1053 | |
1054 (defun ccl-dump-insert-char (cc) | |
1055 (cond ((= cc ?\t) (insert " \"^I\"")) | |
1056 ((= cc ?\n) (insert " \"^J\"")) | |
1057 (t (insert (format " \"%c\"" cc))))) | |
1058 | |
1059 (defun ccl-dump-write-const-jump (ignore cc) | |
1060 (let ((address ccl-current-ic)) | |
1061 (insert "write char") | |
1062 (ccl-dump-insert-char (ccl-get-next-code)) | |
1063 (insert ", ") | |
1064 (ccl-dump-jump nil cc address))) | |
1065 | |
1066 (defun ccl-dump-write-const-read-jump (rrr cc) | |
1067 (let ((address ccl-current-ic)) | |
1068 (insert "write char") | |
1069 (ccl-dump-insert-char (ccl-get-next-code)) | |
1070 (insert (format ", read r%d, " rrr)) | |
1071 (ccl-dump-jump cc address) | |
1072 (ccl-get-next-code) ; Skip dummy READ-JUMP | |
1073 )) | |
1074 | |
1075 (defun ccl-dump-write-string-jump (ignore cc) | |
1076 (let ((address ccl-current-ic) | |
1077 (len (ccl-get-next-code)) | |
1078 (i 0)) | |
1079 (insert "write \"") | |
1080 (while (< i len) | |
1081 (let ((code (ccl-get-next-code))) | |
1082 (insert (ash code -16)) | |
1083 (if (< (1+ i) len) (insert (logand (ash code -8) 255))) | |
1084 (if (< (+ i 2) len) (insert (logand code 255)))) | |
1085 (setq i (+ i 3))) | |
1086 (insert "\", ") | |
1087 (ccl-dump-jump nil cc address))) | |
1088 | |
1089 (defun ccl-dump-write-array-read-jump (rrr cc) | |
1090 (let ((address ccl-current-ic) | |
1091 (len (ccl-get-next-code)) | |
1092 (i 0)) | |
1093 (insert (format "write array[r%d] of length %d,\n\t" rrr len)) | |
1094 (while (< i len) | |
1095 (ccl-dump-insert-char (ccl-get-next-code)) | |
1096 (setq i (1+ i))) | |
1097 (insert (format "\n\tthen read r%d, " rrr)) | |
1098 (ccl-dump-jump nil cc address) | |
1099 (ccl-get-next-code) ; Skip dummy READ-JUMP. | |
1100 )) | |
1101 | |
1102 (defun ccl-dump-read-jump (rrr cc) | |
1103 (insert (format "read r%d, " rrr)) | |
1104 (ccl-dump-jump nil cc)) | |
1105 | |
1106 (defun ccl-dump-branch (rrr len) | |
1107 (let ((jump-table-head ccl-current-ic) | |
1108 (i 0)) | |
1109 (insert (format "jump to array[r%d] of length %d\n\t" rrr len)) | |
1110 (while (<= i len) | |
1111 (insert (format "%d " (+ jump-table-head (ccl-get-next-code)))) | |
1112 (setq i (1+ i))) | |
1113 (insert "\n"))) | |
1114 | |
1115 (defun ccl-dump-read-register (rrr cc) | |
1116 (insert (format "read r%d (%d remaining)\n" rrr cc))) | |
1117 | |
1118 (defun ccl-dump-read-branch (rrr len) | |
1119 (insert (format "read r%d, " rrr)) | |
1120 (ccl-dump-branch rrr len)) | |
1121 | |
1122 (defun ccl-dump-write-register (rrr cc) | |
1123 (insert (format "write r%d (%d remaining)\n" rrr cc))) | |
1124 | |
1125 (defun ccl-dump-call (ignore cc) | |
56029
f2f5948989a5
(ccl-dump-call): Fix printing the subroutine name.
Kenichi Handa <handa@m17n.org>
parents:
53961
diff
changeset
|
1126 (let ((subroutine (car (ccl-get-next-code)))) |
f2f5948989a5
(ccl-dump-call): Fix printing the subroutine name.
Kenichi Handa <handa@m17n.org>
parents:
53961
diff
changeset
|
1127 (insert (format "call subroutine `%s'\n" subroutine)))) |
17052 | 1128 |
1129 (defun ccl-dump-write-const-string (rrr cc) | |
1130 (if (= rrr 0) | |
1131 (progn | |
1132 (insert "write char") | |
1133 (ccl-dump-insert-char cc) | |
1134 (newline)) | |
1135 (let ((len cc) | |
1136 (i 0)) | |
1137 (insert "write \"") | |
1138 (while (< i len) | |
1139 (let ((code (ccl-get-next-code))) | |
1140 (insert (format "%c" (lsh code -16))) | |
1141 (if (< (1+ i) len) | |
1142 (insert (format "%c" (logand (lsh code -8) 255)))) | |
1143 (if (< (+ i 2) len) | |
1144 (insert (format "%c" (logand code 255)))) | |
1145 (setq i (+ i 3)))) | |
1146 (insert "\"\n")))) | |
1147 | |
1148 (defun ccl-dump-write-array (rrr cc) | |
1149 (let ((i 0)) | |
1150 (insert (format "write array[r%d] of length %d\n\t" rrr cc)) | |
1151 (while (< i cc) | |
1152 (ccl-dump-insert-char (ccl-get-next-code)) | |
1153 (setq i (1+ i))) | |
1154 (insert "\n"))) | |
1155 | |
1156 (defun ccl-dump-end (&rest ignore) | |
1157 (insert "end\n")) | |
1158 | |
1159 (defun ccl-dump-set-assign-expr-const (rrr cc) | |
1160 (insert (format "r%d %s= %d\n" | |
1161 rrr | |
1162 (ccl-extract-arith-op cc) | |
1163 (ccl-get-next-code)))) | |
1164 | |
1165 (defun ccl-dump-set-assign-expr-register (rrr cc) | |
1166 (insert (format "r%d %s= r%d\n" | |
1167 rrr | |
1168 (ccl-extract-arith-op cc) | |
1169 (logand cc 7)))) | |
1170 | |
1171 (defun ccl-dump-set-expr-const (rrr cc) | |
1172 (insert (format "r%d = r%d %s %d\n" | |
1173 rrr | |
1174 (logand cc 7) | |
1175 (ccl-extract-arith-op cc) | |
1176 (ccl-get-next-code)))) | |
1177 | |
1178 (defun ccl-dump-set-expr-register (rrr cc) | |
1179 (insert (format "r%d = r%d %s r%d\n" | |
1180 rrr | |
1181 (logand cc 7) | |
1182 (ccl-extract-arith-op cc) | |
1183 (logand (ash cc -3) 7)))) | |
1184 | |
1185 (defun ccl-dump-jump-cond-expr-const (rrr cc) | |
1186 (let ((address ccl-current-ic)) | |
1187 (insert (format "if !(r%d %s %d), " | |
1188 rrr | |
1189 (aref ccl-arith-table (ccl-get-next-code)) | |
1190 (ccl-get-next-code))) | |
1191 (ccl-dump-jump nil cc address))) | |
1192 | |
1193 (defun ccl-dump-jump-cond-expr-register (rrr cc) | |
1194 (let ((address ccl-current-ic)) | |
1195 (insert (format "if !(r%d %s r%d), " | |
1196 rrr | |
1197 (aref ccl-arith-table (ccl-get-next-code)) | |
1198 (ccl-get-next-code))) | |
1199 (ccl-dump-jump nil cc address))) | |
1200 | |
1201 (defun ccl-dump-read-jump-cond-expr-const (rrr cc) | |
1202 (insert (format "read r%d, " rrr)) | |
1203 (ccl-dump-jump-cond-expr-const rrr cc)) | |
1204 | |
1205 (defun ccl-dump-read-jump-cond-expr-register (rrr cc) | |
1206 (insert (format "read r%d, " rrr)) | |
1207 (ccl-dump-jump-cond-expr-register rrr cc)) | |
1208 | |
1209 (defun ccl-dump-binary (ccl-code) | |
1210 (let ((len (length ccl-code)) | |
1211 (i 2)) | |
1212 (while (< i len) | |
1213 (let ((code (aref ccl-code i)) | |
1214 (j 27)) | |
1215 (while (>= j 0) | |
1216 (insert (if (= (logand code (ash 1 j)) 0) ?0 ?1)) | |
1217 (setq j (1- j))) | |
1218 (setq code (logand code 31)) | |
1219 (if (< code (length ccl-code-table)) | |
1220 (insert (format ":%s" (aref ccl-code-table code)))) | |
1221 (insert "\n")) | |
1222 (setq i (1+ i))))) | |
1223 | |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1224 (defun ccl-dump-ex-cmd (rrr cc) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1225 (let* ((RRR (logand cc ?\x7)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1226 (Rrr (logand (ash cc -3) ?\x7)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1227 (ex-op (aref ccl-extended-code-table (logand (ash cc -6) ?\x3fff)))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1228 (insert (format "<%s> " ex-op)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1229 (funcall (get ex-op 'ccl-dump-function) rrr RRR Rrr))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1230 |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1231 (defun ccl-dump-read-multibyte-character (rrr RRR Rrr) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1232 (insert (format "read-multibyte-character r%d r%d\n" RRR rrr))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1233 |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1234 (defun ccl-dump-write-multibyte-character (rrr RRR Rrr) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1235 (insert (format "write-multibyte-character r%d r%d\n" RRR rrr))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1236 |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
1237 (defun ccl-dump-translate-character (rrr RRR Rrr) |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22127
diff
changeset
|
1238 (insert (format "translation table(r%d) r%d r%d\n" Rrr RRR rrr))) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1239 |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
1240 (defun ccl-dump-translate-character-const-tbl (rrr RRR Rrr) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1241 (let ((tbl (ccl-get-next-code))) |
23771
0ed776e14a50
(ccl-dump-translate-character-const-tbl):
Kenichi Handa <handa@m17n.org>
parents:
23432
diff
changeset
|
1242 (insert (format "translation table(%S) r%d r%d\n" tbl RRR rrr)))) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1243 |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1244 (defun ccl-dump-lookup-int-const-tbl (rrr RRR Rrr) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1245 (let ((tbl (ccl-get-next-code))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1246 (insert (format "hash table(%S) r%d r%d\n" tbl RRR rrr)))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1247 |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1248 (defun ccl-dump-lookup-char-const-tbl (rrr RRR Rrr) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1249 (let ((tbl (ccl-get-next-code))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1250 (insert (format "hash table(%S) r%d r%d\n" tbl RRR rrr)))) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1251 |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1252 (defun ccl-dump-iterate-multiple-map (rrr RRR Rrr) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1253 (let ((notbl (ccl-get-next-code)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1254 (i 0) id) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1255 (insert (format "iterate-multiple-map r%d r%d\n" RRR rrr)) |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
1256 (insert (format "\tnumber of maps is %d .\n\t [" notbl)) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1257 (while (< i notbl) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1258 (setq id (ccl-get-next-code)) |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1259 (insert (format "%S" id)) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1260 (setq i (1+ i))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1261 (insert "]\n"))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1262 |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
1263 (defun ccl-dump-map-multiple (rrr RRR Rrr) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1264 (let ((notbl (ccl-get-next-code)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1265 (i 0) id) |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
1266 (insert (format "map-multiple r%d r%d\n" RRR rrr)) |
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
1267 (insert (format "\tnumber of maps and separators is %d\n\t [" notbl)) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1268 (while (< i notbl) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1269 (setq id (ccl-get-next-code)) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1270 (if (= id -1) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1271 (insert "]\n\t [") |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1272 (insert (format "%S " id))) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1273 (setq i (1+ i))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1274 (insert "]\n"))) |
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1275 |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
1276 (defun ccl-dump-map-single (rrr RRR Rrr) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1277 (let ((id (ccl-get-next-code))) |
22127
dc00ef92855c
Change term translate-XXX-map to map-XXX
Kenichi Handa <handa@m17n.org>
parents:
21977
diff
changeset
|
1278 (insert (format "map-single r%d r%d map(%S)\n" RRR rrr id)))) |
20735
d97c44710cac
Comment about CCL syntax modified.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
1279 |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1280 |
47939
5f47d61ffbdc
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
46493
diff
changeset
|
1281 ;; CCL emulation staffs |
17052 | 1282 |
1283 ;; Not yet implemented. | |
1284 | |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1285 ;; Auto-loaded functions. |
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1286 |
17052 | 1287 ;;;###autoload |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1288 (defmacro declare-ccl-program (name &optional vector) |
17052 | 1289 "Declare NAME as a name of CCL program. |
1290 | |
25064
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1291 This macro exists for backward compatibility. In the old version of |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1292 Emacs, to compile a CCL program which calls another CCL program not |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1293 yet defined, it must be declared as a CCL program in advance. But, |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1294 now CCL program names are resolved not at compile time but before |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1295 execution. |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1296 |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1297 Optional arg VECTOR is a compiled CCL code of the CCL program." |
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1298 `(put ',name 'ccl-program-idx (register-ccl-program ',name ,vector))) |
17052 | 1299 |
1300 ;;;###autoload | |
1301 (defmacro define-ccl-program (name ccl-program &optional doc) | |
1302 "Set NAME the compiled code of CCL-PROGRAM. | |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1303 |
35299
ff1e51ba81cb
(define-ccl-program): Fix docstring.
Kenichi Handa <handa@m17n.org>
parents:
35252
diff
changeset
|
1304 CCL-PROGRAM has this form: |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1305 (BUFFER_MAGNIFICATION |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1306 CCL_MAIN_CODE |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1307 [ CCL_EOF_CODE ]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1308 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1309 BUFFER_MAGNIFICATION is an integer value specifying the approximate |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1310 output buffer magnification size compared with the bytes of input data |
60514
322d95d05b23
(define-ccl-program): Fix docstring about
Kenichi Handa <handa@m17n.org>
parents:
56029
diff
changeset
|
1311 text. It is assured that the actual output buffer has 256 bytes |
322d95d05b23
(define-ccl-program): Fix docstring about
Kenichi Handa <handa@m17n.org>
parents:
56029
diff
changeset
|
1312 more than the size calculated by BUFFER_MAGNIFICATION. |
322d95d05b23
(define-ccl-program): Fix docstring about
Kenichi Handa <handa@m17n.org>
parents:
56029
diff
changeset
|
1313 If the value is zero, the CCL program can't execute `read' and |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1314 `write' commands. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1315 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1316 CCL_MAIN_CODE and CCL_EOF_CODE are CCL program codes. CCL_MAIN_CODE |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1317 executed at first. If there's no more input data when `read' command |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1318 is executed in CCL_MAIN_CODE, CCL_EOF_CODE is executed. If |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1319 CCL_MAIN_CODE is terminated, CCL_EOF_CODE is not executed. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1320 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1321 Here's the syntax of CCL program code in BNF notation. The lines |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1322 starting by two semicolons (and optional leading spaces) describe the |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1323 semantics. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1324 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1325 CCL_MAIN_CODE := CCL_BLOCK |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1326 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1327 CCL_EOF_CODE := CCL_BLOCK |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1328 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1329 CCL_BLOCK := STATEMENT | (STATEMENT [STATEMENT ...]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1330 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1331 STATEMENT := |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1332 SET | IF | BRANCH | LOOP | REPEAT | BREAK | READ | WRITE | CALL |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1333 | TRANSLATE | MAP | LOOKUP | END |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1334 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1335 SET := (REG = EXPRESSION) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1336 | (REG ASSIGNMENT_OPERATOR EXPRESSION) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1337 ;; The following form is the same as (r0 = integer). |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1338 | integer |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1339 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1340 EXPRESSION := ARG | (EXPRESSION OPERATOR ARG) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1341 |
37827
00b85403781e
(define-ccl-program): Fix a typo. From Pavel Janik <Pavel@Janik.cz>.
Eli Zaretskii <eliz@gnu.org>
parents:
36466
diff
changeset
|
1342 ;; Evaluate EXPRESSION. If the result is nonzero, execute |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1343 ;; CCL_BLOCK_0. Otherwise, execute CCL_BLOCK_1. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1344 IF := (if EXPRESSION CCL_BLOCK_0 CCL_BLOCK_1) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1345 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1346 ;; Evaluate EXPRESSION. Provided that the result is N, execute |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1347 ;; CCL_BLOCK_N. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1348 BRANCH := (branch EXPRESSION CCL_BLOCK_0 [CCL_BLOCK_1 ...]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1349 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1350 ;; Execute STATEMENTs until (break) or (end) is executed. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1351 LOOP := (loop STATEMENT [STATEMENT ...]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1352 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1353 ;; Terminate the most inner loop. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1354 BREAK := (break) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1355 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1356 REPEAT := |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1357 ;; Jump to the head of the most inner loop. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1358 (repeat) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1359 ;; Same as: ((write [REG | integer | string]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1360 ;; (repeat)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1361 | (write-repeat [REG | integer | string]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1362 ;; Same as: ((write REG [ARRAY]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1363 ;; (read REG) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1364 ;; (repeat)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1365 | (write-read-repeat REG [ARRAY]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1366 ;; Same as: ((write integer) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1367 ;; (read REG) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1368 ;; (repeat)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1369 | (write-read-repeat REG integer) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1370 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1371 READ := ;; Set REG_0 to a byte read from the input text, set REG_1 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1372 ;; to the next byte read, and so on. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1373 (read REG_0 [REG_1 ...]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1374 ;; Same as: ((read REG) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1375 ;; (if (REG OPERATOR ARG) CCL_BLOCK_0 CCL_BLOCK_1)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1376 | (read-if (REG OPERATOR ARG) CCL_BLOCK_0 CCL_BLOCK_1) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1377 ;; Same as: ((read REG) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1378 ;; (branch REG CCL_BLOCK_0 [CCL_BLOCK_1 ...])) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1379 | (read-branch REG CCL_BLOCK_0 [CCL_BLOCK_1 ...]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1380 ;; Read a character from the input text while parsing |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1381 ;; multibyte representation, set REG_0 to the charset ID of |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1382 ;; the character, set REG_1 to the code point of the |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1383 ;; character. If the dimension of charset is two, set REG_1 |
35252
496f65930f98
(define-ccl-program): Fix docstring.
Kenichi Handa <handa@m17n.org>
parents:
30845
diff
changeset
|
1384 ;; to ((CODE0 << 7) | CODE1), where CODE0 is the first code |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1385 ;; point and CODE1 is the second code point. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1386 | (read-multibyte-character REG_0 REG_1) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1387 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1388 WRITE := |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1389 ;; Write REG_0, REG_1, ... to the output buffer. If REG_N is |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1390 ;; a multibyte character, write the corresponding multibyte |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1391 ;; representation. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1392 (write REG_0 [REG_1 ...]) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1393 ;; Same as: ((r7 = EXPRESSION) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1394 ;; (write r7)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1395 | (write EXPRESSION) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1396 ;; Write the value of `integer' to the output buffer. If it |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1397 ;; is a multibyte character, write the corresponding multibyte |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1398 ;; representation. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1399 | (write integer) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1400 ;; Write the byte sequence of `string' as is to the output |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1401 ;; buffer. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1402 | (write string) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1403 ;; Same as: (write string) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1404 | string |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1405 ;; Provided that the value of REG is N, write Nth element of |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1406 ;; ARRAY to the output buffer. If it is a multibyte |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1407 ;; character, write the corresponding multibyte |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1408 ;; representation. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1409 | (write REG ARRAY) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1410 ;; Write a multibyte representation of a character whose |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1411 ;; charset ID is REG_0 and code point is REG_1. If the |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1412 ;; dimension of the charset is two, REG_1 should be ((CODE0 << |
35252
496f65930f98
(define-ccl-program): Fix docstring.
Kenichi Handa <handa@m17n.org>
parents:
30845
diff
changeset
|
1413 ;; 7) | CODE1), where CODE0 is the first code point and CODE1 |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1414 ;; is the second code point of the character. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1415 | (write-multibyte-character REG_0 REG_1) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1416 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1417 ;; Call CCL program whose name is ccl-program-name. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1418 CALL := (call ccl-program-name) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1419 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1420 ;; Terminate the CCL program. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1421 END := (end) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1422 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1423 ;; CCL registers that can contain any integer value. As r7 is also |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1424 ;; used by CCL interpreter, its value is changed unexpectedly. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1425 REG := r0 | r1 | r2 | r3 | r4 | r5 | r6 | r7 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1426 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1427 ARG := REG | integer |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1428 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1429 OPERATOR := |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1430 ;; Normal arithmethic operators (same meaning as C code). |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1431 + | - | * | / | % |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1432 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1433 ;; Bitwize operators (same meaning as C code) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1434 | & | `|' | ^ |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1435 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1436 ;; Shifting operators (same meaning as C code) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1437 | << | >> |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1438 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1439 ;; (REG = ARG_0 <8 ARG_1) means: |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1440 ;; (REG = ((ARG_0 << 8) | ARG_1)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1441 | <8 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1442 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1443 ;; (REG = ARG_0 >8 ARG_1) means: |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1444 ;; ((REG = (ARG_0 >> 8)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1445 ;; (r7 = (ARG_0 & 255))) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1446 | >8 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1447 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1448 ;; (REG = ARG_0 // ARG_1) means: |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1449 ;; ((REG = (ARG_0 / ARG_1)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1450 ;; (r7 = (ARG_0 % ARG_1))) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1451 | // |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1452 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1453 ;; Normal comparing operators (same meaning as C code) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1454 | < | > | == | <= | >= | != |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1455 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1456 ;; If ARG_0 and ARG_1 are higher and lower byte of Shift-JIS |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1457 ;; code, and CHAR is the corresponding JISX0208 character, |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1458 ;; (REG = ARG_0 de-sjis ARG_1) means: |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1459 ;; ((REG = CODE0) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1460 ;; (r7 = CODE1)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1461 ;; where CODE0 is the first code point of CHAR, CODE1 is the |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1462 ;; second code point of CHAR. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1463 | de-sjis |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1464 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1465 ;; If ARG_0 and ARG_1 are the first and second code point of |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1466 ;; JISX0208 character CHAR, and SJIS is the correponding |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1467 ;; Shift-JIS code, |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1468 ;; (REG = ARG_0 en-sjis ARG_1) means: |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1469 ;; ((REG = HIGH) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1470 ;; (r7 = LOW)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1471 ;; where HIGH is the higher byte of SJIS, LOW is the lower |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1472 ;; byte of SJIS. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1473 | en-sjis |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1474 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1475 ASSIGNMENT_OPERATOR := |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1476 ;; Same meaning as C code |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1477 += | -= | *= | /= | %= | &= | `|=' | ^= | <<= | >>= |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1478 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1479 ;; (REG <8= ARG) is the same as: |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1480 ;; ((REG <<= 8) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1481 ;; (REG |= ARG)) |
47939
5f47d61ffbdc
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
46493
diff
changeset
|
1482 | <8= |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1483 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1484 ;; (REG >8= ARG) is the same as: |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1485 ;; ((r7 = (REG & 255)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1486 ;; (REG >>= 8)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1487 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1488 ;; (REG //= ARG) is the same as: |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1489 ;; ((r7 = (REG % ARG)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1490 ;; (REG /= ARG)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1491 | //= |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1492 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1493 ARRAY := `[' integer ... `]' |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1494 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1495 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1496 TRANSLATE := |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1497 (translate-character REG(table) REG(charset) REG(codepoint)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1498 | (translate-character SYMBOL REG(charset) REG(codepoint)) |
36037 | 1499 ;; SYMBOL must refer to a table defined by `define-translation-table'. |
46493
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1500 LOOKUP := |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1501 (lookup-character SYMBOL REG(charset) REG(codepoint)) |
109eee3b7af4
(ccl-command-table): Add lookup-integer,
Dave Love <fx@gnu.org>
parents:
38414
diff
changeset
|
1502 | (lookup-integer SYMBOL REG(integer)) |
51168 | 1503 ;; SYMBOL refers to a table defined by `define-translation-hash-table'. |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1504 MAP := |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1505 (iterate-multiple-map REG REG MAP-IDs) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1506 | (map-multiple REG REG (MAP-SET)) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1507 | (map-single REG REG MAP-ID) |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1508 MAP-IDs := MAP-ID ... |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1509 MAP-SET := MAP-IDs | (MAP-IDs) MAP-SET |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1510 MAP-ID := integer |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1511 " |
17052 | 1512 `(let ((prog ,(ccl-compile (eval ccl-program)))) |
1513 (defconst ,name prog ,doc) | |
1514 (put ',name 'ccl-program-idx (register-ccl-program ',name prog)) | |
1515 nil)) | |
1516 | |
1517 ;;;###autoload | |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1518 (defmacro check-ccl-program (ccl-program &optional name) |
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1519 "Check validity of CCL-PROGRAM. |
25064
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1520 If CCL-PROGRAM is a symbol denoting a CCL program, return |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1521 CCL-PROGRAM, else return nil. |
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1522 If CCL-PROGRAM is a vector and optional arg NAME (symbol) is supplied, |
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1523 register CCL-PROGRAM by name NAME, and return NAME." |
25064
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1524 `(if (ccl-program-p ,ccl-program) |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1525 (if (vectorp ,ccl-program) |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1526 (progn |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1527 (register-ccl-program ,name ,ccl-program) |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1528 ,name) |
206f04753cc1
(ccl-embed-symbol): New function.
Kenichi Handa <handa@m17n.org>
parents:
24152
diff
changeset
|
1529 ,ccl-program))) |
21661
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1530 |
f763b61886ce
(ccl-compile-unify-character): Inhibit
Kenichi Handa <handa@m17n.org>
parents:
21645
diff
changeset
|
1531 ;;;###autoload |
17052 | 1532 (defun ccl-execute-with-args (ccl-prog &rest args) |
1533 "Execute CCL-PROGRAM with registers initialized by the remaining args. | |
30845
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1534 The return value is a vector of resulting CCL registers. |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1535 |
dcfcae58d8d6
(declare-ccl-program): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
30705
diff
changeset
|
1536 See the documentation of `define-ccl-program' for the detail of CCL program." |
17052 | 1537 (let ((reg (make-vector 8 0)) |
1538 (i 0)) | |
1539 (while (and args (< i 8)) | |
1540 (if (not (integerp (car args))) | |
1541 (error "Arguments should be integer")) | |
1542 (aset reg i (car args)) | |
1543 (setq args (cdr args) i (1+ i))) | |
1544 (ccl-execute ccl-prog reg) | |
1545 reg)) | |
1546 | |
1547 (provide 'ccl) | |
1548 | |
52401 | 1549 ;;; arch-tag: 836bcd27-63a1-4a56-b232-1145ecf823fb |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37827
diff
changeset
|
1550 ;;; ccl.el ends here |