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