1 ;;; ccl.el --- CCL (Code Conversion Language) compiler
3 ;; Copyright (C) 1997-1998, 2001-2015 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 ;; 2005, 2006, 2007, 2008, 2009, 2010, 2011
6 ;; National Institute of Advanced Industrial Science and Technology (AIST)
7 ;; Registration Number H14PRO021
9 ;; Keywords: CCL, mule, multilingual, character set, coding-system
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;; CCL (Code Conversion Language) is a simple programming language to
29 ;; be used for various kind of code conversion. A CCL program is
30 ;; compiled to CCL code (vector of integers) and executed by the CCL
31 ;; interpreter in Emacs.
33 ;; CCL is used for code conversion at process I/O and file I/O for
34 ;; non-standard coding-systems. In addition, it is used for
35 ;; calculating code points of X fonts from character codes.
36 ;; However, since CCL is designed as a powerful programming language,
37 ;; it can be used for more generic calculation. For instance,
38 ;; combination of three or more arithmetic operations can be
39 ;; calculated faster than in Emacs Lisp.
41 ;; The syntax and semantics of CCL programs are described in the
42 ;; documentation of `define-ccl-program'.
48 ;;; "CCL (Code Conversion Language) compiler."
52 (defconst ccl-command-table
53 [if branch loop break repeat write-repeat write-read-repeat
54 read read-if read-branch write call end
55 read-multibyte-character write-multibyte-character
57 iterate-multiple-map map-multiple map-single lookup-integer
59 "Vector of CCL commands (symbols).")
61 ;; Put a property to each symbol of CCL commands for the compiler.
62 (let (op (i 0) (len (length ccl-command-table
)))
64 (setq op
(aref ccl-command-table i
))
65 (put op
'ccl-compile-function
(intern (format "ccl-compile-%s" op
)))
68 (defconst ccl-code-table
76 write-register-read-jump
93 set-assign-expr-register
97 jump-cond-expr-register
98 read-jump-cond-expr-const
99 read-jump-cond-expr-register
102 "Vector of CCL compiled codes (symbols).")
104 (defconst ccl-extended-code-table
105 [read-multibyte-character
106 write-multibyte-character
108 translate-character-const-tbl
109 nil nil nil nil nil nil nil nil nil nil nil nil
; 0x04-0x0f
114 lookup-char-const-tbl
116 "Vector of CCL extended compiled codes (symbols).")
118 ;; Put a property to each symbol of CCL codes for the disassembler.
119 (let (code (i 0) (len (length ccl-code-table
)))
121 (setq code
(aref ccl-code-table i
))
122 (put code
'ccl-code i
)
123 (put code
'ccl-dump-function
(intern (format "ccl-dump-%s" code
)))
126 (let (code (i 0) (len (length ccl-extended-code-table
)))
128 (setq code
(aref ccl-extended-code-table i
))
131 (put code
'ccl-ex-code i
)
132 (put code
'ccl-dump-function
(intern (format "ccl-dump-%s" code
)))))
135 (defconst ccl-jump-code-list
136 '(jump jump-cond write-register-jump write-register-read-jump
137 write-const-jump write-const-read-jump write-string-jump
138 write-array-read-jump read-jump
))
140 ;; Put a property `jump-flag' to each CCL code which execute jump in
142 (let ((l ccl-jump-code-list
))
144 (put (car l
) 'jump-flag t
)
147 (defconst ccl-register-table
148 [r0 r1 r2 r3 r4 r5 r6 r7
]
149 "Vector of CCL registers (symbols).")
151 ;; Put a property to indicate register number to each symbol of CCL.
153 (let (reg (i 0) (len (length ccl-register-table
)))
155 (setq reg
(aref ccl-register-table i
))
156 (put reg
'ccl-register-number i
)
159 (defconst ccl-arith-table
160 [+ -
* / %
& | ^
<< >> <8 >8 // nil nil nil
161 < > == <= >= != de-sjis en-sjis
]
162 "Vector of CCL arithmetic/logical operators (symbols).")
164 ;; Put a property to each symbol of CCL operators for the compiler.
165 (let (arith (i 0) (len (length ccl-arith-table
)))
167 (setq arith
(aref ccl-arith-table i
))
168 (if arith
(put arith
'ccl-arith-code i
))
171 (defconst ccl-assign-arith-table
172 [+= -
= *= /= %
= &= |
= ^
= <<= >>= <8= >8= //=]
173 "Vector of CCL assignment operators (symbols).")
175 ;; Put a property to each symbol of CCL assignment operators for the compiler.
176 (let (arith (i 0) (len (length ccl-assign-arith-table
)))
178 (setq arith
(aref ccl-assign-arith-table i
))
179 (put arith
'ccl-self-arith-code i
)
182 (defvar ccl-program-vector nil
183 "Working vector of CCL codes produced by CCL compiler.")
184 (defvar ccl-current-ic
0
185 "The current index for `ccl-program-vector'.")
187 (defun ccl-embed-data (data &optional ic
)
188 "Embed integer DATA in `ccl-program-vector' at `ccl-current-ic' and
189 increment it. If IC is specified, embed DATA at IC."
191 (aset ccl-program-vector ic data
)
192 (let ((len (length ccl-program-vector
)))
193 (if (>= ccl-current-ic len
)
194 (let ((new (make-vector (* len
2) nil
)))
197 (aset new len
(aref ccl-program-vector len
)))
198 (setq ccl-program-vector new
))))
199 (aset ccl-program-vector ccl-current-ic data
)
200 (setq ccl-current-ic
(1+ ccl-current-ic
))))
202 (defun ccl-embed-symbol (symbol prop
)
203 "Embed pair of SYMBOL and PROP where (get SYMBOL PROP) should give
204 proper index number for SYMBOL. PROP should be
205 `translation-table-id', `translation-hash-table-id'
206 `code-conversion-map-id', or `ccl-program-idx'."
207 (ccl-embed-data (cons symbol prop
)))
209 (defun ccl-embed-string (len str
)
210 "Embed string STR of length LEN in `ccl-program-vector' at
213 (error "CCL: String too long: %d" len
))
214 (if (> (string-bytes str
) len
)
216 (ccl-embed-data (logior #x1000000
(aref str i
))))
219 (ccl-embed-data (logior (ash (aref str i
) 16)
221 (ash (aref str
(1+ i
)) 8)
228 (defun ccl-embed-current-address (ic)
229 "Embed a relative jump address to `ccl-current-ic' in
230 `ccl-program-vector' at IC without altering the other bit field."
231 (let ((relative (- ccl-current-ic
(1+ ic
))))
232 (aset ccl-program-vector ic
233 (logior (aref ccl-program-vector ic
) (ash relative
8)))))
235 (defun ccl-embed-code (op reg data
&optional reg2
)
236 "Embed CCL code for the operation OP and arguments REG and DATA in
237 `ccl-program-vector' at `ccl-current-ic' in the following format.
238 |----------------- integer (28-bit) ------------------|
239 |------------ 20-bit ------------|- 3-bit --|- 5-bit -|
240 |------------- DATA -------------|-- REG ---|-- OP ---|
241 If REG2 is specified, embed a code in the following format.
242 |------- 17-bit ------|- 3-bit --|- 3-bit --|- 5-bit -|
243 |-------- DATA -------|-- REG2 --|-- REG ---|-- OP ---|
245 If REG is a CCL register symbol (e.g. r0, r1...), the register
246 number is embedded. If OP is one of unconditional jumps, DATA is
247 changed to a relative jump address."
248 (if (and (> data
0) (get op
'jump-flag
))
249 ;; DATA is an absolute jump address. Make it relative to the
250 ;; next of jump code.
251 (setq data
(- data
(1+ ccl-current-ic
))))
252 (let ((code (logior (get op
'ccl-code
)
254 (if (symbolp reg
) (get reg
'ccl-register-number
) reg
) 5)
256 (logior (ash (get reg2
'ccl-register-number
) 8)
259 (ccl-embed-data code
)))
261 (defun ccl-embed-extended-command (ex-op reg reg2 reg3
)
262 "extended ccl command format
263 |- 14-bit -|- 3-bit --|- 3-bit --|- 3-bit --|- 5-bit -|
264 |- EX-OP --|-- REG3 --|-- REG2 --|-- REG ---|-- OP ---|"
265 (let ((data (logior (ash (get ex-op
'ccl-ex-code
) 3)
267 (get reg3
'ccl-register-number
)
269 (ccl-embed-code 'ex-cmd reg data reg2
)))
271 (defun ccl-increment-ic (inc)
272 "Just advance `ccl-current-ic' by INC."
273 (setq ccl-current-ic
(+ ccl-current-ic inc
)))
275 (defvar ccl-loop-head nil
276 "If non-nil, index of the start of the current loop.")
277 (defvar ccl-breaks nil
278 "If non-nil, list of absolute addresses of the breaking points of
282 (defun ccl-compile (ccl-program)
283 "Return the compiled code of CCL-PROGRAM as a vector of integers."
284 (unless (and (consp ccl-program
)
285 (integerp (car ccl-program
))
286 (listp (car (cdr ccl-program
))))
287 (error "CCL: Invalid CCL program: %s" ccl-program
))
288 (if (null (vectorp ccl-program-vector
))
289 (setq ccl-program-vector
(make-vector 8192 0)))
290 (setq ccl-loop-head nil ccl-breaks nil
)
291 (setq ccl-current-ic
0)
293 ;; The first element is the buffer magnification.
294 (ccl-embed-data (car ccl-program
))
296 ;; The second element is the address of the start CCL code for
297 ;; processing end of input buffer (we call it eof-processor). We
301 ;; Compile the main body of the CCL program.
302 (ccl-compile-1 (car (cdr ccl-program
)))
304 ;; Embed the address of eof-processor.
305 (ccl-embed-data ccl-current-ic
1)
307 ;; Then compile eof-processor.
308 (if (nth 2 ccl-program
)
309 (ccl-compile-1 (nth 2 ccl-program
)))
311 ;; At last, embed termination code.
312 (ccl-embed-code 'end
0 0)
314 (let ((vec (make-vector ccl-current-ic
0))
316 (while (< i ccl-current-ic
)
317 (aset vec i
(aref ccl-program-vector i
))
321 (defun ccl-syntax-error (cmd)
322 "Signal syntax error."
323 (error "CCL: Syntax error: %s" cmd
))
325 (defun ccl-check-register (arg cmd
)
326 "Check if ARG is a valid CCL register."
327 (if (get arg
'ccl-register-number
)
329 (error "CCL: Invalid register %s in %s" arg cmd
)))
331 (defun ccl-check-compile-function (arg cmd
)
332 "Check if ARG is a valid CCL command."
333 (or (get arg
'ccl-compile-function
)
334 (error "CCL: Invalid command: %s" cmd
)))
336 ;; In the following code, most ccl-compile-XXXX functions return t if
337 ;; they end with unconditional jump, else return nil.
339 (defun ccl-compile-1 (ccl-block)
340 "Compile CCL-BLOCK (see the syntax above)."
341 (let (unconditional-jump
343 (if (or (integerp ccl-block
)
345 (and ccl-block
(symbolp (car ccl-block
))))
346 ;; This block consists of single statement.
347 (setq ccl-block
(list ccl-block
)))
349 ;; Now CCL-BLOCK is a list of statements. Compile them one by
352 (setq cmd
(car ccl-block
))
353 (setq unconditional-jump
354 (cond ((integerp cmd
)
355 ;; SET statement for the register 0.
356 (ccl-compile-set (list 'r0
'= cmd
)))
359 ;; WRITE statement of string argument.
360 (ccl-compile-write-string cmd
))
363 ;; The other statements.
364 (cond ((eq (nth 1 cmd
) '=)
365 ;; SET statement of the form `(REG = EXPRESSION)'.
366 (ccl-compile-set cmd
))
368 ((and (symbolp (nth 1 cmd
))
369 (get (nth 1 cmd
) 'ccl-self-arith-code
))
370 ;; SET statement with an assignment operation.
371 (ccl-compile-self-set cmd
))
374 (funcall (ccl-check-compile-function (car cmd
) cmd
)
378 (ccl-syntax-error cmd
))))
379 (setq ccl-block
(cdr ccl-block
)))
382 (defconst ccl-max-short-const
(ash 1 19))
383 (defconst ccl-min-short-const
(ash -
1 19))
385 (defun ccl-compile-set (cmd)
386 "Compile SET statement."
387 (let ((rrr (ccl-check-register (car cmd
) cmd
))
390 ;; CMD has the form `(RRR = (XXX OP YYY))'.
391 (ccl-compile-expression rrr right
))
394 ;; CMD has the form `(RRR = integer)'.
395 (if (and (<= right ccl-max-short-const
)
396 (>= right ccl-min-short-const
))
397 (ccl-embed-code 'set-short-const rrr right
)
398 (ccl-embed-code 'set-const rrr
0)
399 (ccl-embed-data right
)))
402 ;; CMD has the form `(RRR = rrr [ array ])'.
403 (ccl-check-register right cmd
)
404 (let ((ary (nth 3 cmd
)))
406 (let ((i 0) (len (length ary
)))
407 (ccl-embed-code 'set-array rrr len right
)
409 (ccl-embed-data (aref ary i
))
411 (ccl-embed-code 'set-register rrr
0 right
))))))
414 (defun ccl-compile-self-set (cmd)
415 "Compile SET statement with ASSIGNMENT_OPERATOR."
416 (let ((rrr (ccl-check-register (car cmd
) cmd
))
419 ;; CMD has the form `(RRR ASSIGN_OP (XXX OP YYY))', compile
420 ;; the right hand part as `(r7 = (XXX OP YYY))' (note: the
421 ;; register 7 can be used for storing temporary value).
423 (ccl-compile-expression 'r7 right
)
425 ;; Now CMD has the form `(RRR ASSIGN_OP ARG)'. Compile it as
426 ;; `(RRR = (RRR OP ARG))'.
427 (ccl-compile-expression
429 (list rrr
(intern (substring (symbol-name (nth 1 cmd
)) 0 -
1)) right
)))
432 (defun ccl-compile-expression (rrr expr
)
433 "Compile SET statement of the form `(RRR = EXPR)'."
434 (let ((left (car expr
))
435 (op (get (nth 1 expr
) 'ccl-arith-code
))
436 (right (nth 2 expr
)))
439 ;; EXPR has the form `((EXPR2 OP2 ARG) OP RIGHT)'. Compile
440 ;; the first term as `(r7 = (EXPR2 OP2 ARG)).'
441 (ccl-compile-expression 'r7 left
)
444 ;; Now EXPR has the form (LEFT OP RIGHT).
445 (if (and (eq rrr left
)
446 (< op
(length ccl-assign-arith-table
)))
447 ;; Compile this SET statement as `(RRR OP= RIGHT)'.
450 (ccl-embed-code 'set-assign-expr-const rrr
(ash op
3) 'r0
)
451 (ccl-embed-data right
))
452 (ccl-check-register right expr
)
453 (ccl-embed-code 'set-assign-expr-register rrr
(ash op
3) right
))
455 ;; Compile this SET statement as `(RRR = (LEFT OP RIGHT))'.
458 (ccl-embed-code 'set-expr-const rrr
(ash op
3) left
)
459 (ccl-embed-data right
))
460 (ccl-check-register right expr
)
461 (ccl-embed-code 'set-expr-register
463 (logior (ash op
3) (get right
'ccl-register-number
))
466 (defun ccl-compile-write-string (str)
467 "Compile WRITE statement with string argument."
468 (let ((len (length str
)))
469 (ccl-embed-code 'write-const-string
1 len
)
470 (ccl-embed-string len str
))
473 (defun ccl-compile-if (cmd &optional read-flag
)
474 "Compile IF statement of the form `(if CONDITION TRUE-PART FALSE-PART)'.
475 If READ-FLAG is non-nil, this statement has the form
476 `(read-if (REG OPERATOR ARG) TRUE-PART FALSE-PART)'."
477 (if (and (/= (length cmd
) 3) (/= (length cmd
) 4))
478 (error "CCL: Invalid number of arguments: %s" cmd
))
479 (let ((condition (nth 1 cmd
))
480 (true-cmds (nth 2 cmd
))
481 (false-cmds (nth 3 cmd
))
484 (if (and (listp condition
)
485 (listp (car condition
)))
486 ;; If CONDITION is a nested expression, the inner expression
487 ;; should be compiled at first as SET statement, i.e.:
488 ;; `(if ((X OP2 Y) OP Z) ...)' is compiled into two statements:
489 ;; `(r7 = (X OP2 Y)) (if (r7 OP Z) ...)'.
491 (ccl-compile-expression 'r7
(car condition
))
492 (setq condition
(cons 'r7
(cdr condition
)))
493 (setq cmd
(cons (car cmd
)
494 (cons condition
(cdr (cdr cmd
)))))))
496 (setq jump-cond-address ccl-current-ic
)
497 ;; Compile CONDITION.
498 (if (symbolp condition
)
499 ;; CONDITION is a register.
501 (ccl-check-register condition cmd
)
502 (ccl-embed-code 'jump-cond condition
0))
503 ;; CONDITION is a simple expression of the form (RRR OP ARG).
504 (let ((rrr (car condition
))
505 (op (get (nth 1 condition
) 'ccl-arith-code
))
506 (arg (nth 2 condition
)))
507 (ccl-check-register rrr cmd
)
509 (error "CCL: invalid operator: %s" (nth 1 condition
)))
512 (ccl-embed-code (if read-flag
'read-jump-cond-expr-const
513 'jump-cond-expr-const
)
516 (ccl-embed-data arg
))
517 (ccl-check-register arg cmd
)
518 (ccl-embed-code (if read-flag
'read-jump-cond-expr-register
519 'jump-cond-expr-register
)
522 (ccl-embed-data (get arg
'ccl-register-number
)))))
524 ;; Compile TRUE-PART.
525 (let ((unconditional-jump (ccl-compile-1 true-cmds
)))
526 (if (null false-cmds
)
527 ;; This is the place to jump to if condition is false.
529 (ccl-embed-current-address jump-cond-address
)
530 (setq unconditional-jump nil
))
531 (let (end-true-part-address)
532 (if (not unconditional-jump
)
534 ;; If TRUE-PART does not end with unconditional jump, we
535 ;; have to jump to the end of FALSE-PART from here.
536 (setq end-true-part-address ccl-current-ic
)
537 (ccl-embed-code 'jump
0 0)))
538 ;; This is the place to jump to if CONDITION is false.
539 (ccl-embed-current-address jump-cond-address
)
540 ;; Compile FALSE-PART.
541 (setq unconditional-jump
542 (and (ccl-compile-1 false-cmds
) unconditional-jump
))
543 (if end-true-part-address
544 ;; This is the place to jump to after the end of TRUE-PART.
545 (ccl-embed-current-address end-true-part-address
))))
546 unconditional-jump
)))
548 (defun ccl-compile-branch (cmd)
549 "Compile BRANCH statement."
550 (if (< (length cmd
) 3)
551 (error "CCL: Invalid number of arguments: %s" cmd
))
552 (ccl-compile-branch-blocks 'branch
553 (ccl-compile-branch-expression (nth 1 cmd
) cmd
)
556 (defun ccl-compile-read-branch (cmd)
557 "Compile READ statement of the form `(read-branch EXPR BLOCK0 BLOCK1 ...)'."
558 (if (< (length cmd
) 3)
559 (error "CCL: Invalid number of arguments: %s" cmd
))
560 (ccl-compile-branch-blocks 'read-branch
561 (ccl-compile-branch-expression (nth 1 cmd
) cmd
)
564 (defun ccl-compile-branch-expression (expr cmd
)
565 "Compile EXPRESSION part of BRANCH statement and return register
566 which holds a value of the expression."
568 ;; EXPR has the form `(EXPR2 OP ARG)'. Compile it as SET
569 ;; statement of the form `(r7 = (EXPR2 OP ARG))'.
571 (ccl-compile-expression 'r7 expr
)
573 (ccl-check-register expr cmd
)))
575 (defun ccl-compile-branch-blocks (code rrr blocks
)
576 "Compile BLOCKs of BRANCH statement. CODE is 'branch or 'read-branch.
577 REG is a register which holds a value of EXPRESSION part. BLOCKs
578 is a list of CCL-BLOCKs."
579 (let ((branches (length blocks
))
581 jump-table-head-address
584 block-unconditional-jump
)
585 (ccl-embed-code code rrr branches
)
586 (setq jump-table-head-address ccl-current-ic
)
587 ;; The size of jump table is the number of blocks plus 1 (for the
588 ;; case RRR is out of range).
589 (ccl-increment-ic (1+ branches
))
590 (setq empty-block-indexes
(list branches
))
591 ;; Compile each block.
594 (if (null (car blocks
))
595 ;; This block is empty.
596 (setq empty-block-indexes
(cons branch-idx empty-block-indexes
)
597 block-unconditional-jump t
)
598 ;; This block is not empty.
599 (ccl-embed-data (- ccl-current-ic jump-table-head-address
)
600 (+ jump-table-head-address branch-idx
))
601 (setq block-unconditional-jump
(ccl-compile-1 (car blocks
)))
602 (if (not block-unconditional-jump
)
604 ;; Jump address of the end of branches are embedded later.
605 ;; For the moment, just remember where to embed them.
606 (setq block-tail-addresses
607 (cons ccl-current-ic block-tail-addresses
))
608 (ccl-embed-code 'jump
0 0))))
609 (setq branch-idx
(1+ branch-idx
))
610 (setq blocks
(cdr blocks
)))
611 (if (not block-unconditional-jump
)
612 ;; We don't need jump code at the end of the last block.
613 (setq block-tail-addresses
(cdr block-tail-addresses
)
614 ccl-current-ic
(1- ccl-current-ic
)))
615 ;; Embed jump address at the tailing jump commands of blocks.
616 (while block-tail-addresses
617 (ccl-embed-current-address (car block-tail-addresses
))
618 (setq block-tail-addresses
(cdr block-tail-addresses
)))
619 ;; For empty blocks, make entries in the jump table point directly here.
620 (while empty-block-indexes
621 (ccl-embed-data (- ccl-current-ic jump-table-head-address
)
622 (+ jump-table-head-address
(car empty-block-indexes
)))
623 (setq empty-block-indexes
(cdr empty-block-indexes
))))
624 ;; Branch command ends by unconditional jump if RRR is out of range.
627 (defun ccl-compile-loop (cmd)
628 "Compile LOOP statement."
629 (if (< (length cmd
) 2)
630 (error "CCL: Invalid number of arguments: %s" cmd
))
631 (let* ((ccl-loop-head ccl-current-ic
)
637 (setq unconditional-jump t
)
639 (setq unconditional-jump
640 (and (ccl-compile-1 (car cmd
)) unconditional-jump
))
641 (setq cmd
(cdr cmd
)))
644 ;; Embed jump address for break statements encountered in
647 (ccl-embed-current-address (car ccl-breaks
))
648 (setq ccl-breaks
(cdr ccl-breaks
))))
651 (defun ccl-compile-break (cmd)
652 "Compile BREAK statement."
653 (if (/= (length cmd
) 1)
654 (error "CCL: Invalid number of arguments: %s" cmd
))
655 (if (null ccl-loop-head
)
656 (error "CCL: No outer loop: %s" cmd
))
657 (setq ccl-breaks
(cons ccl-current-ic ccl-breaks
))
658 (ccl-embed-code 'jump
0 0)
661 (defun ccl-compile-repeat (cmd)
662 "Compile REPEAT statement."
663 (if (/= (length cmd
) 1)
664 (error "CCL: Invalid number of arguments: %s" cmd
))
665 (if (null ccl-loop-head
)
666 (error "CCL: No outer loop: %s" cmd
))
667 (ccl-embed-code 'jump
0 ccl-loop-head
)
670 (defun ccl-compile-write-repeat (cmd)
671 "Compile WRITE-REPEAT statement."
672 (if (/= (length cmd
) 2)
673 (error "CCL: Invalid number of arguments: %s" cmd
))
674 (if (null ccl-loop-head
)
675 (error "CCL: No outer loop: %s" cmd
))
676 (let ((arg (nth 1 cmd
)))
677 (cond ((integerp arg
)
678 (ccl-embed-code 'write-const-jump
0 ccl-loop-head
)
679 (ccl-embed-data arg
))
681 (let ((len (length arg
))
683 (ccl-embed-code 'write-string-jump
0 ccl-loop-head
)
685 (ccl-embed-string len arg
)))
687 (ccl-check-register arg cmd
)
688 (ccl-embed-code 'write-register-jump arg ccl-loop-head
))))
691 (defun ccl-compile-write-read-repeat (cmd)
692 "Compile WRITE-READ-REPEAT statement."
693 (if (or (< (length cmd
) 2) (> (length cmd
) 3))
694 (error "CCL: Invalid number of arguments: %s" cmd
))
695 (if (null ccl-loop-head
)
696 (error "CCL: No outer loop: %s" cmd
))
697 (let ((rrr (ccl-check-register (nth 1 cmd
) cmd
))
700 (ccl-embed-code 'write-register-read-jump rrr ccl-loop-head
))
702 (ccl-embed-code 'write-const-read-jump rrr arg ccl-loop-head
))
704 (let ((len (length arg
))
706 (ccl-embed-code 'write-array-read-jump rrr ccl-loop-head
)
709 (ccl-embed-data (aref arg i
))
712 (error "CCL: Invalid argument %s: %s" arg cmd
)))
713 (ccl-embed-code 'read-jump rrr ccl-loop-head
))
716 (defun ccl-compile-read (cmd)
717 "Compile READ statement."
718 (if (< (length cmd
) 2)
719 (error "CCL: Invalid number of arguments: %s" cmd
))
720 (let* ((args (cdr cmd
))
721 (i (1- (length args
))))
723 (let ((rrr (ccl-check-register (car args
) cmd
)))
724 (ccl-embed-code 'read-register rrr i
)
725 (setq args
(cdr args
) i
(1- i
)))))
728 (defun ccl-compile-read-if (cmd)
729 "Compile READ-IF statement."
730 (ccl-compile-if cmd
'read
))
732 (defun ccl-compile-write (cmd)
733 "Compile WRITE statement."
734 (if (< (length cmd
) 2)
735 (error "CCL: Invalid number of arguments: %s" cmd
))
736 (let ((rrr (nth 1 cmd
)))
737 (cond ((integerp rrr
)
739 (ccl-compile-write-string (string rrr
))
740 (ccl-embed-code 'write-const-string
0 rrr
)))
742 (ccl-compile-write-string rrr
))
743 ((and (symbolp rrr
) (vectorp (nth 2 cmd
)))
744 (ccl-check-register rrr cmd
)
745 ;; CMD has the form `(write REG ARRAY)'.
746 (let* ((arg (nth 2 cmd
))
749 (ccl-embed-code 'write-array rrr len
)
751 (if (not (integerp (aref arg i
)))
752 (error "CCL: Invalid argument %s: %s" arg cmd
))
753 (ccl-embed-data (aref arg i
))
757 ;; CMD has the form `(write REG ...)'.
758 (let* ((args (cdr cmd
))
759 (i (1- (length args
))))
761 (setq rrr
(ccl-check-register (car args
) cmd
))
762 (ccl-embed-code 'write-register rrr i
)
763 (setq args
(cdr args
) i
(1- i
)))))
766 ;; CMD has the form `(write (LEFT OP RIGHT))'.
767 (let ((left (car rrr
))
768 (op (get (nth 1 rrr
) 'ccl-arith-code
))
772 ;; RRR has the form `((EXPR OP2 ARG) OP RIGHT)'.
773 ;; Compile the first term as `(r7 = (EXPR OP2 ARG))'.
774 (ccl-compile-expression 'r7 left
)
776 ;; Now RRR has the form `(ARG OP RIGHT)'.
779 (ccl-embed-code 'write-expr-const
0 (ash op
3) left
)
780 (ccl-embed-data right
))
781 (ccl-check-register right rrr
)
782 (ccl-embed-code 'write-expr-register
0
784 (get right
'ccl-register-number
))
788 (error "CCL: Invalid argument: %s" cmd
))))
791 (defun ccl-compile-call (cmd)
792 "Compile CALL statement."
793 (if (/= (length cmd
) 2)
794 (error "CCL: Invalid number of arguments: %s" cmd
))
795 (if (not (symbolp (nth 1 cmd
)))
796 (error "CCL: Subroutine should be a symbol: %s" cmd
))
797 (ccl-embed-code 'call
1 0)
798 (ccl-embed-symbol (nth 1 cmd
) 'ccl-program-idx
)
801 (defun ccl-compile-end (cmd)
802 "Compile END statement."
803 (if (/= (length cmd
) 1)
804 (error "CCL: Invalid number of arguments: %s" cmd
))
805 (ccl-embed-code 'end
0 0)
808 (defun ccl-compile-read-multibyte-character (cmd)
809 "Compile read-multibyte-character"
810 (if (/= (length cmd
) 3)
811 (error "CCL: Invalid number of arguments: %s" cmd
))
812 (let ((RRR (nth 1 cmd
))
814 (ccl-check-register rrr cmd
)
815 (ccl-check-register RRR cmd
)
816 (ccl-embed-extended-command 'read-multibyte-character rrr RRR
0))
819 (defun ccl-compile-write-multibyte-character (cmd)
820 "Compile write-multibyte-character"
821 (if (/= (length cmd
) 3)
822 (error "CCL: Invalid number of arguments: %s" cmd
))
823 (let ((RRR (nth 1 cmd
))
825 (ccl-check-register rrr cmd
)
826 (ccl-check-register RRR cmd
)
827 (ccl-embed-extended-command 'write-multibyte-character rrr RRR
0))
830 (defun ccl-compile-translate-character (cmd)
831 "Compile translate-character."
832 (if (/= (length cmd
) 4)
833 (error "CCL: Invalid number of arguments: %s" cmd
))
834 (let ((Rrr (nth 1 cmd
))
837 (ccl-check-register rrr cmd
)
838 (ccl-check-register RRR cmd
)
839 (cond ((and (symbolp Rrr
) (not (get Rrr
'ccl-register-number
)))
840 (ccl-embed-extended-command 'translate-character-const-tbl
842 (ccl-embed-symbol Rrr
'translation-table-id
))
844 (ccl-check-register Rrr cmd
)
845 (ccl-embed-extended-command 'translate-character rrr RRR Rrr
))))
848 (defun ccl-compile-lookup-integer (cmd)
849 "Compile lookup-integer."
850 (if (/= (length cmd
) 4)
851 (error "CCL: Invalid number of arguments: %s" cmd
))
852 (let ((Rrr (nth 1 cmd
))
855 (ccl-check-register RRR cmd
)
856 (ccl-check-register rrr cmd
)
857 (cond ((and (symbolp Rrr
) (not (get Rrr
'ccl-register-number
)))
858 (ccl-embed-extended-command 'lookup-int-const-tbl
860 (ccl-embed-symbol Rrr
'translation-hash-table-id
))
862 (error "CCL: non-constant table: %s" cmd
)
864 (ccl-check-register Rrr cmd
)
865 (ccl-embed-extended-command 'lookup-int rrr RRR
0))))
868 (defun ccl-compile-lookup-character (cmd)
869 "Compile lookup-character."
870 (if (/= (length cmd
) 4)
871 (error "CCL: Invalid number of arguments: %s" cmd
))
872 (let ((Rrr (nth 1 cmd
))
875 (ccl-check-register RRR cmd
)
876 (ccl-check-register rrr cmd
)
877 (cond ((and (symbolp Rrr
) (not (get Rrr
'ccl-register-number
)))
878 (ccl-embed-extended-command 'lookup-char-const-tbl
880 (ccl-embed-symbol Rrr
'translation-hash-table-id
))
882 (error "CCL: non-constant table: %s" cmd
)
884 (ccl-check-register Rrr cmd
)
885 (ccl-embed-extended-command 'lookup-char rrr RRR
0))))
888 (defun ccl-compile-iterate-multiple-map (cmd)
889 (ccl-compile-multiple-map-function 'iterate-multiple-map cmd
)
892 (defun ccl-compile-map-multiple (cmd)
893 (if (/= (length cmd
) 4)
894 (error "CCL: Invalid number of arguments: %s" cmd
))
898 (let ((len 0) result add
)
900 (if (consp (car arg
))
901 (setq add
(funcall func
(car arg
) t
)
902 result
(append result add
)
903 add
(+ (- (car add
)) 1))
911 (cons (- len
) result
)
913 (setq arg
(append (list (nth 0 cmd
) (nth 1 cmd
) (nth 2 cmd
))
914 (funcall func
(nth 3 cmd
) nil
)))
915 (ccl-compile-multiple-map-function 'map-multiple arg
))
918 (defun ccl-compile-map-single (cmd)
919 (if (/= (length cmd
) 4)
920 (error "CCL: Invalid number of arguments: %s" cmd
))
921 (let ((RRR (nth 1 cmd
))
925 (ccl-check-register rrr cmd
)
926 (ccl-check-register RRR cmd
)
927 (ccl-embed-extended-command 'map-single rrr RRR
0)
929 (if (get map
'code-conversion-map
)
930 (ccl-embed-symbol map
'code-conversion-map-id
)
931 (error "CCL: Invalid map: %s" map
)))
933 (error "CCL: Invalid type of arguments: %s" cmd
))))
936 (defun ccl-compile-multiple-map-function (command cmd
)
937 (if (< (length cmd
) 4)
938 (error "CCL: Invalid number of arguments: %s" cmd
))
939 (let ((RRR (nth 1 cmd
))
941 (args (nthcdr 3 cmd
))
943 (ccl-check-register rrr cmd
)
944 (ccl-check-register RRR cmd
)
945 (ccl-embed-extended-command command rrr RRR
0)
946 (ccl-embed-data (length args
))
948 (setq map
(car args
))
950 (if (get map
'code-conversion-map
)
951 (ccl-embed-symbol map
'code-conversion-map-id
)
952 (error "CCL: Invalid map: %s" map
)))
954 (ccl-embed-data map
))
956 (error "CCL: Invalid type of arguments: %s" cmd
)))
957 (setq args
(cdr args
)))))
965 (defun ccl-dump (ccl-code)
966 "Disassemble compiled CCL-CODE."
967 (let ((len (length ccl-code
))
968 (buffer-mag (aref ccl-code
0)))
969 (cond ((= buffer-mag
0)
970 (insert "Don't output anything.\n"))
972 (insert "Out-buffer must be as large as in-buffer.\n"))
975 (format "Out-buffer must be %d times bigger than in-buffer.\n"
977 (insert "Main-body:\n")
978 (setq ccl-current-ic
2)
979 (if (> (aref ccl-code
1) 0)
981 (while (< ccl-current-ic
(aref ccl-code
1))
983 (insert "At EOF:\n")))
984 (while (< ccl-current-ic len
)
988 (defun ccl-get-next-code ()
989 "Return a CCL code in `ccl-code' at `ccl-current-ic'."
991 (aref ccl-code ccl-current-ic
)
992 (setq ccl-current-ic
(1+ ccl-current-ic
))))
995 (let* ((code (ccl-get-next-code))
996 (cmd (aref ccl-code-table
(logand code
31)))
997 (rrr (ash (logand code
255) -
5))
999 (insert (format "%5d:[%s] " (1- ccl-current-ic
) cmd
))
1000 (funcall (get cmd
'ccl-dump-function
) rrr cc
)))
1002 (defun ccl-dump-set-register (rrr cc
)
1003 (insert (format "r%d = r%d\n" rrr cc
)))
1005 (defun ccl-dump-set-short-const (rrr cc
)
1006 (insert (format "r%d = %d\n" rrr cc
)))
1008 (defun ccl-dump-set-const (rrr ignore
)
1009 (insert (format "r%d = %d\n" rrr
(ccl-get-next-code))))
1011 (defun ccl-dump-set-array (rrr cc
)
1012 (let ((rrr2 (logand cc
7))
1015 (insert (format "r%d = array[r%d] of length %d\n\t"
1018 (insert (format "%d " (ccl-get-next-code)))
1022 (defun ccl-dump-jump (ignore cc
&optional address
)
1023 (insert (format "jump to %d(" (+ (or address ccl-current-ic
) cc
)))
1026 (insert (format "%d)\n" (1+ cc
))))
1028 (defun ccl-dump-jump-cond (rrr cc
)
1029 (insert (format "if (r%d == 0), " rrr
))
1030 (ccl-dump-jump nil cc
))
1032 (defun ccl-dump-write-register-jump (rrr cc
)
1033 (insert (format "write r%d, " rrr
))
1034 (ccl-dump-jump nil cc
))
1036 (defun ccl-dump-write-register-read-jump (rrr cc
)
1037 (insert (format "write r%d, read r%d, " rrr rrr
))
1038 (ccl-dump-jump nil cc
)
1039 (ccl-get-next-code) ; Skip dummy READ-JUMP
1042 (defun ccl-extract-arith-op (cc)
1043 (aref ccl-arith-table
(ash cc -
6)))
1045 (defun ccl-dump-write-expr-const (ignore cc
)
1046 (insert (format "write (r%d %s %d)\n"
1048 (ccl-extract-arith-op cc
)
1049 (ccl-get-next-code))))
1051 (defun ccl-dump-write-expr-register (ignore cc
)
1052 (insert (format "write (r%d %s r%d)\n"
1054 (ccl-extract-arith-op cc
)
1055 (logand (ash cc -
3) 7))))
1057 (defun ccl-dump-insert-char (cc)
1058 (cond ((= cc ?
\t) (insert " \"^I\""))
1059 ((= cc ?
\n) (insert " \"^J\""))
1060 (t (insert (format " \"%c\"" cc
)))))
1062 (defun ccl-dump-write-const-jump (ignore cc
)
1063 (let ((address ccl-current-ic
))
1064 (insert "write char")
1065 (ccl-dump-insert-char (ccl-get-next-code))
1067 (ccl-dump-jump nil cc address
)))
1069 (defun ccl-dump-write-const-read-jump (rrr cc
)
1070 (let ((address ccl-current-ic
))
1071 (insert "write char")
1072 (ccl-dump-insert-char (ccl-get-next-code))
1073 (insert (format ", read r%d, " rrr
))
1074 (ccl-dump-jump cc address
)
1075 (ccl-get-next-code) ; Skip dummy READ-JUMP
1078 (defun ccl-dump-write-string-jump (ignore cc
)
1079 (let ((address ccl-current-ic
)
1080 (len (ccl-get-next-code))
1084 (let ((code (ccl-get-next-code)))
1085 (insert (ash code -
16))
1086 (if (< (1+ i
) len
) (insert (logand (ash code -
8) 255)))
1087 (if (< (+ i
2) len
) (insert (logand code
255))))
1090 (ccl-dump-jump nil cc address
)))
1092 (defun ccl-dump-write-array-read-jump (rrr cc
)
1093 (let ((address ccl-current-ic
)
1094 (len (ccl-get-next-code))
1096 (insert (format "write array[r%d] of length %d,\n\t" rrr len
))
1098 (ccl-dump-insert-char (ccl-get-next-code))
1100 (insert (format "\n\tthen read r%d, " rrr
))
1101 (ccl-dump-jump nil cc address
)
1102 (ccl-get-next-code) ; Skip dummy READ-JUMP.
1105 (defun ccl-dump-read-jump (rrr cc
)
1106 (insert (format "read r%d, " rrr
))
1107 (ccl-dump-jump nil cc
))
1109 (defun ccl-dump-branch (rrr len
)
1110 (let ((jump-table-head ccl-current-ic
)
1112 (insert (format "jump to array[r%d] of length %d\n\t" rrr len
))
1114 (insert (format "%d " (+ jump-table-head
(ccl-get-next-code))))
1118 (defun ccl-dump-read-register (rrr cc
)
1119 (insert (format "read r%d (%d remaining)\n" rrr cc
)))
1121 (defun ccl-dump-read-branch (rrr len
)
1122 (insert (format "read r%d, " rrr
))
1123 (ccl-dump-branch rrr len
))
1125 (defun ccl-dump-write-register (rrr cc
)
1126 (insert (format "write r%d (%d remaining)\n" rrr cc
)))
1128 (defun ccl-dump-call (ignore cc
)
1129 (let ((subroutine (car (ccl-get-next-code))))
1130 (insert (format "call subroutine `%s'\n" subroutine
))))
1132 (defun ccl-dump-write-const-string (rrr cc
)
1135 (insert "write char")
1136 (ccl-dump-insert-char cc
)
1142 (let ((code (ccl-get-next-code)))
1143 (if (/= (logand code
#x1000000
) 0)
1145 (insert (logand code
#xFFFFFF
))
1147 (insert (format "%c" (lsh code -
16)))
1149 (insert (format "%c" (logand (lsh code -
8) 255))))
1151 (insert (format "%c" (logand code
255))))
1155 (defun ccl-dump-write-array (rrr cc
)
1157 (insert (format "write array[r%d] of length %d\n\t" rrr cc
))
1159 (ccl-dump-insert-char (ccl-get-next-code))
1163 (defun ccl-dump-end (&rest ignore
)
1166 (defun ccl-dump-set-assign-expr-const (rrr cc
)
1167 (insert (format "r%d %s= %d\n"
1169 (ccl-extract-arith-op cc
)
1170 (ccl-get-next-code))))
1172 (defun ccl-dump-set-assign-expr-register (rrr cc
)
1173 (insert (format "r%d %s= r%d\n"
1175 (ccl-extract-arith-op cc
)
1178 (defun ccl-dump-set-expr-const (rrr cc
)
1179 (insert (format "r%d = r%d %s %d\n"
1182 (ccl-extract-arith-op cc
)
1183 (ccl-get-next-code))))
1185 (defun ccl-dump-set-expr-register (rrr cc
)
1186 (insert (format "r%d = r%d %s r%d\n"
1189 (ccl-extract-arith-op cc
)
1190 (logand (ash cc -
3) 7))))
1192 (defun ccl-dump-jump-cond-expr-const (rrr cc
)
1193 (let ((address ccl-current-ic
))
1194 (insert (format "if !(r%d %s %d), "
1196 (aref ccl-arith-table
(ccl-get-next-code))
1197 (ccl-get-next-code)))
1198 (ccl-dump-jump nil cc address
)))
1200 (defun ccl-dump-jump-cond-expr-register (rrr cc
)
1201 (let ((address ccl-current-ic
))
1202 (insert (format "if !(r%d %s r%d), "
1204 (aref ccl-arith-table
(ccl-get-next-code))
1205 (ccl-get-next-code)))
1206 (ccl-dump-jump nil cc address
)))
1208 (defun ccl-dump-read-jump-cond-expr-const (rrr cc
)
1209 (insert (format "read r%d, " rrr
))
1210 (ccl-dump-jump-cond-expr-const rrr cc
))
1212 (defun ccl-dump-read-jump-cond-expr-register (rrr cc
)
1213 (insert (format "read r%d, " rrr
))
1214 (ccl-dump-jump-cond-expr-register rrr cc
))
1216 (defun ccl-dump-binary (ccl-code)
1217 (let ((len (length ccl-code
))
1220 (let ((code (aref ccl-code i
))
1223 (insert (if (= (logand code
(ash 1 j
)) 0) ?
0 ?
1))
1225 (setq code
(logand code
31))
1226 (if (< code
(length ccl-code-table
))
1227 (insert (format ":%s" (aref ccl-code-table code
))))
1231 (defun ccl-dump-ex-cmd (rrr cc
)
1232 (let* ((RRR (logand cc ?\x7
))
1233 (Rrr (logand (ash cc -
3) ?\x7
))
1234 (ex-op (aref ccl-extended-code-table
(logand (ash cc -
6) ?
\x3fff
))))
1235 (insert (format "<%s> " ex-op
))
1236 (funcall (get ex-op
'ccl-dump-function
) rrr RRR Rrr
)))
1238 (defun ccl-dump-read-multibyte-character (rrr RRR Rrr
)
1239 (insert (format "read-multibyte-character r%d r%d\n" RRR rrr
)))
1241 (defun ccl-dump-write-multibyte-character (rrr RRR Rrr
)
1242 (insert (format "write-multibyte-character r%d r%d\n" RRR rrr
)))
1244 (defun ccl-dump-translate-character (rrr RRR Rrr
)
1245 (insert (format "translation table(r%d) r%d r%d\n" Rrr RRR rrr
)))
1247 (defun ccl-dump-translate-character-const-tbl (rrr RRR Rrr
)
1248 (let ((tbl (ccl-get-next-code)))
1249 (insert (format "translation table(%S) r%d r%d\n" tbl RRR rrr
))))
1251 (defun ccl-dump-lookup-int-const-tbl (rrr RRR Rrr
)
1252 (let ((tbl (ccl-get-next-code)))
1253 (insert (format "hash table(%S) r%d r%d\n" tbl RRR rrr
))))
1255 (defun ccl-dump-lookup-char-const-tbl (rrr RRR Rrr
)
1256 (let ((tbl (ccl-get-next-code)))
1257 (insert (format "hash table(%S) r%d r%d\n" tbl RRR rrr
))))
1259 (defun ccl-dump-iterate-multiple-map (rrr RRR Rrr
)
1260 (let ((notbl (ccl-get-next-code))
1262 (insert (format "iterate-multiple-map r%d r%d\n" RRR rrr
))
1263 (insert (format "\tnumber of maps is %d .\n\t [" notbl
))
1265 (setq id
(ccl-get-next-code))
1266 (insert (format "%S" id
))
1270 (defun ccl-dump-map-multiple (rrr RRR Rrr
)
1271 (let ((notbl (ccl-get-next-code))
1273 (insert (format "map-multiple r%d r%d\n" RRR rrr
))
1274 (insert (format "\tnumber of maps and separators is %d\n\t [" notbl
))
1276 (setq id
(ccl-get-next-code))
1279 (insert (format "%S " id
)))
1283 (defun ccl-dump-map-single (rrr RRR Rrr
)
1284 (let ((id (ccl-get-next-code)))
1285 (insert (format "map-single r%d r%d map(%S)\n" RRR rrr id
))))
1288 ;; CCL emulation staffs
1290 ;; Not yet implemented.
1292 ;; Auto-loaded functions.
1295 (defmacro declare-ccl-program
(name &optional vector
)
1296 "Declare NAME as a name of CCL program.
1298 This macro exists for backward compatibility. In the old version of
1299 Emacs, to compile a CCL program which calls another CCL program not
1300 yet defined, it must be declared as a CCL program in advance. But,
1301 now CCL program names are resolved not at compile time but before
1304 Optional arg VECTOR is a compiled CCL code of the CCL program."
1305 `(put ',name
'ccl-program-idx
(register-ccl-program ',name
,vector
)))
1308 (defmacro define-ccl-program
(name ccl-program
&optional doc
)
1309 "Set NAME the compiled code of CCL-PROGRAM.
1311 CCL-PROGRAM has this form:
1312 (BUFFER_MAGNIFICATION
1316 BUFFER_MAGNIFICATION is an integer value specifying the approximate
1317 output buffer magnification size compared with the bytes of input data
1318 text. It is assured that the actual output buffer has 256 bytes
1319 more than the size calculated by BUFFER_MAGNIFICATION.
1320 If the value is zero, the CCL program can't execute `read' and
1323 CCL_MAIN_CODE and CCL_EOF_CODE are CCL program codes. CCL_MAIN_CODE
1324 executed at first. If there's no more input data when `read' command
1325 is executed in CCL_MAIN_CODE, CCL_EOF_CODE is executed. If
1326 CCL_MAIN_CODE is terminated, CCL_EOF_CODE is not executed.
1328 Here's the syntax of CCL program code in BNF notation. The lines
1329 starting by two semicolons (and optional leading spaces) describe the
1332 CCL_MAIN_CODE := CCL_BLOCK
1334 CCL_EOF_CODE := CCL_BLOCK
1336 CCL_BLOCK := STATEMENT | (STATEMENT [STATEMENT ...])
1339 SET | IF | BRANCH | LOOP | REPEAT | BREAK | READ | WRITE | CALL
1340 | TRANSLATE | MAP | LOOKUP | END
1342 SET := (REG = EXPRESSION)
1343 | (REG ASSIGNMENT_OPERATOR EXPRESSION)
1344 ;; The following form is the same as (r0 = integer).
1347 EXPRESSION := ARG | (EXPRESSION OPERATOR ARG)
1349 ;; Evaluate EXPRESSION. If the result is nonzero, execute
1350 ;; CCL_BLOCK_0. Otherwise, execute CCL_BLOCK_1.
1351 IF := (if EXPRESSION CCL_BLOCK_0 CCL_BLOCK_1)
1353 ;; Evaluate EXPRESSION. Provided that the result is N, execute
1355 BRANCH := (branch EXPRESSION CCL_BLOCK_0 [CCL_BLOCK_1 ...])
1357 ;; Execute STATEMENTs until (break) or (end) is executed.
1358 LOOP := (loop STATEMENT [STATEMENT ...])
1360 ;; Terminate the most inner loop.
1364 ;; Jump to the head of the most inner loop.
1366 ;; Same as: ((write [REG | integer | string])
1368 | (write-repeat [REG | integer | string])
1369 ;; Same as: ((write REG [ARRAY])
1372 | (write-read-repeat REG [ARRAY])
1373 ;; Same as: ((write integer)
1376 | (write-read-repeat REG integer)
1378 READ := ;; Set REG_0 to a byte read from the input text, set REG_1
1379 ;; to the next byte read, and so on.
1380 (read REG_0 [REG_1 ...])
1381 ;; Same as: ((read REG)
1382 ;; (if (REG OPERATOR ARG) CCL_BLOCK_0 CCL_BLOCK_1))
1383 | (read-if (REG OPERATOR ARG) CCL_BLOCK_0 CCL_BLOCK_1)
1384 ;; Same as: ((read REG)
1385 ;; (branch REG CCL_BLOCK_0 [CCL_BLOCK_1 ...]))
1386 | (read-branch REG CCL_BLOCK_0 [CCL_BLOCK_1 ...])
1387 ;; Read a character from the input text while parsing
1388 ;; multibyte representation, set REG_0 to the charset ID of
1389 ;; the character, set REG_1 to the code point of the
1390 ;; character. If the dimension of charset is two, set REG_1
1391 ;; to ((CODE0 << 7) | CODE1), where CODE0 is the first code
1392 ;; point and CODE1 is the second code point.
1393 | (read-multibyte-character REG_0 REG_1)
1396 ;; Write REG_0, REG_1, ... to the output buffer. If REG_N is
1397 ;; a multibyte character, write the corresponding multibyte
1399 (write REG_0 [REG_1 ...])
1400 ;; Same as: ((r7 = EXPRESSION)
1402 | (write EXPRESSION)
1403 ;; Write the value of `integer' to the output buffer. If it
1404 ;; is a multibyte character, write the corresponding multibyte
1407 ;; Write the byte sequence of `string' as is to the output
1410 ;; Same as: (write string)
1412 ;; Provided that the value of REG is N, write Nth element of
1413 ;; ARRAY to the output buffer. If it is a multibyte
1414 ;; character, write the corresponding multibyte
1417 ;; Write a multibyte representation of a character whose
1418 ;; charset ID is REG_0 and code point is REG_1. If the
1419 ;; dimension of the charset is two, REG_1 should be ((CODE0 <<
1420 ;; 7) | CODE1), where CODE0 is the first code point and CODE1
1421 ;; is the second code point of the character.
1422 | (write-multibyte-character REG_0 REG_1)
1424 ;; Call CCL program whose name is ccl-program-name.
1425 CALL := (call ccl-program-name)
1427 ;; Terminate the CCL program.
1430 ;; CCL registers that can contain any integer value. As r7 is also
1431 ;; used by CCL interpreter, its value is changed unexpectedly.
1432 REG := r0 | r1 | r2 | r3 | r4 | r5 | r6 | r7
1434 ARG := REG | integer
1437 ;; Normal arithmetic operators (same meaning as C code).
1440 ;; Bitwise operators (same meaning as C code)
1443 ;; Shifting operators (same meaning as C code)
1446 ;; (REG = ARG_0 <8 ARG_1) means:
1447 ;; (REG = ((ARG_0 << 8) | ARG_1))
1450 ;; (REG = ARG_0 >8 ARG_1) means:
1451 ;; ((REG = (ARG_0 >> 8))
1452 ;; (r7 = (ARG_0 & 255)))
1455 ;; (REG = ARG_0 // ARG_1) means:
1456 ;; ((REG = (ARG_0 / ARG_1))
1457 ;; (r7 = (ARG_0 % ARG_1)))
1460 ;; Normal comparing operators (same meaning as C code)
1461 | < | > | == | <= | >= | !=
1463 ;; If ARG_0 and ARG_1 are higher and lower byte of Shift-JIS
1464 ;; code, and CHAR is the corresponding JISX0208 character,
1465 ;; (REG = ARG_0 de-sjis ARG_1) means:
1468 ;; where CODE0 is the first code point of CHAR, CODE1 is the
1469 ;; second code point of CHAR.
1472 ;; If ARG_0 and ARG_1 are the first and second code point of
1473 ;; JISX0208 character CHAR, and SJIS is the corresponding
1475 ;; (REG = ARG_0 en-sjis ARG_1) means:
1478 ;; where HIGH is the higher byte of SJIS, LOW is the lower
1482 ASSIGNMENT_OPERATOR :=
1483 ;; Same meaning as C code
1484 += | -= | *= | /= | %= | &= | `|=' | ^= | <<= | >>=
1486 ;; (REG <8= ARG) is the same as:
1491 ;; (REG >8= ARG) is the same as:
1492 ;; ((r7 = (REG & 255))
1495 ;; (REG //= ARG) is the same as:
1496 ;; ((r7 = (REG % ARG))
1500 ARRAY := `[' integer ... `]'
1504 (translate-character REG(table) REG(charset) REG(codepoint))
1505 | (translate-character SYMBOL REG(charset) REG(codepoint))
1506 ;; SYMBOL must refer to a table defined by `define-translation-table'.
1508 (lookup-character SYMBOL REG(charset) REG(codepoint))
1509 | (lookup-integer SYMBOL REG(integer))
1510 ;; SYMBOL refers to a table defined by `define-translation-hash-table'.
1512 (iterate-multiple-map REG REG MAP-IDs)
1513 | (map-multiple REG REG (MAP-SET))
1514 | (map-single REG REG MAP-ID)
1515 MAP-IDs := MAP-ID ...
1516 MAP-SET := MAP-IDs | (MAP-IDs) MAP-SET
1519 (declare (doc-string 3))
1520 `(let ((prog ,(unwind-protect
1522 ;; To make ,(charset-id CHARSET) works well.
1523 (fset 'charset-id
'charset-id-internal
)
1524 (ccl-compile (eval ccl-program
)))
1525 (fmakunbound 'charset-id
))))
1526 (defconst ,name prog
,doc
)
1527 (put ',name
'ccl-program-idx
(register-ccl-program ',name prog
))
1531 (defmacro check-ccl-program
(ccl-program &optional name
)
1532 "Check validity of CCL-PROGRAM.
1533 If CCL-PROGRAM is a symbol denoting a CCL program, return
1534 CCL-PROGRAM, else return nil.
1535 If CCL-PROGRAM is a vector and optional arg NAME (symbol) is supplied,
1536 register CCL-PROGRAM by name NAME, and return NAME."
1537 `(if (ccl-program-p ,ccl-program
)
1538 (if (vectorp ,ccl-program
)
1540 (register-ccl-program ,name
,ccl-program
)
1545 (defun ccl-execute-with-args (ccl-prog &rest args
)
1546 "Execute CCL-PROGRAM with registers initialized by the remaining args.
1547 The return value is a vector of resulting CCL registers.
1549 See the documentation of `define-ccl-program' for the detail of CCL program."
1550 (let ((reg (make-vector 8 0))
1552 (while (and args
(< i
8))
1553 (if (not (integerp (car args
)))
1554 (error "Arguments should be integer"))
1555 (aset reg i
(car args
))
1556 (setq args
(cdr args
) i
(1+ i
)))
1557 (ccl-execute ccl-prog reg
)
1562 ;;; ccl.el ends here