Mercurial > emacs
annotate src/ccl.c @ 101278:5f5536e16f6b
ERC: Rotate ChangeLog.
author | Michael Olson <mwolson@gnu.org> |
---|---|
date | Sun, 18 Jan 2009 21:02:59 +0000 |
parents | e038c1a8307c |
children | 68dd71358159 |
rev | line source |
---|---|
17052 | 1 /* CCL (Code Conversion Language) interpreter. |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
67658
diff
changeset
|
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, |
100951 | 3 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
68651
diff
changeset
|
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
100951 | 5 2005, 2006, 2007, 2008, 2009 |
67658 | 6 National Institute of Advanced Industrial Science and Technology (AIST) |
7 Registration Number H14PRO021 | |
89483 | 8 Copyright (C) 2003 |
88361 | 9 National Institute of Advanced Industrial Science and Technology (AIST) |
10 Registration Number H13PRO009 | |
17052 | 11 |
17071 | 12 This file is part of GNU Emacs. |
13 | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93759
diff
changeset
|
14 GNU Emacs is free software: you can redistribute it and/or modify |
17071 | 15 it under the terms of the GNU General Public License as published by |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93759
diff
changeset
|
16 the Free Software Foundation, either version 3 of the License, or |
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93759
diff
changeset
|
17 (at your option) any later version. |
17052 | 18 |
17071 | 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. | |
17052 | 23 |
17071 | 24 You should have received a copy of the GNU General Public License |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93759
diff
changeset
|
25 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
17052 | 26 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25662
diff
changeset
|
27 #include <config.h> |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25662
diff
changeset
|
28 |
17052 | 29 #include <stdio.h> |
30 | |
31 #include "lisp.h" | |
88361 | 32 #include "character.h" |
17052 | 33 #include "charset.h" |
34 #include "ccl.h" | |
35 #include "coding.h" | |
36 | |
88361 | 37 Lisp_Object Qccl, Qcclp; |
38 | |
22718 | 39 /* This contains all code conversion map available to CCL. */ |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
40 Lisp_Object Vcode_conversion_map_vector; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
41 |
17052 | 42 /* Alist of fontname patterns vs corresponding CCL program. */ |
43 Lisp_Object Vfont_ccl_encoder_alist; | |
44 | |
21551 | 45 /* This symbol is a property which assocates with ccl program vector. |
46 Ex: (get 'ccl-big5-encoder 'ccl-program) returns ccl program vector. */ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
47 Lisp_Object Qccl_program; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
48 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
49 /* These symbols are properties which associate with code conversion |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
50 map and their ID respectively. */ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
51 Lisp_Object Qcode_conversion_map; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
52 Lisp_Object Qcode_conversion_map_id; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
53 |
21551 | 54 /* Symbols of ccl program have this property, a value of the property |
55 is an index for Vccl_protram_table. */ | |
56 Lisp_Object Qccl_program_idx; | |
57 | |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
58 /* Table of registered CCL programs. Each element is a vector of |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
59 NAME, CCL_PROG, RESOLVEDP, and UPDATEDP, where NAME (symbol) is the |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
60 name of the program, CCL_PROG (vector) is the compiled code of the |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
61 program, RESOLVEDP (t or nil) is the flag to tell if symbols in |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
62 CCL_PROG is already resolved to index numbers or not, UPDATEDP (t |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
63 or nil) is the flat to tell if the CCL program is updated after it |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
64 was once used. */ |
17052 | 65 Lisp_Object Vccl_program_table; |
66 | |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
67 /* Vector of registered hash tables for translation. */ |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
68 Lisp_Object Vtranslation_hash_table_vector; |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
69 |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
70 /* Return a hash table of id number ID. */ |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
71 #define GET_HASH_TABLE(id) \ |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
72 (XHASH_TABLE (XCDR(XVECTOR(Vtranslation_hash_table_vector)->contents[(id)]))) |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
73 |
88925
aa33304a3bb8
Remove `emacs' conditional. Include hash table stuff
Dave Love <fx@gnu.org>
parents:
88899
diff
changeset
|
74 extern int charset_unicode; |
aa33304a3bb8
Remove `emacs' conditional. Include hash table stuff
Dave Love <fx@gnu.org>
parents:
88899
diff
changeset
|
75 |
17052 | 76 /* CCL (Code Conversion Language) is a simple language which has |
77 operations on one input buffer, one output buffer, and 7 registers. | |
78 The syntax of CCL is described in `ccl.el'. Emacs Lisp function | |
79 `ccl-compile' compiles a CCL program and produces a CCL code which | |
80 is a vector of integers. The structure of this vector is as | |
81 follows: The 1st element: buffer-magnification, a factor for the | |
82 size of output buffer compared with the size of input buffer. The | |
83 2nd element: address of CCL code to be executed when encountered | |
84 with end of input stream. The 3rd and the remaining elements: CCL | |
85 codes. */ | |
86 | |
87 /* Header of CCL compiled code */ | |
88 #define CCL_HEADER_BUF_MAG 0 | |
89 #define CCL_HEADER_EOF 1 | |
90 #define CCL_HEADER_MAIN 2 | |
91 | |
92 /* CCL code is a sequence of 28-bit non-negative integers (i.e. the | |
93 MSB is always 0), each contains CCL command and/or arguments in the | |
94 following format: | |
95 | |
96 |----------------- integer (28-bit) ------------------| | |
97 |------- 17-bit ------|- 3-bit --|- 3-bit --|- 5-bit -| | |
98 |--constant argument--|-register-|-register-|-command-| | |
99 ccccccccccccccccc RRR rrr XXXXX | |
100 or | |
101 |------- relative address -------|-register-|-command-| | |
102 cccccccccccccccccccc rrr XXXXX | |
103 or | |
104 |------------- constant or other args ----------------| | |
105 cccccccccccccccccccccccccccc | |
106 | |
107 where, `cc...c' is a non-negative integer indicating constant value | |
108 (the left most `c' is always 0) or an absolute jump address, `RRR' | |
109 and `rrr' are CCL register number, `XXXXX' is one of the following | |
110 CCL commands. */ | |
111 | |
112 /* CCL commands | |
113 | |
114 Each comment fields shows one or more lines for command syntax and | |
115 the following lines for semantics of the command. In semantics, IC | |
116 stands for Instruction Counter. */ | |
117 | |
118 #define CCL_SetRegister 0x00 /* Set register a register value: | |
119 1:00000000000000000RRRrrrXXXXX | |
120 ------------------------------ | |
121 reg[rrr] = reg[RRR]; | |
122 */ | |
123 | |
124 #define CCL_SetShortConst 0x01 /* Set register a short constant value: | |
125 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
126 ------------------------------ | |
127 reg[rrr] = CCCCCCCCCCCCCCCCCCC; | |
128 */ | |
129 | |
130 #define CCL_SetConst 0x02 /* Set register a constant value: | |
131 1:00000000000000000000rrrXXXXX | |
132 2:CONSTANT | |
133 ------------------------------ | |
134 reg[rrr] = CONSTANT; | |
135 IC++; | |
136 */ | |
137 | |
138 #define CCL_SetArray 0x03 /* Set register an element of array: | |
139 1:CCCCCCCCCCCCCCCCCRRRrrrXXXXX | |
140 2:ELEMENT[0] | |
141 3:ELEMENT[1] | |
142 ... | |
143 ------------------------------ | |
144 if (0 <= reg[RRR] < CC..C) | |
145 reg[rrr] = ELEMENT[reg[RRR]]; | |
146 IC += CC..C; | |
147 */ | |
148 | |
149 #define CCL_Jump 0x04 /* Jump: | |
150 1:A--D--D--R--E--S--S-000XXXXX | |
151 ------------------------------ | |
152 IC += ADDRESS; | |
153 */ | |
154 | |
155 /* Note: If CC..C is greater than 0, the second code is omitted. */ | |
156 | |
157 #define CCL_JumpCond 0x05 /* Jump conditional: | |
158 1:A--D--D--R--E--S--S-rrrXXXXX | |
159 ------------------------------ | |
160 if (!reg[rrr]) | |
161 IC += ADDRESS; | |
162 */ | |
163 | |
164 | |
165 #define CCL_WriteRegisterJump 0x06 /* Write register and jump: | |
166 1:A--D--D--R--E--S--S-rrrXXXXX | |
167 ------------------------------ | |
168 write (reg[rrr]); | |
169 IC += ADDRESS; | |
170 */ | |
171 | |
172 #define CCL_WriteRegisterReadJump 0x07 /* Write register, read, and jump: | |
173 1:A--D--D--R--E--S--S-rrrXXXXX | |
174 2:A--D--D--R--E--S--S-rrrYYYYY | |
175 ----------------------------- | |
176 write (reg[rrr]); | |
177 IC++; | |
178 read (reg[rrr]); | |
179 IC += ADDRESS; | |
180 */ | |
181 /* Note: If read is suspended, the resumed execution starts from the | |
182 second code (YYYYY == CCL_ReadJump). */ | |
183 | |
184 #define CCL_WriteConstJump 0x08 /* Write constant and jump: | |
185 1:A--D--D--R--E--S--S-000XXXXX | |
186 2:CONST | |
187 ------------------------------ | |
188 write (CONST); | |
189 IC += ADDRESS; | |
190 */ | |
191 | |
192 #define CCL_WriteConstReadJump 0x09 /* Write constant, read, and jump: | |
193 1:A--D--D--R--E--S--S-rrrXXXXX | |
194 2:CONST | |
195 3:A--D--D--R--E--S--S-rrrYYYYY | |
196 ----------------------------- | |
197 write (CONST); | |
198 IC += 2; | |
199 read (reg[rrr]); | |
200 IC += ADDRESS; | |
201 */ | |
202 /* Note: If read is suspended, the resumed execution starts from the | |
203 second code (YYYYY == CCL_ReadJump). */ | |
204 | |
205 #define CCL_WriteStringJump 0x0A /* Write string and jump: | |
206 1:A--D--D--R--E--S--S-000XXXXX | |
207 2:LENGTH | |
90333
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
208 3:000MSTRIN[0]STRIN[1]STRIN[2] |
17052 | 209 ... |
210 ------------------------------ | |
90333
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
211 if (M) |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
212 write_multibyte_string (STRING, LENGTH); |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
213 else |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
214 write_string (STRING, LENGTH); |
17052 | 215 IC += ADDRESS; |
216 */ | |
217 | |
218 #define CCL_WriteArrayReadJump 0x0B /* Write an array element, read, and jump: | |
219 1:A--D--D--R--E--S--S-rrrXXXXX | |
220 2:LENGTH | |
221 3:ELEMENET[0] | |
222 4:ELEMENET[1] | |
223 ... | |
224 N:A--D--D--R--E--S--S-rrrYYYYY | |
225 ------------------------------ | |
226 if (0 <= reg[rrr] < LENGTH) | |
227 write (ELEMENT[reg[rrr]]); | |
228 IC += LENGTH + 2; (... pointing at N+1) | |
229 read (reg[rrr]); | |
230 IC += ADDRESS; | |
231 */ | |
232 /* Note: If read is suspended, the resumed execution starts from the | |
17323
15fa68d983e7
(ccl_driver): Fix bug of the case CCL_WriteArrayReadJump.
Kenichi Handa <handa@m17n.org>
parents:
17122
diff
changeset
|
233 Nth code (YYYYY == CCL_ReadJump). */ |
17052 | 234 |
235 #define CCL_ReadJump 0x0C /* Read and jump: | |
236 1:A--D--D--R--E--S--S-rrrYYYYY | |
237 ----------------------------- | |
238 read (reg[rrr]); | |
239 IC += ADDRESS; | |
240 */ | |
241 | |
242 #define CCL_Branch 0x0D /* Jump by branch table: | |
243 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
244 2:A--D--D--R--E-S-S[0]000XXXXX | |
245 3:A--D--D--R--E-S-S[1]000XXXXX | |
246 ... | |
247 ------------------------------ | |
248 if (0 <= reg[rrr] < CC..C) | |
249 IC += ADDRESS[reg[rrr]]; | |
250 else | |
251 IC += ADDRESS[CC..C]; | |
252 */ | |
253 | |
254 #define CCL_ReadRegister 0x0E /* Read bytes into registers: | |
255 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
256 2:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
257 ... | |
258 ------------------------------ | |
259 while (CCC--) | |
260 read (reg[rrr]); | |
261 */ | |
262 | |
263 #define CCL_WriteExprConst 0x0F /* write result of expression: | |
264 1:00000OPERATION000RRR000XXXXX | |
265 2:CONSTANT | |
266 ------------------------------ | |
267 write (reg[RRR] OPERATION CONSTANT); | |
268 IC++; | |
269 */ | |
270 | |
271 /* Note: If the Nth read is suspended, the resumed execution starts | |
272 from the Nth code. */ | |
273 | |
274 #define CCL_ReadBranch 0x10 /* Read one byte into a register, | |
275 and jump by branch table: | |
276 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
277 2:A--D--D--R--E-S-S[0]000XXXXX | |
278 3:A--D--D--R--E-S-S[1]000XXXXX | |
279 ... | |
280 ------------------------------ | |
281 read (read[rrr]); | |
282 if (0 <= reg[rrr] < CC..C) | |
283 IC += ADDRESS[reg[rrr]]; | |
284 else | |
285 IC += ADDRESS[CC..C]; | |
286 */ | |
287 | |
288 #define CCL_WriteRegister 0x11 /* Write registers: | |
289 1:CCCCCCCCCCCCCCCCCCCrrrXXXXX | |
290 2:CCCCCCCCCCCCCCCCCCCrrrXXXXX | |
291 ... | |
292 ------------------------------ | |
293 while (CCC--) | |
294 write (reg[rrr]); | |
295 ... | |
296 */ | |
297 | |
298 /* Note: If the Nth write is suspended, the resumed execution | |
299 starts from the Nth code. */ | |
300 | |
301 #define CCL_WriteExprRegister 0x12 /* Write result of expression | |
302 1:00000OPERATIONRrrRRR000XXXXX | |
303 ------------------------------ | |
304 write (reg[RRR] OPERATION reg[Rrr]); | |
305 */ | |
306 | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
307 #define CCL_Call 0x13 /* Call the CCL program whose ID is |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
308 CC..C or cc..c. |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
309 1:CCCCCCCCCCCCCCCCCCCCFFFXXXXX |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
310 [2:00000000cccccccccccccccccccc] |
17052 | 311 ------------------------------ |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
312 if (FFF) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
313 call (cc..c) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
314 IC++; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
315 else |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
316 call (CC..C) |
17052 | 317 */ |
318 | |
319 #define CCL_WriteConstString 0x14 /* Write a constant or a string: | |
320 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
90333
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
321 [2:000MSTRIN[0]STRIN[1]STRIN[2]] |
17052 | 322 [...] |
323 ----------------------------- | |
324 if (!rrr) | |
325 write (CC..C) | |
326 else | |
90333
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
327 if (M) |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
328 write_multibyte_string (STRING, CC..C); |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
329 else |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
330 write_string (STRING, CC..C); |
17052 | 331 IC += (CC..C + 2) / 3; |
332 */ | |
333 | |
334 #define CCL_WriteArray 0x15 /* Write an element of array: | |
335 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
336 2:ELEMENT[0] | |
337 3:ELEMENT[1] | |
338 ... | |
339 ------------------------------ | |
340 if (0 <= reg[rrr] < CC..C) | |
341 write (ELEMENT[reg[rrr]]); | |
342 IC += CC..C; | |
343 */ | |
344 | |
345 #define CCL_End 0x16 /* Terminate: | |
346 1:00000000000000000000000XXXXX | |
347 ------------------------------ | |
348 terminate (); | |
349 */ | |
350 | |
351 /* The following two codes execute an assignment arithmetic/logical | |
352 operation. The form of the operation is like REG OP= OPERAND. */ | |
353 | |
354 #define CCL_ExprSelfConst 0x17 /* REG OP= constant: | |
355 1:00000OPERATION000000rrrXXXXX | |
356 2:CONSTANT | |
357 ------------------------------ | |
358 reg[rrr] OPERATION= CONSTANT; | |
359 */ | |
360 | |
361 #define CCL_ExprSelfReg 0x18 /* REG1 OP= REG2: | |
362 1:00000OPERATION000RRRrrrXXXXX | |
363 ------------------------------ | |
364 reg[rrr] OPERATION= reg[RRR]; | |
365 */ | |
366 | |
367 /* The following codes execute an arithmetic/logical operation. The | |
368 form of the operation is like REG_X = REG_Y OP OPERAND2. */ | |
369 | |
370 #define CCL_SetExprConst 0x19 /* REG_X = REG_Y OP constant: | |
371 1:00000OPERATION000RRRrrrXXXXX | |
372 2:CONSTANT | |
373 ------------------------------ | |
374 reg[rrr] = reg[RRR] OPERATION CONSTANT; | |
375 IC++; | |
376 */ | |
377 | |
378 #define CCL_SetExprReg 0x1A /* REG1 = REG2 OP REG3: | |
379 1:00000OPERATIONRrrRRRrrrXXXXX | |
380 ------------------------------ | |
381 reg[rrr] = reg[RRR] OPERATION reg[Rrr]; | |
382 */ | |
383 | |
384 #define CCL_JumpCondExprConst 0x1B /* Jump conditional according to | |
385 an operation on constant: | |
386 1:A--D--D--R--E--S--S-rrrXXXXX | |
387 2:OPERATION | |
388 3:CONSTANT | |
389 ----------------------------- | |
390 reg[7] = reg[rrr] OPERATION CONSTANT; | |
391 if (!(reg[7])) | |
392 IC += ADDRESS; | |
393 else | |
394 IC += 2 | |
395 */ | |
396 | |
397 #define CCL_JumpCondExprReg 0x1C /* Jump conditional according to | |
398 an operation on register: | |
399 1:A--D--D--R--E--S--S-rrrXXXXX | |
400 2:OPERATION | |
401 3:RRR | |
402 ----------------------------- | |
403 reg[7] = reg[rrr] OPERATION reg[RRR]; | |
404 if (!reg[7]) | |
405 IC += ADDRESS; | |
406 else | |
407 IC += 2; | |
408 */ | |
409 | |
410 #define CCL_ReadJumpCondExprConst 0x1D /* Read and jump conditional according | |
411 to an operation on constant: | |
412 1:A--D--D--R--E--S--S-rrrXXXXX | |
413 2:OPERATION | |
414 3:CONSTANT | |
415 ----------------------------- | |
416 read (reg[rrr]); | |
417 reg[7] = reg[rrr] OPERATION CONSTANT; | |
418 if (!reg[7]) | |
419 IC += ADDRESS; | |
420 else | |
421 IC += 2; | |
422 */ | |
423 | |
424 #define CCL_ReadJumpCondExprReg 0x1E /* Read and jump conditional according | |
425 to an operation on register: | |
426 1:A--D--D--R--E--S--S-rrrXXXXX | |
427 2:OPERATION | |
428 3:RRR | |
429 ----------------------------- | |
430 read (reg[rrr]); | |
431 reg[7] = reg[rrr] OPERATION reg[RRR]; | |
432 if (!reg[7]) | |
433 IC += ADDRESS; | |
434 else | |
435 IC += 2; | |
436 */ | |
437 | |
35328
f4c8b11d4d36
(CCL_Extension): Fix typo (originally CCL_Extention). Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
35322
diff
changeset
|
438 #define CCL_Extension 0x1F /* Extended CCL code |
17052 | 439 1:ExtendedCOMMNDRrrRRRrrrXXXXX |
440 2:ARGUEMENT | |
441 3:... | |
442 ------------------------------ | |
443 extended_command (rrr,RRR,Rrr,ARGS) | |
444 */ | |
445 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
446 /* |
21551 | 447 Here after, Extended CCL Instructions. |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
448 Bit length of extended command is 14. |
21551 | 449 Therefore, the instruction code range is 0..16384(0x3fff). |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
450 */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
451 |
21551 | 452 /* Read a multibyte characeter. |
453 A code point is stored into reg[rrr]. A charset ID is stored into | |
454 reg[RRR]. */ | |
455 | |
456 #define CCL_ReadMultibyteChar2 0x00 /* Read Multibyte Character | |
457 1:ExtendedCOMMNDRrrRRRrrrXXXXX */ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
458 |
21551 | 459 /* Write a multibyte character. |
460 Write a character whose code point is reg[rrr] and the charset ID | |
461 is reg[RRR]. */ | |
462 | |
463 #define CCL_WriteMultibyteChar2 0x01 /* Write Multibyte Character | |
464 1:ExtendedCOMMNDRrrRRRrrrXXXXX */ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
465 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
466 /* Translate a character whose code point is reg[rrr] and the charset |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22122
diff
changeset
|
467 ID is reg[RRR] by a translation table whose ID is reg[Rrr]. |
21551 | 468 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
469 A translated character is set in reg[rrr] (code point) and reg[RRR] |
21551 | 470 (charset ID). */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
471 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
472 #define CCL_TranslateCharacter 0x02 /* Translate a multibyte character |
21551 | 473 1:ExtendedCOMMNDRrrRRRrrrXXXXX */ |
474 | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
475 /* Translate a character whose code point is reg[rrr] and the charset |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22122
diff
changeset
|
476 ID is reg[RRR] by a translation table whose ID is ARGUMENT. |
21551 | 477 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
478 A translated character is set in reg[rrr] (code point) and reg[RRR] |
21551 | 479 (charset ID). */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
480 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
481 #define CCL_TranslateCharacterConstTbl 0x03 /* Translate a multibyte character |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
482 1:ExtendedCOMMNDRrrRRRrrrXXXXX |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
483 2:ARGUMENT(Translation Table ID) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
484 */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
485 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
486 /* Iterate looking up MAPs for reg[rrr] starting from the Nth (N = |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
487 reg[RRR]) MAP until some value is found. |
21551 | 488 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
489 Each MAP is a Lisp vector whose element is number, nil, t, or |
21551 | 490 lambda. |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
491 If the element is nil, ignore the map and proceed to the next map. |
21551 | 492 If the element is t or lambda, finish without changing reg[rrr]. |
493 If the element is a number, set reg[rrr] to the number and finish. | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
494 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
495 Detail of the map structure is descibed in the comment for |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
496 CCL_MapMultiple below. */ |
21551 | 497 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
498 #define CCL_IterateMultipleMap 0x10 /* Iterate multiple maps |
21551 | 499 1:ExtendedCOMMNDXXXRRRrrrXXXXX |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
500 2:NUMBER of MAPs |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
501 3:MAP-ID1 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
502 4:MAP-ID2 |
21551 | 503 ... |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
504 */ |
21551 | 505 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
506 /* Map the code in reg[rrr] by MAPs starting from the Nth (N = |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
507 reg[RRR]) map. |
21551 | 508 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
509 MAPs are supplied in the succeeding CCL codes as follows: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
510 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
511 When CCL program gives this nested structure of map to this command: |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
512 ((MAP-ID11 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
513 MAP-ID12 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
514 (MAP-ID121 MAP-ID122 MAP-ID123) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
515 MAP-ID13) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
516 (MAP-ID21 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
517 (MAP-ID211 (MAP-ID2111) MAP-ID212) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
518 MAP-ID22)), |
21551 | 519 the compiled CCL codes has this sequence: |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
520 CCL_MapMultiple (CCL code of this command) |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
521 16 (total number of MAPs and SEPARATORs) |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
522 -7 (1st SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
523 MAP-ID11 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
524 MAP-ID12 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
525 -3 (2nd SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
526 MAP-ID121 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
527 MAP-ID122 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
528 MAP-ID123 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
529 MAP-ID13 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
530 -7 (3rd SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
531 MAP-ID21 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
532 -4 (4th SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
533 MAP-ID211 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
534 -1 (5th SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
535 MAP_ID2111 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
536 MAP-ID212 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
537 MAP-ID22 |
21551 | 538 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
539 A value of each SEPARATOR follows this rule: |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
540 MAP-SET := SEPARATOR [(MAP-ID | MAP-SET)]+ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
541 SEPARATOR := -(number of MAP-IDs and SEPARATORs in the MAP-SET) |
21551 | 542 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
543 (*)....Nest level of MAP-SET must not be over than MAX_MAP_SET_LEVEL. |
21551 | 544 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
545 When some map fails to map (i.e. it doesn't have a value for |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
546 reg[rrr]), the mapping is treated as identity. |
21551 | 547 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
548 The mapping is iterated for all maps in each map set (set of maps |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
549 separated by SEPARATOR) except in the case that lambda is |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
550 encountered. More precisely, the mapping proceeds as below: |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
551 |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
552 At first, VAL0 is set to reg[rrr], and it is translated by the |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
553 first map to VAL1. Then, VAL1 is translated by the next map to |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
554 VAL2. This mapping is iterated until the last map is used. The |
31551 | 555 result of the mapping is the last value of VAL?. When the mapping |
556 process reached to the end of the map set, it moves to the next | |
557 map set. If the next does not exit, the mapping process terminates, | |
558 and regard the last value as a result. | |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
559 |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
560 But, when VALm is mapped to VALn and VALn is not a number, the |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
561 mapping proceed as below: |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
562 |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
563 If VALn is nil, the lastest map is ignored and the mapping of VALm |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
564 proceed to the next map. |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
565 |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
566 In VALn is t, VALm is reverted to reg[rrr] and the mapping of VALm |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
567 proceed to the next map. |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
568 |
31551 | 569 If VALn is lambda, move to the next map set like reaching to the |
570 end of the current map set. | |
571 | |
572 If VALn is a symbol, call the CCL program refered by it. | |
573 Then, use reg[rrr] as a mapped value except for -1, -2 and -3. | |
574 Such special values are regarded as nil, t, and lambda respectively. | |
21551 | 575 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
576 Each map is a Lisp vector of the following format (a) or (b): |
21551 | 577 (a)......[STARTPOINT VAL1 VAL2 ...] |
578 (b)......[t VAL STARTPOINT ENDPOINT], | |
579 where | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
580 STARTPOINT is an offset to be used for indexing a map, |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
581 ENDPOINT is a maximum index number of a map, |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
582 VAL and VALn is a number, nil, t, or lambda. |
21551 | 583 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
584 Valid index range of a map of type (a) is: |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
585 STARTPOINT <= index < STARTPOINT + map_size - 1 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
586 Valid index range of a map of type (b) is: |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
587 STARTPOINT <= index < ENDPOINT */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
588 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
589 #define CCL_MapMultiple 0x11 /* Mapping by multiple code conversion maps |
21551 | 590 1:ExtendedCOMMNDXXXRRRrrrXXXXX |
591 2:N-2 | |
592 3:SEPARATOR_1 (< 0) | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
593 4:MAP-ID_1 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
594 5:MAP-ID_2 |
21551 | 595 ... |
596 M:SEPARATOR_x (< 0) | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
597 M+1:MAP-ID_y |
21551 | 598 ... |
599 N:SEPARATOR_z (< 0) | |
600 */ | |
601 | |
31551 | 602 #define MAX_MAP_SET_LEVEL 30 |
21551 | 603 |
604 typedef struct | |
605 { | |
606 int rest_length; | |
607 int orig_val; | |
608 } tr_stack; | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
609 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
610 static tr_stack mapping_stack[MAX_MAP_SET_LEVEL]; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
611 static tr_stack *mapping_stack_pointer; |
21551 | 612 |
31551 | 613 /* If this variable is non-zero, it indicates the stack_idx |
614 of immediately called by CCL_MapMultiple. */ | |
34157
f8e2b3c8da1b
(stack_idx_of_map_multiple): Don't use C initializier.
Kenichi Handa <handa@m17n.org>
parents:
31702
diff
changeset
|
615 static int stack_idx_of_map_multiple; |
31551 | 616 |
617 #define PUSH_MAPPING_STACK(restlen, orig) \ | |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
618 do \ |
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
619 { \ |
31551 | 620 mapping_stack_pointer->rest_length = (restlen); \ |
621 mapping_stack_pointer->orig_val = (orig); \ | |
622 mapping_stack_pointer++; \ | |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
623 } \ |
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
624 while (0) |
31551 | 625 |
626 #define POP_MAPPING_STACK(restlen, orig) \ | |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
627 do \ |
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
628 { \ |
31551 | 629 mapping_stack_pointer--; \ |
630 (restlen) = mapping_stack_pointer->rest_length; \ | |
631 (orig) = mapping_stack_pointer->orig_val; \ | |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
632 } \ |
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
633 while (0) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
634 |
31551 | 635 #define CCL_CALL_FOR_MAP_INSTRUCTION(symbol, ret_ic) \ |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
636 do \ |
35498
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
637 { \ |
31551 | 638 struct ccl_program called_ccl; \ |
639 if (stack_idx >= 256 \ | |
640 || (setup_ccl_program (&called_ccl, (symbol)) != 0)) \ | |
641 { \ | |
642 if (stack_idx > 0) \ | |
643 { \ | |
644 ccl_prog = ccl_prog_stack_struct[0].ccl_prog; \ | |
645 ic = ccl_prog_stack_struct[0].ic; \ | |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
646 eof_ic = ccl_prog_stack_struct[0].eof_ic; \ |
31551 | 647 } \ |
648 CCL_INVALID_CMD; \ | |
649 } \ | |
650 ccl_prog_stack_struct[stack_idx].ccl_prog = ccl_prog; \ | |
651 ccl_prog_stack_struct[stack_idx].ic = (ret_ic); \ | |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
652 ccl_prog_stack_struct[stack_idx].eof_ic = eof_ic; \ |
31551 | 653 stack_idx++; \ |
654 ccl_prog = called_ccl.prog; \ | |
655 ic = CCL_HEADER_MAIN; \ | |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
656 eof_ic = XFASTINT (ccl_prog[CCL_HEADER_EOF]); \ |
31551 | 657 goto ccl_repeat; \ |
35498
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
658 } \ |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
659 while (0) |
21551 | 660 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
661 #define CCL_MapSingle 0x12 /* Map by single code conversion map |
21551 | 662 1:ExtendedCOMMNDXXXRRRrrrXXXXX |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
663 2:MAP-ID |
21551 | 664 ------------------------------ |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
665 Map reg[rrr] by MAP-ID. |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
666 If some valid mapping is found, |
21551 | 667 set reg[rrr] to the result, |
668 else | |
669 set reg[RRR] to -1. | |
670 */ | |
17052 | 671 |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
672 #define CCL_LookupIntConstTbl 0x13 /* Lookup multibyte character by |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
673 integer key. Afterwards R7 set |
78501 | 674 to 1 if lookup succeeded. |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
675 1:ExtendedCOMMNDRrrRRRXXXXXXXX |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
676 2:ARGUMENT(Hash table ID) */ |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
677 |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
678 #define CCL_LookupCharConstTbl 0x14 /* Lookup integer by multibyte |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
679 character key. Afterwards R7 set |
78501 | 680 to 1 if lookup succeeded. |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
681 1:ExtendedCOMMNDRrrRRRrrrXXXXX |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
682 2:ARGUMENT(Hash table ID) */ |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
683 |
17052 | 684 /* CCL arithmetic/logical operators. */ |
685 #define CCL_PLUS 0x00 /* X = Y + Z */ | |
686 #define CCL_MINUS 0x01 /* X = Y - Z */ | |
687 #define CCL_MUL 0x02 /* X = Y * Z */ | |
688 #define CCL_DIV 0x03 /* X = Y / Z */ | |
689 #define CCL_MOD 0x04 /* X = Y % Z */ | |
690 #define CCL_AND 0x05 /* X = Y & Z */ | |
691 #define CCL_OR 0x06 /* X = Y | Z */ | |
692 #define CCL_XOR 0x07 /* X = Y ^ Z */ | |
693 #define CCL_LSH 0x08 /* X = Y << Z */ | |
694 #define CCL_RSH 0x09 /* X = Y >> Z */ | |
695 #define CCL_LSH8 0x0A /* X = (Y << 8) | Z */ | |
696 #define CCL_RSH8 0x0B /* X = Y >> 8, r[7] = Y & 0xFF */ | |
697 #define CCL_DIVMOD 0x0C /* X = Y / Z, r[7] = Y % Z */ | |
698 #define CCL_LS 0x10 /* X = (X < Y) */ | |
699 #define CCL_GT 0x11 /* X = (X > Y) */ | |
700 #define CCL_EQ 0x12 /* X = (X == Y) */ | |
701 #define CCL_LE 0x13 /* X = (X <= Y) */ | |
702 #define CCL_GE 0x14 /* X = (X >= Y) */ | |
703 #define CCL_NE 0x15 /* X = (X != Y) */ | |
704 | |
23428
49c7e979c16c
(CCL_DECODE_SJIS, CCL_ENCODE_SJIS): Swap the definitions.
Kenichi Handa <handa@m17n.org>
parents:
23303
diff
changeset
|
705 #define CCL_DECODE_SJIS 0x16 /* X = HIGHER_BYTE (DE-SJIS (Y, Z)) |
49c7e979c16c
(CCL_DECODE_SJIS, CCL_ENCODE_SJIS): Swap the definitions.
Kenichi Handa <handa@m17n.org>
parents:
23303
diff
changeset
|
706 r[7] = LOWER_BYTE (DE-SJIS (Y, Z)) */ |
49c7e979c16c
(CCL_DECODE_SJIS, CCL_ENCODE_SJIS): Swap the definitions.
Kenichi Handa <handa@m17n.org>
parents:
23303
diff
changeset
|
707 #define CCL_ENCODE_SJIS 0x17 /* X = HIGHER_BYTE (SJIS (Y, Z)) |
17052 | 708 r[7] = LOWER_BYTE (SJIS (Y, Z) */ |
709 | |
710 /* Terminate CCL program successfully. */ | |
35498
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
711 #define CCL_SUCCESS \ |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
712 do \ |
35498
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
713 { \ |
17052 | 714 ccl->status = CCL_STAT_SUCCESS; \ |
35498
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
715 goto ccl_finish; \ |
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
716 } \ |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
717 while(0) |
17052 | 718 |
719 /* Suspend CCL program because of reading from empty input buffer or | |
720 writing to full output buffer. When this program is resumed, the | |
721 same I/O command is executed. */ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
722 #define CCL_SUSPEND(stat) \ |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
723 do \ |
35498
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
724 { \ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
725 ic--; \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
726 ccl->status = stat; \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
727 goto ccl_finish; \ |
35498
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
728 } \ |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
729 while (0) |
17052 | 730 |
731 /* Terminate CCL program because of invalid command. Should not occur | |
732 in the normal case. */ | |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
733 #ifndef CCL_DEBUG |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
734 |
17052 | 735 #define CCL_INVALID_CMD \ |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
736 do \ |
35498
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
737 { \ |
17052 | 738 ccl->status = CCL_STAT_INVALID_CMD; \ |
739 goto ccl_error_handler; \ | |
35498
add3de5a4293
(CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
Kenichi Handa <handa@m17n.org>
parents:
35495
diff
changeset
|
740 } \ |
40940
174ef035d156
Change macros to use do-while block instead of if-else.
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
741 while(0) |
17052 | 742 |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
743 #else |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
744 |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
745 #define CCL_INVALID_CMD \ |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
746 do \ |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
747 { \ |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
748 ccl_debug_hook (this_ic); \ |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
749 ccl->status = CCL_STAT_INVALID_CMD; \ |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
750 goto ccl_error_handler; \ |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
751 } \ |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
752 while(0) |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
753 |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
754 #endif |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
755 |
17052 | 756 /* Encode one character CH to multibyte form and write to the current |
17323
15fa68d983e7
(ccl_driver): Fix bug of the case CCL_WriteArrayReadJump.
Kenichi Handa <handa@m17n.org>
parents:
17122
diff
changeset
|
757 output buffer. If CH is less than 256, CH is written as is. */ |
88361 | 758 #define CCL_WRITE_CHAR(ch) \ |
759 do { \ | |
760 if (! dst) \ | |
761 CCL_INVALID_CMD; \ | |
762 else if (dst < dst_end) \ | |
763 *dst++ = (ch); \ | |
764 else \ | |
765 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_DST); \ | |
36411
120891909abe
(CCL_WRITE_MULTIBYTE_CHAR): New macro.
Kenichi Handa <handa@m17n.org>
parents:
36102
diff
changeset
|
766 } while (0) |
120891909abe
(CCL_WRITE_MULTIBYTE_CHAR): New macro.
Kenichi Handa <handa@m17n.org>
parents:
36102
diff
changeset
|
767 |
17052 | 768 /* Write a string at ccl_prog[IC] of length LEN to the current output |
769 buffer. */ | |
90333
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
770 #define CCL_WRITE_STRING(len) \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
771 do { \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
772 int i; \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
773 if (!dst) \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
774 CCL_INVALID_CMD; \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
775 else if (dst + len <= dst_end) \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
776 { \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
777 if (XFASTINT (ccl_prog[ic]) & 0x1000000) \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
778 for (i = 0; i < len; i++) \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
779 *dst++ = XFASTINT (ccl_prog[ic + i]) & 0xFFFFFF; \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
780 else \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
781 for (i = 0; i < len; i++) \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
782 *dst++ = ((XFASTINT (ccl_prog[ic + (i / 3)])) \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
783 >> ((2 - (i % 3)) * 8)) & 0xFF; \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
784 } \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
785 else \ |
fcd118e730fb
(CCL_WRITE_STRING): Handle a flag bit for multibyte
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
786 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_DST); \ |
17052 | 787 } while (0) |
788 | |
88361 | 789 /* Read one byte from the current input buffer into Rth register. */ |
790 #define CCL_READ_CHAR(r) \ | |
791 do { \ | |
792 if (! src) \ | |
793 CCL_INVALID_CMD; \ | |
794 else if (src < src_end) \ | |
795 r = *src++; \ | |
796 else if (ccl->last_block) \ | |
797 { \ | |
89943
4c90ffeb71c5
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-15
Miles Bader <miles@gnu.org>
diff
changeset
|
798 r = -1; \ |
88361 | 799 ic = ccl->eof_ic; \ |
800 goto ccl_repeat; \ | |
801 } \ | |
802 else \ | |
803 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_SRC); \ | |
804 } while (0) | |
17052 | 805 |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
806 /* Decode CODE by a charset whose id is ID. If ID is 0, return CODE |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
807 as is for backward compatibility. Assume that we can use the |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
808 variable `charset'. */ |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
809 |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
810 #define CCL_DECODE_CHAR(id, code) \ |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
811 ((id) == 0 ? (code) \ |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
812 : (charset = CHARSET_FROM_ID ((id)), DECODE_CHAR (charset, (code)))) |
17052 | 813 |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
814 /* Encode character C by some of charsets in CHARSET_LIST. Set ID to |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
815 the id of the used charset, ENCODED to the resulf of encoding. |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
816 Assume that we can use the variable `charset'. */ |
27650
b875236c7043
(CCL_MAKE_CHAR): New macro.
Kenichi Handa <handa@m17n.org>
parents:
27566
diff
changeset
|
817 |
89483 | 818 #define CCL_ENCODE_CHAR(c, charset_list, id, encoded) \ |
27650
b875236c7043
(CCL_MAKE_CHAR): New macro.
Kenichi Handa <handa@m17n.org>
parents:
27566
diff
changeset
|
819 do { \ |
89483 | 820 unsigned code; \ |
27650
b875236c7043
(CCL_MAKE_CHAR): New macro.
Kenichi Handa <handa@m17n.org>
parents:
27566
diff
changeset
|
821 \ |
89483 | 822 charset = char_charset ((c), (charset_list), &code); \ |
823 if (! charset && ! NILP (charset_list)) \ | |
824 charset = char_charset ((c), Qnil, &code); \ | |
825 if (charset) \ | |
826 { \ | |
827 (id) = CHARSET_ID (charset); \ | |
828 (encoded) = code; \ | |
27650
b875236c7043
(CCL_MAKE_CHAR): New macro.
Kenichi Handa <handa@m17n.org>
parents:
27566
diff
changeset
|
829 } \ |
89483 | 830 } while (0) |
27650
b875236c7043
(CCL_MAKE_CHAR): New macro.
Kenichi Handa <handa@m17n.org>
parents:
27566
diff
changeset
|
831 |
88361 | 832 /* Execute CCL code on characters at SOURCE (length SRC_SIZE). The |
833 resulting text goes to a place pointed by DESTINATION, the length | |
834 of which should not exceed DST_SIZE. As a side effect, how many | |
835 characters are consumed and produced are recorded in CCL->consumed | |
836 and CCL->produced, and the contents of CCL registers are updated. | |
837 If SOURCE or DESTINATION is NULL, only operations on registers are | |
838 permitted. */ | |
17052 | 839 |
840 #ifdef CCL_DEBUG | |
841 #define CCL_DEBUG_BACKTRACE_LEN 256 | |
46495 | 842 int ccl_backtrace_table[CCL_DEBUG_BACKTRACE_LEN]; |
17052 | 843 int ccl_backtrace_idx; |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
844 |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
845 int |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
846 ccl_debug_hook (int ic) |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
847 { |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
848 return ic; |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
849 } |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
850 |
17052 | 851 #endif |
852 | |
853 struct ccl_prog_stack | |
854 { | |
17828
db443ea8cb36
(struct ccl_prog_stack): Declear the member ccl_prog as
Kenichi Handa <handa@m17n.org>
parents:
17728
diff
changeset
|
855 Lisp_Object *ccl_prog; /* Pointer to an array of CCL code. */ |
17052 | 856 int ic; /* Instruction Counter. */ |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
857 int eof_ic; /* Instruction Counter to jump on EOF. */ |
17052 | 858 }; |
859 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
860 /* For the moment, we only support depth 256 of stack. */ |
24688
7b170d2184a4
(ccl_prog_stack_struct): Declare it as static.
Kenichi Handa <handa@m17n.org>
parents:
24567
diff
changeset
|
861 static struct ccl_prog_stack ccl_prog_stack_struct[256]; |
7b170d2184a4
(ccl_prog_stack_struct): Declare it as static.
Kenichi Handa <handa@m17n.org>
parents:
24567
diff
changeset
|
862 |
88361 | 863 void |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
864 ccl_driver (ccl, source, destination, src_size, dst_size, charset_list) |
17052 | 865 struct ccl_program *ccl; |
88361 | 866 int *source, *destination; |
867 int src_size, dst_size; | |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
868 Lisp_Object charset_list; |
17052 | 869 { |
870 register int *reg = ccl->reg; | |
871 register int ic = ccl->ic; | |
37734
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
872 register int code = 0, field1, field2; |
17370
6db43d8c9dfc
(ccl_driver): Fix Lisp_Object/integer confusion.
Karl Heuer <kwzh@gnu.org>
parents:
17323
diff
changeset
|
873 register Lisp_Object *ccl_prog = ccl->prog; |
88361 | 874 int *src = source, *src_end = src + src_size; |
875 int *dst = destination, *dst_end = dst + dst_size; | |
17052 | 876 int jump_address; |
37734
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
877 int i = 0, j, op; |
24688
7b170d2184a4
(ccl_prog_stack_struct): Declare it as static.
Kenichi Handa <handa@m17n.org>
parents:
24567
diff
changeset
|
878 int stack_idx = ccl->stack_idx; |
23303
fb38954a02d3
(ccl_driver): Report correct CCL program counter on error.
Kenichi Handa <handa@m17n.org>
parents:
23280
diff
changeset
|
879 /* Instruction counter of the current CCL code. */ |
37734
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
880 int this_ic = 0; |
88361 | 881 struct charset *charset; |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
882 int eof_ic = ccl->eof_ic; |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
883 int eof_hit = 0; |
17052 | 884 |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
885 if (ic >= eof_ic) |
17052 | 886 ic = CCL_HEADER_MAIN; |
887 | |
88361 | 888 if (ccl->buf_magnification == 0) /* We can't read/produce any bytes. */ |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
889 dst = NULL; |
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
890 |
31551 | 891 /* Set mapping stack pointer. */ |
892 mapping_stack_pointer = mapping_stack; | |
893 | |
17052 | 894 #ifdef CCL_DEBUG |
895 ccl_backtrace_idx = 0; | |
896 #endif | |
897 | |
898 for (;;) | |
899 { | |
23068
ae33b925b20f
If eof is encounterd while processing the
Kenichi Handa <handa@m17n.org>
parents:
22718
diff
changeset
|
900 ccl_repeat: |
17052 | 901 #ifdef CCL_DEBUG |
902 ccl_backtrace_table[ccl_backtrace_idx++] = ic; | |
903 if (ccl_backtrace_idx >= CCL_DEBUG_BACKTRACE_LEN) | |
904 ccl_backtrace_idx = 0; | |
905 ccl_backtrace_table[ccl_backtrace_idx] = 0; | |
906 #endif | |
907 | |
908 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) | |
909 { | |
910 /* We can't just signal Qquit, instead break the loop as if | |
911 the whole data is processed. Don't reset Vquit_flag, it | |
912 must be handled later at a safer place. */ | |
88361 | 913 if (src) |
914 src = source + src_size; | |
17052 | 915 ccl->status = CCL_STAT_QUIT; |
916 break; | |
917 } | |
918 | |
23303
fb38954a02d3
(ccl_driver): Report correct CCL program counter on error.
Kenichi Handa <handa@m17n.org>
parents:
23280
diff
changeset
|
919 this_ic = ic; |
17052 | 920 code = XINT (ccl_prog[ic]); ic++; |
921 field1 = code >> 8; | |
922 field2 = (code & 0xFF) >> 5; | |
923 | |
924 #define rrr field2 | |
925 #define RRR (field1 & 7) | |
926 #define Rrr ((field1 >> 3) & 7) | |
927 #define ADDR field1 | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
928 #define EXCMD (field1 >> 6) |
17052 | 929 |
930 switch (code & 0x1F) | |
931 { | |
932 case CCL_SetRegister: /* 00000000000000000RRRrrrXXXXX */ | |
933 reg[rrr] = reg[RRR]; | |
934 break; | |
935 | |
936 case CCL_SetShortConst: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
937 reg[rrr] = field1; | |
938 break; | |
939 | |
940 case CCL_SetConst: /* 00000000000000000000rrrXXXXX */ | |
941 reg[rrr] = XINT (ccl_prog[ic]); | |
942 ic++; | |
943 break; | |
944 | |
945 case CCL_SetArray: /* CCCCCCCCCCCCCCCCCCCCRRRrrrXXXXX */ | |
946 i = reg[RRR]; | |
947 j = field1 >> 3; | |
948 if ((unsigned int) i < j) | |
949 reg[rrr] = XINT (ccl_prog[ic + i]); | |
950 ic += j; | |
951 break; | |
952 | |
953 case CCL_Jump: /* A--D--D--R--E--S--S-000XXXXX */ | |
954 ic += ADDR; | |
955 break; | |
956 | |
957 case CCL_JumpCond: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
958 if (!reg[rrr]) | |
959 ic += ADDR; | |
960 break; | |
961 | |
962 case CCL_WriteRegisterJump: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
963 i = reg[rrr]; | |
964 CCL_WRITE_CHAR (i); | |
965 ic += ADDR; | |
966 break; | |
967 | |
968 case CCL_WriteRegisterReadJump: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
969 i = reg[rrr]; | |
970 CCL_WRITE_CHAR (i); | |
971 ic++; | |
972 CCL_READ_CHAR (reg[rrr]); | |
973 ic += ADDR - 1; | |
974 break; | |
975 | |
976 case CCL_WriteConstJump: /* A--D--D--R--E--S--S-000XXXXX */ | |
977 i = XINT (ccl_prog[ic]); | |
978 CCL_WRITE_CHAR (i); | |
979 ic += ADDR; | |
980 break; | |
981 | |
982 case CCL_WriteConstReadJump: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
983 i = XINT (ccl_prog[ic]); | |
984 CCL_WRITE_CHAR (i); | |
985 ic++; | |
986 CCL_READ_CHAR (reg[rrr]); | |
987 ic += ADDR - 1; | |
988 break; | |
989 | |
990 case CCL_WriteStringJump: /* A--D--D--R--E--S--S-000XXXXX */ | |
991 j = XINT (ccl_prog[ic]); | |
992 ic++; | |
993 CCL_WRITE_STRING (j); | |
994 ic += ADDR - 1; | |
995 break; | |
996 | |
997 case CCL_WriteArrayReadJump: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
998 i = reg[rrr]; | |
18613
614b916ff5bf
Fix bugs with inappropriate mixing of Lisp_Object with int.
Richard M. Stallman <rms@gnu.org>
parents:
18341
diff
changeset
|
999 j = XINT (ccl_prog[ic]); |
17052 | 1000 if ((unsigned int) i < j) |
1001 { | |
17323
15fa68d983e7
(ccl_driver): Fix bug of the case CCL_WriteArrayReadJump.
Kenichi Handa <handa@m17n.org>
parents:
17122
diff
changeset
|
1002 i = XINT (ccl_prog[ic + 1 + i]); |
17052 | 1003 CCL_WRITE_CHAR (i); |
1004 } | |
17323
15fa68d983e7
(ccl_driver): Fix bug of the case CCL_WriteArrayReadJump.
Kenichi Handa <handa@m17n.org>
parents:
17122
diff
changeset
|
1005 ic += j + 2; |
17052 | 1006 CCL_READ_CHAR (reg[rrr]); |
1007 ic += ADDR - (j + 2); | |
1008 break; | |
1009 | |
1010 case CCL_ReadJump: /* A--D--D--R--E--S--S-rrrYYYYY */ | |
1011 CCL_READ_CHAR (reg[rrr]); | |
1012 ic += ADDR; | |
1013 break; | |
1014 | |
1015 case CCL_ReadBranch: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
1016 CCL_READ_CHAR (reg[rrr]); | |
1017 /* fall through ... */ | |
1018 case CCL_Branch: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
1019 if ((unsigned int) reg[rrr] < field1) | |
1020 ic += XINT (ccl_prog[ic + reg[rrr]]); | |
1021 else | |
1022 ic += XINT (ccl_prog[ic + field1]); | |
1023 break; | |
1024 | |
1025 case CCL_ReadRegister: /* CCCCCCCCCCCCCCCCCCCCrrXXXXX */ | |
1026 while (1) | |
1027 { | |
1028 CCL_READ_CHAR (reg[rrr]); | |
1029 if (!field1) break; | |
1030 code = XINT (ccl_prog[ic]); ic++; | |
1031 field1 = code >> 8; | |
1032 field2 = (code & 0xFF) >> 5; | |
1033 } | |
1034 break; | |
1035 | |
1036 case CCL_WriteExprConst: /* 1:00000OPERATION000RRR000XXXXX */ | |
1037 rrr = 7; | |
1038 i = reg[RRR]; | |
1039 j = XINT (ccl_prog[ic]); | |
1040 op = field1 >> 6; | |
27566
d96c50f3e37e
(ccl_driver) <CCL_WriteExprRegister>: Set jump_address
Kenichi Handa <handa@m17n.org>
parents:
26842
diff
changeset
|
1041 jump_address = ic + 1; |
17052 | 1042 goto ccl_set_expr; |
1043 | |
1044 case CCL_WriteRegister: /* CCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
1045 while (1) | |
1046 { | |
1047 i = reg[rrr]; | |
1048 CCL_WRITE_CHAR (i); | |
1049 if (!field1) break; | |
1050 code = XINT (ccl_prog[ic]); ic++; | |
1051 field1 = code >> 8; | |
1052 field2 = (code & 0xFF) >> 5; | |
1053 } | |
1054 break; | |
1055 | |
1056 case CCL_WriteExprRegister: /* 1:00000OPERATIONRrrRRR000XXXXX */ | |
1057 rrr = 7; | |
1058 i = reg[RRR]; | |
1059 j = reg[Rrr]; | |
1060 op = field1 >> 6; | |
27566
d96c50f3e37e
(ccl_driver) <CCL_WriteExprRegister>: Set jump_address
Kenichi Handa <handa@m17n.org>
parents:
26842
diff
changeset
|
1061 jump_address = ic; |
17052 | 1062 goto ccl_set_expr; |
1063 | |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1064 case CCL_Call: /* 1:CCCCCCCCCCCCCCCCCCCCFFFXXXXX */ |
17052 | 1065 { |
1066 Lisp_Object slot; | |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1067 int prog_id; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1068 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1069 /* If FFF is nonzero, the CCL program ID is in the |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1070 following code. */ |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1071 if (rrr) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1072 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1073 prog_id = XINT (ccl_prog[ic]); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1074 ic++; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1075 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1076 else |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1077 prog_id = field1; |
17052 | 1078 |
1079 if (stack_idx >= 256 | |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1080 || prog_id < 0 |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1081 || prog_id >= ASIZE (Vccl_program_table) |
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1082 || (slot = AREF (Vccl_program_table, prog_id), !VECTORP (slot)) |
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1083 || !VECTORP (AREF (slot, 1))) |
17052 | 1084 { |
1085 if (stack_idx > 0) | |
1086 { | |
1087 ccl_prog = ccl_prog_stack_struct[0].ccl_prog; | |
1088 ic = ccl_prog_stack_struct[0].ic; | |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
1089 eof_ic = ccl_prog_stack_struct[0].eof_ic; |
17052 | 1090 } |
1091 CCL_INVALID_CMD; | |
1092 } | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
1093 |
17052 | 1094 ccl_prog_stack_struct[stack_idx].ccl_prog = ccl_prog; |
1095 ccl_prog_stack_struct[stack_idx].ic = ic; | |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
1096 ccl_prog_stack_struct[stack_idx].eof_ic = eof_ic; |
17052 | 1097 stack_idx++; |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1098 ccl_prog = XVECTOR (AREF (slot, 1))->contents; |
17052 | 1099 ic = CCL_HEADER_MAIN; |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
1100 eof_ic = XFASTINT (ccl_prog[CCL_HEADER_EOF]); |
17052 | 1101 } |
1102 break; | |
1103 | |
1104 case CCL_WriteConstString: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
1105 if (!rrr) | |
1106 CCL_WRITE_CHAR (field1); | |
1107 else | |
1108 { | |
1109 CCL_WRITE_STRING (field1); | |
1110 ic += (field1 + 2) / 3; | |
1111 } | |
1112 break; | |
1113 | |
1114 case CCL_WriteArray: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
1115 i = reg[rrr]; | |
1116 if ((unsigned int) i < field1) | |
1117 { | |
1118 j = XINT (ccl_prog[ic + i]); | |
1119 CCL_WRITE_CHAR (j); | |
1120 } | |
1121 ic += field1; | |
1122 break; | |
1123 | |
1124 case CCL_End: /* 0000000000000000000000XXXXX */ | |
29847
c6b0046bb943
(ccl_driver) <CCL_End>: Decrement stack_idx only when it is greater
Kenichi Handa <handa@m17n.org>
parents:
29724
diff
changeset
|
1125 if (stack_idx > 0) |
17052 | 1126 { |
29847
c6b0046bb943
(ccl_driver) <CCL_End>: Decrement stack_idx only when it is greater
Kenichi Handa <handa@m17n.org>
parents:
29724
diff
changeset
|
1127 stack_idx--; |
17052 | 1128 ccl_prog = ccl_prog_stack_struct[stack_idx].ccl_prog; |
1129 ic = ccl_prog_stack_struct[stack_idx].ic; | |
56041
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
1130 eof_ic = ccl_prog_stack_struct[stack_idx].eof_ic; |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
1131 if (eof_hit) |
bcdeaf1d58fc
(CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
Kenichi Handa <handa@m17n.org>
parents:
55590
diff
changeset
|
1132 ic = eof_ic; |
17052 | 1133 break; |
1134 } | |
23884
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1135 if (src) |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1136 src = src_end; |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1137 /* ccl->ic should points to this command code again to |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1138 suppress further processing. */ |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1139 ic--; |
17052 | 1140 CCL_SUCCESS; |
1141 | |
1142 case CCL_ExprSelfConst: /* 00000OPERATION000000rrrXXXXX */ | |
1143 i = XINT (ccl_prog[ic]); | |
1144 ic++; | |
1145 op = field1 >> 6; | |
1146 goto ccl_expr_self; | |
1147 | |
1148 case CCL_ExprSelfReg: /* 00000OPERATION000RRRrrrXXXXX */ | |
1149 i = reg[RRR]; | |
1150 op = field1 >> 6; | |
1151 | |
1152 ccl_expr_self: | |
1153 switch (op) | |
1154 { | |
1155 case CCL_PLUS: reg[rrr] += i; break; | |
1156 case CCL_MINUS: reg[rrr] -= i; break; | |
1157 case CCL_MUL: reg[rrr] *= i; break; | |
1158 case CCL_DIV: reg[rrr] /= i; break; | |
1159 case CCL_MOD: reg[rrr] %= i; break; | |
1160 case CCL_AND: reg[rrr] &= i; break; | |
1161 case CCL_OR: reg[rrr] |= i; break; | |
1162 case CCL_XOR: reg[rrr] ^= i; break; | |
1163 case CCL_LSH: reg[rrr] <<= i; break; | |
1164 case CCL_RSH: reg[rrr] >>= i; break; | |
1165 case CCL_LSH8: reg[rrr] <<= 8; reg[rrr] |= i; break; | |
1166 case CCL_RSH8: reg[7] = reg[rrr] & 0xFF; reg[rrr] >>= 8; break; | |
1167 case CCL_DIVMOD: reg[7] = reg[rrr] % i; reg[rrr] /= i; break; | |
1168 case CCL_LS: reg[rrr] = reg[rrr] < i; break; | |
1169 case CCL_GT: reg[rrr] = reg[rrr] > i; break; | |
1170 case CCL_EQ: reg[rrr] = reg[rrr] == i; break; | |
1171 case CCL_LE: reg[rrr] = reg[rrr] <= i; break; | |
1172 case CCL_GE: reg[rrr] = reg[rrr] >= i; break; | |
1173 case CCL_NE: reg[rrr] = reg[rrr] != i; break; | |
1174 default: CCL_INVALID_CMD; | |
1175 } | |
1176 break; | |
1177 | |
1178 case CCL_SetExprConst: /* 00000OPERATION000RRRrrrXXXXX */ | |
1179 i = reg[RRR]; | |
1180 j = XINT (ccl_prog[ic]); | |
1181 op = field1 >> 6; | |
1182 jump_address = ++ic; | |
1183 goto ccl_set_expr; | |
1184 | |
1185 case CCL_SetExprReg: /* 00000OPERATIONRrrRRRrrrXXXXX */ | |
1186 i = reg[RRR]; | |
1187 j = reg[Rrr]; | |
1188 op = field1 >> 6; | |
1189 jump_address = ic; | |
1190 goto ccl_set_expr; | |
1191 | |
1192 case CCL_ReadJumpCondExprConst: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
1193 CCL_READ_CHAR (reg[rrr]); | |
1194 case CCL_JumpCondExprConst: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
1195 i = reg[rrr]; | |
1196 op = XINT (ccl_prog[ic]); | |
1197 jump_address = ic++ + ADDR; | |
1198 j = XINT (ccl_prog[ic]); | |
1199 ic++; | |
1200 rrr = 7; | |
1201 goto ccl_set_expr; | |
1202 | |
1203 case CCL_ReadJumpCondExprReg: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
1204 CCL_READ_CHAR (reg[rrr]); | |
1205 case CCL_JumpCondExprReg: | |
1206 i = reg[rrr]; | |
1207 op = XINT (ccl_prog[ic]); | |
1208 jump_address = ic++ + ADDR; | |
1209 j = reg[XINT (ccl_prog[ic])]; | |
1210 ic++; | |
1211 rrr = 7; | |
1212 | |
1213 ccl_set_expr: | |
1214 switch (op) | |
1215 { | |
1216 case CCL_PLUS: reg[rrr] = i + j; break; | |
1217 case CCL_MINUS: reg[rrr] = i - j; break; | |
1218 case CCL_MUL: reg[rrr] = i * j; break; | |
1219 case CCL_DIV: reg[rrr] = i / j; break; | |
1220 case CCL_MOD: reg[rrr] = i % j; break; | |
1221 case CCL_AND: reg[rrr] = i & j; break; | |
1222 case CCL_OR: reg[rrr] = i | j; break; | |
77910
e555251e73a6
(ccl_driver): Delete stray semicolon.
Chong Yidong <cyd@stupidchicken.com>
parents:
75348
diff
changeset
|
1223 case CCL_XOR: reg[rrr] = i ^ j; break; |
17052 | 1224 case CCL_LSH: reg[rrr] = i << j; break; |
1225 case CCL_RSH: reg[rrr] = i >> j; break; | |
1226 case CCL_LSH8: reg[rrr] = (i << 8) | j; break; | |
1227 case CCL_RSH8: reg[rrr] = i >> 8; reg[7] = i & 0xFF; break; | |
1228 case CCL_DIVMOD: reg[rrr] = i / j; reg[7] = i % j; break; | |
1229 case CCL_LS: reg[rrr] = i < j; break; | |
1230 case CCL_GT: reg[rrr] = i > j; break; | |
1231 case CCL_EQ: reg[rrr] = i == j; break; | |
1232 case CCL_LE: reg[rrr] = i <= j; break; | |
1233 case CCL_GE: reg[rrr] = i >= j; break; | |
1234 case CCL_NE: reg[rrr] = i != j; break; | |
88361 | 1235 case CCL_DECODE_SJIS: |
1236 { | |
1237 i = (i << 8) | j; | |
1238 SJIS_TO_JIS (i); | |
1239 reg[rrr] = i >> 8; | |
1240 reg[7] = i & 0xFF; | |
1241 break; | |
1242 } | |
1243 case CCL_ENCODE_SJIS: | |
1244 { | |
1245 i = (i << 8) | j; | |
1246 JIS_TO_SJIS (i); | |
1247 reg[rrr] = i >> 8; | |
1248 reg[7] = i & 0xFF; | |
1249 break; | |
1250 } | |
17052 | 1251 default: CCL_INVALID_CMD; |
1252 } | |
1253 code &= 0x1F; | |
1254 if (code == CCL_WriteExprConst || code == CCL_WriteExprRegister) | |
1255 { | |
1256 i = reg[rrr]; | |
1257 CCL_WRITE_CHAR (i); | |
27566
d96c50f3e37e
(ccl_driver) <CCL_WriteExprRegister>: Set jump_address
Kenichi Handa <handa@m17n.org>
parents:
26842
diff
changeset
|
1258 ic = jump_address; |
17052 | 1259 } |
1260 else if (!reg[rrr]) | |
1261 ic = jump_address; | |
1262 break; | |
1263 | |
35328
f4c8b11d4d36
(CCL_Extension): Fix typo (originally CCL_Extention). Caller changed.
Kenichi Handa <handa@m17n.org>
parents:
35322
diff
changeset
|
1264 case CCL_Extension: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1265 switch (EXCMD) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1266 { |
21551 | 1267 case CCL_ReadMultibyteChar2: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1268 if (!src) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1269 CCL_INVALID_CMD; |
88361 | 1270 CCL_READ_CHAR (i); |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
1271 CCL_ENCODE_CHAR (i, charset_list, reg[RRR], reg[rrr]); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1272 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1273 |
21551 | 1274 case CCL_WriteMultibyteChar2: |
88361 | 1275 if (! dst) |
1276 CCL_INVALID_CMD; | |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
1277 i = CCL_DECODE_CHAR (reg[RRR], reg[rrr]); |
88361 | 1278 CCL_WRITE_CHAR (i); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1279 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1280 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1281 case CCL_TranslateCharacter: |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
1282 i = CCL_DECODE_CHAR (reg[RRR], reg[rrr]); |
88361 | 1283 op = translate_char (GET_TRANSLATION_TABLE (reg[Rrr]), i); |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
1284 CCL_ENCODE_CHAR (op, charset_list, reg[RRR], reg[rrr]); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1285 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1286 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1287 case CCL_TranslateCharacterConstTbl: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1288 op = XINT (ccl_prog[ic]); /* table */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1289 ic++; |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
1290 i = CCL_DECODE_CHAR (reg[RRR], reg[rrr]); |
88361 | 1291 op = translate_char (GET_TRANSLATION_TABLE (op), i); |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
1292 CCL_ENCODE_CHAR (op, charset_list, reg[RRR], reg[rrr]); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1293 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1294 |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1295 case CCL_LookupIntConstTbl: |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1296 op = XINT (ccl_prog[ic]); /* table */ |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1297 ic++; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
1298 { |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1299 struct Lisp_Hash_Table *h = GET_HASH_TABLE (op); |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1300 |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1301 op = hash_lookup (h, make_number (reg[RRR]), NULL); |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1302 if (op >= 0) |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1303 { |
46495 | 1304 Lisp_Object opl; |
1305 opl = HASH_VALUE (h, op); | |
89522
c4f948b2b0da
(ccl_driver): Fix arg of CHARACTERP.
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
1306 if (! CHARACTERP (opl)) |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1307 CCL_INVALID_CMD; |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
1308 reg[RRR] = charset_unicode; |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
1309 reg[rrr] = op; |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1310 reg[7] = 1; /* r7 true for success */ |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1311 } |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1312 else |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1313 reg[7] = 0; |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1314 } |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1315 break; |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1316 |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1317 case CCL_LookupCharConstTbl: |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1318 op = XINT (ccl_prog[ic]); /* table */ |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1319 ic++; |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
1320 i = CCL_DECODE_CHAR (reg[RRR], reg[rrr]); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
1321 { |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1322 struct Lisp_Hash_Table *h = GET_HASH_TABLE (op); |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1323 |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1324 op = hash_lookup (h, make_number (i), NULL); |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1325 if (op >= 0) |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1326 { |
46495 | 1327 Lisp_Object opl; |
1328 opl = HASH_VALUE (h, op); | |
1329 if (!INTEGERP (opl)) | |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1330 CCL_INVALID_CMD; |
46495 | 1331 reg[RRR] = XINT (opl); |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1332 reg[7] = 1; /* r7 true for success */ |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1333 } |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1334 else |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1335 reg[7] = 0; |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1336 } |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1337 break; |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
1338 |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1339 case CCL_IterateMultipleMap: |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1340 { |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1341 Lisp_Object map, content, attrib, value; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1342 int point, size, fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1343 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1344 j = XINT (ccl_prog[ic++]); /* number of maps. */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1345 fin_ic = ic + j; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1346 op = reg[rrr]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1347 if ((j > reg[RRR]) && (j >= 0)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1348 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1349 ic += reg[RRR]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1350 i = reg[RRR]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1351 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1352 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1353 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1354 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1355 ic = fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1356 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1357 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1358 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1359 for (;i < j;i++) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1360 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1361 |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1362 size = ASIZE (Vcode_conversion_map_vector); |
21518
1b0d88d6fb42
(ccl_driver, syms_of_ccl): Fix mixing of Lisp_Object and
Andreas Schwab <schwab@suse.de>
parents:
21514
diff
changeset
|
1363 point = XINT (ccl_prog[ic++]); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1364 if (point >= size) continue; |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1365 map = AREF (Vcode_conversion_map_vector, point); |
21551 | 1366 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1367 /* Check map varidity. */ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1368 if (!CONSP (map)) continue; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
1369 map = XCDR (map); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1370 if (!VECTORP (map)) continue; |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1371 size = ASIZE (map); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1372 if (size <= 1) continue; |
21551 | 1373 |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1374 content = AREF (map, 0); |
21551 | 1375 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1376 /* check map type, |
21551 | 1377 [STARTPOINT VAL1 VAL2 ...] or |
1378 [t ELELMENT STARTPOINT ENDPOINT] */ | |
1379 if (NUMBERP (content)) | |
1380 { | |
1381 point = XUINT (content); | |
1382 point = op - point + 1; | |
1383 if (!((point >= 1) && (point < size))) continue; | |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1384 content = AREF (map, point); |
21551 | 1385 } |
1386 else if (EQ (content, Qt)) | |
1387 { | |
1388 if (size != 4) continue; | |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1389 if ((op >= XUINT (AREF (map, 2))) |
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1390 && (op < XUINT (AREF (map, 3)))) |
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1391 content = AREF (map, 1); |
21551 | 1392 else |
1393 continue; | |
1394 } | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
1395 else |
21551 | 1396 continue; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1397 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1398 if (NILP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1399 continue; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1400 else if (NUMBERP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1401 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1402 reg[RRR] = i; |
21551 | 1403 reg[rrr] = XINT(content); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1404 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1405 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1406 else if (EQ (content, Qt) || EQ (content, Qlambda)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1407 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1408 reg[RRR] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1409 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1410 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1411 else if (CONSP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1412 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
1413 attrib = XCAR (content); |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
1414 value = XCDR (content); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1415 if (!NUMBERP (attrib) || !NUMBERP (value)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1416 continue; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1417 reg[RRR] = i; |
21551 | 1418 reg[rrr] = XUINT (value); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1419 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1420 } |
31551 | 1421 else if (SYMBOLP (content)) |
1422 CCL_CALL_FOR_MAP_INSTRUCTION (content, fin_ic); | |
1423 else | |
1424 CCL_INVALID_CMD; | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1425 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1426 if (i == j) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1427 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1428 ic = fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1429 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1430 break; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
1431 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1432 case CCL_MapMultiple: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1433 { |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1434 Lisp_Object map, content, attrib, value; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1435 int point, size, map_vector_size; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1436 int map_set_rest_length, fin_ic; |
31551 | 1437 int current_ic = this_ic; |
1438 | |
1439 /* inhibit recursive call on MapMultiple. */ | |
1440 if (stack_idx_of_map_multiple > 0) | |
1441 { | |
1442 if (stack_idx_of_map_multiple <= stack_idx) | |
1443 { | |
1444 stack_idx_of_map_multiple = 0; | |
1445 mapping_stack_pointer = mapping_stack; | |
1446 CCL_INVALID_CMD; | |
1447 } | |
1448 } | |
1449 else | |
1450 mapping_stack_pointer = mapping_stack; | |
1451 stack_idx_of_map_multiple = 0; | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1452 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1453 map_set_rest_length = |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1454 XINT (ccl_prog[ic++]); /* number of maps and separators. */ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1455 fin_ic = ic + map_set_rest_length; |
31551 | 1456 op = reg[rrr]; |
1457 | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1458 if ((map_set_rest_length > reg[RRR]) && (reg[RRR] >= 0)) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1459 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1460 ic += reg[RRR]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1461 i = reg[RRR]; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1462 map_set_rest_length -= i; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1463 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1464 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1465 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1466 ic = fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1467 reg[RRR] = -1; |
31551 | 1468 mapping_stack_pointer = mapping_stack; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1469 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1470 } |
31551 | 1471 |
1472 if (mapping_stack_pointer <= (mapping_stack + 1)) | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1473 { |
31551 | 1474 /* Set up initial state. */ |
1475 mapping_stack_pointer = mapping_stack; | |
1476 PUSH_MAPPING_STACK (0, op); | |
1477 reg[RRR] = -1; | |
1478 } | |
1479 else | |
1480 { | |
1481 /* Recover after calling other ccl program. */ | |
1482 int orig_op; | |
21551 | 1483 |
31551 | 1484 POP_MAPPING_STACK (map_set_rest_length, orig_op); |
1485 POP_MAPPING_STACK (map_set_rest_length, reg[rrr]); | |
1486 switch (op) | |
21551 | 1487 { |
31551 | 1488 case -1: |
1489 /* Regard it as Qnil. */ | |
1490 op = orig_op; | |
1491 i++; | |
1492 ic++; | |
1493 map_set_rest_length--; | |
1494 break; | |
1495 case -2: | |
1496 /* Regard it as Qt. */ | |
1497 op = reg[rrr]; | |
1498 i++; | |
1499 ic++; | |
1500 map_set_rest_length--; | |
1501 break; | |
1502 case -3: | |
1503 /* Regard it as Qlambda. */ | |
1504 op = orig_op; | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1505 i += map_set_rest_length; |
31551 | 1506 ic += map_set_rest_length; |
1507 map_set_rest_length = 0; | |
1508 break; | |
1509 default: | |
1510 /* Regard it as normal mapping. */ | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1511 i += map_set_rest_length; |
31551 | 1512 ic += map_set_rest_length; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1513 POP_MAPPING_STACK (map_set_rest_length, reg[rrr]); |
21551 | 1514 break; |
1515 } | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1516 } |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1517 map_vector_size = ASIZE (Vcode_conversion_map_vector); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
1518 |
31551 | 1519 do { |
1520 for (;map_set_rest_length > 0;i++, ic++, map_set_rest_length--) | |
1521 { | |
1522 point = XINT(ccl_prog[ic]); | |
1523 if (point < 0) | |
1524 { | |
1525 /* +1 is for including separator. */ | |
1526 point = -point + 1; | |
1527 if (mapping_stack_pointer | |
1528 >= &mapping_stack[MAX_MAP_SET_LEVEL]) | |
1529 CCL_INVALID_CMD; | |
1530 PUSH_MAPPING_STACK (map_set_rest_length - point, | |
1531 reg[rrr]); | |
1532 map_set_rest_length = point; | |
1533 reg[rrr] = op; | |
1534 continue; | |
1535 } | |
1536 | |
1537 if (point >= map_vector_size) continue; | |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1538 map = AREF (Vcode_conversion_map_vector, point); |
31551 | 1539 |
1540 /* Check map varidity. */ | |
1541 if (!CONSP (map)) continue; | |
1542 map = XCDR (map); | |
1543 if (!VECTORP (map)) continue; | |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1544 size = ASIZE (map); |
31551 | 1545 if (size <= 1) continue; |
1546 | |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1547 content = AREF (map, 0); |
31551 | 1548 |
1549 /* check map type, | |
1550 [STARTPOINT VAL1 VAL2 ...] or | |
1551 [t ELEMENT STARTPOINT ENDPOINT] */ | |
1552 if (NUMBERP (content)) | |
1553 { | |
1554 point = XUINT (content); | |
1555 point = op - point + 1; | |
1556 if (!((point >= 1) && (point < size))) continue; | |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1557 content = AREF (map, point); |
31551 | 1558 } |
1559 else if (EQ (content, Qt)) | |
1560 { | |
1561 if (size != 4) continue; | |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1562 if ((op >= XUINT (AREF (map, 2))) && |
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1563 (op < XUINT (AREF (map, 3)))) |
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1564 content = AREF (map, 1); |
31551 | 1565 else |
1566 continue; | |
1567 } | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
1568 else |
31551 | 1569 continue; |
1570 | |
1571 if (NILP (content)) | |
1572 continue; | |
1573 | |
1574 reg[RRR] = i; | |
1575 if (NUMBERP (content)) | |
1576 { | |
1577 op = XINT (content); | |
1578 i += map_set_rest_length - 1; | |
1579 ic += map_set_rest_length - 1; | |
1580 POP_MAPPING_STACK (map_set_rest_length, reg[rrr]); | |
1581 map_set_rest_length++; | |
1582 } | |
1583 else if (CONSP (content)) | |
1584 { | |
1585 attrib = XCAR (content); | |
1586 value = XCDR (content); | |
1587 if (!NUMBERP (attrib) || !NUMBERP (value)) | |
1588 continue; | |
1589 op = XUINT (value); | |
1590 i += map_set_rest_length - 1; | |
1591 ic += map_set_rest_length - 1; | |
1592 POP_MAPPING_STACK (map_set_rest_length, reg[rrr]); | |
1593 map_set_rest_length++; | |
1594 } | |
1595 else if (EQ (content, Qt)) | |
1596 { | |
1597 op = reg[rrr]; | |
1598 } | |
1599 else if (EQ (content, Qlambda)) | |
1600 { | |
1601 i += map_set_rest_length; | |
1602 ic += map_set_rest_length; | |
1603 break; | |
1604 } | |
1605 else if (SYMBOLP (content)) | |
1606 { | |
1607 if (mapping_stack_pointer | |
1608 >= &mapping_stack[MAX_MAP_SET_LEVEL]) | |
1609 CCL_INVALID_CMD; | |
1610 PUSH_MAPPING_STACK (map_set_rest_length, reg[rrr]); | |
1611 PUSH_MAPPING_STACK (map_set_rest_length, op); | |
1612 stack_idx_of_map_multiple = stack_idx + 1; | |
1613 CCL_CALL_FOR_MAP_INSTRUCTION (content, current_ic); | |
1614 } | |
1615 else | |
1616 CCL_INVALID_CMD; | |
1617 } | |
1618 if (mapping_stack_pointer <= (mapping_stack + 1)) | |
1619 break; | |
1620 POP_MAPPING_STACK (map_set_rest_length, reg[rrr]); | |
1621 i += map_set_rest_length; | |
1622 ic += map_set_rest_length; | |
1623 POP_MAPPING_STACK (map_set_rest_length, reg[rrr]); | |
1624 } while (1); | |
1625 | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1626 ic = fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1627 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1628 reg[rrr] = op; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1629 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1630 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1631 case CCL_MapSingle: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1632 { |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1633 Lisp_Object map, attrib, value, content; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1634 int size, point; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1635 j = XINT (ccl_prog[ic++]); /* map_id */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1636 op = reg[rrr]; |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1637 if (j >= ASIZE (Vcode_conversion_map_vector)) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1638 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1639 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1640 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1641 } |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1642 map = AREF (Vcode_conversion_map_vector, j); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1643 if (!CONSP (map)) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1644 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1645 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1646 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1647 } |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
1648 map = XCDR (map); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1649 if (!VECTORP (map)) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1650 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1651 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1652 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1653 } |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1654 size = ASIZE (map); |
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1655 point = XUINT (AREF (map, 0)); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1656 point = op - point + 1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1657 reg[RRR] = 0; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1658 if ((size <= 1) || |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1659 (!((point >= 1) && (point < size)))) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1660 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1661 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1662 { |
27877
fe0206a9f10c
(ccl_driver) [CCL_MapMultiple]: When the mapped value is
Kenichi Handa <handa@m17n.org>
parents:
27650
diff
changeset
|
1663 reg[RRR] = 0; |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1664 content = AREF (map, point); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1665 if (NILP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1666 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1667 else if (NUMBERP (content)) |
21551 | 1668 reg[rrr] = XINT (content); |
27877
fe0206a9f10c
(ccl_driver) [CCL_MapMultiple]: When the mapped value is
Kenichi Handa <handa@m17n.org>
parents:
27650
diff
changeset
|
1669 else if (EQ (content, Qt)); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1670 else if (CONSP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1671 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
1672 attrib = XCAR (content); |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
1673 value = XCDR (content); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1674 if (!NUMBERP (attrib) || !NUMBERP (value)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1675 continue; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1676 reg[rrr] = XUINT(value); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1677 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1678 } |
31551 | 1679 else if (SYMBOLP (content)) |
1680 CCL_CALL_FOR_MAP_INSTRUCTION (content, ic); | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1681 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1682 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1683 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1684 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1685 break; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
1686 |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1687 default: |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1688 CCL_INVALID_CMD; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1689 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1690 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1691 |
17052 | 1692 default: |
1693 CCL_INVALID_CMD; | |
1694 } | |
1695 } | |
1696 | |
1697 ccl_error_handler: | |
35535
0542807f1a5f
(ccl_driver): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
35529
diff
changeset
|
1698 /* The suppress_error member is set when e.g. a CCL-based coding |
0542807f1a5f
(ccl_driver): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
35529
diff
changeset
|
1699 system is used for terminal output. */ |
0542807f1a5f
(ccl_driver): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
35529
diff
changeset
|
1700 if (!ccl->suppress_error && destination) |
17052 | 1701 { |
1702 /* We can insert an error message only if DESTINATION is | |
1703 specified and we still have a room to store the message | |
1704 there. */ | |
1705 char msg[256]; | |
1706 int msglen; | |
1707 | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1708 if (!dst) |
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1709 dst = destination; |
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1710 |
17052 | 1711 switch (ccl->status) |
1712 { | |
1713 case CCL_STAT_INVALID_CMD: | |
1714 sprintf(msg, "\nCCL: Invalid command %x (ccl_code = %x) at %d.", | |
23303
fb38954a02d3
(ccl_driver): Report correct CCL program counter on error.
Kenichi Handa <handa@m17n.org>
parents:
23280
diff
changeset
|
1715 code & 0x1F, code, this_ic); |
17052 | 1716 #ifdef CCL_DEBUG |
1717 { | |
1718 int i = ccl_backtrace_idx - 1; | |
1719 int j; | |
1720 | |
1721 msglen = strlen (msg); | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1722 if (dst + msglen <= (dst_bytes ? dst_end : src)) |
17052 | 1723 { |
1724 bcopy (msg, dst, msglen); | |
1725 dst += msglen; | |
1726 } | |
1727 | |
1728 for (j = 0; j < CCL_DEBUG_BACKTRACE_LEN; j++, i--) | |
1729 { | |
1730 if (i < 0) i = CCL_DEBUG_BACKTRACE_LEN - 1; | |
1731 if (ccl_backtrace_table[i] == 0) | |
1732 break; | |
1733 sprintf(msg, " %d", ccl_backtrace_table[i]); | |
1734 msglen = strlen (msg); | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1735 if (dst + msglen > (dst_bytes ? dst_end : src)) |
17052 | 1736 break; |
1737 bcopy (msg, dst, msglen); | |
1738 dst += msglen; | |
1739 } | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1740 goto ccl_finish; |
17052 | 1741 } |
17323
15fa68d983e7
(ccl_driver): Fix bug of the case CCL_WriteArrayReadJump.
Kenichi Handa <handa@m17n.org>
parents:
17122
diff
changeset
|
1742 #endif |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1743 break; |
17052 | 1744 |
1745 case CCL_STAT_QUIT: | |
80311
23dc6fc4bf91
(ccl_driver): If ccl->quit_silently is nonzero, don't
Kenichi Handa <handa@m17n.org>
parents:
79984
diff
changeset
|
1746 if (! ccl->quit_silently) |
23dc6fc4bf91
(ccl_driver): If ccl->quit_silently is nonzero, don't
Kenichi Handa <handa@m17n.org>
parents:
79984
diff
changeset
|
1747 sprintf(msg, "\nCCL: Quited."); |
17052 | 1748 break; |
1749 | |
1750 default: | |
53072
8787289602d1
Remove period at end of error message.
Jan Djärv <jan.h.d@swipnet.se>
parents:
52401
diff
changeset
|
1751 sprintf(msg, "\nCCL: Unknown error type (%d)", ccl->status); |
17052 | 1752 } |
1753 | |
1754 msglen = strlen (msg); | |
88361 | 1755 if (dst + msglen <= dst_end) |
17052 | 1756 { |
88361 | 1757 for (i = 0; i < msglen; i++) |
1758 *dst++ = msg[i]; | |
17052 | 1759 } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
1760 |
35883
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1761 if (ccl->status == CCL_STAT_INVALID_CMD) |
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1762 { |
37734
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
1763 #if 0 /* If the remaining bytes contain 0x80..0x9F, copying them |
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
1764 results in an invalid multibyte sequence. */ |
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
1765 |
35883
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1766 /* Copy the remaining source data. */ |
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1767 int i = src_end - src; |
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1768 if (dst_bytes && (dst_end - dst) < i) |
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1769 i = dst_end - dst; |
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1770 bcopy (src, dst, i); |
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1771 src += i; |
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1772 dst += i; |
37734
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
1773 #else |
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
1774 /* Signal that we've consumed everything. */ |
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
1775 src = src_end; |
3d05b438e278
(ccl_driver): Don't copy remaining bytes in case
Gerd Moellmann <gerd@gnu.org>
parents:
36565
diff
changeset
|
1776 #endif |
35883
aedc87e25ce2
(CCL_WRITE_CHAR): Check if CH is valid or not. If
Kenichi Handa <handa@m17n.org>
parents:
35535
diff
changeset
|
1777 } |
17052 | 1778 } |
1779 | |
1780 ccl_finish: | |
1781 ccl->ic = ic; | |
24688
7b170d2184a4
(ccl_prog_stack_struct): Declare it as static.
Kenichi Handa <handa@m17n.org>
parents:
24567
diff
changeset
|
1782 ccl->stack_idx = stack_idx; |
7b170d2184a4
(ccl_prog_stack_struct): Declare it as static.
Kenichi Handa <handa@m17n.org>
parents:
24567
diff
changeset
|
1783 ccl->prog = ccl_prog; |
88361 | 1784 ccl->consumed = src - source; |
90648
89dfe53fbc18
(ccl_driver): If DST is NULL, set ccl->produced to 0.
Kenichi Handa <handa@m17n.org>
parents:
90339
diff
changeset
|
1785 if (dst != NULL) |
89dfe53fbc18
(ccl_driver): If DST is NULL, set ccl->produced to 0.
Kenichi Handa <handa@m17n.org>
parents:
90339
diff
changeset
|
1786 ccl->produced = dst - destination; |
89dfe53fbc18
(ccl_driver): If DST is NULL, set ccl->produced to 0.
Kenichi Handa <handa@m17n.org>
parents:
90339
diff
changeset
|
1787 else |
89dfe53fbc18
(ccl_driver): If DST is NULL, set ccl->produced to 0.
Kenichi Handa <handa@m17n.org>
parents:
90339
diff
changeset
|
1788 ccl->produced = 0; |
17052 | 1789 } |
1790 | |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1791 /* Resolve symbols in the specified CCL code (Lisp vector). This |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1792 function converts symbols of code conversion maps and character |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1793 translation tables embeded in the CCL code into their ID numbers. |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1794 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1795 The return value is a vector (CCL itself or a new vector in which |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1796 all symbols are resolved), Qt if resolving of some symbol failed, |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1797 or nil if CCL contains invalid data. */ |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1798 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1799 static Lisp_Object |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1800 resolve_symbol_ccl_program (ccl) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1801 Lisp_Object ccl; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1802 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1803 int i, veclen, unresolved = 0; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1804 Lisp_Object result, contents, val; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1805 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1806 result = ccl; |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1807 veclen = ASIZE (result); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1808 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1809 for (i = 0; i < veclen; i++) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1810 { |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1811 contents = AREF (result, i); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1812 if (INTEGERP (contents)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1813 continue; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1814 else if (CONSP (contents) |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
1815 && SYMBOLP (XCAR (contents)) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
1816 && SYMBOLP (XCDR (contents))) |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1817 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1818 /* This is the new style for embedding symbols. The form is |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1819 (SYMBOL . PROPERTY). (get SYMBOL PROPERTY) should give |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1820 an index number. */ |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1821 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1822 if (EQ (result, ccl)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1823 result = Fcopy_sequence (ccl); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1824 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
1825 val = Fget (XCAR (contents), XCDR (contents)); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1826 if (NATNUMP (val)) |
91607
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91375
diff
changeset
|
1827 ASET (result, i, val); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1828 else |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1829 unresolved = 1; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1830 continue; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1831 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1832 else if (SYMBOLP (contents)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1833 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1834 /* This is the old style for embedding symbols. This style |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1835 may lead to a bug if, for instance, a translation table |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1836 and a code conversion map have the same name. */ |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1837 if (EQ (result, ccl)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1838 result = Fcopy_sequence (ccl); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1839 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1840 val = Fget (contents, Qtranslation_table_id); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1841 if (NATNUMP (val)) |
91607
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91375
diff
changeset
|
1842 ASET (result, i, val); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1843 else |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1844 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1845 val = Fget (contents, Qcode_conversion_map_id); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1846 if (NATNUMP (val)) |
91607
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91375
diff
changeset
|
1847 ASET (result, i, val); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1848 else |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1849 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1850 val = Fget (contents, Qccl_program_idx); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1851 if (NATNUMP (val)) |
91607
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91375
diff
changeset
|
1852 ASET (result, i, val); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1853 else |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1854 unresolved = 1; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1855 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1856 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1857 continue; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1858 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1859 return Qnil; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1860 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1861 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1862 return (unresolved ? Qt : result); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1863 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1864 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1865 /* Return the compiled code (vector) of CCL program CCL_PROG. |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1866 CCL_PROG is a name (symbol) of the program or already compiled |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1867 code. If necessary, resolve symbols in the compiled code to index |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1868 numbers. If we failed to get the compiled code or to resolve |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1869 symbols, return Qnil. */ |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1870 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1871 static Lisp_Object |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1872 ccl_get_compiled_code (ccl_prog, idx) |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1873 Lisp_Object ccl_prog; |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1874 int *idx; |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1875 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1876 Lisp_Object val, slot; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1877 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1878 if (VECTORP (ccl_prog)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1879 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1880 val = resolve_symbol_ccl_program (ccl_prog); |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1881 *idx = -1; |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1882 return (VECTORP (val) ? val : Qnil); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1883 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1884 if (!SYMBOLP (ccl_prog)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1885 return Qnil; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1886 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1887 val = Fget (ccl_prog, Qccl_program_idx); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1888 if (! NATNUMP (val) |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1889 || XINT (val) >= ASIZE (Vccl_program_table)) |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1890 return Qnil; |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1891 slot = AREF (Vccl_program_table, XINT (val)); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1892 if (! VECTORP (slot) |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1893 || ASIZE (slot) != 4 |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1894 || ! VECTORP (AREF (slot, 1))) |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1895 return Qnil; |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1896 *idx = XINT (val); |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1897 if (NILP (AREF (slot, 2))) |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1898 { |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1899 val = resolve_symbol_ccl_program (AREF (slot, 1)); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1900 if (! VECTORP (val)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1901 return Qnil; |
91607
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91375
diff
changeset
|
1902 ASET (slot, 1, val); |
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91375
diff
changeset
|
1903 ASET (slot, 2, Qt); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1904 } |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1905 return AREF (slot, 1); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1906 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1907 |
17052 | 1908 /* Setup fields of the structure pointed by CCL appropriately for the |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1909 execution of CCL program CCL_PROG. CCL_PROG is the name (symbol) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1910 of the CCL program or the already compiled code (vector). |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1911 Return 0 if we succeed this setup, else return -1. |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1912 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1913 If CCL_PROG is nil, we just reset the structure pointed by CCL. */ |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1914 int |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1915 setup_ccl_program (ccl, ccl_prog) |
17052 | 1916 struct ccl_program *ccl; |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1917 Lisp_Object ccl_prog; |
17052 | 1918 { |
1919 int i; | |
1920 | |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1921 if (! NILP (ccl_prog)) |
23884
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1922 { |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1923 struct Lisp_Vector *vp; |
23884
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1924 |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1925 ccl_prog = ccl_get_compiled_code (ccl_prog, &ccl->idx); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1926 if (! VECTORP (ccl_prog)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1927 return -1; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1928 vp = XVECTOR (ccl_prog); |
23884
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1929 ccl->size = vp->size; |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1930 ccl->prog = vp->contents; |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1931 ccl->eof_ic = XINT (vp->contents[CCL_HEADER_EOF]); |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1932 ccl->buf_magnification = XINT (vp->contents[CCL_HEADER_BUF_MAG]); |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1933 if (ccl->idx >= 0) |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1934 { |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1935 Lisp_Object slot; |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1936 |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1937 slot = AREF (Vccl_program_table, ccl->idx); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1938 ASET (slot, 3, Qnil); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1939 } |
23884
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1940 } |
17052 | 1941 ccl->ic = CCL_HEADER_MAIN; |
1942 for (i = 0; i < 8; i++) | |
1943 ccl->reg[i] = 0; | |
1944 ccl->last_block = 0; | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1945 ccl->private_state = 0; |
17052 | 1946 ccl->status = 0; |
24688
7b170d2184a4
(ccl_prog_stack_struct): Declare it as static.
Kenichi Handa <handa@m17n.org>
parents:
24567
diff
changeset
|
1947 ccl->stack_idx = 0; |
35529
c0bf5507a0bb
(ccl_driver): If ccl->suppress_error is nonzeor, don't
Kenichi Handa <handa@m17n.org>
parents:
35498
diff
changeset
|
1948 ccl->suppress_error = 0; |
51326
92b845a3d3a6
(CCL_WRITE_CHAR): Increment extra_bytes only when it is
Kenichi Handa <handa@m17n.org>
parents:
49600
diff
changeset
|
1949 ccl->eight_bit_control = 0; |
80311
23dc6fc4bf91
(ccl_driver): If ccl->quit_silently is nonzero, don't
Kenichi Handa <handa@m17n.org>
parents:
79984
diff
changeset
|
1950 ccl->quit_silently = 0; |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1951 return 0; |
17052 | 1952 } |
1953 | |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1954 |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1955 /* Check if CCL is updated or not. If not, re-setup members of CCL. */ |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1956 |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1957 int |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1958 check_ccl_update (ccl) |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1959 struct ccl_program *ccl; |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1960 { |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1961 Lisp_Object slot, ccl_prog; |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1962 |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1963 if (ccl->idx < 0) |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1964 return 0; |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1965 slot = AREF (Vccl_program_table, ccl->idx); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1966 if (NILP (AREF (slot, 3))) |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1967 return 0; |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1968 ccl_prog = ccl_get_compiled_code (AREF (slot, 0), &ccl->idx); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1969 if (! VECTORP (ccl_prog)) |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1970 return -1; |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1971 ccl->size = ASIZE (ccl_prog); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1972 ccl->prog = XVECTOR (ccl_prog)->contents; |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1973 ccl->eof_ic = XINT (AREF (ccl_prog, CCL_HEADER_EOF)); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1974 ccl->buf_magnification = XINT (AREF (ccl_prog, CCL_HEADER_BUF_MAG)); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1975 ASET (slot, 3, Qnil); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1976 return 0; |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1977 } |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1978 |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
1979 |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1980 DEFUN ("ccl-program-p", Fccl_program_p, Sccl_program_p, 1, 1, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1981 doc: /* Return t if OBJECT is a CCL program name or a compiled CCL program code. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1982 See the documentation of `define-ccl-program' for the detail of CCL program. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1983 (object) |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1984 Lisp_Object object; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1985 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1986 Lisp_Object val; |
21551 | 1987 |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1988 if (VECTORP (object)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1989 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1990 val = resolve_symbol_ccl_program (object); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1991 return (VECTORP (val) ? Qt : Qnil); |
21551 | 1992 } |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1993 if (!SYMBOLP (object)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1994 return Qnil; |
21551 | 1995 |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1996 val = Fget (object, Qccl_program_idx); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1997 return ((! NATNUMP (val) |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
1998 || XINT (val) >= ASIZE (Vccl_program_table)) |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
1999 ? Qnil : Qt); |
21551 | 2000 } |
2001 | |
17052 | 2002 DEFUN ("ccl-execute", Fccl_execute, Sccl_execute, 2, 2, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2003 doc: /* Execute CCL-PROGRAM with registers initialized by REGISTERS. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2004 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2005 CCL-PROGRAM is a CCL program name (symbol) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2006 or compiled code generated by `ccl-compile' (for backward compatibility. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2007 In the latter case, the execution overhead is bigger than in the former). |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2008 No I/O commands should appear in CCL-PROGRAM. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2009 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2010 REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2011 for the Nth register. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2012 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2013 As side effect, each element of REGISTERS holds the value of |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2014 the corresponding register after the execution. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2015 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2016 See the documentation of `define-ccl-program' for a definition of CCL |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2017 programs. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2018 (ccl_prog, reg) |
17052 | 2019 Lisp_Object ccl_prog, reg; |
2020 { | |
2021 struct ccl_program ccl; | |
2022 int i; | |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2023 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2024 if (setup_ccl_program (&ccl, ccl_prog) < 0) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2025 error ("Invalid CCL program"); |
17052 | 2026 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
2027 CHECK_VECTOR (reg); |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2028 if (ASIZE (reg) != 8) |
30105
d9e5b40d33c5
(Fccl_execute): Typo fixed.
Kenichi Handa <handa@m17n.org>
parents:
29847
diff
changeset
|
2029 error ("Length of vector REGISTERS is not 8"); |
21551 | 2030 |
17052 | 2031 for (i = 0; i < 8; i++) |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2032 ccl.reg[i] = (INTEGERP (AREF (reg, i)) |
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2033 ? XINT (AREF (reg, i)) |
17052 | 2034 : 0); |
2035 | |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
2036 ccl_driver (&ccl, NULL, NULL, 0, 0, Qnil); |
17052 | 2037 QUIT; |
2038 if (ccl.status != CCL_STAT_SUCCESS) | |
2039 error ("Error in CCL program at %dth code", ccl.ic); | |
2040 | |
2041 for (i = 0; i < 8; i++) | |
91607
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91375
diff
changeset
|
2042 ASET (reg, i, make_number (ccl.reg[i])); |
17052 | 2043 return Qnil; |
2044 } | |
2045 | |
2046 DEFUN ("ccl-execute-on-string", Fccl_execute_on_string, Sccl_execute_on_string, | |
20934
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
2047 3, 5, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2048 doc: /* Execute CCL-PROGRAM with initial STATUS on STRING. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2049 |
64573
eba4132141c1
(Fregister_ccl_program): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
64084
diff
changeset
|
2050 CCL-PROGRAM is a symbol registered by `register-ccl-program', |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2051 or a compiled code generated by `ccl-compile' (for backward compatibility, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2052 in this case, the execution is slower). |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2053 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2054 Read buffer is set to STRING, and write buffer is allocated automatically. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2055 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2056 STATUS is a vector of [R0 R1 ... R7 IC], where |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2057 R0..R7 are initial values of corresponding registers, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2058 IC is the instruction counter specifying from where to start the program. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2059 If R0..R7 are nil, they are initialized to 0. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2060 If IC is nil, it is initialized to head of the CCL program. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2061 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2062 If optional 4th arg CONTINUE is non-nil, keep IC on read operation |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2063 when read buffer is exausted, else, IC is always set to the end of |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2064 CCL-PROGRAM on exit. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2065 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2066 It returns the contents of write buffer as a string, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2067 and as side effect, STATUS is updated. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2068 If the optional 5th arg UNIBYTE-P is non-nil, the returned string |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2069 is a unibyte string. By default it is a multibyte string. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2070 |
64573
eba4132141c1
(Fregister_ccl_program): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
64084
diff
changeset
|
2071 See the documentation of `define-ccl-program' for the detail of CCL program. |
eba4132141c1
(Fregister_ccl_program): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
64084
diff
changeset
|
2072 usage: (ccl-execute-on-string CCL-PROGRAM STATUS STRING &optional CONTINUE UNIBYTE-P) */) |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2073 (ccl_prog, status, str, contin, unibyte_p) |
20934
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
2074 Lisp_Object ccl_prog, status, str, contin, unibyte_p; |
17052 | 2075 { |
2076 Lisp_Object val; | |
2077 struct ccl_program ccl; | |
88361 | 2078 int i; |
17052 | 2079 int outbufsize; |
88361 | 2080 unsigned char *outbuf, *outp; |
2081 int str_chars, str_bytes; | |
2082 #define CCL_EXECUTE_BUF_SIZE 1024 | |
2083 int source[CCL_EXECUTE_BUF_SIZE], destination[CCL_EXECUTE_BUF_SIZE]; | |
2084 int consumed_chars, consumed_bytes, produced_chars; | |
17052 | 2085 |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2086 if (setup_ccl_program (&ccl, ccl_prog) < 0) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2087 error ("Invalid CCL program"); |
21551 | 2088 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
2089 CHECK_VECTOR (status); |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2090 if (ASIZE (status) != 9) |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2091 error ("Length of vector STATUS is not 9"); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
2092 CHECK_STRING (str); |
17052 | 2093 |
89483 | 2094 str_chars = SCHARS (str); |
2095 str_bytes = SBYTES (str); | |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2096 |
17052 | 2097 for (i = 0; i < 8; i++) |
2098 { | |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2099 if (NILP (AREF (status, i))) |
91607
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91375
diff
changeset
|
2100 ASET (status, i, make_number (0)); |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2101 if (INTEGERP (AREF (status, i))) |
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2102 ccl.reg[i] = XINT (AREF (status, i)); |
17052 | 2103 } |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2104 if (INTEGERP (AREF (status, i))) |
17052 | 2105 { |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2106 i = XFASTINT (AREF (status, 8)); |
17052 | 2107 if (ccl.ic < i && i < ccl.size) |
2108 ccl.ic = i; | |
2109 } | |
88361 | 2110 |
2111 outbufsize = (ccl.buf_magnification | |
2112 ? str_bytes * ccl.buf_magnification + 256 | |
2113 : str_bytes + 256); | |
2114 outp = outbuf = (unsigned char *) xmalloc (outbufsize); | |
2115 | |
2116 consumed_chars = consumed_bytes = 0; | |
2117 produced_chars = 0; | |
89681
7db58df4781a
(Fccl_execute_on_string): Fix the condition of loop.
Kenichi Handa <handa@m17n.org>
parents:
89522
diff
changeset
|
2118 while (1) |
88361 | 2119 { |
89483 | 2120 const unsigned char *p = SDATA (str) + consumed_bytes; |
2121 const unsigned char *endp = SDATA (str) + str_bytes; | |
88361 | 2122 int i = 0; |
2123 int *src, src_size; | |
2124 | |
2125 if (endp - p == str_chars - consumed_chars) | |
2126 while (i < CCL_EXECUTE_BUF_SIZE && p < endp) | |
2127 source[i++] = *p++; | |
2128 else | |
2129 while (i < CCL_EXECUTE_BUF_SIZE && p < endp) | |
2130 source[i++] = STRING_CHAR_ADVANCE (p); | |
2131 consumed_chars += i; | |
89483 | 2132 consumed_bytes = p - SDATA (str); |
17052 | 2133 |
88361 | 2134 if (consumed_bytes == str_bytes) |
2135 ccl.last_block = NILP (contin); | |
2136 src = source; | |
2137 src_size = i; | |
2138 while (1) | |
2139 { | |
89370
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
2140 ccl_driver (&ccl, src, destination, src_size, CCL_EXECUTE_BUF_SIZE, |
0888fb1bda3f
(CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88925
diff
changeset
|
2141 Qnil); |
88361 | 2142 produced_chars += ccl.produced; |
2143 if (NILP (unibyte_p)) | |
2144 { | |
2145 if (outp - outbuf + MAX_MULTIBYTE_LENGTH * ccl.produced | |
2146 > outbufsize) | |
2147 { | |
2148 int offset = outp - outbuf; | |
2149 outbufsize += MAX_MULTIBYTE_LENGTH * ccl.produced; | |
2150 outbuf = (unsigned char *) xrealloc (outbuf, outbufsize); | |
2151 outp = outbuf + offset; | |
2152 } | |
2153 for (i = 0; i < ccl.produced; i++) | |
2154 CHAR_STRING_ADVANCE (destination[i], outp); | |
2155 } | |
2156 else | |
2157 { | |
2158 if (outp - outbuf + ccl.produced > outbufsize) | |
2159 { | |
2160 int offset = outp - outbuf; | |
2161 outbufsize += ccl.produced; | |
2162 outbuf = (unsigned char *) xrealloc (outbuf, outbufsize); | |
2163 outp = outbuf + offset; | |
2164 } | |
2165 for (i = 0; i < ccl.produced; i++) | |
2166 *outp++ = destination[i]; | |
2167 } | |
2168 src += ccl.consumed; | |
2169 src_size -= ccl.consumed; | |
89681
7db58df4781a
(Fccl_execute_on_string): Fix the condition of loop.
Kenichi Handa <handa@m17n.org>
parents:
89522
diff
changeset
|
2170 if (ccl.status != CCL_STAT_SUSPEND_BY_DST) |
7db58df4781a
(Fccl_execute_on_string): Fix the condition of loop.
Kenichi Handa <handa@m17n.org>
parents:
89522
diff
changeset
|
2171 break; |
88361 | 2172 } |
31702
ef25c62becab
(Fccl_execute_on_string): Make multibyte string correctly.
Kenichi Handa <handa@m17n.org>
parents:
31551
diff
changeset
|
2173 |
90339
4a17062dd458
(Fccl_execute_on_string): Fix the condition of terminating
Kenichi Handa <handa@m17n.org>
parents:
90333
diff
changeset
|
2174 if (ccl.status != CCL_STAT_SUSPEND_BY_SRC |
4a17062dd458
(Fccl_execute_on_string): Fix the condition of terminating
Kenichi Handa <handa@m17n.org>
parents:
90333
diff
changeset
|
2175 || str_chars == consumed_chars) |
88361 | 2176 break; |
31702
ef25c62becab
(Fccl_execute_on_string): Make multibyte string correctly.
Kenichi Handa <handa@m17n.org>
parents:
31551
diff
changeset
|
2177 } |
88361 | 2178 |
90339
4a17062dd458
(Fccl_execute_on_string): Fix the condition of terminating
Kenichi Handa <handa@m17n.org>
parents:
90333
diff
changeset
|
2179 if (ccl.status == CCL_STAT_INVALID_CMD) |
17052 | 2180 error ("Error in CCL program at %dth code", ccl.ic); |
90339
4a17062dd458
(Fccl_execute_on_string): Fix the condition of terminating
Kenichi Handa <handa@m17n.org>
parents:
90333
diff
changeset
|
2181 if (ccl.status == CCL_STAT_QUIT) |
4a17062dd458
(Fccl_execute_on_string): Fix the condition of terminating
Kenichi Handa <handa@m17n.org>
parents:
90333
diff
changeset
|
2182 error ("CCL program interrupted at %dth code", ccl.ic); |
17052 | 2183 |
2184 for (i = 0; i < 8; i++) | |
55590
9ef8d3f3973e
(Fccl_execute_on_string): Fix setting elements of STATUS.
Kenichi Handa <handa@m17n.org>
parents:
53072
diff
changeset
|
2185 ASET (status, i, make_number (ccl.reg[i])); |
9ef8d3f3973e
(Fccl_execute_on_string): Fix setting elements of STATUS.
Kenichi Handa <handa@m17n.org>
parents:
53072
diff
changeset
|
2186 ASET (status, 8, make_number (ccl.ic)); |
17052 | 2187 |
20934
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
2188 if (NILP (unibyte_p)) |
88361 | 2189 val = make_multibyte_string ((char *) outbuf, produced_chars, |
2190 outp - outbuf); | |
20934
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
2191 else |
88361 | 2192 val = make_unibyte_string ((char *) outbuf, produced_chars); |
30344
9f2a382a22e3
(Fccl_execute_on_string): Don't check xmalloc return. Use xfree, not
Dave Love <fx@gnu.org>
parents:
30105
diff
changeset
|
2193 xfree (outbuf); |
17052 | 2194 |
2195 return val; | |
2196 } | |
2197 | |
2198 DEFUN ("register-ccl-program", Fregister_ccl_program, Sregister_ccl_program, | |
2199 2, 2, 0, | |
64573
eba4132141c1
(Fregister_ccl_program): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
64084
diff
changeset
|
2200 doc: /* Register CCL program CCL-PROG as NAME in `ccl-program-table'. |
eba4132141c1
(Fregister_ccl_program): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
64084
diff
changeset
|
2201 CCL-PROG should be a compiled CCL program (vector), or nil. |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2202 If it is nil, just reserve NAME as a CCL program name. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2203 Return index number of the registered CCL program. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2204 (name, ccl_prog) |
17052 | 2205 Lisp_Object name, ccl_prog; |
2206 { | |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2207 int len = ASIZE (Vccl_program_table); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2208 int idx; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2209 Lisp_Object resolved; |
17052 | 2210 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
2211 CHECK_SYMBOL (name); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2212 resolved = Qnil; |
17052 | 2213 if (!NILP (ccl_prog)) |
21551 | 2214 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
2215 CHECK_VECTOR (ccl_prog); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2216 resolved = resolve_symbol_ccl_program (ccl_prog); |
35322
ac015053a9a1
(Fregister_ccl_program): Handle the return value of
Kenichi Handa <handa@m17n.org>
parents:
34982
diff
changeset
|
2217 if (NILP (resolved)) |
ac015053a9a1
(Fregister_ccl_program): Handle the return value of
Kenichi Handa <handa@m17n.org>
parents:
34982
diff
changeset
|
2218 error ("Error in CCL program"); |
ac015053a9a1
(Fregister_ccl_program): Handle the return value of
Kenichi Handa <handa@m17n.org>
parents:
34982
diff
changeset
|
2219 if (VECTORP (resolved)) |
17052 | 2220 { |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2221 ccl_prog = resolved; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2222 resolved = Qt; |
17052 | 2223 } |
35322
ac015053a9a1
(Fregister_ccl_program): Handle the return value of
Kenichi Handa <handa@m17n.org>
parents:
34982
diff
changeset
|
2224 else |
ac015053a9a1
(Fregister_ccl_program): Handle the return value of
Kenichi Handa <handa@m17n.org>
parents:
34982
diff
changeset
|
2225 resolved = Qnil; |
17052 | 2226 } |
2227 | |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2228 for (idx = 0; idx < len; idx++) |
17052 | 2229 { |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2230 Lisp_Object slot; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2231 |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2232 slot = AREF (Vccl_program_table, idx); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2233 if (!VECTORP (slot)) |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2234 /* This is the first unsed slot. Register NAME here. */ |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2235 break; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2236 |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2237 if (EQ (name, AREF (slot, 0))) |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2238 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2239 /* Update this slot. */ |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
2240 ASET (slot, 1, ccl_prog); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
2241 ASET (slot, 2, resolved); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
2242 ASET (slot, 3, Qt); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2243 return make_number (idx); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2244 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2245 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2246 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2247 if (idx == len) |
85243
2869af9a0789
(Fregister_ccl_program, Fregister_code_conversion_map): Use larger_vector.
Eli Zaretskii <eliz@gnu.org>
parents:
78501
diff
changeset
|
2248 /* Extend the table. */ |
2869af9a0789
(Fregister_ccl_program, Fregister_code_conversion_map): Use larger_vector.
Eli Zaretskii <eliz@gnu.org>
parents:
78501
diff
changeset
|
2249 Vccl_program_table = larger_vector (Vccl_program_table, len * 2, Qnil); |
17052 | 2250 |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2251 { |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2252 Lisp_Object elt; |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2253 |
62798
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
2254 elt = Fmake_vector (make_number (4), Qnil); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
2255 ASET (elt, 0, name); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
2256 ASET (elt, 1, ccl_prog); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
2257 ASET (elt, 2, resolved); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
2258 ASET (elt, 3, Qt); |
1efd1bf14e07
Now an element of Vccl_program_table is a vector of
Kenichi Handa <handa@m17n.org>
parents:
56057
diff
changeset
|
2259 ASET (Vccl_program_table, idx, elt); |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2260 } |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2261 |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2262 Fput (name, Qccl_program_idx, make_number (idx)); |
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2263 return make_number (idx); |
17052 | 2264 } |
2265 | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2266 /* Register code conversion map. |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2267 A code conversion map consists of numbers, Qt, Qnil, and Qlambda. |
36467 | 2268 The first element is the start code point. |
2269 The other elements are mapped numbers. | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2270 Symbol t means to map to an original number before mapping. |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2271 Symbol nil means that the corresponding element is empty. |
36467 | 2272 Symbol lambda means to terminate mapping here. |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2273 */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2274 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2275 DEFUN ("register-code-conversion-map", Fregister_code_conversion_map, |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2276 Sregister_code_conversion_map, |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2277 2, 2, 0, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2278 doc: /* Register SYMBOL as code conversion map MAP. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2279 Return index number of the registered map. */) |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2280 (symbol, map) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2281 Lisp_Object symbol, map; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2282 { |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2283 int len = ASIZE (Vcode_conversion_map_vector); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2284 int i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2285 Lisp_Object index; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2286 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
2287 CHECK_SYMBOL (symbol); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
2288 CHECK_VECTOR (map); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46495
diff
changeset
|
2289 |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2290 for (i = 0; i < len; i++) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2291 { |
41622
2c3898d7bbef
Use AREF and ASIZE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40940
diff
changeset
|
2292 Lisp_Object slot = AREF (Vcode_conversion_map_vector, i); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2293 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2294 if (!CONSP (slot)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2295 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2296 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25066
diff
changeset
|
2297 if (EQ (symbol, XCAR (slot))) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2298 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2299 index = make_number (i); |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
37765
diff
changeset
|
2300 XSETCDR (slot, map); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2301 Fput (symbol, Qcode_conversion_map, map); |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2302 Fput (symbol, Qcode_conversion_map_id, index); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2303 return index; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2304 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2305 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2306 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2307 if (i == len) |
85278
0cbe92deb527
(Fregister_code_conversion_map): Reformat last change.
Eli Zaretskii <eliz@gnu.org>
parents:
85243
diff
changeset
|
2308 Vcode_conversion_map_vector = larger_vector (Vcode_conversion_map_vector, |
0cbe92deb527
(Fregister_code_conversion_map): Reformat last change.
Eli Zaretskii <eliz@gnu.org>
parents:
85243
diff
changeset
|
2309 len * 2, Qnil); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2310 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2311 index = make_number (i); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2312 Fput (symbol, Qcode_conversion_map, map); |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2313 Fput (symbol, Qcode_conversion_map_id, index); |
91607
d1e53221c4aa
* xselect.c (x_handle_dnd_message):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91375
diff
changeset
|
2314 ASET (Vcode_conversion_map_vector, i, Fcons (symbol, map)); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2315 return index; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2316 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2317 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2318 |
21514 | 2319 void |
17052 | 2320 syms_of_ccl () |
2321 { | |
2322 staticpro (&Vccl_program_table); | |
18749
d961aeafceba
(Fregister_ccl_program): Convert Fmake_vector argument to Lisp_Integer.
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
2323 Vccl_program_table = Fmake_vector (make_number (32), Qnil); |
17052 | 2324 |
88361 | 2325 Qccl = intern ("ccl"); |
2326 staticpro (&Qccl); | |
2327 | |
2328 Qcclp = intern ("cclp"); | |
2329 staticpro (&Qcclp); | |
2330 | |
21551 | 2331 Qccl_program = intern ("ccl-program"); |
2332 staticpro (&Qccl_program); | |
2333 | |
2334 Qccl_program_idx = intern ("ccl-program-idx"); | |
2335 staticpro (&Qccl_program_idx); | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2336 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2337 Qcode_conversion_map = intern ("code-conversion-map"); |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2338 staticpro (&Qcode_conversion_map); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2339 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2340 Qcode_conversion_map_id = intern ("code-conversion-map-id"); |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2341 staticpro (&Qcode_conversion_map_id); |
21551 | 2342 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2343 DEFVAR_LISP ("code-conversion-map-vector", &Vcode_conversion_map_vector, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2344 doc: /* Vector of code conversion maps. */); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2345 Vcode_conversion_map_vector = Fmake_vector (make_number (16), Qnil); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
2346 |
17052 | 2347 DEFVAR_LISP ("font-ccl-encoder-alist", &Vfont_ccl_encoder_alist, |
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2348 doc: /* Alist of fontname patterns vs corresponding CCL program. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2349 Each element looks like (REGEXP . CCL-CODE), |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2350 where CCL-CODE is a compiled CCL program. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2351 When a font whose name matches REGEXP is used for displaying a character, |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2352 CCL-CODE is executed to calculate the code point in the font |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2353 from the charset number and position code(s) of the character which are set |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2354 in CCL registers R0, R1, and R2 before the execution. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2355 The code point in the font is set in CCL registers R1 and R2 |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2356 when the execution terminated. |
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2357 If the font is single-byte font, the register R2 is not used. */); |
17052 | 2358 Vfont_ccl_encoder_alist = Qnil; |
2359 | |
46182
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
2360 DEFVAR_LISP ("translation-hash-table-vector", &Vtranslation_hash_table_vector, |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
2361 doc: /* Vector containing all translation hash tables ever defined. |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
2362 Comprises pairs (SYMBOL . TABLE) where SYMBOL and TABLE were set up by calls |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
2363 to `define-translation-hash-table'. The vector is indexed by the table id |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
2364 used by CCL. */); |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
2365 Vtranslation_hash_table_vector = Qnil; |
48b34872db42
(Vtranslation_hash_table_vector, GET_HASH_TABLE)
Dave Love <fx@gnu.org>
parents:
41622
diff
changeset
|
2366 |
25066
8b8e54912f5c
(ccl_driver) <CCL_Call>: Now CCL program ID to call may be
Kenichi Handa <handa@m17n.org>
parents:
24688
diff
changeset
|
2367 defsubr (&Sccl_program_p); |
17052 | 2368 defsubr (&Sccl_execute); |
2369 defsubr (&Sccl_execute_on_string); | |
2370 defsubr (&Sregister_ccl_program); | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
2371 defsubr (&Sregister_code_conversion_map); |
17052 | 2372 } |
52401 | 2373 |
2374 /* arch-tag: bb9a37be-68ce-4576-8d3d-15d750e4a860 | |
2375 (do not change this comment) */ |