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