Mercurial > emacs
annotate src/ccl.c @ 24571:9944f4ca2ee5
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 06 Apr 1999 19:06:27 +0000 |
parents | 36e004c54eaf |
children | 7b170d2184a4 |
rev | line source |
---|---|
17052 | 1 /* CCL (Code Conversion Language) interpreter. |
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
17828
diff
changeset
|
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. |
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
17828
diff
changeset
|
3 Licensed to the Free Software Foundation. |
17052 | 4 |
17071 | 5 This file is part of GNU Emacs. |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
9 the Free Software Foundation; either version 2, or (at your option) | |
10 any later version. | |
17052 | 11 |
17071 | 12 GNU Emacs is distributed in the hope that it will be useful, |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
17052 | 16 |
17071 | 17 You should have received a copy of the GNU General Public License |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
17052 | 21 |
22 #include <stdio.h> | |
23 | |
24 #ifdef emacs | |
25 | |
26 #include <config.h> | |
21514 | 27 |
28 #ifdef STDC_HEADERS | |
29 #include <stdlib.h> | |
30 #endif | |
31 | |
17052 | 32 #include "lisp.h" |
33 #include "charset.h" | |
34 #include "ccl.h" | |
35 #include "coding.h" | |
36 | |
37 #else /* not emacs */ | |
38 | |
39 #include "mulelib.h" | |
40 | |
41 #endif /* not emacs */ | |
42 | |
22718 | 43 /* 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
|
44 Lisp_Object Vcode_conversion_map_vector; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
45 |
17052 | 46 /* Alist of fontname patterns vs corresponding CCL program. */ |
47 Lisp_Object Vfont_ccl_encoder_alist; | |
48 | |
21551 | 49 /* This symbol is a property which assocates with ccl program vector. |
50 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
|
51 Lisp_Object Qccl_program; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
52 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
53 /* 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
|
54 map and their ID respectively. */ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
55 Lisp_Object Qcode_conversion_map; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
56 Lisp_Object Qcode_conversion_map_id; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
57 |
21551 | 58 /* Symbols of ccl program have this property, a value of the property |
59 is an index for Vccl_protram_table. */ | |
60 Lisp_Object Qccl_program_idx; | |
61 | |
17052 | 62 /* Vector of CCL program names vs corresponding program data. */ |
63 Lisp_Object Vccl_program_table; | |
64 | |
65 /* CCL (Code Conversion Language) is a simple language which has | |
66 operations on one input buffer, one output buffer, and 7 registers. | |
67 The syntax of CCL is described in `ccl.el'. Emacs Lisp function | |
68 `ccl-compile' compiles a CCL program and produces a CCL code which | |
69 is a vector of integers. The structure of this vector is as | |
70 follows: The 1st element: buffer-magnification, a factor for the | |
71 size of output buffer compared with the size of input buffer. The | |
72 2nd element: address of CCL code to be executed when encountered | |
73 with end of input stream. The 3rd and the remaining elements: CCL | |
74 codes. */ | |
75 | |
76 /* Header of CCL compiled code */ | |
77 #define CCL_HEADER_BUF_MAG 0 | |
78 #define CCL_HEADER_EOF 1 | |
79 #define CCL_HEADER_MAIN 2 | |
80 | |
81 /* CCL code is a sequence of 28-bit non-negative integers (i.e. the | |
82 MSB is always 0), each contains CCL command and/or arguments in the | |
83 following format: | |
84 | |
85 |----------------- integer (28-bit) ------------------| | |
86 |------- 17-bit ------|- 3-bit --|- 3-bit --|- 5-bit -| | |
87 |--constant argument--|-register-|-register-|-command-| | |
88 ccccccccccccccccc RRR rrr XXXXX | |
89 or | |
90 |------- relative address -------|-register-|-command-| | |
91 cccccccccccccccccccc rrr XXXXX | |
92 or | |
93 |------------- constant or other args ----------------| | |
94 cccccccccccccccccccccccccccc | |
95 | |
96 where, `cc...c' is a non-negative integer indicating constant value | |
97 (the left most `c' is always 0) or an absolute jump address, `RRR' | |
98 and `rrr' are CCL register number, `XXXXX' is one of the following | |
99 CCL commands. */ | |
100 | |
101 /* CCL commands | |
102 | |
103 Each comment fields shows one or more lines for command syntax and | |
104 the following lines for semantics of the command. In semantics, IC | |
105 stands for Instruction Counter. */ | |
106 | |
107 #define CCL_SetRegister 0x00 /* Set register a register value: | |
108 1:00000000000000000RRRrrrXXXXX | |
109 ------------------------------ | |
110 reg[rrr] = reg[RRR]; | |
111 */ | |
112 | |
113 #define CCL_SetShortConst 0x01 /* Set register a short constant value: | |
114 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
115 ------------------------------ | |
116 reg[rrr] = CCCCCCCCCCCCCCCCCCC; | |
117 */ | |
118 | |
119 #define CCL_SetConst 0x02 /* Set register a constant value: | |
120 1:00000000000000000000rrrXXXXX | |
121 2:CONSTANT | |
122 ------------------------------ | |
123 reg[rrr] = CONSTANT; | |
124 IC++; | |
125 */ | |
126 | |
127 #define CCL_SetArray 0x03 /* Set register an element of array: | |
128 1:CCCCCCCCCCCCCCCCCRRRrrrXXXXX | |
129 2:ELEMENT[0] | |
130 3:ELEMENT[1] | |
131 ... | |
132 ------------------------------ | |
133 if (0 <= reg[RRR] < CC..C) | |
134 reg[rrr] = ELEMENT[reg[RRR]]; | |
135 IC += CC..C; | |
136 */ | |
137 | |
138 #define CCL_Jump 0x04 /* Jump: | |
139 1:A--D--D--R--E--S--S-000XXXXX | |
140 ------------------------------ | |
141 IC += ADDRESS; | |
142 */ | |
143 | |
144 /* Note: If CC..C is greater than 0, the second code is omitted. */ | |
145 | |
146 #define CCL_JumpCond 0x05 /* Jump conditional: | |
147 1:A--D--D--R--E--S--S-rrrXXXXX | |
148 ------------------------------ | |
149 if (!reg[rrr]) | |
150 IC += ADDRESS; | |
151 */ | |
152 | |
153 | |
154 #define CCL_WriteRegisterJump 0x06 /* Write register and jump: | |
155 1:A--D--D--R--E--S--S-rrrXXXXX | |
156 ------------------------------ | |
157 write (reg[rrr]); | |
158 IC += ADDRESS; | |
159 */ | |
160 | |
161 #define CCL_WriteRegisterReadJump 0x07 /* Write register, read, and jump: | |
162 1:A--D--D--R--E--S--S-rrrXXXXX | |
163 2:A--D--D--R--E--S--S-rrrYYYYY | |
164 ----------------------------- | |
165 write (reg[rrr]); | |
166 IC++; | |
167 read (reg[rrr]); | |
168 IC += ADDRESS; | |
169 */ | |
170 /* Note: If read is suspended, the resumed execution starts from the | |
171 second code (YYYYY == CCL_ReadJump). */ | |
172 | |
173 #define CCL_WriteConstJump 0x08 /* Write constant and jump: | |
174 1:A--D--D--R--E--S--S-000XXXXX | |
175 2:CONST | |
176 ------------------------------ | |
177 write (CONST); | |
178 IC += ADDRESS; | |
179 */ | |
180 | |
181 #define CCL_WriteConstReadJump 0x09 /* Write constant, read, and jump: | |
182 1:A--D--D--R--E--S--S-rrrXXXXX | |
183 2:CONST | |
184 3:A--D--D--R--E--S--S-rrrYYYYY | |
185 ----------------------------- | |
186 write (CONST); | |
187 IC += 2; | |
188 read (reg[rrr]); | |
189 IC += ADDRESS; | |
190 */ | |
191 /* Note: If read is suspended, the resumed execution starts from the | |
192 second code (YYYYY == CCL_ReadJump). */ | |
193 | |
194 #define CCL_WriteStringJump 0x0A /* Write string and jump: | |
195 1:A--D--D--R--E--S--S-000XXXXX | |
196 2:LENGTH | |
197 3:0000STRIN[0]STRIN[1]STRIN[2] | |
198 ... | |
199 ------------------------------ | |
200 write_string (STRING, LENGTH); | |
201 IC += ADDRESS; | |
202 */ | |
203 | |
204 #define CCL_WriteArrayReadJump 0x0B /* Write an array element, read, and jump: | |
205 1:A--D--D--R--E--S--S-rrrXXXXX | |
206 2:LENGTH | |
207 3:ELEMENET[0] | |
208 4:ELEMENET[1] | |
209 ... | |
210 N:A--D--D--R--E--S--S-rrrYYYYY | |
211 ------------------------------ | |
212 if (0 <= reg[rrr] < LENGTH) | |
213 write (ELEMENT[reg[rrr]]); | |
214 IC += LENGTH + 2; (... pointing at N+1) | |
215 read (reg[rrr]); | |
216 IC += ADDRESS; | |
217 */ | |
218 /* 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
|
219 Nth code (YYYYY == CCL_ReadJump). */ |
17052 | 220 |
221 #define CCL_ReadJump 0x0C /* Read and jump: | |
222 1:A--D--D--R--E--S--S-rrrYYYYY | |
223 ----------------------------- | |
224 read (reg[rrr]); | |
225 IC += ADDRESS; | |
226 */ | |
227 | |
228 #define CCL_Branch 0x0D /* Jump by branch table: | |
229 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
230 2:A--D--D--R--E-S-S[0]000XXXXX | |
231 3:A--D--D--R--E-S-S[1]000XXXXX | |
232 ... | |
233 ------------------------------ | |
234 if (0 <= reg[rrr] < CC..C) | |
235 IC += ADDRESS[reg[rrr]]; | |
236 else | |
237 IC += ADDRESS[CC..C]; | |
238 */ | |
239 | |
240 #define CCL_ReadRegister 0x0E /* Read bytes into registers: | |
241 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
242 2:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
243 ... | |
244 ------------------------------ | |
245 while (CCC--) | |
246 read (reg[rrr]); | |
247 */ | |
248 | |
249 #define CCL_WriteExprConst 0x0F /* write result of expression: | |
250 1:00000OPERATION000RRR000XXXXX | |
251 2:CONSTANT | |
252 ------------------------------ | |
253 write (reg[RRR] OPERATION CONSTANT); | |
254 IC++; | |
255 */ | |
256 | |
257 /* Note: If the Nth read is suspended, the resumed execution starts | |
258 from the Nth code. */ | |
259 | |
260 #define CCL_ReadBranch 0x10 /* Read one byte into a register, | |
261 and jump by branch table: | |
262 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
263 2:A--D--D--R--E-S-S[0]000XXXXX | |
264 3:A--D--D--R--E-S-S[1]000XXXXX | |
265 ... | |
266 ------------------------------ | |
267 read (read[rrr]); | |
268 if (0 <= reg[rrr] < CC..C) | |
269 IC += ADDRESS[reg[rrr]]; | |
270 else | |
271 IC += ADDRESS[CC..C]; | |
272 */ | |
273 | |
274 #define CCL_WriteRegister 0x11 /* Write registers: | |
275 1:CCCCCCCCCCCCCCCCCCCrrrXXXXX | |
276 2:CCCCCCCCCCCCCCCCCCCrrrXXXXX | |
277 ... | |
278 ------------------------------ | |
279 while (CCC--) | |
280 write (reg[rrr]); | |
281 ... | |
282 */ | |
283 | |
284 /* Note: If the Nth write is suspended, the resumed execution | |
285 starts from the Nth code. */ | |
286 | |
287 #define CCL_WriteExprRegister 0x12 /* Write result of expression | |
288 1:00000OPERATIONRrrRRR000XXXXX | |
289 ------------------------------ | |
290 write (reg[RRR] OPERATION reg[Rrr]); | |
291 */ | |
292 | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
293 #define CCL_Call 0x13 /* Call the CCL program whose ID is |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
294 (CC..C). |
17052 | 295 1:CCCCCCCCCCCCCCCCCCCC000XXXXX |
296 ------------------------------ | |
297 call (CC..C) | |
298 */ | |
299 | |
300 #define CCL_WriteConstString 0x14 /* Write a constant or a string: | |
301 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
302 [2:0000STRIN[0]STRIN[1]STRIN[2]] | |
303 [...] | |
304 ----------------------------- | |
305 if (!rrr) | |
306 write (CC..C) | |
307 else | |
308 write_string (STRING, CC..C); | |
309 IC += (CC..C + 2) / 3; | |
310 */ | |
311 | |
312 #define CCL_WriteArray 0x15 /* Write an element of array: | |
313 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX | |
314 2:ELEMENT[0] | |
315 3:ELEMENT[1] | |
316 ... | |
317 ------------------------------ | |
318 if (0 <= reg[rrr] < CC..C) | |
319 write (ELEMENT[reg[rrr]]); | |
320 IC += CC..C; | |
321 */ | |
322 | |
323 #define CCL_End 0x16 /* Terminate: | |
324 1:00000000000000000000000XXXXX | |
325 ------------------------------ | |
326 terminate (); | |
327 */ | |
328 | |
329 /* The following two codes execute an assignment arithmetic/logical | |
330 operation. The form of the operation is like REG OP= OPERAND. */ | |
331 | |
332 #define CCL_ExprSelfConst 0x17 /* REG OP= constant: | |
333 1:00000OPERATION000000rrrXXXXX | |
334 2:CONSTANT | |
335 ------------------------------ | |
336 reg[rrr] OPERATION= CONSTANT; | |
337 */ | |
338 | |
339 #define CCL_ExprSelfReg 0x18 /* REG1 OP= REG2: | |
340 1:00000OPERATION000RRRrrrXXXXX | |
341 ------------------------------ | |
342 reg[rrr] OPERATION= reg[RRR]; | |
343 */ | |
344 | |
345 /* The following codes execute an arithmetic/logical operation. The | |
346 form of the operation is like REG_X = REG_Y OP OPERAND2. */ | |
347 | |
348 #define CCL_SetExprConst 0x19 /* REG_X = REG_Y OP constant: | |
349 1:00000OPERATION000RRRrrrXXXXX | |
350 2:CONSTANT | |
351 ------------------------------ | |
352 reg[rrr] = reg[RRR] OPERATION CONSTANT; | |
353 IC++; | |
354 */ | |
355 | |
356 #define CCL_SetExprReg 0x1A /* REG1 = REG2 OP REG3: | |
357 1:00000OPERATIONRrrRRRrrrXXXXX | |
358 ------------------------------ | |
359 reg[rrr] = reg[RRR] OPERATION reg[Rrr]; | |
360 */ | |
361 | |
362 #define CCL_JumpCondExprConst 0x1B /* Jump conditional according to | |
363 an operation on constant: | |
364 1:A--D--D--R--E--S--S-rrrXXXXX | |
365 2:OPERATION | |
366 3:CONSTANT | |
367 ----------------------------- | |
368 reg[7] = reg[rrr] OPERATION CONSTANT; | |
369 if (!(reg[7])) | |
370 IC += ADDRESS; | |
371 else | |
372 IC += 2 | |
373 */ | |
374 | |
375 #define CCL_JumpCondExprReg 0x1C /* Jump conditional according to | |
376 an operation on register: | |
377 1:A--D--D--R--E--S--S-rrrXXXXX | |
378 2:OPERATION | |
379 3:RRR | |
380 ----------------------------- | |
381 reg[7] = reg[rrr] OPERATION reg[RRR]; | |
382 if (!reg[7]) | |
383 IC += ADDRESS; | |
384 else | |
385 IC += 2; | |
386 */ | |
387 | |
388 #define CCL_ReadJumpCondExprConst 0x1D /* Read and jump conditional according | |
389 to an operation on constant: | |
390 1:A--D--D--R--E--S--S-rrrXXXXX | |
391 2:OPERATION | |
392 3:CONSTANT | |
393 ----------------------------- | |
394 read (reg[rrr]); | |
395 reg[7] = reg[rrr] OPERATION CONSTANT; | |
396 if (!reg[7]) | |
397 IC += ADDRESS; | |
398 else | |
399 IC += 2; | |
400 */ | |
401 | |
402 #define CCL_ReadJumpCondExprReg 0x1E /* Read and jump conditional according | |
403 to an operation on register: | |
404 1:A--D--D--R--E--S--S-rrrXXXXX | |
405 2:OPERATION | |
406 3:RRR | |
407 ----------------------------- | |
408 read (reg[rrr]); | |
409 reg[7] = reg[rrr] OPERATION reg[RRR]; | |
410 if (!reg[7]) | |
411 IC += ADDRESS; | |
412 else | |
413 IC += 2; | |
414 */ | |
415 | |
416 #define CCL_Extention 0x1F /* Extended CCL code | |
417 1:ExtendedCOMMNDRrrRRRrrrXXXXX | |
418 2:ARGUEMENT | |
419 3:... | |
420 ------------------------------ | |
421 extended_command (rrr,RRR,Rrr,ARGS) | |
422 */ | |
423 | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
424 /* |
21551 | 425 Here after, Extended CCL Instructions. |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
426 Bit length of extended command is 14. |
21551 | 427 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
|
428 */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
429 |
21551 | 430 /* Read a multibyte characeter. |
431 A code point is stored into reg[rrr]. A charset ID is stored into | |
432 reg[RRR]. */ | |
433 | |
434 #define CCL_ReadMultibyteChar2 0x00 /* Read Multibyte Character | |
435 1:ExtendedCOMMNDRrrRRRrrrXXXXX */ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
436 |
21551 | 437 /* Write a multibyte character. |
438 Write a character whose code point is reg[rrr] and the charset ID | |
439 is reg[RRR]. */ | |
440 | |
441 #define CCL_WriteMultibyteChar2 0x01 /* Write Multibyte Character | |
442 1:ExtendedCOMMNDRrrRRRrrrXXXXX */ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
443 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
444 /* 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
|
445 ID is reg[RRR] by a translation table whose ID is reg[Rrr]. |
21551 | 446 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
447 A translated character is set in reg[rrr] (code point) and reg[RRR] |
21551 | 448 (charset ID). */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
449 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
450 #define CCL_TranslateCharacter 0x02 /* Translate a multibyte character |
21551 | 451 1:ExtendedCOMMNDRrrRRRrrrXXXXX */ |
452 | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
453 /* 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
|
454 ID is reg[RRR] by a translation table whose ID is ARGUMENT. |
21551 | 455 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
456 A translated character is set in reg[rrr] (code point) and reg[RRR] |
21551 | 457 (charset ID). */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
458 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
459 #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
|
460 1:ExtendedCOMMNDRrrRRRrrrXXXXX |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
461 2:ARGUMENT(Translation Table ID) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
462 */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
463 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
464 /* 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
|
465 reg[RRR]) MAP until some value is found. |
21551 | 466 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
467 Each MAP is a Lisp vector whose element is number, nil, t, or |
21551 | 468 lambda. |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
469 If the element is nil, ignore the map and proceed to the next map. |
21551 | 470 If the element is t or lambda, finish without changing reg[rrr]. |
471 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
|
472 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
473 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
|
474 CCL_MapMultiple below. */ |
21551 | 475 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
476 #define CCL_IterateMultipleMap 0x10 /* Iterate multiple maps |
21551 | 477 1:ExtendedCOMMNDXXXRRRrrrXXXXX |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
478 2:NUMBER of MAPs |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
479 3:MAP-ID1 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
480 4:MAP-ID2 |
21551 | 481 ... |
482 */ | |
483 | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
484 /* 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
|
485 reg[RRR]) map. |
21551 | 486 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
487 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
|
488 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
489 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
|
490 ((MAP-ID11 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
491 MAP-ID12 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
492 (MAP-ID121 MAP-ID122 MAP-ID123) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
493 MAP-ID13) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
494 (MAP-ID21 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
495 (MAP-ID211 (MAP-ID2111) MAP-ID212) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
496 MAP-ID22)), |
21551 | 497 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
|
498 CCL_MapMultiple (CCL code of this command) |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
499 16 (total number of MAPs and SEPARATORs) |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
500 -7 (1st SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
501 MAP-ID11 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
502 MAP-ID12 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
503 -3 (2nd SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
504 MAP-ID121 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
505 MAP-ID122 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
506 MAP-ID123 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
507 MAP-ID13 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
508 -7 (3rd SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
509 MAP-ID21 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
510 -4 (4th SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
511 MAP-ID211 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
512 -1 (5th SEPARATOR) |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
513 MAP_ID2111 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
514 MAP-ID212 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
515 MAP-ID22 |
21551 | 516 |
22525
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
517 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
|
518 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
|
519 SEPARATOR := -(number of MAP-IDs and SEPARATORs in the MAP-SET) |
21551 | 520 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
521 (*)....Nest level of MAP-SET must not be over than MAX_MAP_SET_LEVEL. |
21551 | 522 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
523 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
|
524 reg[rrr]), the mapping is treated as identity. |
21551 | 525 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
526 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
|
527 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
|
528 encountered. More precisely, the mapping proceeds as below: |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
529 |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
530 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
|
531 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
|
532 VAL2. This mapping is iterated until the last map is used. The |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
533 result of the mapping is the last value of VAL?. |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
534 |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
535 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
|
536 mapping proceed as below: |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
537 |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
538 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
|
539 proceed to the next map. |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
540 |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
541 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
|
542 proceed to the next map. |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
543 |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
544 If VALn is lambda, the whole mapping process terminates, and VALm |
3dade37fd85d
Comment for CCL_MapMultiple modified..
Kenichi Handa <handa@m17n.org>
parents:
22186
diff
changeset
|
545 is the result of this mapping. |
21551 | 546 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
547 Each map is a Lisp vector of the following format (a) or (b): |
21551 | 548 (a)......[STARTPOINT VAL1 VAL2 ...] |
549 (b)......[t VAL STARTPOINT ENDPOINT], | |
550 where | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
551 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
|
552 ENDPOINT is a maximum index number of a map, |
21551 | 553 VAL and VALn is a number, nil, t, or lambda. |
554 | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
555 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
|
556 STARTPOINT <= index < STARTPOINT + map_size - 1 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
557 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
|
558 STARTPOINT <= index < ENDPOINT */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
559 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
560 #define CCL_MapMultiple 0x11 /* Mapping by multiple code conversion maps |
21551 | 561 1:ExtendedCOMMNDXXXRRRrrrXXXXX |
562 2:N-2 | |
563 3:SEPARATOR_1 (< 0) | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
564 4:MAP-ID_1 |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
565 5:MAP-ID_2 |
21551 | 566 ... |
567 M:SEPARATOR_x (< 0) | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
568 M+1:MAP-ID_y |
21551 | 569 ... |
570 N:SEPARATOR_z (< 0) | |
571 */ | |
572 | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
573 #define MAX_MAP_SET_LEVEL 20 |
21551 | 574 |
575 typedef struct | |
576 { | |
577 int rest_length; | |
578 int orig_val; | |
579 } tr_stack; | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
580 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
581 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
|
582 static tr_stack *mapping_stack_pointer; |
21551 | 583 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
584 #define PUSH_MAPPING_STACK(restlen, orig) \ |
21551 | 585 { \ |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
586 mapping_stack_pointer->rest_length = (restlen); \ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
587 mapping_stack_pointer->orig_val = (orig); \ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
588 mapping_stack_pointer++; \ |
21551 | 589 } |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
590 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
591 #define POP_MAPPING_STACK(restlen, orig) \ |
21551 | 592 { \ |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
593 mapping_stack_pointer--; \ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
594 (restlen) = mapping_stack_pointer->rest_length; \ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
595 (orig) = mapping_stack_pointer->orig_val; \ |
21551 | 596 } \ |
597 | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
598 #define CCL_MapSingle 0x12 /* Map by single code conversion map |
21551 | 599 1:ExtendedCOMMNDXXXRRRrrrXXXXX |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
600 2:MAP-ID |
21551 | 601 ------------------------------ |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
602 Map reg[rrr] by MAP-ID. |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
603 If some valid mapping is found, |
21551 | 604 set reg[rrr] to the result, |
605 else | |
606 set reg[RRR] to -1. | |
607 */ | |
17052 | 608 |
609 /* CCL arithmetic/logical operators. */ | |
610 #define CCL_PLUS 0x00 /* X = Y + Z */ | |
611 #define CCL_MINUS 0x01 /* X = Y - Z */ | |
612 #define CCL_MUL 0x02 /* X = Y * Z */ | |
613 #define CCL_DIV 0x03 /* X = Y / Z */ | |
614 #define CCL_MOD 0x04 /* X = Y % Z */ | |
615 #define CCL_AND 0x05 /* X = Y & Z */ | |
616 #define CCL_OR 0x06 /* X = Y | Z */ | |
617 #define CCL_XOR 0x07 /* X = Y ^ Z */ | |
618 #define CCL_LSH 0x08 /* X = Y << Z */ | |
619 #define CCL_RSH 0x09 /* X = Y >> Z */ | |
620 #define CCL_LSH8 0x0A /* X = (Y << 8) | Z */ | |
621 #define CCL_RSH8 0x0B /* X = Y >> 8, r[7] = Y & 0xFF */ | |
622 #define CCL_DIVMOD 0x0C /* X = Y / Z, r[7] = Y % Z */ | |
623 #define CCL_LS 0x10 /* X = (X < Y) */ | |
624 #define CCL_GT 0x11 /* X = (X > Y) */ | |
625 #define CCL_EQ 0x12 /* X = (X == Y) */ | |
626 #define CCL_LE 0x13 /* X = (X <= Y) */ | |
627 #define CCL_GE 0x14 /* X = (X >= Y) */ | |
628 #define CCL_NE 0x15 /* X = (X != Y) */ | |
629 | |
23428
49c7e979c16c
(CCL_DECODE_SJIS, CCL_ENCODE_SJIS): Swap the definitions.
Kenichi Handa <handa@m17n.org>
parents:
23303
diff
changeset
|
630 #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
|
631 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
|
632 #define CCL_ENCODE_SJIS 0x17 /* X = HIGHER_BYTE (SJIS (Y, Z)) |
17052 | 633 r[7] = LOWER_BYTE (SJIS (Y, Z) */ |
634 | |
635 /* Terminate CCL program successfully. */ | |
636 #define CCL_SUCCESS \ | |
637 do { \ | |
638 ccl->status = CCL_STAT_SUCCESS; \ | |
639 goto ccl_finish; \ | |
640 } while (0) | |
641 | |
642 /* Suspend CCL program because of reading from empty input buffer or | |
643 writing to full output buffer. When this program is resumed, the | |
644 same I/O command is executed. */ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
645 #define CCL_SUSPEND(stat) \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
646 do { \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
647 ic--; \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
648 ccl->status = stat; \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
649 goto ccl_finish; \ |
17052 | 650 } while (0) |
651 | |
652 /* Terminate CCL program because of invalid command. Should not occur | |
653 in the normal case. */ | |
654 #define CCL_INVALID_CMD \ | |
655 do { \ | |
656 ccl->status = CCL_STAT_INVALID_CMD; \ | |
657 goto ccl_error_handler; \ | |
658 } while (0) | |
659 | |
660 /* 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
|
661 output buffer. If CH is less than 256, CH is written as is. */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
662 #define CCL_WRITE_CHAR(ch) \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
663 do { \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
664 if (!dst) \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
665 CCL_INVALID_CMD; \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
666 else \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
667 { \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
668 unsigned char work[4], *str; \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
669 int len = CHAR_STRING (ch, work, str); \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
670 if (dst + len <= (dst_bytes ? dst_end : src)) \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
671 { \ |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
672 while (len--) *dst++ = *str++; \ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
673 } \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
674 else \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
675 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_DST); \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
676 } \ |
17052 | 677 } while (0) |
678 | |
679 /* Write a string at ccl_prog[IC] of length LEN to the current output | |
680 buffer. */ | |
681 #define CCL_WRITE_STRING(len) \ | |
682 do { \ | |
683 if (!dst) \ | |
684 CCL_INVALID_CMD; \ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
685 else if (dst + len <= (dst_bytes ? dst_end : src)) \ |
17052 | 686 for (i = 0; i < len; i++) \ |
687 *dst++ = ((XFASTINT (ccl_prog[ic + (i / 3)])) \ | |
688 >> ((2 - (i % 3)) * 8)) & 0xFF; \ | |
689 else \ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
690 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_DST); \ |
17052 | 691 } while (0) |
692 | |
693 /* Read one byte from the current input buffer into Rth register. */ | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
694 #define CCL_READ_CHAR(r) \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
695 do { \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
696 if (!src) \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
697 CCL_INVALID_CMD; \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
698 else if (src < src_end) \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
699 r = *src++; \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
700 else if (ccl->last_block) \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
701 { \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
702 ic = ccl->eof_ic; \ |
23068
ae33b925b20f
If eof is encounterd while processing the
Kenichi Handa <handa@m17n.org>
parents:
22718
diff
changeset
|
703 goto ccl_repeat; \ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
704 } \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
705 else \ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
706 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_SRC); \ |
17052 | 707 } while (0) |
708 | |
709 | |
710 /* Execute CCL code on SRC_BYTES length text at SOURCE. The resulting | |
711 text goes to a place pointed by DESTINATION, the length of which | |
712 should not exceed DST_BYTES. The bytes actually processed is | |
713 returned as *CONSUMED. The return value is the length of the | |
714 resulting text. As a side effect, the contents of CCL registers | |
715 are updated. If SOURCE or DESTINATION is NULL, only operations on | |
716 registers are permitted. */ | |
717 | |
718 #ifdef CCL_DEBUG | |
719 #define CCL_DEBUG_BACKTRACE_LEN 256 | |
720 int ccl_backtrace_table[CCL_BACKTRACE_TABLE]; | |
721 int ccl_backtrace_idx; | |
722 #endif | |
723 | |
724 struct ccl_prog_stack | |
725 { | |
17828
db443ea8cb36
(struct ccl_prog_stack): Declear the member ccl_prog as
Kenichi Handa <handa@m17n.org>
parents:
17728
diff
changeset
|
726 Lisp_Object *ccl_prog; /* Pointer to an array of CCL code. */ |
17052 | 727 int ic; /* Instruction Counter. */ |
728 }; | |
729 | |
21514 | 730 int |
17052 | 731 ccl_driver (ccl, source, destination, src_bytes, dst_bytes, consumed) |
732 struct ccl_program *ccl; | |
733 unsigned char *source, *destination; | |
734 int src_bytes, dst_bytes; | |
735 int *consumed; | |
736 { | |
737 register int *reg = ccl->reg; | |
738 register int ic = ccl->ic; | |
739 register int code, field1, field2; | |
17370
6db43d8c9dfc
(ccl_driver): Fix Lisp_Object/integer confusion.
Karl Heuer <kwzh@gnu.org>
parents:
17323
diff
changeset
|
740 register Lisp_Object *ccl_prog = ccl->prog; |
17052 | 741 unsigned char *src = source, *src_end = src + src_bytes; |
742 unsigned char *dst = destination, *dst_end = dst + dst_bytes; | |
743 int jump_address; | |
744 int i, j, op; | |
745 int stack_idx = 0; | |
746 /* For the moment, we only support depth 256 of stack. */ | |
747 struct ccl_prog_stack ccl_prog_stack_struct[256]; | |
23303
fb38954a02d3
(ccl_driver): Report correct CCL program counter on error.
Kenichi Handa <handa@m17n.org>
parents:
23280
diff
changeset
|
748 /* Instruction counter of the current CCL code. */ |
fb38954a02d3
(ccl_driver): Report correct CCL program counter on error.
Kenichi Handa <handa@m17n.org>
parents:
23280
diff
changeset
|
749 int this_ic; |
17052 | 750 |
751 if (ic >= ccl->eof_ic) | |
752 ic = CCL_HEADER_MAIN; | |
753 | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
754 if (ccl->buf_magnification ==0) /* We can't produce any bytes. */ |
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
755 dst = NULL; |
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
756 |
17052 | 757 #ifdef CCL_DEBUG |
758 ccl_backtrace_idx = 0; | |
759 #endif | |
760 | |
761 for (;;) | |
762 { | |
23068
ae33b925b20f
If eof is encounterd while processing the
Kenichi Handa <handa@m17n.org>
parents:
22718
diff
changeset
|
763 ccl_repeat: |
17052 | 764 #ifdef CCL_DEBUG |
765 ccl_backtrace_table[ccl_backtrace_idx++] = ic; | |
766 if (ccl_backtrace_idx >= CCL_DEBUG_BACKTRACE_LEN) | |
767 ccl_backtrace_idx = 0; | |
768 ccl_backtrace_table[ccl_backtrace_idx] = 0; | |
769 #endif | |
770 | |
771 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) | |
772 { | |
773 /* We can't just signal Qquit, instead break the loop as if | |
774 the whole data is processed. Don't reset Vquit_flag, it | |
775 must be handled later at a safer place. */ | |
776 if (consumed) | |
777 src = source + src_bytes; | |
778 ccl->status = CCL_STAT_QUIT; | |
779 break; | |
780 } | |
781 | |
23303
fb38954a02d3
(ccl_driver): Report correct CCL program counter on error.
Kenichi Handa <handa@m17n.org>
parents:
23280
diff
changeset
|
782 this_ic = ic; |
17052 | 783 code = XINT (ccl_prog[ic]); ic++; |
784 field1 = code >> 8; | |
785 field2 = (code & 0xFF) >> 5; | |
786 | |
787 #define rrr field2 | |
788 #define RRR (field1 & 7) | |
789 #define Rrr ((field1 >> 3) & 7) | |
790 #define ADDR field1 | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
791 #define EXCMD (field1 >> 6) |
17052 | 792 |
793 switch (code & 0x1F) | |
794 { | |
795 case CCL_SetRegister: /* 00000000000000000RRRrrrXXXXX */ | |
796 reg[rrr] = reg[RRR]; | |
797 break; | |
798 | |
799 case CCL_SetShortConst: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
800 reg[rrr] = field1; | |
801 break; | |
802 | |
803 case CCL_SetConst: /* 00000000000000000000rrrXXXXX */ | |
804 reg[rrr] = XINT (ccl_prog[ic]); | |
805 ic++; | |
806 break; | |
807 | |
808 case CCL_SetArray: /* CCCCCCCCCCCCCCCCCCCCRRRrrrXXXXX */ | |
809 i = reg[RRR]; | |
810 j = field1 >> 3; | |
811 if ((unsigned int) i < j) | |
812 reg[rrr] = XINT (ccl_prog[ic + i]); | |
813 ic += j; | |
814 break; | |
815 | |
816 case CCL_Jump: /* A--D--D--R--E--S--S-000XXXXX */ | |
817 ic += ADDR; | |
818 break; | |
819 | |
820 case CCL_JumpCond: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
821 if (!reg[rrr]) | |
822 ic += ADDR; | |
823 break; | |
824 | |
825 case CCL_WriteRegisterJump: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
826 i = reg[rrr]; | |
827 CCL_WRITE_CHAR (i); | |
828 ic += ADDR; | |
829 break; | |
830 | |
831 case CCL_WriteRegisterReadJump: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
832 i = reg[rrr]; | |
833 CCL_WRITE_CHAR (i); | |
834 ic++; | |
835 CCL_READ_CHAR (reg[rrr]); | |
836 ic += ADDR - 1; | |
837 break; | |
838 | |
839 case CCL_WriteConstJump: /* A--D--D--R--E--S--S-000XXXXX */ | |
840 i = XINT (ccl_prog[ic]); | |
841 CCL_WRITE_CHAR (i); | |
842 ic += ADDR; | |
843 break; | |
844 | |
845 case CCL_WriteConstReadJump: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
846 i = XINT (ccl_prog[ic]); | |
847 CCL_WRITE_CHAR (i); | |
848 ic++; | |
849 CCL_READ_CHAR (reg[rrr]); | |
850 ic += ADDR - 1; | |
851 break; | |
852 | |
853 case CCL_WriteStringJump: /* A--D--D--R--E--S--S-000XXXXX */ | |
854 j = XINT (ccl_prog[ic]); | |
855 ic++; | |
856 CCL_WRITE_STRING (j); | |
857 ic += ADDR - 1; | |
858 break; | |
859 | |
860 case CCL_WriteArrayReadJump: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
861 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
|
862 j = XINT (ccl_prog[ic]); |
17052 | 863 if ((unsigned int) i < j) |
864 { | |
17323
15fa68d983e7
(ccl_driver): Fix bug of the case CCL_WriteArrayReadJump.
Kenichi Handa <handa@m17n.org>
parents:
17122
diff
changeset
|
865 i = XINT (ccl_prog[ic + 1 + i]); |
17052 | 866 CCL_WRITE_CHAR (i); |
867 } | |
17323
15fa68d983e7
(ccl_driver): Fix bug of the case CCL_WriteArrayReadJump.
Kenichi Handa <handa@m17n.org>
parents:
17122
diff
changeset
|
868 ic += j + 2; |
17052 | 869 CCL_READ_CHAR (reg[rrr]); |
870 ic += ADDR - (j + 2); | |
871 break; | |
872 | |
873 case CCL_ReadJump: /* A--D--D--R--E--S--S-rrrYYYYY */ | |
874 CCL_READ_CHAR (reg[rrr]); | |
875 ic += ADDR; | |
876 break; | |
877 | |
878 case CCL_ReadBranch: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
879 CCL_READ_CHAR (reg[rrr]); | |
880 /* fall through ... */ | |
881 case CCL_Branch: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
882 if ((unsigned int) reg[rrr] < field1) | |
883 ic += XINT (ccl_prog[ic + reg[rrr]]); | |
884 else | |
885 ic += XINT (ccl_prog[ic + field1]); | |
886 break; | |
887 | |
888 case CCL_ReadRegister: /* CCCCCCCCCCCCCCCCCCCCrrXXXXX */ | |
889 while (1) | |
890 { | |
891 CCL_READ_CHAR (reg[rrr]); | |
892 if (!field1) break; | |
893 code = XINT (ccl_prog[ic]); ic++; | |
894 field1 = code >> 8; | |
895 field2 = (code & 0xFF) >> 5; | |
896 } | |
897 break; | |
898 | |
899 case CCL_WriteExprConst: /* 1:00000OPERATION000RRR000XXXXX */ | |
900 rrr = 7; | |
901 i = reg[RRR]; | |
902 j = XINT (ccl_prog[ic]); | |
903 op = field1 >> 6; | |
904 ic++; | |
905 goto ccl_set_expr; | |
906 | |
907 case CCL_WriteRegister: /* CCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
908 while (1) | |
909 { | |
910 i = reg[rrr]; | |
911 CCL_WRITE_CHAR (i); | |
912 if (!field1) break; | |
913 code = XINT (ccl_prog[ic]); ic++; | |
914 field1 = code >> 8; | |
915 field2 = (code & 0xFF) >> 5; | |
916 } | |
917 break; | |
918 | |
919 case CCL_WriteExprRegister: /* 1:00000OPERATIONRrrRRR000XXXXX */ | |
920 rrr = 7; | |
921 i = reg[RRR]; | |
922 j = reg[Rrr]; | |
923 op = field1 >> 6; | |
924 goto ccl_set_expr; | |
925 | |
926 case CCL_Call: /* CCCCCCCCCCCCCCCCCCCC000XXXXX */ | |
927 { | |
928 Lisp_Object slot; | |
929 | |
930 if (stack_idx >= 256 | |
931 || field1 < 0 | |
932 || field1 >= XVECTOR (Vccl_program_table)->size | |
933 || (slot = XVECTOR (Vccl_program_table)->contents[field1], | |
934 !CONSP (slot)) | |
935 || !VECTORP (XCONS (slot)->cdr)) | |
936 { | |
937 if (stack_idx > 0) | |
938 { | |
939 ccl_prog = ccl_prog_stack_struct[0].ccl_prog; | |
940 ic = ccl_prog_stack_struct[0].ic; | |
941 } | |
942 CCL_INVALID_CMD; | |
943 } | |
944 | |
945 ccl_prog_stack_struct[stack_idx].ccl_prog = ccl_prog; | |
946 ccl_prog_stack_struct[stack_idx].ic = ic; | |
947 stack_idx++; | |
948 ccl_prog = XVECTOR (XCONS (slot)->cdr)->contents; | |
949 ic = CCL_HEADER_MAIN; | |
950 } | |
951 break; | |
952 | |
953 case CCL_WriteConstString: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
954 if (!rrr) | |
955 CCL_WRITE_CHAR (field1); | |
956 else | |
957 { | |
958 CCL_WRITE_STRING (field1); | |
959 ic += (field1 + 2) / 3; | |
960 } | |
961 break; | |
962 | |
963 case CCL_WriteArray: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */ | |
964 i = reg[rrr]; | |
965 if ((unsigned int) i < field1) | |
966 { | |
967 j = XINT (ccl_prog[ic + i]); | |
968 CCL_WRITE_CHAR (j); | |
969 } | |
970 ic += field1; | |
971 break; | |
972 | |
973 case CCL_End: /* 0000000000000000000000XXXXX */ | |
974 if (stack_idx-- > 0) | |
975 { | |
976 ccl_prog = ccl_prog_stack_struct[stack_idx].ccl_prog; | |
977 ic = ccl_prog_stack_struct[stack_idx].ic; | |
978 break; | |
979 } | |
23884
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
980 if (src) |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
981 src = src_end; |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
982 /* 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
|
983 suppress further processing. */ |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
984 ic--; |
17052 | 985 CCL_SUCCESS; |
986 | |
987 case CCL_ExprSelfConst: /* 00000OPERATION000000rrrXXXXX */ | |
988 i = XINT (ccl_prog[ic]); | |
989 ic++; | |
990 op = field1 >> 6; | |
991 goto ccl_expr_self; | |
992 | |
993 case CCL_ExprSelfReg: /* 00000OPERATION000RRRrrrXXXXX */ | |
994 i = reg[RRR]; | |
995 op = field1 >> 6; | |
996 | |
997 ccl_expr_self: | |
998 switch (op) | |
999 { | |
1000 case CCL_PLUS: reg[rrr] += i; break; | |
1001 case CCL_MINUS: reg[rrr] -= i; break; | |
1002 case CCL_MUL: reg[rrr] *= i; break; | |
1003 case CCL_DIV: reg[rrr] /= i; break; | |
1004 case CCL_MOD: reg[rrr] %= i; break; | |
1005 case CCL_AND: reg[rrr] &= i; break; | |
1006 case CCL_OR: reg[rrr] |= i; break; | |
1007 case CCL_XOR: reg[rrr] ^= i; break; | |
1008 case CCL_LSH: reg[rrr] <<= i; break; | |
1009 case CCL_RSH: reg[rrr] >>= i; break; | |
1010 case CCL_LSH8: reg[rrr] <<= 8; reg[rrr] |= i; break; | |
1011 case CCL_RSH8: reg[7] = reg[rrr] & 0xFF; reg[rrr] >>= 8; break; | |
1012 case CCL_DIVMOD: reg[7] = reg[rrr] % i; reg[rrr] /= i; break; | |
1013 case CCL_LS: reg[rrr] = reg[rrr] < i; break; | |
1014 case CCL_GT: reg[rrr] = reg[rrr] > i; break; | |
1015 case CCL_EQ: reg[rrr] = reg[rrr] == i; break; | |
1016 case CCL_LE: reg[rrr] = reg[rrr] <= i; break; | |
1017 case CCL_GE: reg[rrr] = reg[rrr] >= i; break; | |
1018 case CCL_NE: reg[rrr] = reg[rrr] != i; break; | |
1019 default: CCL_INVALID_CMD; | |
1020 } | |
1021 break; | |
1022 | |
1023 case CCL_SetExprConst: /* 00000OPERATION000RRRrrrXXXXX */ | |
1024 i = reg[RRR]; | |
1025 j = XINT (ccl_prog[ic]); | |
1026 op = field1 >> 6; | |
1027 jump_address = ++ic; | |
1028 goto ccl_set_expr; | |
1029 | |
1030 case CCL_SetExprReg: /* 00000OPERATIONRrrRRRrrrXXXXX */ | |
1031 i = reg[RRR]; | |
1032 j = reg[Rrr]; | |
1033 op = field1 >> 6; | |
1034 jump_address = ic; | |
1035 goto ccl_set_expr; | |
1036 | |
1037 case CCL_ReadJumpCondExprConst: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
1038 CCL_READ_CHAR (reg[rrr]); | |
1039 case CCL_JumpCondExprConst: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
1040 i = reg[rrr]; | |
1041 op = XINT (ccl_prog[ic]); | |
1042 jump_address = ic++ + ADDR; | |
1043 j = XINT (ccl_prog[ic]); | |
1044 ic++; | |
1045 rrr = 7; | |
1046 goto ccl_set_expr; | |
1047 | |
1048 case CCL_ReadJumpCondExprReg: /* A--D--D--R--E--S--S-rrrXXXXX */ | |
1049 CCL_READ_CHAR (reg[rrr]); | |
1050 case CCL_JumpCondExprReg: | |
1051 i = reg[rrr]; | |
1052 op = XINT (ccl_prog[ic]); | |
1053 jump_address = ic++ + ADDR; | |
1054 j = reg[XINT (ccl_prog[ic])]; | |
1055 ic++; | |
1056 rrr = 7; | |
1057 | |
1058 ccl_set_expr: | |
1059 switch (op) | |
1060 { | |
1061 case CCL_PLUS: reg[rrr] = i + j; break; | |
1062 case CCL_MINUS: reg[rrr] = i - j; break; | |
1063 case CCL_MUL: reg[rrr] = i * j; break; | |
1064 case CCL_DIV: reg[rrr] = i / j; break; | |
1065 case CCL_MOD: reg[rrr] = i % j; break; | |
1066 case CCL_AND: reg[rrr] = i & j; break; | |
1067 case CCL_OR: reg[rrr] = i | j; break; | |
1068 case CCL_XOR: reg[rrr] = i ^ j;; break; | |
1069 case CCL_LSH: reg[rrr] = i << j; break; | |
1070 case CCL_RSH: reg[rrr] = i >> j; break; | |
1071 case CCL_LSH8: reg[rrr] = (i << 8) | j; break; | |
1072 case CCL_RSH8: reg[rrr] = i >> 8; reg[7] = i & 0xFF; break; | |
1073 case CCL_DIVMOD: reg[rrr] = i / j; reg[7] = i % j; break; | |
1074 case CCL_LS: reg[rrr] = i < j; break; | |
1075 case CCL_GT: reg[rrr] = i > j; break; | |
1076 case CCL_EQ: reg[rrr] = i == j; break; | |
1077 case CCL_LE: reg[rrr] = i <= j; break; | |
1078 case CCL_GE: reg[rrr] = i >= j; break; | |
1079 case CCL_NE: reg[rrr] = i != j; break; | |
23428
49c7e979c16c
(CCL_DECODE_SJIS, CCL_ENCODE_SJIS): Swap the definitions.
Kenichi Handa <handa@m17n.org>
parents:
23303
diff
changeset
|
1080 case CCL_DECODE_SJIS: DECODE_SJIS (i, j, reg[rrr], reg[7]); break; |
17052 | 1081 case CCL_ENCODE_SJIS: ENCODE_SJIS (i, j, reg[rrr], reg[7]); break; |
1082 default: CCL_INVALID_CMD; | |
1083 } | |
1084 code &= 0x1F; | |
1085 if (code == CCL_WriteExprConst || code == CCL_WriteExprRegister) | |
1086 { | |
1087 i = reg[rrr]; | |
1088 CCL_WRITE_CHAR (i); | |
1089 } | |
1090 else if (!reg[rrr]) | |
1091 ic = jump_address; | |
1092 break; | |
1093 | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1094 case CCL_Extention: |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1095 switch (EXCMD) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1096 { |
21551 | 1097 case CCL_ReadMultibyteChar2: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1098 if (!src) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1099 CCL_INVALID_CMD; |
24567
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1100 |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1101 do { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1102 if (src >= src_end) |
21551 | 1103 { |
1104 src++; | |
1105 goto ccl_read_multibyte_character_suspend; | |
1106 } | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1107 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1108 i = *src++; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1109 if (i == LEADING_CODE_COMPOSITION) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1110 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1111 if (src >= src_end) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1112 goto ccl_read_multibyte_character_suspend; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1113 if (*src == 0xFF) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1114 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1115 ccl->private_state = COMPOSING_WITH_RULE_HEAD; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1116 src++; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1117 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1118 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1119 ccl->private_state = COMPOSING_NO_RULE_HEAD; |
24567
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1120 |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1121 continue; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1122 } |
24567
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1123 if (ccl->private_state != COMPOSING_NO) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1124 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1125 /* composite character */ |
24567
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1126 if (i < 0xA0) |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1127 ccl->private_state = COMPOSING_NO; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1128 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1129 { |
24567
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1130 if (COMPOSING_WITH_RULE_RULE == ccl->private_state) |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1131 { |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1132 ccl->private_state = COMPOSING_WITH_RULE_HEAD; |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1133 continue; |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1134 } |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1135 else if (COMPOSING_WITH_RULE_HEAD == ccl->private_state) |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1136 ccl->private_state = COMPOSING_WITH_RULE_RULE; |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1137 |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1138 if (i == 0xA0) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1139 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1140 if (src >= src_end) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1141 goto ccl_read_multibyte_character_suspend; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1142 i = *src++ & 0x7F; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1143 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1144 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1145 i -= 0x20; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1146 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1147 } |
24567
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1148 |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1149 if (i < 0x80) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1150 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1151 /* ASCII */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1152 reg[rrr] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1153 reg[RRR] = CHARSET_ASCII; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1154 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1155 else if (i <= MAX_CHARSET_OFFICIAL_DIMENSION1) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1156 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1157 if (src >= src_end) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1158 goto ccl_read_multibyte_character_suspend; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1159 reg[RRR] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1160 reg[rrr] = (*src++ & 0x7F); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1161 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1162 else if (i <= MAX_CHARSET_OFFICIAL_DIMENSION2) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1163 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1164 if ((src + 1) >= src_end) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1165 goto ccl_read_multibyte_character_suspend; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1166 reg[RRR] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1167 i = (*src++ & 0x7F); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1168 reg[rrr] = ((i << 7) | (*src & 0x7F)); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1169 src++; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1170 } |
21551 | 1171 else if ((i == LEADING_CODE_PRIVATE_11) |
1172 || (i == LEADING_CODE_PRIVATE_12)) | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1173 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1174 if ((src + 1) >= src_end) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1175 goto ccl_read_multibyte_character_suspend; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1176 reg[RRR] = *src++; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1177 reg[rrr] = (*src++ & 0x7F); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1178 } |
21551 | 1179 else if ((i == LEADING_CODE_PRIVATE_21) |
1180 || (i == LEADING_CODE_PRIVATE_22)) | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1181 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1182 if ((src + 2) >= src_end) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1183 goto ccl_read_multibyte_character_suspend; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1184 reg[RRR] = *src++; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1185 i = (*src++ & 0x7F); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1186 reg[rrr] = ((i << 7) | (*src & 0x7F)); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1187 src++; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1188 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1189 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1190 { |
23884
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1191 /* INVALID CODE. Return a single byte character. */ |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1192 reg[RRR] = CHARSET_ASCII; |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1193 reg[rrr] = i; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1194 } |
24567
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1195 break; |
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1196 } while (1); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1197 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1198 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1199 ccl_read_multibyte_character_suspend: |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1200 src--; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1201 if (ccl->last_block) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1202 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1203 ic = ccl->eof_ic; |
23072 | 1204 goto ccl_repeat; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1205 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1206 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1207 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_SRC); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1208 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1209 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1210 |
21551 | 1211 case CCL_WriteMultibyteChar2: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1212 i = reg[RRR]; /* charset */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1213 if (i == CHARSET_ASCII) |
24567
36e004c54eaf
(ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
Kenichi Handa <handa@m17n.org>
parents:
23884
diff
changeset
|
1214 i = reg[rrr] & 0x8F; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1215 else if (i == CHARSET_COMPOSITION) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1216 i = MAKE_COMPOSITE_CHAR (reg[rrr]); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1217 else if (CHARSET_DIMENSION (i) == 1) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1218 i = ((i - 0x70) << 7) | (reg[rrr] & 0x7F); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1219 else if (i < MIN_CHARSET_PRIVATE_DIMENSION2) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1220 i = ((i - 0x8F) << 14) | reg[rrr]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1221 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1222 i = ((i - 0xE0) << 14) | reg[rrr]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1223 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1224 CCL_WRITE_CHAR (i); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1225 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1226 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1227 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1228 case CCL_TranslateCharacter: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1229 i = reg[RRR]; /* charset */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1230 if (i == CHARSET_ASCII) |
23768
3d079e8b2edb
(ccl_driver) <CCL_TranslateCharacter>: Don't suppress MSB
Kenichi Handa <handa@m17n.org>
parents:
23428
diff
changeset
|
1231 i = reg[rrr]; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1232 else if (i == CHARSET_COMPOSITION) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1233 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1234 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1235 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1236 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1237 else if (CHARSET_DIMENSION (i) == 1) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1238 i = ((i - 0x70) << 7) | (reg[rrr] & 0x7F); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1239 else if (i < MIN_CHARSET_PRIVATE_DIMENSION2) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1240 i = ((i - 0x8F) << 14) | (reg[rrr] & 0x3FFF); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1241 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1242 i = ((i - 0xE0) << 14) | (reg[rrr] & 0x3FFF); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1243 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1244 op = translate_char (GET_TRANSLATION_TABLE (reg[Rrr]), |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1245 i, -1, 0, 0); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1246 SPLIT_CHAR (op, reg[RRR], i, j); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1247 if (j != -1) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1248 i = (i << 7) | j; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1249 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1250 reg[rrr] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1251 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1252 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1253 case CCL_TranslateCharacterConstTbl: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1254 op = XINT (ccl_prog[ic]); /* table */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1255 ic++; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1256 i = reg[RRR]; /* charset */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1257 if (i == CHARSET_ASCII) |
23768
3d079e8b2edb
(ccl_driver) <CCL_TranslateCharacter>: Don't suppress MSB
Kenichi Handa <handa@m17n.org>
parents:
23428
diff
changeset
|
1258 i = reg[rrr]; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1259 else if (i == CHARSET_COMPOSITION) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1260 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1261 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1262 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1263 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1264 else if (CHARSET_DIMENSION (i) == 1) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1265 i = ((i - 0x70) << 7) | (reg[rrr] & 0x7F); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1266 else if (i < MIN_CHARSET_PRIVATE_DIMENSION2) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1267 i = ((i - 0x8F) << 14) | (reg[rrr] & 0x3FFF); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1268 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1269 i = ((i - 0xE0) << 14) | (reg[rrr] & 0x3FFF); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1270 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1271 op = translate_char (GET_TRANSLATION_TABLE (op), i, -1, 0, 0); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1272 SPLIT_CHAR (op, reg[RRR], i, j); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1273 if (j != -1) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1274 i = (i << 7) | j; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1275 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1276 reg[rrr] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1277 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1278 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1279 case CCL_IterateMultipleMap: |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1280 { |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1281 Lisp_Object map, content, attrib, value; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1282 int point, size, fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1283 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1284 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
|
1285 fin_ic = ic + j; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1286 op = reg[rrr]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1287 if ((j > reg[RRR]) && (j >= 0)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1288 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1289 ic += reg[RRR]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1290 i = reg[RRR]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1291 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1292 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1293 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1294 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1295 ic = fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1296 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1297 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1298 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1299 for (;i < j;i++) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1300 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1301 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1302 size = XVECTOR (Vcode_conversion_map_vector)->size; |
21518
1b0d88d6fb42
(ccl_driver, syms_of_ccl): Fix mixing of Lisp_Object and
Andreas Schwab <schwab@suse.de>
parents:
21514
diff
changeset
|
1303 point = XINT (ccl_prog[ic++]); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1304 if (point >= size) continue; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1305 map = |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1306 XVECTOR (Vcode_conversion_map_vector)->contents[point]; |
21551 | 1307 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1308 /* Check map varidity. */ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1309 if (!CONSP (map)) continue; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1310 map = XCONS(map)->cdr; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1311 if (!VECTORP (map)) continue; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1312 size = XVECTOR (map)->size; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1313 if (size <= 1) continue; |
21551 | 1314 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1315 content = XVECTOR (map)->contents[0]; |
21551 | 1316 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1317 /* check map type, |
21551 | 1318 [STARTPOINT VAL1 VAL2 ...] or |
1319 [t ELELMENT STARTPOINT ENDPOINT] */ | |
1320 if (NUMBERP (content)) | |
1321 { | |
1322 point = XUINT (content); | |
1323 point = op - point + 1; | |
1324 if (!((point >= 1) && (point < size))) continue; | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1325 content = XVECTOR (map)->contents[point]; |
21551 | 1326 } |
1327 else if (EQ (content, Qt)) | |
1328 { | |
1329 if (size != 4) continue; | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1330 if ((op >= XUINT (XVECTOR (map)->contents[2])) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1331 && (op < XUINT (XVECTOR (map)->contents[3]))) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1332 content = XVECTOR (map)->contents[1]; |
21551 | 1333 else |
1334 continue; | |
1335 } | |
1336 else | |
1337 continue; | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1338 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1339 if (NILP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1340 continue; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1341 else if (NUMBERP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1342 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1343 reg[RRR] = i; |
21551 | 1344 reg[rrr] = XINT(content); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1345 break; |
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 else if (EQ (content, Qt) || EQ (content, Qlambda)) |
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 reg[RRR] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1350 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1351 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1352 else if (CONSP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1353 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1354 attrib = XCONS (content)->car; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1355 value = XCONS (content)->cdr; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1356 if (!NUMBERP (attrib) || !NUMBERP (value)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1357 continue; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1358 reg[RRR] = i; |
21551 | 1359 reg[rrr] = XUINT (value); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1360 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1361 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1362 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1363 if (i == j) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1364 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1365 ic = fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1366 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1367 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1368 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1369 case CCL_MapMultiple: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1370 { |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1371 Lisp_Object map, content, attrib, value; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1372 int point, size, map_vector_size; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1373 int map_set_rest_length, fin_ic; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1374 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1375 map_set_rest_length = |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1376 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
|
1377 fin_ic = ic + map_set_rest_length; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1378 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
|
1379 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1380 ic += reg[RRR]; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1381 i = reg[RRR]; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1382 map_set_rest_length -= i; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1383 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1384 else |
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 ic = fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1387 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1388 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1389 } |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1390 mapping_stack_pointer = mapping_stack; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1391 op = reg[rrr]; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1392 PUSH_MAPPING_STACK (0, op); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1393 reg[RRR] = -1; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1394 map_vector_size = XVECTOR (Vcode_conversion_map_vector)->size; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1395 for (;map_set_rest_length > 0;i++, map_set_rest_length--) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1396 { |
21551 | 1397 point = XINT(ccl_prog[ic++]); |
1398 if (point < 0) | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1399 { |
21551 | 1400 point = -point; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1401 if (mapping_stack_pointer |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1402 >= &mapping_stack[MAX_MAP_SET_LEVEL]) |
21551 | 1403 { |
1404 CCL_INVALID_CMD; | |
1405 } | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1406 PUSH_MAPPING_STACK (map_set_rest_length - point, |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1407 reg[rrr]); |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1408 map_set_rest_length = point + 1; |
21551 | 1409 reg[rrr] = op; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1410 continue; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1411 } |
21551 | 1412 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1413 if (point >= map_vector_size) continue; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1414 map = (XVECTOR (Vcode_conversion_map_vector) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1415 ->contents[point]); |
21551 | 1416 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1417 /* Check map varidity. */ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1418 if (!CONSP (map)) continue; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1419 map = XCONS (map)->cdr; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1420 if (!VECTORP (map)) continue; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1421 size = XVECTOR (map)->size; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1422 if (size <= 1) continue; |
21551 | 1423 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1424 content = XVECTOR (map)->contents[0]; |
21551 | 1425 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1426 /* check map type, |
21551 | 1427 [STARTPOINT VAL1 VAL2 ...] or |
1428 [t ELEMENT STARTPOINT ENDPOINT] */ | |
1429 if (NUMBERP (content)) | |
1430 { | |
1431 point = XUINT (content); | |
1432 point = op - point + 1; | |
1433 if (!((point >= 1) && (point < size))) continue; | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1434 content = XVECTOR (map)->contents[point]; |
21551 | 1435 } |
1436 else if (EQ (content, Qt)) | |
1437 { | |
1438 if (size != 4) continue; | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1439 if ((op >= XUINT (XVECTOR (map)->contents[2])) && |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1440 (op < XUINT (XVECTOR (map)->contents[3]))) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1441 content = XVECTOR (map)->contents[1]; |
21551 | 1442 else |
1443 continue; | |
1444 } | |
1445 else | |
1446 continue; | |
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 if (NILP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1449 continue; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1450 else if (NUMBERP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1451 { |
21551 | 1452 op = XINT (content); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1453 reg[RRR] = i; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1454 i += map_set_rest_length; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1455 POP_MAPPING_STACK (map_set_rest_length, reg[rrr]); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1456 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1457 else if (CONSP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1458 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1459 attrib = XCONS (content)->car; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1460 value = XCONS (content)->cdr; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1461 if (!NUMBERP (attrib) || !NUMBERP (value)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1462 continue; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1463 reg[RRR] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1464 op = XUINT (value); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1465 i += map_set_rest_length; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1466 POP_MAPPING_STACK (map_set_rest_length, reg[rrr]); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1467 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1468 else if (EQ (content, Qt)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1469 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1470 reg[RRR] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1471 op = reg[rrr]; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1472 i += map_set_rest_length; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1473 POP_MAPPING_STACK (map_set_rest_length, reg[rrr]); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1474 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1475 else if (EQ (content, Qlambda)) |
21551 | 1476 { |
1477 break; | |
1478 } | |
1479 else | |
1480 CCL_INVALID_CMD; | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1481 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1482 ic = fin_ic; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1483 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1484 reg[rrr] = op; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1485 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1486 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1487 case CCL_MapSingle: |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1488 { |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1489 Lisp_Object map, attrib, value, content; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1490 int size, point; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1491 j = XINT (ccl_prog[ic++]); /* map_id */ |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1492 op = reg[rrr]; |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1493 if (j >= XVECTOR (Vcode_conversion_map_vector)->size) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1494 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1495 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1496 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1497 } |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1498 map = XVECTOR (Vcode_conversion_map_vector)->contents[j]; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1499 if (!CONSP (map)) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1500 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1501 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1502 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1503 } |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1504 map = XCONS(map)->cdr; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1505 if (!VECTORP (map)) |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1506 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1507 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1508 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1509 } |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1510 size = XVECTOR (map)->size; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1511 point = XUINT (XVECTOR (map)->contents[0]); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1512 point = op - point + 1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1513 reg[RRR] = 0; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1514 if ((size <= 1) || |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1515 (!((point >= 1) && (point < size)))) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1516 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1517 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1518 { |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1519 content = XVECTOR (map)->contents[point]; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1520 if (NILP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1521 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1522 else if (NUMBERP (content)) |
21551 | 1523 reg[rrr] = XINT (content); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1524 else if (EQ (content, Qt)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1525 reg[RRR] = i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1526 else if (CONSP (content)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1527 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1528 attrib = XCONS (content)->car; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1529 value = XCONS (content)->cdr; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1530 if (!NUMBERP (attrib) || !NUMBERP (value)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1531 continue; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1532 reg[rrr] = XUINT(value); |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1533 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1534 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1535 else |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1536 reg[RRR] = -1; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1537 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1538 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1539 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1540 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1541 default: |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1542 CCL_INVALID_CMD; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1543 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1544 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1545 |
17052 | 1546 default: |
1547 CCL_INVALID_CMD; | |
1548 } | |
1549 } | |
1550 | |
1551 ccl_error_handler: | |
1552 if (destination) | |
1553 { | |
1554 /* We can insert an error message only if DESTINATION is | |
1555 specified and we still have a room to store the message | |
1556 there. */ | |
1557 char msg[256]; | |
1558 int msglen; | |
1559 | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1560 if (!dst) |
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1561 dst = destination; |
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1562 |
17052 | 1563 switch (ccl->status) |
1564 { | |
1565 case CCL_STAT_INVALID_CMD: | |
1566 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
|
1567 code & 0x1F, code, this_ic); |
17052 | 1568 #ifdef CCL_DEBUG |
1569 { | |
1570 int i = ccl_backtrace_idx - 1; | |
1571 int j; | |
1572 | |
1573 msglen = strlen (msg); | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1574 if (dst + msglen <= (dst_bytes ? dst_end : src)) |
17052 | 1575 { |
1576 bcopy (msg, dst, msglen); | |
1577 dst += msglen; | |
1578 } | |
1579 | |
1580 for (j = 0; j < CCL_DEBUG_BACKTRACE_LEN; j++, i--) | |
1581 { | |
1582 if (i < 0) i = CCL_DEBUG_BACKTRACE_LEN - 1; | |
1583 if (ccl_backtrace_table[i] == 0) | |
1584 break; | |
1585 sprintf(msg, " %d", ccl_backtrace_table[i]); | |
1586 msglen = strlen (msg); | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1587 if (dst + msglen > (dst_bytes ? dst_end : src)) |
17052 | 1588 break; |
1589 bcopy (msg, dst, msglen); | |
1590 dst += msglen; | |
1591 } | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1592 goto ccl_finish; |
17052 | 1593 } |
17323
15fa68d983e7
(ccl_driver): Fix bug of the case CCL_WriteArrayReadJump.
Kenichi Handa <handa@m17n.org>
parents:
17122
diff
changeset
|
1594 #endif |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1595 break; |
17052 | 1596 |
1597 case CCL_STAT_QUIT: | |
1598 sprintf(msg, "\nCCL: Quited."); | |
1599 break; | |
1600 | |
1601 default: | |
1602 sprintf(msg, "\nCCL: Unknown error type (%d).", ccl->status); | |
1603 } | |
1604 | |
1605 msglen = strlen (msg); | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1606 if (dst + msglen <= (dst_bytes ? dst_end : src)) |
17052 | 1607 { |
1608 bcopy (msg, dst, msglen); | |
1609 dst += msglen; | |
1610 } | |
1611 } | |
1612 | |
1613 ccl_finish: | |
1614 ccl->ic = ic; | |
1615 if (consumed) *consumed = src - source; | |
23280
b4656367043f
(CCL_WRITE_CHAR): Don't use bcopy.
Kenichi Handa <handa@m17n.org>
parents:
23072
diff
changeset
|
1616 return (dst ? dst - destination : 0); |
17052 | 1617 } |
1618 | |
1619 /* Setup fields of the structure pointed by CCL appropriately for the | |
23884
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1620 execution of compiled CCL code in VEC (vector of integer). |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1621 If VEC is nil, we skip setting ups based on VEC. */ |
20307
a5d72b4a642f
(setup_ccl_program): Define as returning nothing.
Andreas Schwab <schwab@suse.de>
parents:
18749
diff
changeset
|
1622 void |
17052 | 1623 setup_ccl_program (ccl, vec) |
1624 struct ccl_program *ccl; | |
1625 Lisp_Object vec; | |
1626 { | |
1627 int i; | |
1628 | |
23884
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1629 if (VECTORP (vec)) |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1630 { |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1631 struct Lisp_Vector *vp = XVECTOR (vec); |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1632 |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1633 ccl->size = vp->size; |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1634 ccl->prog = vp->contents; |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1635 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
|
1636 ccl->buf_magnification = XINT (vp->contents[CCL_HEADER_BUF_MAG]); |
179bcb86f12f
(CCL_SUCCESS): Don't set ccl->ic.
Kenichi Handa <handa@m17n.org>
parents:
23768
diff
changeset
|
1637 } |
17052 | 1638 ccl->ic = CCL_HEADER_MAIN; |
1639 for (i = 0; i < 8; i++) | |
1640 ccl->reg[i] = 0; | |
1641 ccl->last_block = 0; | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1642 ccl->private_state = 0; |
17052 | 1643 ccl->status = 0; |
1644 } | |
1645 | |
21551 | 1646 /* Resolve symbols in the specified CCL code (Lisp vector). This |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1647 function converts symbols of code conversion maps and character |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1648 translation tables embeded in the CCL code into their ID numbers. */ |
21551 | 1649 |
1650 Lisp_Object | |
1651 resolve_symbol_ccl_program (ccl) | |
1652 Lisp_Object ccl; | |
1653 { | |
1654 int i, veclen; | |
1655 Lisp_Object result, contents, prop; | |
1656 | |
1657 result = ccl; | |
1658 veclen = XVECTOR (result)->size; | |
1659 | |
1660 /* Set CCL program's table ID */ | |
1661 for (i = 0; i < veclen; i++) | |
1662 { | |
1663 contents = XVECTOR (result)->contents[i]; | |
1664 if (SYMBOLP (contents)) | |
1665 { | |
1666 if (EQ(result, ccl)) | |
1667 result = Fcopy_sequence (ccl); | |
1668 | |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22122
diff
changeset
|
1669 prop = Fget (contents, Qtranslation_table_id); |
21551 | 1670 if (NUMBERP (prop)) |
1671 { | |
1672 XVECTOR (result)->contents[i] = prop; | |
1673 continue; | |
1674 } | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1675 prop = Fget (contents, Qcode_conversion_map_id); |
21551 | 1676 if (NUMBERP (prop)) |
1677 { | |
1678 XVECTOR (result)->contents[i] = prop; | |
1679 continue; | |
1680 } | |
1681 prop = Fget (contents, Qccl_program_idx); | |
1682 if (NUMBERP (prop)) | |
1683 { | |
1684 XVECTOR (result)->contents[i] = prop; | |
1685 continue; | |
1686 } | |
1687 } | |
1688 } | |
1689 | |
1690 return result; | |
1691 } | |
1692 | |
1693 | |
17052 | 1694 #ifdef emacs |
1695 | |
1696 DEFUN ("ccl-execute", Fccl_execute, Sccl_execute, 2, 2, 0, | |
1697 "Execute CCL-PROGRAM with registers initialized by REGISTERS.\n\ | |
21551 | 1698 \n\ |
1699 CCL-PROGRAM is a symbol registered by register-ccl-program,\n\ | |
1700 or a compiled code generated by `ccl-compile' (for backward compatibility,\n\ | |
1701 in this case, the execution is slower).\n\ | |
1702 No I/O commands should appear in CCL-PROGRAM.\n\ | |
1703 \n\ | |
17052 | 1704 REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value\n\ |
1705 of Nth register.\n\ | |
21551 | 1706 \n\ |
1707 As side effect, each element of REGISTERS holds the value of\n\ | |
17052 | 1708 corresponding register after the execution.") |
1709 (ccl_prog, reg) | |
1710 Lisp_Object ccl_prog, reg; | |
1711 { | |
1712 struct ccl_program ccl; | |
1713 int i; | |
21551 | 1714 Lisp_Object ccl_id; |
17052 | 1715 |
21551 | 1716 if ((SYMBOLP (ccl_prog)) && |
1717 (!NILP (ccl_id = Fget (ccl_prog, Qccl_program_idx)))) | |
1718 { | |
1719 ccl_prog = XVECTOR (Vccl_program_table)->contents[XUINT (ccl_id)]; | |
1720 CHECK_LIST (ccl_prog, 0); | |
1721 ccl_prog = XCONS (ccl_prog)->cdr; | |
1722 CHECK_VECTOR (ccl_prog, 1); | |
1723 } | |
1724 else | |
1725 { | |
1726 CHECK_VECTOR (ccl_prog, 1); | |
1727 ccl_prog = resolve_symbol_ccl_program (ccl_prog); | |
1728 } | |
1729 | |
1730 CHECK_VECTOR (reg, 2); | |
17052 | 1731 if (XVECTOR (reg)->size != 8) |
1732 error ("Invalid length of vector REGISTERS"); | |
1733 | |
1734 setup_ccl_program (&ccl, ccl_prog); | |
1735 for (i = 0; i < 8; i++) | |
1736 ccl.reg[i] = (INTEGERP (XVECTOR (reg)->contents[i]) | |
1737 ? XINT (XVECTOR (reg)->contents[i]) | |
1738 : 0); | |
1739 | |
1740 ccl_driver (&ccl, (char *)0, (char *)0, 0, 0, (int *)0); | |
1741 QUIT; | |
1742 if (ccl.status != CCL_STAT_SUCCESS) | |
1743 error ("Error in CCL program at %dth code", ccl.ic); | |
1744 | |
1745 for (i = 0; i < 8; i++) | |
1746 XSETINT (XVECTOR (reg)->contents[i], ccl.reg[i]); | |
1747 return Qnil; | |
1748 } | |
1749 | |
1750 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
|
1751 3, 5, 0, |
17052 | 1752 "Execute CCL-PROGRAM with initial STATUS on STRING.\n\ |
21551 | 1753 \n\ |
1754 CCL-PROGRAM is a symbol registered by register-ccl-program,\n\ | |
1755 or a compiled code generated by `ccl-compile' (for backward compatibility,\n\ | |
1756 in this case, the execution is slower).\n\ | |
1757 \n\ | |
17052 | 1758 Read buffer is set to STRING, and write buffer is allocated automatically.\n\ |
21551 | 1759 \n\ |
17052 | 1760 STATUS is a vector of [R0 R1 ... R7 IC], where\n\ |
1761 R0..R7 are initial values of corresponding registers,\n\ | |
1762 IC is the instruction counter specifying from where to start the program.\n\ | |
1763 If R0..R7 are nil, they are initialized to 0.\n\ | |
1764 If IC is nil, it is initialized to head of the CCL program.\n\ | |
20934
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1765 \n\ |
21551 | 1766 If optional 4th arg CONTINUE is non-nil, keep IC on read operation\n\ |
17728
25d58ba29c1b
(Fccl_execute_on_string): Add 4th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17370
diff
changeset
|
1767 when read buffer is exausted, else, IC is always set to the end of\n\ |
21556
f239266d104c
(Fccl_execute_on_string): Put \n\ at eol of docstring.
Kenichi Handa <handa@m17n.org>
parents:
21551
diff
changeset
|
1768 CCL-PROGRAM on exit.\n\ |
20934
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1769 \n\ |
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1770 It returns the contents of write buffer as a string,\n\ |
21551 | 1771 and as side effect, STATUS is updated.\n\ |
20934
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1772 If the optional 5th arg UNIBYTE-P is non-nil, the returned string\n\ |
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1773 is a unibyte string. By default it is a multibyte string.") |
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1774 (ccl_prog, status, str, contin, unibyte_p) |
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1775 Lisp_Object ccl_prog, status, str, contin, unibyte_p; |
17052 | 1776 { |
1777 Lisp_Object val; | |
1778 struct ccl_program ccl; | |
1779 int i, produced; | |
1780 int outbufsize; | |
1781 char *outbuf; | |
1782 struct gcpro gcpro1, gcpro2, gcpro3; | |
21551 | 1783 Lisp_Object ccl_id; |
17052 | 1784 |
21551 | 1785 if ((SYMBOLP (ccl_prog)) && |
1786 (!NILP (ccl_id = Fget (ccl_prog, Qccl_program_idx)))) | |
1787 { | |
1788 ccl_prog = XVECTOR (Vccl_program_table)->contents[XUINT (ccl_id)]; | |
1789 CHECK_LIST (ccl_prog, 0); | |
1790 ccl_prog = XCONS (ccl_prog)->cdr; | |
1791 CHECK_VECTOR (ccl_prog, 1); | |
1792 } | |
1793 else | |
1794 { | |
1795 CHECK_VECTOR (ccl_prog, 1); | |
1796 ccl_prog = resolve_symbol_ccl_program (ccl_prog); | |
1797 } | |
1798 | |
17052 | 1799 CHECK_VECTOR (status, 1); |
1800 if (XVECTOR (status)->size != 9) | |
1801 error ("Invalid length of vector STATUS"); | |
1802 CHECK_STRING (str, 2); | |
1803 GCPRO3 (ccl_prog, status, str); | |
1804 | |
1805 setup_ccl_program (&ccl, ccl_prog); | |
1806 for (i = 0; i < 8; i++) | |
1807 { | |
1808 if (NILP (XVECTOR (status)->contents[i])) | |
1809 XSETINT (XVECTOR (status)->contents[i], 0); | |
1810 if (INTEGERP (XVECTOR (status)->contents[i])) | |
1811 ccl.reg[i] = XINT (XVECTOR (status)->contents[i]); | |
1812 } | |
1813 if (INTEGERP (XVECTOR (status)->contents[i])) | |
1814 { | |
1815 i = XFASTINT (XVECTOR (status)->contents[8]); | |
1816 if (ccl.ic < i && i < ccl.size) | |
1817 ccl.ic = i; | |
1818 } | |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
20945
diff
changeset
|
1819 outbufsize = STRING_BYTES (XSTRING (str)) * ccl.buf_magnification + 256; |
17052 | 1820 outbuf = (char *) xmalloc (outbufsize); |
1821 if (!outbuf) | |
1822 error ("Not enough memory"); | |
17728
25d58ba29c1b
(Fccl_execute_on_string): Add 4th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17370
diff
changeset
|
1823 ccl.last_block = NILP (contin); |
17052 | 1824 produced = ccl_driver (&ccl, XSTRING (str)->data, outbuf, |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
20945
diff
changeset
|
1825 STRING_BYTES (XSTRING (str)), outbufsize, (int *)0); |
17052 | 1826 for (i = 0; i < 8; i++) |
1827 XSET (XVECTOR (status)->contents[i], Lisp_Int, ccl.reg[i]); | |
1828 XSETINT (XVECTOR (status)->contents[8], ccl.ic); | |
1829 UNGCPRO; | |
1830 | |
20934
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1831 if (NILP (unibyte_p)) |
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1832 val = make_string (outbuf, produced); |
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1833 else |
eebcbb4b56bd
(Fccl_execute_on_string): Add new arg UNIBYTE-P.
Kenichi Handa <handa@m17n.org>
parents:
20722
diff
changeset
|
1834 val = make_unibyte_string (outbuf, produced); |
17052 | 1835 free (outbuf); |
1836 QUIT; | |
1837 if (ccl.status != CCL_STAT_SUCCESS | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1838 && ccl.status != CCL_STAT_SUSPEND_BY_SRC |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1839 && ccl.status != CCL_STAT_SUSPEND_BY_DST) |
17052 | 1840 error ("Error in CCL program at %dth code", ccl.ic); |
1841 | |
1842 return val; | |
1843 } | |
1844 | |
1845 DEFUN ("register-ccl-program", Fregister_ccl_program, Sregister_ccl_program, | |
1846 2, 2, 0, | |
17122
a5feb61ebe5c
(Fregister_ccl_program): Escape newlines in docstring.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1847 "Register CCL program PROGRAM of NAME in `ccl-program-table'.\n\ |
a5feb61ebe5c
(Fregister_ccl_program): Escape newlines in docstring.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
1848 PROGRAM should be a compiled code of CCL program, or nil.\n\ |
17052 | 1849 Return index number of the registered CCL program.") |
1850 (name, ccl_prog) | |
1851 Lisp_Object name, ccl_prog; | |
1852 { | |
1853 int len = XVECTOR (Vccl_program_table)->size; | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1854 int i; |
17052 | 1855 |
1856 CHECK_SYMBOL (name, 0); | |
1857 if (!NILP (ccl_prog)) | |
21551 | 1858 { |
1859 CHECK_VECTOR (ccl_prog, 1); | |
1860 ccl_prog = resolve_symbol_ccl_program (ccl_prog); | |
1861 } | |
17052 | 1862 |
1863 for (i = 0; i < len; i++) | |
1864 { | |
1865 Lisp_Object slot = XVECTOR (Vccl_program_table)->contents[i]; | |
1866 | |
1867 if (!CONSP (slot)) | |
1868 break; | |
1869 | |
1870 if (EQ (name, XCONS (slot)->car)) | |
1871 { | |
1872 XCONS (slot)->cdr = ccl_prog; | |
1873 return make_number (i); | |
1874 } | |
1875 } | |
1876 | |
1877 if (i == len) | |
1878 { | |
18749
d961aeafceba
(Fregister_ccl_program): Convert Fmake_vector argument to Lisp_Integer.
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
1879 Lisp_Object new_table = Fmake_vector (make_number (len * 2), Qnil); |
17052 | 1880 int j; |
1881 | |
1882 for (j = 0; j < len; j++) | |
1883 XVECTOR (new_table)->contents[j] | |
1884 = XVECTOR (Vccl_program_table)->contents[j]; | |
1885 Vccl_program_table = new_table; | |
1886 } | |
1887 | |
1888 XVECTOR (Vccl_program_table)->contents[i] = Fcons (name, ccl_prog); | |
21665
2f6a8ae78e88
(Fregister_ccl_program): Put ccl-program-idx property to NAME.
Kenichi Handa <handa@m17n.org>
parents:
21556
diff
changeset
|
1889 Fput (name, Qccl_program_idx, make_number (i)); |
17052 | 1890 return make_number (i); |
1891 } | |
1892 | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1893 /* Register code conversion map. |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1894 A code conversion map consists of numbers, Qt, Qnil, and Qlambda. |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1895 The first element is start code point. |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1896 The rest elements are mapped numbers. |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1897 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
|
1898 Symbol nil means that the corresponding element is empty. |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1899 Symbol lambda menas to terminate mapping here. |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1900 */ |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1901 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1902 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
|
1903 Sregister_code_conversion_map, |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1904 2, 2, 0, |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1905 "Register SYMBOL as code conversion map MAP.\n\ |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1906 Return index number of the registered map.") |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1907 (symbol, map) |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1908 Lisp_Object symbol, map; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1909 { |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1910 int len = XVECTOR (Vcode_conversion_map_vector)->size; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1911 int i; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1912 Lisp_Object index; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1913 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1914 CHECK_SYMBOL (symbol, 0); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1915 CHECK_VECTOR (map, 1); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1916 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1917 for (i = 0; i < len; i++) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1918 { |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1919 Lisp_Object slot = XVECTOR (Vcode_conversion_map_vector)->contents[i]; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1920 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1921 if (!CONSP (slot)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1922 break; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1923 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1924 if (EQ (symbol, XCONS (slot)->car)) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1925 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1926 index = make_number (i); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1927 XCONS (slot)->cdr = map; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1928 Fput (symbol, Qcode_conversion_map, map); |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1929 Fput (symbol, Qcode_conversion_map_id, index); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1930 return index; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1931 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1932 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1933 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1934 if (i == len) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1935 { |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1936 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
|
1937 int j; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1938 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1939 for (j = 0; j < len; j++) |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1940 XVECTOR (new_vector)->contents[j] |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1941 = XVECTOR (Vcode_conversion_map_vector)->contents[j]; |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1942 Vcode_conversion_map_vector = new_vector; |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1943 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1944 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1945 index = make_number (i); |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1946 Fput (symbol, Qcode_conversion_map, map); |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1947 Fput (symbol, Qcode_conversion_map_id, index); |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1948 XVECTOR (Vcode_conversion_map_vector)->contents[i] = Fcons (symbol, map); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1949 return index; |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1950 } |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1951 |
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1952 |
21514 | 1953 void |
17052 | 1954 syms_of_ccl () |
1955 { | |
1956 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
|
1957 Vccl_program_table = Fmake_vector (make_number (32), Qnil); |
17052 | 1958 |
21551 | 1959 Qccl_program = intern ("ccl-program"); |
1960 staticpro (&Qccl_program); | |
1961 | |
1962 Qccl_program_idx = intern ("ccl-program-idx"); | |
1963 staticpro (&Qccl_program_idx); | |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1964 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1965 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
|
1966 staticpro (&Qcode_conversion_map); |
20722
cce3ef478c64
(Vccl_translation_table_vector, Qccl_program,
Kenichi Handa <handa@m17n.org>
parents:
20613
diff
changeset
|
1967 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1968 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
|
1969 staticpro (&Qcode_conversion_map_id); |
21551 | 1970 |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1971 DEFVAR_LISP ("code-conversion-map-vector", &Vcode_conversion_map_vector, |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1972 "Vector of code conversion maps."); |
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1973 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
|
1974 |
17052 | 1975 DEFVAR_LISP ("font-ccl-encoder-alist", &Vfont_ccl_encoder_alist, |
1976 "Alist of fontname patterns vs corresponding CCL program.\n\ | |
1977 Each element looks like (REGEXP . CCL-CODE),\n\ | |
1978 where CCL-CODE is a compiled CCL program.\n\ | |
1979 When a font whose name matches REGEXP is used for displaying a character,\n\ | |
1980 CCL-CODE is executed to calculate the code point in the font\n\ | |
1981 from the charset number and position code(s) of the character which are set\n\ | |
1982 in CCL registers R0, R1, and R2 before the execution.\n\ | |
1983 The code point in the font is set in CCL registers R1 and R2\n\ | |
1984 when the execution terminated.\n\ | |
1985 If the font is single-byte font, the register R2 is not used."); | |
1986 Vfont_ccl_encoder_alist = Qnil; | |
1987 | |
1988 defsubr (&Sccl_execute); | |
1989 defsubr (&Sccl_execute_on_string); | |
1990 defsubr (&Sregister_ccl_program); | |
22122
dfae9bc3731d
Change term translation to code conversion, then change
Kenichi Handa <handa@m17n.org>
parents:
21665
diff
changeset
|
1991 defsubr (&Sregister_code_conversion_map); |
17052 | 1992 } |
1993 | |
1994 #endif /* emacs */ |