1 /* CCL (Code Conversion Language) interpreter.
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN.
3 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 Licensed to the Free Software Foundation.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
32 /* This contains all code conversion map available to CCL. */
33 Lisp_Object Vcode_conversion_map_vector
;
35 /* Alist of fontname patterns vs corresponding CCL program. */
36 Lisp_Object Vfont_ccl_encoder_alist
;
38 /* This symbol is a property which assocates with ccl program vector.
39 Ex: (get 'ccl-big5-encoder 'ccl-program) returns ccl program vector. */
40 Lisp_Object Qccl_program
;
42 /* These symbols are properties which associate with code conversion
43 map and their ID respectively. */
44 Lisp_Object Qcode_conversion_map
;
45 Lisp_Object Qcode_conversion_map_id
;
47 /* Symbols of ccl program have this property, a value of the property
48 is an index for Vccl_protram_table. */
49 Lisp_Object Qccl_program_idx
;
51 /* Table of registered CCL programs. Each element is a vector of
52 NAME, CCL_PROG, and RESOLVEDP where NAME (symbol) is the name of
53 the program, CCL_PROG (vector) is the compiled code of the program,
54 RESOLVEDP (t or nil) is the flag to tell if symbols in CCL_PROG is
55 already resolved to index numbers or not. */
56 Lisp_Object Vccl_program_table
;
58 /* Vector of registered hash tables for translation. */
59 Lisp_Object Vtranslation_hash_table_vector
;
61 /* Return a hash table of id number ID. */
62 #define GET_HASH_TABLE(id) \
63 (XHASH_TABLE (XCDR(XVECTOR(Vtranslation_hash_table_vector)->contents[(id)])))
65 /* CCL (Code Conversion Language) is a simple language which has
66 operations on one input buffer, one output buffer, and 7 registers.
67 The syntax of CCL is described in `ccl.el'. Emacs Lisp function
68 `ccl-compile' compiles a CCL program and produces a CCL code which
69 is a vector of integers. The structure of this vector is as
70 follows: The 1st element: buffer-magnification, a factor for the
71 size of output buffer compared with the size of input buffer. The
72 2nd element: address of CCL code to be executed when encountered
73 with end of input stream. The 3rd and the remaining elements: CCL
76 /* Header of CCL compiled code */
77 #define CCL_HEADER_BUF_MAG 0
78 #define CCL_HEADER_EOF 1
79 #define CCL_HEADER_MAIN 2
81 /* CCL code is a sequence of 28-bit non-negative integers (i.e. the
82 MSB is always 0), each contains CCL command and/or arguments in the
85 |----------------- integer (28-bit) ------------------|
86 |------- 17-bit ------|- 3-bit --|- 3-bit --|- 5-bit -|
87 |--constant argument--|-register-|-register-|-command-|
88 ccccccccccccccccc RRR rrr XXXXX
90 |------- relative address -------|-register-|-command-|
91 cccccccccccccccccccc rrr XXXXX
93 |------------- constant or other args ----------------|
94 cccccccccccccccccccccccccccc
96 where, `cc...c' is a non-negative integer indicating constant value
97 (the left most `c' is always 0) or an absolute jump address, `RRR'
98 and `rrr' are CCL register number, `XXXXX' is one of the following
103 Each comment fields shows one or more lines for command syntax and
104 the following lines for semantics of the command. In semantics, IC
105 stands for Instruction Counter. */
107 #define CCL_SetRegister 0x00 /* Set register a register value:
108 1:00000000000000000RRRrrrXXXXX
109 ------------------------------
113 #define CCL_SetShortConst 0x01 /* Set register a short constant value:
114 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX
115 ------------------------------
116 reg[rrr] = CCCCCCCCCCCCCCCCCCC;
119 #define CCL_SetConst 0x02 /* Set register a constant value:
120 1:00000000000000000000rrrXXXXX
122 ------------------------------
127 #define CCL_SetArray 0x03 /* Set register an element of array:
128 1:CCCCCCCCCCCCCCCCCRRRrrrXXXXX
132 ------------------------------
133 if (0 <= reg[RRR] < CC..C)
134 reg[rrr] = ELEMENT[reg[RRR]];
138 #define CCL_Jump 0x04 /* Jump:
139 1:A--D--D--R--E--S--S-000XXXXX
140 ------------------------------
144 /* Note: If CC..C is greater than 0, the second code is omitted. */
146 #define CCL_JumpCond 0x05 /* Jump conditional:
147 1:A--D--D--R--E--S--S-rrrXXXXX
148 ------------------------------
154 #define CCL_WriteRegisterJump 0x06 /* Write register and jump:
155 1:A--D--D--R--E--S--S-rrrXXXXX
156 ------------------------------
161 #define CCL_WriteRegisterReadJump 0x07 /* Write register, read, and jump:
162 1:A--D--D--R--E--S--S-rrrXXXXX
163 2:A--D--D--R--E--S--S-rrrYYYYY
164 -----------------------------
170 /* Note: If read is suspended, the resumed execution starts from the
171 second code (YYYYY == CCL_ReadJump). */
173 #define CCL_WriteConstJump 0x08 /* Write constant and jump:
174 1:A--D--D--R--E--S--S-000XXXXX
176 ------------------------------
181 #define CCL_WriteConstReadJump 0x09 /* Write constant, read, and jump:
182 1:A--D--D--R--E--S--S-rrrXXXXX
184 3:A--D--D--R--E--S--S-rrrYYYYY
185 -----------------------------
191 /* Note: If read is suspended, the resumed execution starts from the
192 second code (YYYYY == CCL_ReadJump). */
194 #define CCL_WriteStringJump 0x0A /* Write string and jump:
195 1:A--D--D--R--E--S--S-000XXXXX
197 3:0000STRIN[0]STRIN[1]STRIN[2]
199 ------------------------------
200 write_string (STRING, LENGTH);
204 #define CCL_WriteArrayReadJump 0x0B /* Write an array element, read, and jump:
205 1:A--D--D--R--E--S--S-rrrXXXXX
210 N:A--D--D--R--E--S--S-rrrYYYYY
211 ------------------------------
212 if (0 <= reg[rrr] < LENGTH)
213 write (ELEMENT[reg[rrr]]);
214 IC += LENGTH + 2; (... pointing at N+1)
218 /* Note: If read is suspended, the resumed execution starts from the
219 Nth code (YYYYY == CCL_ReadJump). */
221 #define CCL_ReadJump 0x0C /* Read and jump:
222 1:A--D--D--R--E--S--S-rrrYYYYY
223 -----------------------------
228 #define CCL_Branch 0x0D /* Jump by branch table:
229 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX
230 2:A--D--D--R--E-S-S[0]000XXXXX
231 3:A--D--D--R--E-S-S[1]000XXXXX
233 ------------------------------
234 if (0 <= reg[rrr] < CC..C)
235 IC += ADDRESS[reg[rrr]];
237 IC += ADDRESS[CC..C];
240 #define CCL_ReadRegister 0x0E /* Read bytes into registers:
241 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX
242 2:CCCCCCCCCCCCCCCCCCCCrrrXXXXX
244 ------------------------------
249 #define CCL_WriteExprConst 0x0F /* write result of expression:
250 1:00000OPERATION000RRR000XXXXX
252 ------------------------------
253 write (reg[RRR] OPERATION CONSTANT);
257 /* Note: If the Nth read is suspended, the resumed execution starts
258 from the Nth code. */
260 #define CCL_ReadBranch 0x10 /* Read one byte into a register,
261 and jump by branch table:
262 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX
263 2:A--D--D--R--E-S-S[0]000XXXXX
264 3:A--D--D--R--E-S-S[1]000XXXXX
266 ------------------------------
268 if (0 <= reg[rrr] < CC..C)
269 IC += ADDRESS[reg[rrr]];
271 IC += ADDRESS[CC..C];
274 #define CCL_WriteRegister 0x11 /* Write registers:
275 1:CCCCCCCCCCCCCCCCCCCrrrXXXXX
276 2:CCCCCCCCCCCCCCCCCCCrrrXXXXX
278 ------------------------------
284 /* Note: If the Nth write is suspended, the resumed execution
285 starts from the Nth code. */
287 #define CCL_WriteExprRegister 0x12 /* Write result of expression
288 1:00000OPERATIONRrrRRR000XXXXX
289 ------------------------------
290 write (reg[RRR] OPERATION reg[Rrr]);
293 #define CCL_Call 0x13 /* Call the CCL program whose ID is
295 1:CCCCCCCCCCCCCCCCCCCCFFFXXXXX
296 [2:00000000cccccccccccccccccccc]
297 ------------------------------
305 #define CCL_WriteConstString 0x14 /* Write a constant or a string:
306 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX
307 [2:0000STRIN[0]STRIN[1]STRIN[2]]
309 -----------------------------
313 write_string (STRING, CC..C);
314 IC += (CC..C + 2) / 3;
317 #define CCL_WriteArray 0x15 /* Write an element of array:
318 1:CCCCCCCCCCCCCCCCCCCCrrrXXXXX
322 ------------------------------
323 if (0 <= reg[rrr] < CC..C)
324 write (ELEMENT[reg[rrr]]);
328 #define CCL_End 0x16 /* Terminate:
329 1:00000000000000000000000XXXXX
330 ------------------------------
334 /* The following two codes execute an assignment arithmetic/logical
335 operation. The form of the operation is like REG OP= OPERAND. */
337 #define CCL_ExprSelfConst 0x17 /* REG OP= constant:
338 1:00000OPERATION000000rrrXXXXX
340 ------------------------------
341 reg[rrr] OPERATION= CONSTANT;
344 #define CCL_ExprSelfReg 0x18 /* REG1 OP= REG2:
345 1:00000OPERATION000RRRrrrXXXXX
346 ------------------------------
347 reg[rrr] OPERATION= reg[RRR];
350 /* The following codes execute an arithmetic/logical operation. The
351 form of the operation is like REG_X = REG_Y OP OPERAND2. */
353 #define CCL_SetExprConst 0x19 /* REG_X = REG_Y OP constant:
354 1:00000OPERATION000RRRrrrXXXXX
356 ------------------------------
357 reg[rrr] = reg[RRR] OPERATION CONSTANT;
361 #define CCL_SetExprReg 0x1A /* REG1 = REG2 OP REG3:
362 1:00000OPERATIONRrrRRRrrrXXXXX
363 ------------------------------
364 reg[rrr] = reg[RRR] OPERATION reg[Rrr];
367 #define CCL_JumpCondExprConst 0x1B /* Jump conditional according to
368 an operation on constant:
369 1:A--D--D--R--E--S--S-rrrXXXXX
372 -----------------------------
373 reg[7] = reg[rrr] OPERATION CONSTANT;
380 #define CCL_JumpCondExprReg 0x1C /* Jump conditional according to
381 an operation on register:
382 1:A--D--D--R--E--S--S-rrrXXXXX
385 -----------------------------
386 reg[7] = reg[rrr] OPERATION reg[RRR];
393 #define CCL_ReadJumpCondExprConst 0x1D /* Read and jump conditional according
394 to an operation on constant:
395 1:A--D--D--R--E--S--S-rrrXXXXX
398 -----------------------------
400 reg[7] = reg[rrr] OPERATION CONSTANT;
407 #define CCL_ReadJumpCondExprReg 0x1E /* Read and jump conditional according
408 to an operation on register:
409 1:A--D--D--R--E--S--S-rrrXXXXX
412 -----------------------------
414 reg[7] = reg[rrr] OPERATION reg[RRR];
421 #define CCL_Extension 0x1F /* Extended CCL code
422 1:ExtendedCOMMNDRrrRRRrrrXXXXX
425 ------------------------------
426 extended_command (rrr,RRR,Rrr,ARGS)
430 Here after, Extended CCL Instructions.
431 Bit length of extended command is 14.
432 Therefore, the instruction code range is 0..16384(0x3fff).
435 /* Read a multibyte characeter.
436 A code point is stored into reg[rrr]. A charset ID is stored into
439 #define CCL_ReadMultibyteChar2 0x00 /* Read Multibyte Character
440 1:ExtendedCOMMNDRrrRRRrrrXXXXX */
442 /* Write a multibyte character.
443 Write a character whose code point is reg[rrr] and the charset ID
446 #define CCL_WriteMultibyteChar2 0x01 /* Write Multibyte Character
447 1:ExtendedCOMMNDRrrRRRrrrXXXXX */
449 /* Translate a character whose code point is reg[rrr] and the charset
450 ID is reg[RRR] by a translation table whose ID is reg[Rrr].
452 A translated character is set in reg[rrr] (code point) and reg[RRR]
455 #define CCL_TranslateCharacter 0x02 /* Translate a multibyte character
456 1:ExtendedCOMMNDRrrRRRrrrXXXXX */
458 /* Translate a character whose code point is reg[rrr] and the charset
459 ID is reg[RRR] by a translation table whose ID is ARGUMENT.
461 A translated character is set in reg[rrr] (code point) and reg[RRR]
464 #define CCL_TranslateCharacterConstTbl 0x03 /* Translate a multibyte character
465 1:ExtendedCOMMNDRrrRRRrrrXXXXX
466 2:ARGUMENT(Translation Table ID)
469 /* Iterate looking up MAPs for reg[rrr] starting from the Nth (N =
470 reg[RRR]) MAP until some value is found.
472 Each MAP is a Lisp vector whose element is number, nil, t, or
474 If the element is nil, ignore the map and proceed to the next map.
475 If the element is t or lambda, finish without changing reg[rrr].
476 If the element is a number, set reg[rrr] to the number and finish.
478 Detail of the map structure is descibed in the comment for
479 CCL_MapMultiple below. */
481 #define CCL_IterateMultipleMap 0x10 /* Iterate multiple maps
482 1:ExtendedCOMMNDXXXRRRrrrXXXXX
489 /* Map the code in reg[rrr] by MAPs starting from the Nth (N =
492 MAPs are supplied in the succeeding CCL codes as follows:
494 When CCL program gives this nested structure of map to this command:
497 (MAP-ID121 MAP-ID122 MAP-ID123)
500 (MAP-ID211 (MAP-ID2111) MAP-ID212)
502 the compiled CCL codes has this sequence:
503 CCL_MapMultiple (CCL code of this command)
504 16 (total number of MAPs and SEPARATORs)
522 A value of each SEPARATOR follows this rule:
523 MAP-SET := SEPARATOR [(MAP-ID | MAP-SET)]+
524 SEPARATOR := -(number of MAP-IDs and SEPARATORs in the MAP-SET)
526 (*)....Nest level of MAP-SET must not be over than MAX_MAP_SET_LEVEL.
528 When some map fails to map (i.e. it doesn't have a value for
529 reg[rrr]), the mapping is treated as identity.
531 The mapping is iterated for all maps in each map set (set of maps
532 separated by SEPARATOR) except in the case that lambda is
533 encountered. More precisely, the mapping proceeds as below:
535 At first, VAL0 is set to reg[rrr], and it is translated by the
536 first map to VAL1. Then, VAL1 is translated by the next map to
537 VAL2. This mapping is iterated until the last map is used. The
538 result of the mapping is the last value of VAL?. When the mapping
539 process reached to the end of the map set, it moves to the next
540 map set. If the next does not exit, the mapping process terminates,
541 and regard the last value as a result.
543 But, when VALm is mapped to VALn and VALn is not a number, the
544 mapping proceed as below:
546 If VALn is nil, the lastest map is ignored and the mapping of VALm
547 proceed to the next map.
549 In VALn is t, VALm is reverted to reg[rrr] and the mapping of VALm
550 proceed to the next map.
552 If VALn is lambda, move to the next map set like reaching to the
553 end of the current map set.
555 If VALn is a symbol, call the CCL program refered by it.
556 Then, use reg[rrr] as a mapped value except for -1, -2 and -3.
557 Such special values are regarded as nil, t, and lambda respectively.
559 Each map is a Lisp vector of the following format (a) or (b):
560 (a)......[STARTPOINT VAL1 VAL2 ...]
561 (b)......[t VAL STARTPOINT ENDPOINT],
563 STARTPOINT is an offset to be used for indexing a map,
564 ENDPOINT is a maximum index number of a map,
565 VAL and VALn is a number, nil, t, or lambda.
567 Valid index range of a map of type (a) is:
568 STARTPOINT <= index < STARTPOINT + map_size - 1
569 Valid index range of a map of type (b) is:
570 STARTPOINT <= index < ENDPOINT */
572 #define CCL_MapMultiple 0x11 /* Mapping by multiple code conversion maps
573 1:ExtendedCOMMNDXXXRRRrrrXXXXX
585 #define MAX_MAP_SET_LEVEL 30
593 static tr_stack mapping_stack
[MAX_MAP_SET_LEVEL
];
594 static tr_stack
*mapping_stack_pointer
;
596 /* If this variable is non-zero, it indicates the stack_idx
597 of immediately called by CCL_MapMultiple. */
598 static int stack_idx_of_map_multiple
;
600 #define PUSH_MAPPING_STACK(restlen, orig) \
603 mapping_stack_pointer->rest_length = (restlen); \
604 mapping_stack_pointer->orig_val = (orig); \
605 mapping_stack_pointer++; \
609 #define POP_MAPPING_STACK(restlen, orig) \
612 mapping_stack_pointer--; \
613 (restlen) = mapping_stack_pointer->rest_length; \
614 (orig) = mapping_stack_pointer->orig_val; \
618 #define CCL_CALL_FOR_MAP_INSTRUCTION(symbol, ret_ic) \
621 struct ccl_program called_ccl; \
622 if (stack_idx >= 256 \
623 || (setup_ccl_program (&called_ccl, (symbol)) != 0)) \
627 ccl_prog = ccl_prog_stack_struct[0].ccl_prog; \
628 ic = ccl_prog_stack_struct[0].ic; \
632 ccl_prog_stack_struct[stack_idx].ccl_prog = ccl_prog; \
633 ccl_prog_stack_struct[stack_idx].ic = (ret_ic); \
635 ccl_prog = called_ccl.prog; \
636 ic = CCL_HEADER_MAIN; \
641 #define CCL_MapSingle 0x12 /* Map by single code conversion map
642 1:ExtendedCOMMNDXXXRRRrrrXXXXX
644 ------------------------------
645 Map reg[rrr] by MAP-ID.
646 If some valid mapping is found,
647 set reg[rrr] to the result,
652 #define CCL_LookupIntConstTbl 0x13 /* Lookup multibyte character by
653 integer key. Afterwards R7 set
654 to 1 iff lookup succeeded.
655 1:ExtendedCOMMNDRrrRRRXXXXXXXX
656 2:ARGUMENT(Hash table ID) */
658 #define CCL_LookupCharConstTbl 0x14 /* Lookup integer by multibyte
659 character key. Afterwards R7 set
660 to 1 iff lookup succeeded.
661 1:ExtendedCOMMNDRrrRRRrrrXXXXX
662 2:ARGUMENT(Hash table ID) */
664 /* CCL arithmetic/logical operators. */
665 #define CCL_PLUS 0x00 /* X = Y + Z */
666 #define CCL_MINUS 0x01 /* X = Y - Z */
667 #define CCL_MUL 0x02 /* X = Y * Z */
668 #define CCL_DIV 0x03 /* X = Y / Z */
669 #define CCL_MOD 0x04 /* X = Y % Z */
670 #define CCL_AND 0x05 /* X = Y & Z */
671 #define CCL_OR 0x06 /* X = Y | Z */
672 #define CCL_XOR 0x07 /* X = Y ^ Z */
673 #define CCL_LSH 0x08 /* X = Y << Z */
674 #define CCL_RSH 0x09 /* X = Y >> Z */
675 #define CCL_LSH8 0x0A /* X = (Y << 8) | Z */
676 #define CCL_RSH8 0x0B /* X = Y >> 8, r[7] = Y & 0xFF */
677 #define CCL_DIVMOD 0x0C /* X = Y / Z, r[7] = Y % Z */
678 #define CCL_LS 0x10 /* X = (X < Y) */
679 #define CCL_GT 0x11 /* X = (X > Y) */
680 #define CCL_EQ 0x12 /* X = (X == Y) */
681 #define CCL_LE 0x13 /* X = (X <= Y) */
682 #define CCL_GE 0x14 /* X = (X >= Y) */
683 #define CCL_NE 0x15 /* X = (X != Y) */
685 #define CCL_DECODE_SJIS 0x16 /* X = HIGHER_BYTE (DE-SJIS (Y, Z))
686 r[7] = LOWER_BYTE (DE-SJIS (Y, Z)) */
687 #define CCL_ENCODE_SJIS 0x17 /* X = HIGHER_BYTE (SJIS (Y, Z))
688 r[7] = LOWER_BYTE (SJIS (Y, Z) */
690 /* Terminate CCL program successfully. */
691 #define CCL_SUCCESS \
694 ccl->status = CCL_STAT_SUCCESS; \
699 /* Suspend CCL program because of reading from empty input buffer or
700 writing to full output buffer. When this program is resumed, the
701 same I/O command is executed. */
702 #define CCL_SUSPEND(stat) \
706 ccl->status = stat; \
711 /* Terminate CCL program because of invalid command. Should not occur
712 in the normal case. */
713 #define CCL_INVALID_CMD \
716 ccl->status = CCL_STAT_INVALID_CMD; \
717 goto ccl_error_handler; \
721 /* Encode one character CH to multibyte form and write to the current
722 output buffer. If CH is less than 256, CH is written as is. */
723 #define CCL_WRITE_CHAR(ch) \
725 int bytes = SINGLE_BYTE_CHAR_P (ch) ? 1: CHAR_BYTES (ch); \
728 else if (dst + bytes + extra_bytes < (dst_bytes ? dst_end : src)) \
733 if (extra_bytes && (ch) >= 0x80 && (ch) < 0xA0) \
734 /* We may have to convert this eight-bit char to \
735 multibyte form later. */ \
738 else if (CHAR_VALID_P (ch, 0)) \
739 dst += CHAR_STRING (ch, dst); \
744 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_DST); \
747 /* Encode one character CH to multibyte form and write to the current
748 output buffer. The output bytes always forms a valid multibyte
750 #define CCL_WRITE_MULTIBYTE_CHAR(ch) \
752 int bytes = CHAR_BYTES (ch); \
755 else if (dst + bytes + extra_bytes < (dst_bytes ? dst_end : src)) \
757 if (CHAR_VALID_P ((ch), 0)) \
758 dst += CHAR_STRING ((ch), dst); \
763 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_DST); \
766 /* Write a string at ccl_prog[IC] of length LEN to the current output
768 #define CCL_WRITE_STRING(len) \
772 else if (dst + len <= (dst_bytes ? dst_end : src)) \
773 for (i = 0; i < len; i++) \
774 *dst++ = ((XFASTINT (ccl_prog[ic + (i / 3)])) \
775 >> ((2 - (i % 3)) * 8)) & 0xFF; \
777 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_DST); \
780 /* Read one byte from the current input buffer into REGth register. */
781 #define CCL_READ_CHAR(REG) \
785 else if (src < src_end) \
789 && ccl->eol_type != CODING_EOL_LF) \
791 /* We are encoding. */ \
792 if (ccl->eol_type == CODING_EOL_CRLF) \
794 if (ccl->cr_consumed) \
795 ccl->cr_consumed = 0; \
798 ccl->cr_consumed = 1; \
806 if (REG == LEADING_CODE_8_BIT_CONTROL \
808 REG = *src++ - 0x20; \
810 else if (ccl->last_block) \
816 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_SRC); \
820 /* Set C to the character code made from CHARSET and CODE. This is
821 like MAKE_CHAR but check the validity of CHARSET and CODE. If they
822 are not valid, set C to (CODE & 0xFF) because that is usually the
823 case that CCL_ReadMultibyteChar2 read an invalid code and it set
824 CODE to that invalid byte. */
826 #define CCL_MAKE_CHAR(charset, code, c) \
828 if (charset == CHARSET_ASCII) \
830 else if (CHARSET_DEFINED_P (charset) \
831 && (code & 0x7F) >= 32 \
832 && (code < 256 || ((code >> 7) & 0x7F) >= 32)) \
834 int c1 = code & 0x7F, c2 = 0; \
837 c2 = c1, c1 = (code >> 7) & 0x7F; \
838 c = MAKE_CHAR (charset, c1, c2); \
845 /* Execute CCL code on SRC_BYTES length text at SOURCE. The resulting
846 text goes to a place pointed by DESTINATION, the length of which
847 should not exceed DST_BYTES. The bytes actually processed is
848 returned as *CONSUMED. The return value is the length of the
849 resulting text. As a side effect, the contents of CCL registers
850 are updated. If SOURCE or DESTINATION is NULL, only operations on
851 registers are permitted. */
854 #define CCL_DEBUG_BACKTRACE_LEN 256
855 int ccl_backtrace_table
[CCL_DEBUG_BACKTRACE_LEN
];
856 int ccl_backtrace_idx
;
859 struct ccl_prog_stack
861 Lisp_Object
*ccl_prog
; /* Pointer to an array of CCL code. */
862 int ic
; /* Instruction Counter. */
865 /* For the moment, we only support depth 256 of stack. */
866 static struct ccl_prog_stack ccl_prog_stack_struct
[256];
869 ccl_driver (ccl
, source
, destination
, src_bytes
, dst_bytes
, consumed
)
870 struct ccl_program
*ccl
;
871 unsigned char *source
, *destination
;
872 int src_bytes
, dst_bytes
;
875 register int *reg
= ccl
->reg
;
876 register int ic
= ccl
->ic
;
877 register int code
= 0, field1
, field2
;
878 register Lisp_Object
*ccl_prog
= ccl
->prog
;
879 unsigned char *src
= source
, *src_end
= src
+ src_bytes
;
880 unsigned char *dst
= destination
, *dst_end
= dst
+ dst_bytes
;
883 int stack_idx
= ccl
->stack_idx
;
884 /* Instruction counter of the current CCL code. */
886 /* CCL_WRITE_CHAR will produce 8-bit code of range 0x80..0x9F. But,
887 each of them will be converted to multibyte form of 2-byte
888 sequence. For that conversion, we remember how many more bytes
889 we must keep in DESTINATION in this variable. */
890 int extra_bytes
= ccl
->eight_bit_control
;
892 if (ic
>= ccl
->eof_ic
)
893 ic
= CCL_HEADER_MAIN
;
895 if (ccl
->buf_magnification
== 0) /* We can't produce any bytes. */
898 /* Set mapping stack pointer. */
899 mapping_stack_pointer
= mapping_stack
;
902 ccl_backtrace_idx
= 0;
909 ccl_backtrace_table
[ccl_backtrace_idx
++] = ic
;
910 if (ccl_backtrace_idx
>= CCL_DEBUG_BACKTRACE_LEN
)
911 ccl_backtrace_idx
= 0;
912 ccl_backtrace_table
[ccl_backtrace_idx
] = 0;
915 if (!NILP (Vquit_flag
) && NILP (Vinhibit_quit
))
917 /* We can't just signal Qquit, instead break the loop as if
918 the whole data is processed. Don't reset Vquit_flag, it
919 must be handled later at a safer place. */
921 src
= source
+ src_bytes
;
922 ccl
->status
= CCL_STAT_QUIT
;
927 code
= XINT (ccl_prog
[ic
]); ic
++;
929 field2
= (code
& 0xFF) >> 5;
932 #define RRR (field1 & 7)
933 #define Rrr ((field1 >> 3) & 7)
935 #define EXCMD (field1 >> 6)
939 case CCL_SetRegister
: /* 00000000000000000RRRrrrXXXXX */
943 case CCL_SetShortConst
: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */
947 case CCL_SetConst
: /* 00000000000000000000rrrXXXXX */
948 reg
[rrr
] = XINT (ccl_prog
[ic
]);
952 case CCL_SetArray
: /* CCCCCCCCCCCCCCCCCCCCRRRrrrXXXXX */
955 if ((unsigned int) i
< j
)
956 reg
[rrr
] = XINT (ccl_prog
[ic
+ i
]);
960 case CCL_Jump
: /* A--D--D--R--E--S--S-000XXXXX */
964 case CCL_JumpCond
: /* A--D--D--R--E--S--S-rrrXXXXX */
969 case CCL_WriteRegisterJump
: /* A--D--D--R--E--S--S-rrrXXXXX */
975 case CCL_WriteRegisterReadJump
: /* A--D--D--R--E--S--S-rrrXXXXX */
979 CCL_READ_CHAR (reg
[rrr
]);
983 case CCL_WriteConstJump
: /* A--D--D--R--E--S--S-000XXXXX */
984 i
= XINT (ccl_prog
[ic
]);
989 case CCL_WriteConstReadJump
: /* A--D--D--R--E--S--S-rrrXXXXX */
990 i
= XINT (ccl_prog
[ic
]);
993 CCL_READ_CHAR (reg
[rrr
]);
997 case CCL_WriteStringJump
: /* A--D--D--R--E--S--S-000XXXXX */
998 j
= XINT (ccl_prog
[ic
]);
1000 CCL_WRITE_STRING (j
);
1004 case CCL_WriteArrayReadJump
: /* A--D--D--R--E--S--S-rrrXXXXX */
1006 j
= XINT (ccl_prog
[ic
]);
1007 if ((unsigned int) i
< j
)
1009 i
= XINT (ccl_prog
[ic
+ 1 + i
]);
1013 CCL_READ_CHAR (reg
[rrr
]);
1014 ic
+= ADDR
- (j
+ 2);
1017 case CCL_ReadJump
: /* A--D--D--R--E--S--S-rrrYYYYY */
1018 CCL_READ_CHAR (reg
[rrr
]);
1022 case CCL_ReadBranch
: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */
1023 CCL_READ_CHAR (reg
[rrr
]);
1024 /* fall through ... */
1025 case CCL_Branch
: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */
1026 if ((unsigned int) reg
[rrr
] < field1
)
1027 ic
+= XINT (ccl_prog
[ic
+ reg
[rrr
]]);
1029 ic
+= XINT (ccl_prog
[ic
+ field1
]);
1032 case CCL_ReadRegister
: /* CCCCCCCCCCCCCCCCCCCCrrXXXXX */
1035 CCL_READ_CHAR (reg
[rrr
]);
1037 code
= XINT (ccl_prog
[ic
]); ic
++;
1039 field2
= (code
& 0xFF) >> 5;
1043 case CCL_WriteExprConst
: /* 1:00000OPERATION000RRR000XXXXX */
1046 j
= XINT (ccl_prog
[ic
]);
1048 jump_address
= ic
+ 1;
1051 case CCL_WriteRegister
: /* CCCCCCCCCCCCCCCCCCCrrrXXXXX */
1057 code
= XINT (ccl_prog
[ic
]); ic
++;
1059 field2
= (code
& 0xFF) >> 5;
1063 case CCL_WriteExprRegister
: /* 1:00000OPERATIONRrrRRR000XXXXX */
1071 case CCL_Call
: /* 1:CCCCCCCCCCCCCCCCCCCCFFFXXXXX */
1076 /* If FFF is nonzero, the CCL program ID is in the
1080 prog_id
= XINT (ccl_prog
[ic
]);
1086 if (stack_idx
>= 256
1088 || prog_id
>= ASIZE (Vccl_program_table
)
1089 || (slot
= AREF (Vccl_program_table
, prog_id
), !VECTORP (slot
))
1090 || !VECTORP (AREF (slot
, 1)))
1094 ccl_prog
= ccl_prog_stack_struct
[0].ccl_prog
;
1095 ic
= ccl_prog_stack_struct
[0].ic
;
1100 ccl_prog_stack_struct
[stack_idx
].ccl_prog
= ccl_prog
;
1101 ccl_prog_stack_struct
[stack_idx
].ic
= ic
;
1103 ccl_prog
= XVECTOR (AREF (slot
, 1))->contents
;
1104 ic
= CCL_HEADER_MAIN
;
1108 case CCL_WriteConstString
: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */
1110 CCL_WRITE_CHAR (field1
);
1113 CCL_WRITE_STRING (field1
);
1114 ic
+= (field1
+ 2) / 3;
1118 case CCL_WriteArray
: /* CCCCCCCCCCCCCCCCCCCCrrrXXXXX */
1120 if ((unsigned int) i
< field1
)
1122 j
= XINT (ccl_prog
[ic
+ i
]);
1128 case CCL_End
: /* 0000000000000000000000XXXXX */
1132 ccl_prog
= ccl_prog_stack_struct
[stack_idx
].ccl_prog
;
1133 ic
= ccl_prog_stack_struct
[stack_idx
].ic
;
1138 /* ccl->ic should points to this command code again to
1139 suppress further processing. */
1143 case CCL_ExprSelfConst
: /* 00000OPERATION000000rrrXXXXX */
1144 i
= XINT (ccl_prog
[ic
]);
1149 case CCL_ExprSelfReg
: /* 00000OPERATION000RRRrrrXXXXX */
1156 case CCL_PLUS
: reg
[rrr
] += i
; break;
1157 case CCL_MINUS
: reg
[rrr
] -= i
; break;
1158 case CCL_MUL
: reg
[rrr
] *= i
; break;
1159 case CCL_DIV
: reg
[rrr
] /= i
; break;
1160 case CCL_MOD
: reg
[rrr
] %= i
; break;
1161 case CCL_AND
: reg
[rrr
] &= i
; break;
1162 case CCL_OR
: reg
[rrr
] |= i
; break;
1163 case CCL_XOR
: reg
[rrr
] ^= i
; break;
1164 case CCL_LSH
: reg
[rrr
] <<= i
; break;
1165 case CCL_RSH
: reg
[rrr
] >>= i
; break;
1166 case CCL_LSH8
: reg
[rrr
] <<= 8; reg
[rrr
] |= i
; break;
1167 case CCL_RSH8
: reg
[7] = reg
[rrr
] & 0xFF; reg
[rrr
] >>= 8; break;
1168 case CCL_DIVMOD
: reg
[7] = reg
[rrr
] % i
; reg
[rrr
] /= i
; break;
1169 case CCL_LS
: reg
[rrr
] = reg
[rrr
] < i
; break;
1170 case CCL_GT
: reg
[rrr
] = reg
[rrr
] > i
; break;
1171 case CCL_EQ
: reg
[rrr
] = reg
[rrr
] == i
; break;
1172 case CCL_LE
: reg
[rrr
] = reg
[rrr
] <= i
; break;
1173 case CCL_GE
: reg
[rrr
] = reg
[rrr
] >= i
; break;
1174 case CCL_NE
: reg
[rrr
] = reg
[rrr
] != i
; break;
1175 default: CCL_INVALID_CMD
;
1179 case CCL_SetExprConst
: /* 00000OPERATION000RRRrrrXXXXX */
1181 j
= XINT (ccl_prog
[ic
]);
1183 jump_address
= ++ic
;
1186 case CCL_SetExprReg
: /* 00000OPERATIONRrrRRRrrrXXXXX */
1193 case CCL_ReadJumpCondExprConst
: /* A--D--D--R--E--S--S-rrrXXXXX */
1194 CCL_READ_CHAR (reg
[rrr
]);
1195 case CCL_JumpCondExprConst
: /* A--D--D--R--E--S--S-rrrXXXXX */
1197 op
= XINT (ccl_prog
[ic
]);
1198 jump_address
= ic
++ + ADDR
;
1199 j
= XINT (ccl_prog
[ic
]);
1204 case CCL_ReadJumpCondExprReg
: /* A--D--D--R--E--S--S-rrrXXXXX */
1205 CCL_READ_CHAR (reg
[rrr
]);
1206 case CCL_JumpCondExprReg
:
1208 op
= XINT (ccl_prog
[ic
]);
1209 jump_address
= ic
++ + ADDR
;
1210 j
= reg
[XINT (ccl_prog
[ic
])];
1217 case CCL_PLUS
: reg
[rrr
] = i
+ j
; break;
1218 case CCL_MINUS
: reg
[rrr
] = i
- j
; break;
1219 case CCL_MUL
: reg
[rrr
] = i
* j
; break;
1220 case CCL_DIV
: reg
[rrr
] = i
/ j
; break;
1221 case CCL_MOD
: reg
[rrr
] = i
% j
; break;
1222 case CCL_AND
: reg
[rrr
] = i
& j
; break;
1223 case CCL_OR
: reg
[rrr
] = i
| j
; break;
1224 case CCL_XOR
: reg
[rrr
] = i
^ j
;; break;
1225 case CCL_LSH
: reg
[rrr
] = i
<< j
; break;
1226 case CCL_RSH
: reg
[rrr
] = i
>> j
; break;
1227 case CCL_LSH8
: reg
[rrr
] = (i
<< 8) | j
; break;
1228 case CCL_RSH8
: reg
[rrr
] = i
>> 8; reg
[7] = i
& 0xFF; break;
1229 case CCL_DIVMOD
: reg
[rrr
] = i
/ j
; reg
[7] = i
% j
; break;
1230 case CCL_LS
: reg
[rrr
] = i
< j
; break;
1231 case CCL_GT
: reg
[rrr
] = i
> j
; break;
1232 case CCL_EQ
: reg
[rrr
] = i
== j
; break;
1233 case CCL_LE
: reg
[rrr
] = i
<= j
; break;
1234 case CCL_GE
: reg
[rrr
] = i
>= j
; break;
1235 case CCL_NE
: reg
[rrr
] = i
!= j
; break;
1236 case CCL_DECODE_SJIS
: DECODE_SJIS (i
, j
, reg
[rrr
], reg
[7]); break;
1237 case CCL_ENCODE_SJIS
: ENCODE_SJIS (i
, j
, reg
[rrr
], reg
[7]); break;
1238 default: CCL_INVALID_CMD
;
1241 if (code
== CCL_WriteExprConst
|| code
== CCL_WriteExprRegister
)
1254 case CCL_ReadMultibyteChar2
:
1261 goto ccl_read_multibyte_character_suspend
;
1264 if (!ccl
->multibyte
)
1267 if (!UNIBYTE_STR_AS_MULTIBYTE_P (src
, src_end
- src
, bytes
))
1269 reg
[RRR
] = CHARSET_8_BIT_CONTROL
;
1275 if (i
== '\n' && ccl
->eol_type
!= CODING_EOL_LF
)
1277 /* We are encoding. */
1278 if (ccl
->eol_type
== CODING_EOL_CRLF
)
1280 if (ccl
->cr_consumed
)
1281 ccl
->cr_consumed
= 0;
1284 ccl
->cr_consumed
= 1;
1292 reg
[RRR
] = CHARSET_ASCII
;
1298 reg
[RRR
] = CHARSET_ASCII
;
1300 else if (i
<= MAX_CHARSET_OFFICIAL_DIMENSION2
)
1302 int dimension
= BYTES_BY_CHAR_HEAD (i
) - 1;
1306 /* `i' is a leading code for an undefined charset. */
1307 reg
[RRR
] = CHARSET_8_BIT_GRAPHIC
;
1310 else if (src
+ dimension
> src_end
)
1311 goto ccl_read_multibyte_character_suspend
;
1315 i
= (*src
++ & 0x7F);
1319 reg
[rrr
] = ((i
<< 7) | (*src
++ & 0x7F));
1322 else if ((i
== LEADING_CODE_PRIVATE_11
)
1323 || (i
== LEADING_CODE_PRIVATE_12
))
1325 if ((src
+ 1) >= src_end
)
1326 goto ccl_read_multibyte_character_suspend
;
1328 reg
[rrr
] = (*src
++ & 0x7F);
1330 else if ((i
== LEADING_CODE_PRIVATE_21
)
1331 || (i
== LEADING_CODE_PRIVATE_22
))
1333 if ((src
+ 2) >= src_end
)
1334 goto ccl_read_multibyte_character_suspend
;
1336 i
= (*src
++ & 0x7F);
1337 reg
[rrr
] = ((i
<< 7) | (*src
& 0x7F));
1340 else if (i
== LEADING_CODE_8_BIT_CONTROL
)
1343 goto ccl_read_multibyte_character_suspend
;
1344 reg
[RRR
] = CHARSET_8_BIT_CONTROL
;
1345 reg
[rrr
] = (*src
++ - 0x20);
1349 reg
[RRR
] = CHARSET_8_BIT_GRAPHIC
;
1354 /* INVALID CODE. Return a single byte character. */
1355 reg
[RRR
] = CHARSET_ASCII
;
1360 ccl_read_multibyte_character_suspend
:
1361 if (src
<= src_end
&& !ccl
->multibyte
&& ccl
->last_block
)
1363 reg
[RRR
] = CHARSET_8_BIT_CONTROL
;
1368 if (ccl
->last_block
)
1374 CCL_SUSPEND (CCL_STAT_SUSPEND_BY_SRC
);
1378 case CCL_WriteMultibyteChar2
:
1379 i
= reg
[RRR
]; /* charset */
1380 if (i
== CHARSET_ASCII
1381 || i
== CHARSET_8_BIT_CONTROL
1382 || i
== CHARSET_8_BIT_GRAPHIC
)
1383 i
= reg
[rrr
] & 0xFF;
1384 else if (CHARSET_DIMENSION (i
) == 1)
1385 i
= ((i
- 0x70) << 7) | (reg
[rrr
] & 0x7F);
1386 else if (i
< MIN_CHARSET_PRIVATE_DIMENSION2
)
1387 i
= ((i
- 0x8F) << 14) | reg
[rrr
];
1389 i
= ((i
- 0xE0) << 14) | reg
[rrr
];
1391 CCL_WRITE_MULTIBYTE_CHAR (i
);
1395 case CCL_TranslateCharacter
:
1396 CCL_MAKE_CHAR (reg
[RRR
], reg
[rrr
], i
);
1397 op
= translate_char (GET_TRANSLATION_TABLE (reg
[Rrr
]),
1399 SPLIT_CHAR (op
, reg
[RRR
], i
, j
);
1406 case CCL_TranslateCharacterConstTbl
:
1407 op
= XINT (ccl_prog
[ic
]); /* table */
1409 CCL_MAKE_CHAR (reg
[RRR
], reg
[rrr
], i
);
1410 op
= translate_char (GET_TRANSLATION_TABLE (op
), i
, -1, 0, 0);
1411 SPLIT_CHAR (op
, reg
[RRR
], i
, j
);
1418 case CCL_LookupIntConstTbl
:
1419 op
= XINT (ccl_prog
[ic
]); /* table */
1422 struct Lisp_Hash_Table
*h
= GET_HASH_TABLE (op
);
1424 op
= hash_lookup (h
, make_number (reg
[RRR
]), NULL
);
1428 opl
= HASH_VALUE (h
, op
);
1429 if (!CHAR_VALID_P (XINT (opl
), 0))
1431 SPLIT_CHAR (XINT (opl
), reg
[RRR
], i
, j
);
1435 reg
[7] = 1; /* r7 true for success */
1442 case CCL_LookupCharConstTbl
:
1443 op
= XINT (ccl_prog
[ic
]); /* table */
1445 CCL_MAKE_CHAR (reg
[RRR
], reg
[rrr
], i
);
1447 struct Lisp_Hash_Table
*h
= GET_HASH_TABLE (op
);
1449 op
= hash_lookup (h
, make_number (i
), NULL
);
1453 opl
= HASH_VALUE (h
, op
);
1454 if (!INTEGERP (opl
))
1456 reg
[RRR
] = XINT (opl
);
1457 reg
[7] = 1; /* r7 true for success */
1464 case CCL_IterateMultipleMap
:
1466 Lisp_Object map
, content
, attrib
, value
;
1467 int point
, size
, fin_ic
;
1469 j
= XINT (ccl_prog
[ic
++]); /* number of maps. */
1472 if ((j
> reg
[RRR
]) && (j
>= 0))
1487 size
= ASIZE (Vcode_conversion_map_vector
);
1488 point
= XINT (ccl_prog
[ic
++]);
1489 if (point
>= size
) continue;
1490 map
= AREF (Vcode_conversion_map_vector
, point
);
1492 /* Check map varidity. */
1493 if (!CONSP (map
)) continue;
1495 if (!VECTORP (map
)) continue;
1497 if (size
<= 1) continue;
1499 content
= AREF (map
, 0);
1502 [STARTPOINT VAL1 VAL2 ...] or
1503 [t ELELMENT STARTPOINT ENDPOINT] */
1504 if (NUMBERP (content
))
1506 point
= XUINT (content
);
1507 point
= op
- point
+ 1;
1508 if (!((point
>= 1) && (point
< size
))) continue;
1509 content
= AREF (map
, point
);
1511 else if (EQ (content
, Qt
))
1513 if (size
!= 4) continue;
1514 if ((op
>= XUINT (AREF (map
, 2)))
1515 && (op
< XUINT (AREF (map
, 3))))
1516 content
= AREF (map
, 1);
1525 else if (NUMBERP (content
))
1528 reg
[rrr
] = XINT(content
);
1531 else if (EQ (content
, Qt
) || EQ (content
, Qlambda
))
1536 else if (CONSP (content
))
1538 attrib
= XCAR (content
);
1539 value
= XCDR (content
);
1540 if (!NUMBERP (attrib
) || !NUMBERP (value
))
1543 reg
[rrr
] = XUINT (value
);
1546 else if (SYMBOLP (content
))
1547 CCL_CALL_FOR_MAP_INSTRUCTION (content
, fin_ic
);
1557 case CCL_MapMultiple
:
1559 Lisp_Object map
, content
, attrib
, value
;
1560 int point
, size
, map_vector_size
;
1561 int map_set_rest_length
, fin_ic
;
1562 int current_ic
= this_ic
;
1564 /* inhibit recursive call on MapMultiple. */
1565 if (stack_idx_of_map_multiple
> 0)
1567 if (stack_idx_of_map_multiple
<= stack_idx
)
1569 stack_idx_of_map_multiple
= 0;
1570 mapping_stack_pointer
= mapping_stack
;
1575 mapping_stack_pointer
= mapping_stack
;
1576 stack_idx_of_map_multiple
= 0;
1578 map_set_rest_length
=
1579 XINT (ccl_prog
[ic
++]); /* number of maps and separators. */
1580 fin_ic
= ic
+ map_set_rest_length
;
1583 if ((map_set_rest_length
> reg
[RRR
]) && (reg
[RRR
] >= 0))
1587 map_set_rest_length
-= i
;
1593 mapping_stack_pointer
= mapping_stack
;
1597 if (mapping_stack_pointer
<= (mapping_stack
+ 1))
1599 /* Set up initial state. */
1600 mapping_stack_pointer
= mapping_stack
;
1601 PUSH_MAPPING_STACK (0, op
);
1606 /* Recover after calling other ccl program. */
1609 POP_MAPPING_STACK (map_set_rest_length
, orig_op
);
1610 POP_MAPPING_STACK (map_set_rest_length
, reg
[rrr
]);
1614 /* Regard it as Qnil. */
1618 map_set_rest_length
--;
1621 /* Regard it as Qt. */
1625 map_set_rest_length
--;
1628 /* Regard it as Qlambda. */
1630 i
+= map_set_rest_length
;
1631 ic
+= map_set_rest_length
;
1632 map_set_rest_length
= 0;
1635 /* Regard it as normal mapping. */
1636 i
+= map_set_rest_length
;
1637 ic
+= map_set_rest_length
;
1638 POP_MAPPING_STACK (map_set_rest_length
, reg
[rrr
]);
1642 map_vector_size
= ASIZE (Vcode_conversion_map_vector
);
1645 for (;map_set_rest_length
> 0;i
++, ic
++, map_set_rest_length
--)
1647 point
= XINT(ccl_prog
[ic
]);
1650 /* +1 is for including separator. */
1652 if (mapping_stack_pointer
1653 >= &mapping_stack
[MAX_MAP_SET_LEVEL
])
1655 PUSH_MAPPING_STACK (map_set_rest_length
- point
,
1657 map_set_rest_length
= point
;
1662 if (point
>= map_vector_size
) continue;
1663 map
= AREF (Vcode_conversion_map_vector
, point
);
1665 /* Check map varidity. */
1666 if (!CONSP (map
)) continue;
1668 if (!VECTORP (map
)) continue;
1670 if (size
<= 1) continue;
1672 content
= AREF (map
, 0);
1675 [STARTPOINT VAL1 VAL2 ...] or
1676 [t ELEMENT STARTPOINT ENDPOINT] */
1677 if (NUMBERP (content
))
1679 point
= XUINT (content
);
1680 point
= op
- point
+ 1;
1681 if (!((point
>= 1) && (point
< size
))) continue;
1682 content
= AREF (map
, point
);
1684 else if (EQ (content
, Qt
))
1686 if (size
!= 4) continue;
1687 if ((op
>= XUINT (AREF (map
, 2))) &&
1688 (op
< XUINT (AREF (map
, 3))))
1689 content
= AREF (map
, 1);
1700 if (NUMBERP (content
))
1702 op
= XINT (content
);
1703 i
+= map_set_rest_length
- 1;
1704 ic
+= map_set_rest_length
- 1;
1705 POP_MAPPING_STACK (map_set_rest_length
, reg
[rrr
]);
1706 map_set_rest_length
++;
1708 else if (CONSP (content
))
1710 attrib
= XCAR (content
);
1711 value
= XCDR (content
);
1712 if (!NUMBERP (attrib
) || !NUMBERP (value
))
1715 i
+= map_set_rest_length
- 1;
1716 ic
+= map_set_rest_length
- 1;
1717 POP_MAPPING_STACK (map_set_rest_length
, reg
[rrr
]);
1718 map_set_rest_length
++;
1720 else if (EQ (content
, Qt
))
1724 else if (EQ (content
, Qlambda
))
1726 i
+= map_set_rest_length
;
1727 ic
+= map_set_rest_length
;
1730 else if (SYMBOLP (content
))
1732 if (mapping_stack_pointer
1733 >= &mapping_stack
[MAX_MAP_SET_LEVEL
])
1735 PUSH_MAPPING_STACK (map_set_rest_length
, reg
[rrr
]);
1736 PUSH_MAPPING_STACK (map_set_rest_length
, op
);
1737 stack_idx_of_map_multiple
= stack_idx
+ 1;
1738 CCL_CALL_FOR_MAP_INSTRUCTION (content
, current_ic
);
1743 if (mapping_stack_pointer
<= (mapping_stack
+ 1))
1745 POP_MAPPING_STACK (map_set_rest_length
, reg
[rrr
]);
1746 i
+= map_set_rest_length
;
1747 ic
+= map_set_rest_length
;
1748 POP_MAPPING_STACK (map_set_rest_length
, reg
[rrr
]);
1758 Lisp_Object map
, attrib
, value
, content
;
1760 j
= XINT (ccl_prog
[ic
++]); /* map_id */
1762 if (j
>= ASIZE (Vcode_conversion_map_vector
))
1767 map
= AREF (Vcode_conversion_map_vector
, j
);
1780 point
= XUINT (AREF (map
, 0));
1781 point
= op
- point
+ 1;
1784 (!((point
>= 1) && (point
< size
))))
1789 content
= AREF (map
, point
);
1792 else if (NUMBERP (content
))
1793 reg
[rrr
] = XINT (content
);
1794 else if (EQ (content
, Qt
));
1795 else if (CONSP (content
))
1797 attrib
= XCAR (content
);
1798 value
= XCDR (content
);
1799 if (!NUMBERP (attrib
) || !NUMBERP (value
))
1801 reg
[rrr
] = XUINT(value
);
1804 else if (SYMBOLP (content
))
1805 CCL_CALL_FOR_MAP_INSTRUCTION (content
, ic
);
1823 /* The suppress_error member is set when e.g. a CCL-based coding
1824 system is used for terminal output. */
1825 if (!ccl
->suppress_error
&& destination
)
1827 /* We can insert an error message only if DESTINATION is
1828 specified and we still have a room to store the message
1836 switch (ccl
->status
)
1838 case CCL_STAT_INVALID_CMD
:
1839 sprintf(msg
, "\nCCL: Invalid command %x (ccl_code = %x) at %d.",
1840 code
& 0x1F, code
, this_ic
);
1843 int i
= ccl_backtrace_idx
- 1;
1846 msglen
= strlen (msg
);
1847 if (dst
+ msglen
<= (dst_bytes
? dst_end
: src
))
1849 bcopy (msg
, dst
, msglen
);
1853 for (j
= 0; j
< CCL_DEBUG_BACKTRACE_LEN
; j
++, i
--)
1855 if (i
< 0) i
= CCL_DEBUG_BACKTRACE_LEN
- 1;
1856 if (ccl_backtrace_table
[i
] == 0)
1858 sprintf(msg
, " %d", ccl_backtrace_table
[i
]);
1859 msglen
= strlen (msg
);
1860 if (dst
+ msglen
> (dst_bytes
? dst_end
: src
))
1862 bcopy (msg
, dst
, msglen
);
1871 sprintf(msg
, "\nCCL: Quited.");
1875 sprintf(msg
, "\nCCL: Unknown error type (%d)", ccl
->status
);
1878 msglen
= strlen (msg
);
1879 if (dst
+ msglen
<= (dst_bytes
? dst_end
: src
))
1881 bcopy (msg
, dst
, msglen
);
1885 if (ccl
->status
== CCL_STAT_INVALID_CMD
)
1887 #if 0 /* If the remaining bytes contain 0x80..0x9F, copying them
1888 results in an invalid multibyte sequence. */
1890 /* Copy the remaining source data. */
1891 int i
= src_end
- src
;
1892 if (dst_bytes
&& (dst_end
- dst
) < i
)
1894 bcopy (src
, dst
, i
);
1898 /* Signal that we've consumed everything. */
1906 ccl
->stack_idx
= stack_idx
;
1907 ccl
->prog
= ccl_prog
;
1908 ccl
->eight_bit_control
= (extra_bytes
> 1);
1910 *consumed
= src
- source
;
1911 return (dst
? dst
- destination
: 0);
1914 /* Resolve symbols in the specified CCL code (Lisp vector). This
1915 function converts symbols of code conversion maps and character
1916 translation tables embeded in the CCL code into their ID numbers.
1918 The return value is a vector (CCL itself or a new vector in which
1919 all symbols are resolved), Qt if resolving of some symbol failed,
1920 or nil if CCL contains invalid data. */
1923 resolve_symbol_ccl_program (ccl
)
1926 int i
, veclen
, unresolved
= 0;
1927 Lisp_Object result
, contents
, val
;
1930 veclen
= ASIZE (result
);
1932 for (i
= 0; i
< veclen
; i
++)
1934 contents
= AREF (result
, i
);
1935 if (INTEGERP (contents
))
1937 else if (CONSP (contents
)
1938 && SYMBOLP (XCAR (contents
))
1939 && SYMBOLP (XCDR (contents
)))
1941 /* This is the new style for embedding symbols. The form is
1942 (SYMBOL . PROPERTY). (get SYMBOL PROPERTY) should give
1945 if (EQ (result
, ccl
))
1946 result
= Fcopy_sequence (ccl
);
1948 val
= Fget (XCAR (contents
), XCDR (contents
));
1950 AREF (result
, i
) = val
;
1955 else if (SYMBOLP (contents
))
1957 /* This is the old style for embedding symbols. This style
1958 may lead to a bug if, for instance, a translation table
1959 and a code conversion map have the same name. */
1960 if (EQ (result
, ccl
))
1961 result
= Fcopy_sequence (ccl
);
1963 val
= Fget (contents
, Qtranslation_table_id
);
1965 AREF (result
, i
) = val
;
1968 val
= Fget (contents
, Qcode_conversion_map_id
);
1970 AREF (result
, i
) = val
;
1973 val
= Fget (contents
, Qccl_program_idx
);
1975 AREF (result
, i
) = val
;
1985 return (unresolved
? Qt
: result
);
1988 /* Return the compiled code (vector) of CCL program CCL_PROG.
1989 CCL_PROG is a name (symbol) of the program or already compiled
1990 code. If necessary, resolve symbols in the compiled code to index
1991 numbers. If we failed to get the compiled code or to resolve
1992 symbols, return Qnil. */
1995 ccl_get_compiled_code (ccl_prog
)
1996 Lisp_Object ccl_prog
;
1998 Lisp_Object val
, slot
;
2000 if (VECTORP (ccl_prog
))
2002 val
= resolve_symbol_ccl_program (ccl_prog
);
2003 return (VECTORP (val
) ? val
: Qnil
);
2005 if (!SYMBOLP (ccl_prog
))
2008 val
= Fget (ccl_prog
, Qccl_program_idx
);
2010 || XINT (val
) >= ASIZE (Vccl_program_table
))
2012 slot
= AREF (Vccl_program_table
, XINT (val
));
2013 if (! VECTORP (slot
)
2014 || ASIZE (slot
) != 3
2015 || ! VECTORP (AREF (slot
, 1)))
2017 if (NILP (AREF (slot
, 2)))
2019 val
= resolve_symbol_ccl_program (AREF (slot
, 1));
2020 if (! VECTORP (val
))
2022 AREF (slot
, 1) = val
;
2023 AREF (slot
, 2) = Qt
;
2025 return AREF (slot
, 1);
2028 /* Setup fields of the structure pointed by CCL appropriately for the
2029 execution of CCL program CCL_PROG. CCL_PROG is the name (symbol)
2030 of the CCL program or the already compiled code (vector).
2031 Return 0 if we succeed this setup, else return -1.
2033 If CCL_PROG is nil, we just reset the structure pointed by CCL. */
2035 setup_ccl_program (ccl
, ccl_prog
)
2036 struct ccl_program
*ccl
;
2037 Lisp_Object ccl_prog
;
2041 if (! NILP (ccl_prog
))
2043 struct Lisp_Vector
*vp
;
2045 ccl_prog
= ccl_get_compiled_code (ccl_prog
);
2046 if (! VECTORP (ccl_prog
))
2048 vp
= XVECTOR (ccl_prog
);
2049 ccl
->size
= vp
->size
;
2050 ccl
->prog
= vp
->contents
;
2051 ccl
->eof_ic
= XINT (vp
->contents
[CCL_HEADER_EOF
]);
2052 ccl
->buf_magnification
= XINT (vp
->contents
[CCL_HEADER_BUF_MAG
]);
2054 ccl
->ic
= CCL_HEADER_MAIN
;
2055 for (i
= 0; i
< 8; i
++)
2057 ccl
->last_block
= 0;
2058 ccl
->private_state
= 0;
2061 ccl
->eol_type
= CODING_EOL_LF
;
2062 ccl
->suppress_error
= 0;
2063 ccl
->eight_bit_control
= 0;
2067 DEFUN ("ccl-program-p", Fccl_program_p
, Sccl_program_p
, 1, 1, 0,
2068 doc
: /* Return t if OBJECT is a CCL program name or a compiled CCL program code.
2069 See the documentation of `define-ccl-program' for the detail of CCL program. */)
2075 if (VECTORP (object
))
2077 val
= resolve_symbol_ccl_program (object
);
2078 return (VECTORP (val
) ? Qt
: Qnil
);
2080 if (!SYMBOLP (object
))
2083 val
= Fget (object
, Qccl_program_idx
);
2084 return ((! NATNUMP (val
)
2085 || XINT (val
) >= ASIZE (Vccl_program_table
))
2089 DEFUN ("ccl-execute", Fccl_execute
, Sccl_execute
, 2, 2, 0,
2090 doc
: /* Execute CCL-PROGRAM with registers initialized by REGISTERS.
2092 CCL-PROGRAM is a CCL program name (symbol)
2093 or compiled code generated by `ccl-compile' (for backward compatibility.
2094 In the latter case, the execution overhead is bigger than in the former).
2095 No I/O commands should appear in CCL-PROGRAM.
2097 REGISTERS is a vector of [R0 R1 ... R7] where RN is an initial value
2098 for the Nth register.
2100 As side effect, each element of REGISTERS holds the value of
2101 the corresponding register after the execution.
2103 See the documentation of `define-ccl-program' for a definition of CCL
2106 Lisp_Object ccl_prog
, reg
;
2108 struct ccl_program ccl
;
2111 if (setup_ccl_program (&ccl
, ccl_prog
) < 0)
2112 error ("Invalid CCL program");
2115 if (ASIZE (reg
) != 8)
2116 error ("Length of vector REGISTERS is not 8");
2118 for (i
= 0; i
< 8; i
++)
2119 ccl
.reg
[i
] = (INTEGERP (AREF (reg
, i
))
2120 ? XINT (AREF (reg
, i
))
2123 ccl_driver (&ccl
, (unsigned char *)0, (unsigned char *)0, 0, 0, (int *)0);
2125 if (ccl
.status
!= CCL_STAT_SUCCESS
)
2126 error ("Error in CCL program at %dth code", ccl
.ic
);
2128 for (i
= 0; i
< 8; i
++)
2129 XSETINT (AREF (reg
, i
), ccl
.reg
[i
]);
2133 DEFUN ("ccl-execute-on-string", Fccl_execute_on_string
, Sccl_execute_on_string
,
2135 doc
: /* Execute CCL-PROGRAM with initial STATUS on STRING.
2137 CCL-PROGRAM is a symbol registered by register-ccl-program,
2138 or a compiled code generated by `ccl-compile' (for backward compatibility,
2139 in this case, the execution is slower).
2141 Read buffer is set to STRING, and write buffer is allocated automatically.
2143 STATUS is a vector of [R0 R1 ... R7 IC], where
2144 R0..R7 are initial values of corresponding registers,
2145 IC is the instruction counter specifying from where to start the program.
2146 If R0..R7 are nil, they are initialized to 0.
2147 If IC is nil, it is initialized to head of the CCL program.
2149 If optional 4th arg CONTINUE is non-nil, keep IC on read operation
2150 when read buffer is exausted, else, IC is always set to the end of
2151 CCL-PROGRAM on exit.
2153 It returns the contents of write buffer as a string,
2154 and as side effect, STATUS is updated.
2155 If the optional 5th arg UNIBYTE-P is non-nil, the returned string
2156 is a unibyte string. By default it is a multibyte string.
2158 See the documentation of `define-ccl-program' for the detail of CCL program. */)
2159 (ccl_prog
, status
, str
, contin
, unibyte_p
)
2160 Lisp_Object ccl_prog
, status
, str
, contin
, unibyte_p
;
2163 struct ccl_program ccl
;
2167 struct gcpro gcpro1
, gcpro2
;
2169 if (setup_ccl_program (&ccl
, ccl_prog
) < 0)
2170 error ("Invalid CCL program");
2172 CHECK_VECTOR (status
);
2173 if (ASIZE (status
) != 9)
2174 error ("Length of vector STATUS is not 9");
2177 GCPRO2 (status
, str
);
2179 for (i
= 0; i
< 8; i
++)
2181 if (NILP (AREF (status
, i
)))
2182 XSETINT (AREF (status
, i
), 0);
2183 if (INTEGERP (AREF (status
, i
)))
2184 ccl
.reg
[i
] = XINT (AREF (status
, i
));
2186 if (INTEGERP (AREF (status
, i
)))
2188 i
= XFASTINT (AREF (status
, 8));
2189 if (ccl
.ic
< i
&& i
< ccl
.size
)
2192 outbufsize
= SBYTES (str
) * ccl
.buf_magnification
+ 256;
2193 outbuf
= (char *) xmalloc (outbufsize
);
2194 ccl
.last_block
= NILP (contin
);
2195 ccl
.multibyte
= STRING_MULTIBYTE (str
);
2196 produced
= ccl_driver (&ccl
, SDATA (str
), outbuf
,
2197 SBYTES (str
), outbufsize
, (int *) 0);
2198 for (i
= 0; i
< 8; i
++)
2199 XSET (AREF (status
, i
), Lisp_Int
, ccl
.reg
[i
]);
2200 XSETINT (AREF (status
, 8), ccl
.ic
);
2203 if (NILP (unibyte_p
))
2207 produced
= str_as_multibyte (outbuf
, outbufsize
, produced
, &nchars
);
2208 val
= make_multibyte_string (outbuf
, nchars
, produced
);
2211 val
= make_unibyte_string (outbuf
, produced
);
2214 if (ccl
.status
== CCL_STAT_SUSPEND_BY_DST
)
2215 error ("Output buffer for the CCL programs overflow");
2216 if (ccl
.status
!= CCL_STAT_SUCCESS
2217 && ccl
.status
!= CCL_STAT_SUSPEND_BY_SRC
)
2218 error ("Error in CCL program at %dth code", ccl
.ic
);
2223 DEFUN ("register-ccl-program", Fregister_ccl_program
, Sregister_ccl_program
,
2225 doc
: /* Register CCL program CCL_PROG as NAME in `ccl-program-table'.
2226 CCL_PROG should be a compiled CCL program (vector), or nil.
2227 If it is nil, just reserve NAME as a CCL program name.
2228 Return index number of the registered CCL program. */)
2230 Lisp_Object name
, ccl_prog
;
2232 int len
= ASIZE (Vccl_program_table
);
2234 Lisp_Object resolved
;
2236 CHECK_SYMBOL (name
);
2238 if (!NILP (ccl_prog
))
2240 CHECK_VECTOR (ccl_prog
);
2241 resolved
= resolve_symbol_ccl_program (ccl_prog
);
2242 if (NILP (resolved
))
2243 error ("Error in CCL program");
2244 if (VECTORP (resolved
))
2246 ccl_prog
= resolved
;
2253 for (idx
= 0; idx
< len
; idx
++)
2257 slot
= AREF (Vccl_program_table
, idx
);
2258 if (!VECTORP (slot
))
2259 /* This is the first unsed slot. Register NAME here. */
2262 if (EQ (name
, AREF (slot
, 0)))
2264 /* Update this slot. */
2265 AREF (slot
, 1) = ccl_prog
;
2266 AREF (slot
, 2) = resolved
;
2267 return make_number (idx
);
2273 /* Extend the table. */
2274 Lisp_Object new_table
;
2277 new_table
= Fmake_vector (make_number (len
* 2), Qnil
);
2278 for (j
= 0; j
< len
; j
++)
2280 = AREF (Vccl_program_table
, j
);
2281 Vccl_program_table
= new_table
;
2287 elt
= Fmake_vector (make_number (3), Qnil
);
2288 AREF (elt
, 0) = name
;
2289 AREF (elt
, 1) = ccl_prog
;
2290 AREF (elt
, 2) = resolved
;
2291 AREF (Vccl_program_table
, idx
) = elt
;
2294 Fput (name
, Qccl_program_idx
, make_number (idx
));
2295 return make_number (idx
);
2298 /* Register code conversion map.
2299 A code conversion map consists of numbers, Qt, Qnil, and Qlambda.
2300 The first element is the start code point.
2301 The other elements are mapped numbers.
2302 Symbol t means to map to an original number before mapping.
2303 Symbol nil means that the corresponding element is empty.
2304 Symbol lambda means to terminate mapping here.
2307 DEFUN ("register-code-conversion-map", Fregister_code_conversion_map
,
2308 Sregister_code_conversion_map
,
2310 doc
: /* Register SYMBOL as code conversion map MAP.
2311 Return index number of the registered map. */)
2313 Lisp_Object symbol
, map
;
2315 int len
= ASIZE (Vcode_conversion_map_vector
);
2319 CHECK_SYMBOL (symbol
);
2322 for (i
= 0; i
< len
; i
++)
2324 Lisp_Object slot
= AREF (Vcode_conversion_map_vector
, i
);
2329 if (EQ (symbol
, XCAR (slot
)))
2331 index
= make_number (i
);
2332 XSETCDR (slot
, map
);
2333 Fput (symbol
, Qcode_conversion_map
, map
);
2334 Fput (symbol
, Qcode_conversion_map_id
, index
);
2341 Lisp_Object new_vector
= Fmake_vector (make_number (len
* 2), Qnil
);
2344 for (j
= 0; j
< len
; j
++)
2345 AREF (new_vector
, j
)
2346 = AREF (Vcode_conversion_map_vector
, j
);
2347 Vcode_conversion_map_vector
= new_vector
;
2350 index
= make_number (i
);
2351 Fput (symbol
, Qcode_conversion_map
, map
);
2352 Fput (symbol
, Qcode_conversion_map_id
, index
);
2353 AREF (Vcode_conversion_map_vector
, i
) = Fcons (symbol
, map
);
2361 staticpro (&Vccl_program_table
);
2362 Vccl_program_table
= Fmake_vector (make_number (32), Qnil
);
2364 Qccl_program
= intern ("ccl-program");
2365 staticpro (&Qccl_program
);
2367 Qccl_program_idx
= intern ("ccl-program-idx");
2368 staticpro (&Qccl_program_idx
);
2370 Qcode_conversion_map
= intern ("code-conversion-map");
2371 staticpro (&Qcode_conversion_map
);
2373 Qcode_conversion_map_id
= intern ("code-conversion-map-id");
2374 staticpro (&Qcode_conversion_map_id
);
2376 DEFVAR_LISP ("code-conversion-map-vector", &Vcode_conversion_map_vector
,
2377 doc
: /* Vector of code conversion maps. */);
2378 Vcode_conversion_map_vector
= Fmake_vector (make_number (16), Qnil
);
2380 DEFVAR_LISP ("font-ccl-encoder-alist", &Vfont_ccl_encoder_alist
,
2381 doc
: /* Alist of fontname patterns vs corresponding CCL program.
2382 Each element looks like (REGEXP . CCL-CODE),
2383 where CCL-CODE is a compiled CCL program.
2384 When a font whose name matches REGEXP is used for displaying a character,
2385 CCL-CODE is executed to calculate the code point in the font
2386 from the charset number and position code(s) of the character which are set
2387 in CCL registers R0, R1, and R2 before the execution.
2388 The code point in the font is set in CCL registers R1 and R2
2389 when the execution terminated.
2390 If the font is single-byte font, the register R2 is not used. */);
2391 Vfont_ccl_encoder_alist
= Qnil
;
2393 DEFVAR_LISP ("translation-hash-table-vector", &Vtranslation_hash_table_vector
,
2394 doc
: /* Vector containing all translation hash tables ever defined.
2395 Comprises pairs (SYMBOL . TABLE) where SYMBOL and TABLE were set up by calls
2396 to `define-translation-hash-table'. The vector is indexed by the table id
2398 Vtranslation_hash_table_vector
= Qnil
;
2400 defsubr (&Sccl_program_p
);
2401 defsubr (&Sccl_execute
);
2402 defsubr (&Sccl_execute_on_string
);
2403 defsubr (&Sregister_ccl_program
);
2404 defsubr (&Sregister_code_conversion_map
);
2407 /* arch-tag: bb9a37be-68ce-4576-8d3d-15d750e4a860
2408 (do not change this comment) */