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