File: eval-ast.lisp

package info (click to toggle)
cafeobj 1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid
  • size: 19,900 kB
  • sloc: lisp: 85,055; sh: 659; makefile: 437; perl: 147
file content (947 lines) | stat: -rw-r--r-- 41,840 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
;;;-*- Mode:LISP; Package:CHAOS; Base:10; Syntax:Common-lisp -*-
;;;
;;; Copyright (c) 2000-2018, Toshimi Sawada. All rights reserved.
;;;
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
;;; are met:
;;;
;;;   * Redistributions of source code must retain the above copyright
;;;     notice, this list of conditions and the following disclaimer.
;;;
;;;   * Redistributions in binary form must reproduce the above
;;;     copyright notice, this list of conditions and the following
;;;     disclaimer in the documentation and/or other materials
;;;     provided with the distribution.
;;;
;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;;;
(in-package :chaos)
#|==============================================================================
                                 System: CHAOS
                                  Module: eval
                              File: eval-ast1.lisp
==============================================================================|#
#-:chaos-debug
(declaim (optimize (speed 3) (safety 0) #-GCL (debug 0)))
#+:chaos-debug
(declaim (optimize (speed 1) (safety 3) #-GCL (debug 3)))

;;; ** DESCRIPTION =============================================================
;;; Evaluators of ASTs of basic Chaos language constructs.
;;;

;;; ** Common interface:********************************************************
;;;  input  : abstract syntax tree.
;;;  output : corresponding semantic object, or nil will be returned if the
;;;           evaluation  process failed.
;;; ****************************************************************************

;;;=============================================================================
;;;                    SORT, SUBSORT, RECORD/CLASS SORTS
;;;=============================================================================

;;;-----------------------------------------------------------------------------
;;; DECLARE-SORT
;;; the evaluator of `sort-decl' : (%sort-decl sort-name)
;;;

;;; RESOLVE-SORT-REF : sort-name -> sort or nil
;;;     sort-name can be `sort-ref', symbol, or string
;;;     exception : strang-sort-name iff the `sort-name' is not
;;;                 in the above case.
(defun resolve-sort-ref (module sort-name)
  (cond ((%is-sort-ref sort-name)
         (find-sort-in module sort-name))
        ((or (symbolp sort-name)
             (stringp sort-name))
         (find-sort-in module sort-name))
        (t (with-output-chaos-error ('strange-sort-name)
             (format t "internal error, strange sort name ~a" sort-name)
             ))))

;;; RESOLVE-OR-DEFINE-SORT : sort-name -> sort
;;;     uses `resove-sort-ref' for referring existing sort,
;;;     if cound not find, declare new sort in the current context.
;;;
(defun resolve-or-define-sort (module sort-name &optional hidden)
  (let ((sort (resolve-sort-ref module sort-name)))
    (if sort
        (cond ((or (eq sort *universal-sort*)
                   (eq sort *huniversal-sort*)
                   ;;(eq sort *cosmos*)
                   )
               (let ((*chaos-quiet* t))
                 (declare (special *chaos-quiet*))
                 (with-output-chaos-error ('invalid-sort-decl)
                   (format t "You can not declare built in sort ~A"
                           (string (sort-name sort))))))
              (t (if (or (and hidden (sort-is-hidden sort))
                         (and (not hidden) (not (sort-is-hidden sort))))
                     sort
                   (let ((*chaos-quiet* t))
                     (declare (special *chaos-quiet*))
                     (with-output-chaos-warning ()
                       (princ "declaring ")
                       (format t "a ~a sort ~s, there already be a sort" 
                               (if hidden
                                   "hidden"
                                 "visible")
                               (if (%is-sort-ref sort-name)
                                   (%sort-ref-name sort-name)
                                 sort-name))
                       (print-next)
                       (princ "with the same name but of different type (visible/hidden).")
                       (print-next)
                       (princ "...ignored.")
                       (return-from resolve-or-define-sort nil))
                     ))))
      (cond ((%is-sort-ref sort-name)
               (if (%sort-ref-qualifier sort-name)
                   ;; should not happen this case.
                   (with-output-chaos-error ('invalid-sort-decl)
                     (princ "declare-sort accepted a qualified sort-name:")
                     (print-next)
                     (format t "sort name = ~s, qulifier = "
                             (%sort-ref-name sort-name))
                     (print-modexp (%sort-ref-qualifier sort-name))
                     (print-next)
                     (princ "ignoring the declaration.")
                     )
                   ;; 
                   (let ((true-name (%sort-ref-name sort-name)))
                     (declare-sort-in-module (if (stringp true-name)
                                                 (intern true-name)
                                                 true-name)
                                             *current-module*
                                             'sort
                                             hidden))))
              ((stringp sort-name)
               (declare-sort-in-module (intern sort-name)
                                       *current-module*
                                       'sort
                                       hidden))
              ((symbolp sort-name)
               (declare-sort-in-module sort-name
                                       *current-module*
                                       'sort
                                       hidden))
              (t (with-output-panic-message ()
                   (format t "declaring sort : accepted invalid name ~s" sort-name)
                   (break
                    "Please send bug report to \"sawada@sra.co.jp\", thanks~")))))
    ))

;;; DECLARE-SORT : sort-decl
;;;
(defun declare-sort (sort-decl)
  (I-miss-current-module declare-sort)
  (include-chaos-module)
  (set-needs-parse)
  (resolve-or-define-sort *current-module*
                          (%sort-decl-name sort-decl)
                          (%sort-decl-hidden sort-decl)))

;;; DECLARE-PSORT (psort-decl)
;;; real evaluation is postponed untill all sorts are visible in the module,
;;; so we set the declaration in the module.
;;;
(defun declare-psort (psort-decl)
  (I-miss-current-module declare-psort)
  (setf (module-psort-declaration *current-module*) psort-decl))

;;; and the following is the real evaluation proc.

(defun eval-psort-declaration (decl module)
  (let ((sort-ref (%psort-decl-sort decl))
        (sort nil))
    ;; we have a case the reference is just a sort-object,
    ;; occuring only when we inherit p-sort in instantiation/renaming.
    ;;
    (if (sort-p sort-ref)
        (setq sort sort-ref)
        (setq sort (resolve-sort-ref module (%psort-decl-sort decl))))
    (unless sort
      (with-output-chaos-error ('no-such-sort)
        (princ "declaring principal sort, no such sort ")
        (print-sort-ref (%psort-decl-sort decl))
        ))
    (setf (module-principal-sort module) sort)))

;;;-----------------------------------------------------------------------------
;;; DECLARE-BSORT bsort-decl
;;; *NOTE* declare-bsort overrides previous declarations if any.
;;;
(defun declare-bsort (decl)
  (I-miss-current-module declare-bsort)
  (include-chaos-module)
  (set-needs-parse)
  (define-builtin-sort (%bsort-decl-name decl)
      *current-module*
    (list (%bsort-decl-token-predicate decl)
          (%bsort-decl-term-creator decl)
          (%bsort-decl-term-printer decl)
          (%bsort-decl-term-predicate decl))
    (%bsort-decl-hidden decl)))

;;;-----------------------------------------------------------------------------
;;; DECLARE-SUBSORT subsort-decl
;;; the evaluator of `subosrt-decl' :
;;;   (%subsort-decl (%sort-ref ..) ((%sort-ref ...) ...))
;;; when success, the return value is a sort-order (the internal object for
;;; representing transitive closure of sort relations. ).
;;;
(defun declare-subsort (subsort-decl)
  (I-miss-current-module declare-subsort)
  ;; (set-needs-parse)
  (include-chaos-module)
  ;; save the declaration in unresoled form. NO MORE.
  ;; (push subsort-decl (module-sort-relations *current-module*))
  ;; call declare-subsort-in-module after resolving sort references.
  (let ((hidden (car (%subsort-decl-sort-relation subsort-decl)))
        (body (cdr (%subsort-decl-sort-relation subsort-decl))))
    (declare-subsort-in-module
     (list (mapcar #'(lambda (x)
                       (if (eq x ':<)
                           ':<
                           (resolve-or-define-sort *current-module* x hidden)))
                   body))
     *current-module*
     hidden )))

;;;=============================================================================
;;;                      OPERATOR, OPERATOR ATTRIBUTES
;;;=============================================================================

;;; FIND-QUAL-OPERATORs : OpRef -> List[OpInfo]
;;;
(defun find-qual-operators (opref &optional mod (type nil))
  (let ((name (%opref-name opref))
        (num-args (%opref-num-args opref))
        (module (%opref-module opref)))
    (if module
        (let ((modval (eval-modexp module)))
          (if (module-p modval)
              (find-all-qual-operators-in modval name num-args type)
              (with-output-chaos-error ('no-such-module)
                (princ "resolving operator reference ")
                (print-ast opref)
                (print-next)
                (princ "no such module ")
                (print-modexp module)
                )))
        (if mod
            (find-all-qual-operators-in mod name num-args type)
            (progn
              (I-miss-current-module find-qual-operators)
              (find-all-qual-operators-in *current-module* name num-args type))))))
    
;;; DECLARE-OPERATOR opdecl -> method
;;; returns method if success, otherwise nil.
;;;
(defun declare-operator (op-decl &optional error-operator)
  (I-miss-current-module declare-operator)
  (include-BOOL)
  (let* ((attr (%op-decl-attribute op-decl))
         (memo (%opattrs-memo attr)     ;(if (and *memo-rewrite* *always-memo*)
                                        ; t
                                        ;        (%opattrs-memo attr))
               )
         (theory (%opattrs-theory attr))
         (assoc (%opattrs-assoc attr))
         (prec (%opattrs-prec attr))
         (strat (%opattrs-strat attr))
         (constr (%opattrs-constr attr))
         (coherent (%opattrs-coherent attr))
         (meta-demod (%opattrs-meta-demod attr)))
    (multiple-value-bind (op meth delayed)
        (declare-operator-in-module (%op-decl-name op-decl)
                                    (%op-decl-arity op-decl)
                                    (%op-decl-coarity op-decl)
                                    *current-module*
                                    constr
                                    (%op-decl-hidden op-decl)
                                    coherent
                                    error-operator
                                    )
      (when delayed
        (pushnew op-decl (module-error-op-decl *current-module*) :test #'equal)
        (mark-need-parsing-preparation *current-module*)
        (return-from declare-operator t))
      ;;
      (if (and op meth)
          (progn
            ;; memo attribute
            (when memo
              (declare-method-memo-attr meth memo)
              )
            ;; meta-demod predicate
            (when meta-demod
              (declare-method-meta-demod-attr meth meta-demod))
            ;;
            (if theory
                (declare-method-theory meth theory)
                (progn
                  (setf (method-theory meth *current-opinfo-table*)
                        *the-empty-theory*)
                  (compute-method-theory-info-for-matching meth
                                                           *current-opinfo-table*)))
            (when assoc
              (if (eq (method-module meth)
                      *current-module*)
                  (declare-method-associativity meth assoc)
                  (with-output-chaos-warning ()
                    (princ "you cannot alter associativity of")
                    (print-next)
                    (princ "operator ")
                    (print-chaos-object meth)
                    (print-next)
                    (princ "of module ")
                    (print-simple-mod-name (method-module meth))
                    (print-next)
                    (princ "ignoring.."))))
            (when prec
              (if (eq (method-module meth) *current-module*)
                  (declare-method-precedence meth prec)
                  (with-output-chaos-warning ()
                    (princ "you cannot alter precedence of")
                    (print-next)
                    (princ "operator ")
                    (print-chaos-object meth)
                    (print-next)
                    (princ "of module ")
                    (print-simple-mod-name (method-module meth))
                    (print-next)
                    (princ "ignoring.."))))
            (when strat
              (if (eq (method-module meth) *current-module*)
                  (declare-method-strategy meth strat)
                  (with-output-chaos-warning ()
                    (princ "you cannot alter strategy of")
                    (print-next)
                    (princ "operator ")
                    (print-chaos-object meth)
                    (print-next)
                    (princ "of module ")
                    (print-simple-mod-name (method-module meth))
                    (print-next)
                    (princ "ignoring.."))))
            (set-needs-parse)
            (set-needs-rule)
            meth)
        nil))))

;;; DECLARE-OPERATOR-ATTRIBUTES : decl -> operator
;;; returns operator if success, otherwise nil.
;;;
(defun declare-operator-attributes (decl)
  (I-miss-current-module declare-operator-attributes)
  ;; *NOTE* qualifier in opref is ignored, is it OK?
  (let ((name (%opref-name (%opattr-decl-opref decl)))
	(num-args (%opref-num-args (%opattr-decl-opref decl)))
	(attr (%opattr-decl-attribute decl)))
    (let ((opinfo (find-qual-operator-in *current-module* name num-args)))
      (unless opinfo
	(with-output-chaos-error ('operator-not-found)
	  (format t "declaring attributes, could not found unique operator ~a."
		  name)))
      (let ((op (opinfo-operator opinfo))
	    (memo (%opattrs-memo attr))
	    (theory (%opattrs-theory attr))
	    (assoc (%opattrs-assoc attr))
	    (prec (%opattrs-prec attr))
	    (strat (%opattrs-strat attr)))
	(when memo
	  (with-output-chaos-warning ()
	    (format t "memo attribute is now obsolate.")))
	(when theory (declare-operator-theory op theory))
	(when assoc (declare-operator-associativity op assoc))
	(when prec (declare-operator-precedence op prec))
	(when strat (declare-operator-strategy op strat))
	(set-needs-parse)
	(set-needs-rule)
	;; save the declaration form.
	(pushnew decl (module-opattrs *current-module*) :test #'equal)
	op))))

;;;=============================================================================
;;;                            AXIOMS, VARIABLES
;;;=============================================================================

;;;-----------------------------------------------------------------------------
;;; DECLARE-VARIABLE
;;; evaluates variable-declaration form.
;;; 
(defun declare-variable (ast)
  (I-miss-current-module declare-variable)
  ;; (set-needs-parse) ; too early to set the flag.
  (include-BOOL)
  (let ((sort (find-sort-in *current-module* (%var-decl-sort ast)))
        (res nil))
    (unless sort
      (if (may-be-error-sort-ref? (%var-decl-sort ast))
          (progn
            ;; may be declaration of variable of error sorts.
            (push ast (module-error-var-decl *current-module*))
            (return-from declare-variable t))
          ;;
          (with-output-chaos-error ('no-such-sort)
            (format t "declaring variable(s)~{~^ ~a~^,~},"
                    (%var-decl-names ast))
            ;; (print-ast (%var-decl-sort ast))
            (print-next)
            (format t "no such sort: ~a" (%sort-ref-name (%var-decl-sort ast)))
            )))
    (dolist (name (%var-decl-names ast))
      (push (declare-variable-in-module name sort *current-module*) res))
    ;; - patch, now we are safe to set the flag.
    (set-needs-parse)
    ;; 
    (nreverse res)))

(defun declare-pconst (ast)
  (I-miss-current-module declare-pconst)
  ;; (set-needs-parse) ; too early to set the flag.
  (include-BOOL)
  (let ((sort (find-sort-in *current-module* (%pvar-decl-sort ast)))
        (res nil))
    (unless sort
      (if (may-be-error-sort-ref? (%pvar-decl-sort ast))
          (progn
            ;; may be declaration of variable of error sorts.
            (push ast (module-error-var-decl *current-module*))
            (return-from declare-pconst t))
          ;;
          (with-output-chaos-error ('no-such-sort)
            (format t "declaring pseud variable(s)~{~^ ~a~^,~}, no such sort."
                    (%pvar-decl-names ast))
            (print-ast (%pvar-decl-sort ast))
            )))
    (dolist (name (%pvar-decl-names ast))
      (push (declare-pconst-in-module name sort *current-module*) res))
    ;; - patch, now we are safe to set the flag.
    (set-needs-parse)
    ;; 
    (nreverse res)))

;;;-----------------------------------------------------------------------------
;;; DECLARE-AXIOM
;;; evaluates axiom declaration form.
;;; 

(defun is-lisp-form-token-sequence (token-list)
  (and (consp (car token-list))
       (memq (caar token-list) '(%slisp %glisp :slisp :glisp))))

(defun is-chaos-value-token-sequence (token-list)
  (and (consp (car token-list))
       (eq (caar token-list) '|%Chaos|)))

(defvar .special-meta-rule-labels. '(|:m-and| |:m-or| |:m-and-also| |:m-or-else|))

(defun parse-axiom-declaration (ast)
  (I-miss-current-module parse-axiom-declaration)
  (let* ((sort *cosmos*)
         (*fill-rc-attribute* t)
         (*parse-variables* nil)
         (*parse-lhs-attr-vars* nil)
         (*lhs-attrid-vars* nil)
         (lhs (%axiom-decl-lhs ast))
         (rhs (%axiom-decl-rhs ast))
         (cond-part (%axiom-decl-cond ast))
         (labels (%axiom-decl-labels ast))
         (type (%axiom-decl-type ast))
         (behavioural (%axiom-decl-behavioural ast))
         (the-axiom nil)
         (meta-rule nil))
    (dolist (ml .special-meta-rule-labels.)
      (when (member ml labels)
        (when meta-rule
          (with-output-chaos-error ('invalid-meta-rule)
            (format t "You cannot specify multiple :m-and, :m-or, .e.t.c at once!")))
        (setq meta-rule ml)))
    (when (eq type :rule)
      (include-rwl *current-module*))
    (prepare-for-parsing *current-module*)
    (cond ((or (is-lisp-form-token-sequence rhs)
               (is-chaos-value-token-sequence rhs))
           (when meta-rule
             (with-output-chaos-error ('invalid-special-rule)
               (format t "Invalid special rule ~s for built-in axiom." meta-rule)))
           ;; aka builtin rule.
           (let* ((parsed-lhs (simple-parse *current-module* lhs sort))
                  (parsed-rhs (simple-parse *current-module* rhs sort))
                  (parsed-cnd (if cond-part
                                  (simple-parse *current-module* cond-part sort)
                                *bool-true*))
                  (error-p nil))
             (setf sort (term-sort parsed-lhs))
             (when (and parsed-cnd (term-is-an-error parsed-cnd))
               (with-output-simple-msg ()
                 (princ "[Error] no parse for condition part of the axiom."))
               (setf error-p t))
             (if (or (term-is-an-error parsed-lhs)
                     (null sort))
                 (with-output-chaos-error ('invalid-lhs)
                   (princ "no parse for LHS of the axiom (ignored): "))
               (if (not error-p)
                   (let ((canon (canonicalize-variables (list parsed-lhs parsed-rhs parsed-cnd) *current-module*)))
                     (when (term-is-builtin-constant? parsed-lhs)
                       (with-output-chaos-error ('bad-axiom)
                         (format t "System does not support sole built-in constant on LHS, sorry.")
                         (format t "~&-- LHS : ")
                         (term-print-with-sort parsed-lhs)))
                     (unless (sort<= (term-sort (third canon)) *condition-sort* *current-sort-order*)
                       (with-output-chaos-error ('invalid-condition)
                         (format t "Illegal condition part of conditional axiom:")
                         (print-next)
                         (term-print-with-sort parsed-cnd)))
                     (setq the-axiom
                       (make-rule :lhs (first canon)
                                  :rhs (second canon)
                                  :condition (third canon)
                                  :labels labels
                                  :behavioural behavioural
                                  :type type)))
                 (chaos-error 'invalid-axiom-decl-1) ))))
          ;; normal rule
          (t (let* ((parses-lhs (let ((*parsing-axiom-lhs* t))
                                  (parser-parses *current-module* lhs sort)))
                    (parses-rhs (parser-parses *current-module* rhs sort))
                    (parsed-cnd (if cond-part
                                    (simple-parse *current-module*
                                                  cond-part
                                                  sort)
                                  *bool-true*))
                    (error-p nil))
               ;; check condition part.
               (when (and cond-part (term-is-an-error parsed-cnd))
                 (with-output-simple-msg ()
                   (princ "[Error] no parse for axiom condition"))
                 (setf error-p t))
               ;; find apropreate pair of LHS & RHS.
               (let ((res (parser-find-rule-pair
                           *current-module* parses-lhs parses-rhs)))
                 (if (null res)
                     ;; completely none are found.
                     (progn
                       (with-output-simple-msg ()
                         (princ "[Error] bad axiom (ignored): ")
                         ;; show LHS 
                         (if (null parses-lhs)
                             (progn
                               (format t "~%No possible parse for LHS")
                               (format t "~%~{~s~^ ~}" lhs))
                           (progn
                             (format t "~&- LHS")
                             (dolist (f parses-lhs)
                               (print-next)
                               (print-term-tree f t))))
                         ;; show RHS
                         (if (null parses-rhs)
                             (progn
                               (format t "~%No possible parse for RHS")
                               (format t "~%~{~s~^ ~}" rhs))
                           (progn
                             (format t "~&- RHS")
                             (dolist (f parses-rhs)
                               (print-next)
                               (print-term-tree f t)))))
                       (chaos-error 'invalid-axiom-decl-2))
                   ;; found candiates
                   (progn
                     (unless (null (cdr res))
                       ;; more than 1
                       (with-output-chaos-warning ()
                         (princ "axiom is ambiguous: ") (print-next)
                         (unless (null (cdr parses-lhs))
                           (princ "-- More than one parse for the LHS")
                           (print-next)
                           (format t "form : ~a" lhs)
                           (print-next)
                           (format t "trees:")
                           (parse-show-diff parses-lhs)
                           (format t "~&...adopting [1]..."))
                         (unless (null (cdr parses-rhs))
                           (princ "-- More than one parse for the RHS")
                           (print-next)
                           (format t "form : ~a" rhs)
                           (print-next)
                           (format t "trees:")
                           (parse-show-diff parses-rhs)
                           (format t "~&...adopting [1]..."))))
                     (if (not error-p)
                         (let ((lhs-result (car (car res)))
                               (rhs-result (parse-convert (cadr (car res)))))
                           (when (term-is-builtin-constant? lhs-result)
                             (with-output-chaos-error ('bad-axiom)
                               (format t "System does not support sole built-in constant on LHS, sorry.")
                               (format t "~&-- LHS : ")
                               (term-print-with-sort lhs-result)))
                           (when meta-rule
                             ;; lhs must be associative 
                             (unless (eq *bool-true* parsed-cnd)
                               (with-output-chaos-error ('invalid-cond)
                                 (format t "Sorry, but now ~s can only be specified for non-conditional axioms." meta-rule)))
                             (unless (is-in-same-connected-component *bool-sort* 
                                                                     (term-sort rhs-result)
                                                                     *current-sort-order*)
                               (with-output-chaos-error ('invalid-rhs)
                                 (format t "RHS must be a term of sort Bool for ~s axiom." meta-rule))))
                           ;;
                           (let ((canon (canonicalize-variables (list lhs-result rhs-result parsed-cnd) *current-module*)))
                             #||
                             (unless (sort<= (term-sort (third canon)) *condition-sort* *current-sort-order*)
                               (with-output-chaos-error ('invalid-condition)
                                 (format t "Illegal condition part of conditional axiom:")
                                 (print-next)
                                 (print-chaos-object parsed-cnd))) ; !
                             ||#
                             ;;
                             (setq the-axiom
                               (make-rule :lhs (first canon)
                                          :rhs (second canon)
                                          :condition (third canon)
                                          :behavioural behavioural
                                          :labels labels
                                          :type type
                                          :meta-and-or meta-rule)))
                           ;;
                           (when *chaos-verbose*
                             (when behavioural
                               (unless (and (term-can-be-in-beh-axiom?
                                             lhs-result)
                                            (term-can-be-in-beh-axiom?
                                             rhs-result))
                                 (with-output-chaos-warning ()
                                   (format t "non-behavioural operation on hidden sorts appearing in the behavioural axiom:")
                                   (with-in-module (*current-module*)
                                     (print-next)
                                     (print-chaos-object the-axiom)))))))
                       (chaos-error 'invalid-axiom-decl-3))))))))
    ;; warn if the axiom contains error operators
    (warn-axiom-if-contains-error-op the-axiom *current-module*)
    ;; additionaly if condition part contains match-op...
    (when (term-contains-match-op (axiom-condition the-axiom))
      (setf (axiom-contains-match-op the-axiom) t))
    the-axiom))

(defun declare-axiom-now (ast)
  (let ((the-axiom (parse-axiom-declaration ast)))
    ;; add to module: was add-axiom-to-module...
    (adjoin-axiom-to-module *current-module* the-axiom)
    ;; check validity as a rewrite rule, 
    ;; mark 'bad' if it is not for rwrite rule
    (check-axiom-validity the-axiom *current-module*)
    ;; set module status
    (set-needs-rule)
    the-axiom))

(defun declare-axiom (ast)
  (pushnew (change-axiom-decl-to-now ast) (module-delayed-declarations *current-module*)
           :test #'equal)
  (set-needs-rule))

;;;=============================================================================
;;; LET
;;;=============================================================================

(defun eval-let (ast)
  (let ((sym (%let-sym ast))
        (value (%let-value ast)))
    ;; (I-miss-current-module eval-let)
    (unless *current-module*
      (with-output-chaos-error ('no-context)
        (princ "no context (current) module is set!")))
    ;;
    (with-in-module (*current-module*)
      (prepare-for-parsing *current-module*)
      (let ((*parse-variables* nil))
        (let ((res (simple-parse *current-module* value *cosmos*))
              val)
          (setq res (car (canonicalize-variables (list res) *current-module*)))
          ;; we treate $$term & $$subterm, we must copy for
          ;; avoiding side effect.
          (when (or (equal "$$term" sym) (equal "$$subtem" sym))
            (setq res (simple-copy-term res)))
          (when (term-contains-error-method res)
            (with-output-chaos-error ('invalid-form)
              (format t "In 'let' form, term must not have error operators in it.")))
          ;; we do not set term, but its printing image
          ;; for enabling let sym in opened module.
          (setq val (with-output-to-string (s)
                      (let ((*print-xmode* :normal))
                        (term-print res s))))
          (when (set-bound-value sym val)
            (when (and (at-top-level) (not *chaos-quiet*))
              (format t "~%-- setting let variable \"~a\" to :" sym)
              (let ((*fancy-print* nil)
                    (*print-indent* (+ *print-indent* 4)))
                (print-next)
                ;; (term-print res) 
                (princ val)
                (print-check 0 3)
                (princ " : ")
                (print-sort-name (term-sort res)))))
          t)))))

;;;=============================================================================
;;; MACRO
;;;=============================================================================

(defun eval-macro (ast)
  (let ((pre-lhs (%macro-lhs ast))
        (pre-rhs (%macro-rhs ast))
        lhs
        rhs
        macro)
    (I-miss-current-module eval-macro)
    (prepare-for-parsing *current-module*)
    (let ((*parse-variables* nil)
          (*macroexpand* nil))
      (setq lhs (simple-parse *current-module* pre-lhs *cosmos*))
      (when (term-is-an-error lhs)
        (with-output-chaos-error ('invalid-macro-lhs)
          (format t "no parse for LHS of the macro declaration: ")
          (print-chaos-object ast)))
      (setq rhs (simple-parse *current-module* pre-rhs *cosmos*))
      (when (term-is-an-error rhs)
        (with-output-chaos-error ('invalid-macro-rhs)
          (format t "no parse for RHS of the macro declaration: ")
          (print-chaos-object ast)))
      (unless (term-is-application-form? lhs)
        (with-output-chaos-error ('invalid-macro)
          (format t "macro can only be defined for normal application form.~%")
          (print-chaos-object ast)))
      (unless (theory-info-empty-for-matching
               (method-theory-info-for-matching
                (term-head lhs)))
        (with-output-chaos-error ('invalid-macro)
          (format t "macro can only be defined for operators with no equational theory.~%")
          (print-chaos-object ast)))
      (when (or (term-contains-error-method lhs)
                (term-contains-error-method rhs))
        (with-output-chaos-error ('invalid-macro)
          (format t "macro must not have error operators in its declaration.~%")))
      ;; LHS & RHS must be of the same sort -- too rigid?
      (unless (is-in-same-connected-component (term-sort lhs)
                                              (term-sort rhs)
                                              *current-sort-order*)
        (with-output-chaos-error ('invalid-macro)
          (format t "sort of LHS & RHS of the maro declaration must be the same.")
          (terpri)
          (print-chaos-object ast)))
      ;;
      ;; check in 
      (let ((canon (canonicalize-variables (list lhs rhs) *current-module*)))
        (setq macro (make-macro :lhs (first canon) :rhs (second canon)))
        (add-macro-to-module *current-module* macro))
      ;; set module status
      (set-needs-parse)
      macro)))

;;;=============================================================================
;;;                                  MODULE
;;;=============================================================================

;;; DECLARE-MODULE : module-declaration-form -> module
;;;
(defun declare-module (decl)
  (let ((mod nil)                       ; will bound created module.
        (name (%module-decl-name decl))
        (kind (%module-decl-kind decl))
        (type (%module-decl-type decl))
        (body (%module-decl-elements decl))
        (*allow-$$term* nil)
        (*modexp-eval-table* nil)
        (auto-context? *auto-context-change*)
        (*auto-context-change* nil))
    (declare (special *modexp-eval-table*
                      *auto-context-change*))
    (unless *chaos-quiet*
      (if (equal name "%")
          (with-output-msg ()
            (princ "opening module ")
            (print-mod-name *open-module*)
            (force-output))
        (unless (modexp-is-parameter-theory name)
          (format t "~%-- defining ~(~a~) ~a" (case kind
                                                (:object "module!")
                                                (:theory "module*")
                                                (otherwise "module"))
                  name)
          (force-output))))
    ;;
    (let ((modval (eval-modexp name nil nil))
          (recover-same-context nil))
      (unless (or (modexp-is-error modval)
                  (and (module-p modval)
                       (modexp-is-parameter-theory (module-name modval)))
                  (equal "%" name)
                  (eq '% name)
                  (equal " % % " name))

          (unless (modexp-is-parameter-theory name)
            (when (module-is-hard-wired modval)
              (with-output-chaos-error ('invalid-module-decl)
                (format t "You can not redefine system module ~a ." name)))
            (when (module-is-write-protected modval)
              (with-output-chaos-error ('invalid-module-decl)
                (format t "Module ~a is protected!" name)))
            ;; redefining existing user's (unprotected) module..
            (with-output-chaos-warning ()
              (format t "Redefining module ~a " name))
            ;; if redefined module is a context of the current citp session
            ;; we must discard the current proof session
            (citp-reset-proof-if-need modval))
        ;;
        (propagate-module-change modval)
        ;;
        (when (eq modval (get-context-module t))
          (reset-context-module)
          (setq recover-same-context t))
        
        (when (eq modval *memoized-module*)
          (clear-term-memo-table *term-memo-table*))
        (when (eq modval .memb-last-module.)
          (clear-memb-hash))
        ;;
        (setq name (module-name modval))
        (clear-module-instance-db modval)
        (when (eq $$term-context modval)
          (setq $$term nil
                $$term-context nil
                $$subterm nil
                $$action-stack nil
                $$selection-stack nil)))

      ;; process declaration forms.
      (setf mod (create-module name))
      (setf (module-kind mod) kind)
      (setf (module-type mod) type)
      (when *save-definition* (setf (module-decl-form mod) decl))
      (let ((*top-level-definition-in-progress*
             (or *top-level-definition-in-progress*
                 mod)))
        ;; construction process is done in the context of `mod'.
        (with-in-module (mod)
          (add-modexp-defn name mod)
          ;; operate on mod by side-effect ----------------
          ;; EVAL EACH MODULE CONSTRUCTS.
          (dolist (e body)
            (flet ((report-decl-error (&rest ignore)
                     (declare (ignore ignore))
                     (unless *chaos-quiet*
                       (with-output-msg ()
                         (format t "failed to evaluate the form:~%")
                         (print-ast e)
                         (force-output)))
                     (chaos-error 'declaration-failed)))
              ;;
              (with-chaos-error (#'report-decl-error)
                (eval-ast e))
              (print-in-progress "."))))
        ;; FINAL SET UP.
        (let ((real-mod (find-module-in-env name nil)))
          (final-setup real-mod)
          (if recover-same-context
              (reset-context-module real-mod)
            (if auto-context?
                (change-context (get-context-module t) real-mod)))
          ;;
          (unless (module-is-parameter-theory real-mod)
            (princ " done."))
          ;;
          real-mod)))))

;;;=============================================================================
;;;                                   VIEW
;;;=============================================================================

;;; DECLARE-VIEW : definition -> View
;;;
(defun declare-view (decl)
  (let ((name (%view-decl-name decl))
        (view (%view-decl-view decl))
        (*auto-context-change* nil)
        (*current-module* nil))
    (declare (special *auto-context-change*))
    (let ((real-name (normalize-modexp name))
          new-view)
      (let ((vw (find-view-in-env real-name)))
        (unless *chaos-quiet*
          (format *error-output* "~%-- defining view ~a " name))
        (when vw
          (with-output-chaos-warning ()
            (format t "redefining view ~a " real-name))
          (propagate-view-change vw)
          )
        ;; 
        (setq new-view (complete-view view))
        (setf (view-name new-view) real-name)
        (setf (view-decl-form new-view) view)
        (if vw
            (copy-view new-view vw)
            (setq vw new-view))
        ;;
        (add-depend-relation vw :view (view-src vw))
        (add-depend-relation vw :view (view-target vw))
        (add-view-defn real-name vw)
        (princ " done.")
        ;;
        (mark-view-as-consistent vw)
        vw))))

;;;=============================================================================
;;;                               IMPORTATION
;;;=============================================================================

;;; EVAL-IMPORT-MODEXP : import-decl -> {cur_mod} 
;;;-----------------------------------------------------------------------------

(defun eval-import-modexp (decl)
  (I-miss-current-module eval-import-modexp)
  (let ((mode (%import-mode decl))
        (modexp (%import-module decl))
        (parameter (%import-parameter decl))
        (alias (%import-alias decl))
        (new-mod nil))
    (setf new-mod (import-module (get-context-module) mode modexp parameter alias))
    new-mod))

;;; !ADD-US
;;;-----------------------------------------------------------------------------
;;; NOT YET

;;; Labels in Axioms env.
;;;-----------------------------------------------------------------------------
;;; PROCESS-LABELS : LIST[Token] -> LIST[Token]
;;; might instead want to group sequences of tokens between ","s together
;;
(defun process-labels (x)
  (let ((val (delete "," x :test #'equal)) (res nil))
    (dolist (l val)
      (if (find #\. l)
          (with-output-chaos-warning ()
            (princ "label ")
            (princ l)
            (princ " contains a '.' (ignored)") (terpri))
          (if (digit-char-p (char l 0))
              (with-output-chaos-warning ()
                (princ "label ")
                (princ l)
                (princ " contains an initial digit (ignored)") (terpri))
              (push l res))))
    (nreverse res)))

;;; EOF