/usr/share/maxima/5.41.0/src/transs.lisp is in maxima-src 5.41.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ;;; -*- Mode: Lisp; Package: Maxima; Syntax: Common-Lisp; Base: 10 -*- ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; The data in this file contains enhancments. ;;;;;
;;; ;;;;;
;;; Copyright (c) 1984,1987 by William Schelter,University of Texas ;;;;;
;;; All rights reserved ;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; (c) Copyright 1980 Massachusetts Institute of Technology ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(in-package :maxima)
(macsyma-module transs)
;;; User-hacking code, file-io, translator toplevel.
;;; There are various macros to cons-up filename TEMPLATES
;;; which to mergef into. The filenames should be the only
;;; system dependent part of the code, although certain behavior
;;; of RENAMEF/MERGEF/DELETE-FILE is assumed.
(defmvar $tr_output_file_default '$trlisp
"This is the second file name to be used for translated lisp
output.")
(defmvar $tr_file_tty_messagesp nil
"It TRUE messages about translation of the file are sent
to the TTY also.")
(defvar *translation-msgs-files* nil
"Where the warning and other comments goes.")
(defvar $tr_version (get 'transl-autoload 'version))
(defmvar transl-file nil "output stream of $compfile and $translate_file")
(defmvar $compgrind nil "If `true' lisp output will be pretty-printed.")
(defmvar $tr_true_name_of_file_being_translated nil
"This is set by TRANSLATE_FILE for use by user macros
which want to know the name of the source file.")
(defmvar $tr_state_vars
'((mlist) $transcompile $tr_semicompile
$translate_fast_arrays
$tr_warn_undeclared
$tr_warn_meval
$tr_warn_fexpr
$tr_warn_mode
$tr_warn_undefined_variable
$tr_function_call_default
$tr_array_as_ref
$tr_numer
$define_variable))
(defvar declares nil)
(defmspec $compfile (forms)
(setq forms (cdr forms))
(if (eql 1 (length forms))
(merror (intl:gettext "compfile: no functions specified; I refuse to create an empty file.")))
(bind-transl-state
(setq $transcompile t
*in-compfile* t)
(let
((out-file-name (namestring (maxima-string (meval (car forms)))))
(t-error nil)
(*translation-msgs-files* nil))
(pop forms)
(unwind-protect
(with-maxima-io-syntax
(setq transl-file (open out-file-name :direction :output :if-exists :overwrite :if-does-not-exist :create :element-type 'character))
(cond ((or (member '$all forms :test #'eq)
(member '$functions forms :test #'eq))
(setq forms (mapcar #'caar (cdr $functions)))))
(do ((l forms (cdr l))
(declares nil nil)
(tr-abort nil nil)
(item)
(lexprs nil nil)
(fexprs nil nil)
(t-item)) ;
((null l))
(setq item (car l))
(cond ((not (atom item))
(print* (dconvx (translate item))))
(t
(setq t-item (compile-function (setq item ($verbify item))))
(cond (tr-abort
(setq t-error (print-abort-msg item 'compfile)))
(t
(when $compgrind
(mformat transl-file (intl:gettext "~2%;; Function ~:@M~%") item))
(print* t-item))))))
(pathname out-file-name))
;; unwind-protected
(if transl-file (close transl-file))
(if t-error (delete-file transl-file))))))
(defun compile-function (f)
(mformat *translation-msgs-files* (intl:gettext "~%Translating ~:@M") f)
(let ((fun (tr-mfun f)))
(cond (tr-abort nil)
(t fun))))
(defun $compile_file (input-file &optional bin-file translation-output-file &aux result)
(setq input-file (maxima-string input-file))
(and bin-file(setq bin-file (maxima-string bin-file)))
(and translation-output-file
(setq translation-output-file (maxima-string translation-output-file)))
(cond ((string-equal (pathname-type input-file) "LISP")
(setq result (list '(mlist) input-file)))
(t (setq result (translate-file input-file translation-output-file))
(setq input-file (third result))))
#+(or cmu scl sbcl clisp allegro openmcl lispworks ecl)
(multiple-value-bind (output-truename warnings-p failure-p)
(if bin-file
(compile-file input-file :output-file bin-file)
(compile-file input-file))
(declare (ignore warnings-p))
;; If the compiler encountered errors, don't set bin-file to
;; indicate that we found errors. Is this what we want?
(unless failure-p
(setq bin-file output-truename)))
#-(or cmu scl sbcl clisp allegro openmcl lispworks ecl)
(setq bin-file (compile-file input-file :output-file bin-file))
(append result (list bin-file)))
(defun maxima-string (symb)
(print-invert-case symb))
(defmfun $translate_file (input-file &optional output-file)
(setq input-file (maxima-string input-file))
(cond (output-file (setq output-file (maxima-string output-file))))
(translate-file input-file output-file))
(defmvar $tr_gen_tags nil
"If TRUE, TRANSLATE_FILE generates a TAGS file for use by the text editor")
(defvar *pretty-print-translation* t)
;; Define a pprinter for defmtrfun.
#-gcl
(defun pprint-defmtrfun (stream s)
(pprint-logical-block (stream s :prefix "(" :suffix ")")
(write (pprint-pop) :stream stream)
(write-char #\space stream)
(write (pprint-pop) :stream stream)
(pprint-indent :block 4 stream)
(pprint-newline :mandatory stream)
(write (pprint-pop) :stream stream)
(pprint-indent :block 2 stream)
(pprint-newline :mandatory stream)
(loop
(pprint-exit-if-list-exhausted)
(write (pprint-pop) :stream stream)
(write-char #\space stream)
(pprint-newline :linear stream))))
(defun call-batch1 (in-stream out-stream &aux expr transl)
(cleanup)
;; we want the thing to start with a newline..
(newline in-stream)
(with-maxima-io-syntax
(loop while (and (setq expr (mread in-stream)) (consp expr))
do (setq transl (translate-macexpr-toplevel (third expr)))
(cond
(*pretty-print-translation*
(pprint transl out-stream))
(t
(format out-stream "~a" transl))))))
(defvar trf-start-hook nil)
(defun alter-pathname (pathname &rest options)
(apply 'make-pathname :defaults (pathname pathname) options))
(defun delete-with-side-effects-if (test list)
"Rudimentary DELETE-IF which, however, is guaranteed to call
the function TEST exactly once for each element of LIST, from
left to right."
(loop while (and list (funcall test (car list)))
do (pop list))
(loop with list = list
while (cdr list)
if (funcall test (cadr list))
do (pop (cdr list))
else
do (pop list))
list)
(defun insert-necessary-function-declares (stream)
"Write to STREAM two lists: The functions which are known to be
translated without actually being in the list passed to
$DECLARE_TRANSLATED, and those which are not known to be
translated."
(let (translated hint)
(setq *untranslated-functions-called*
(delete-with-side-effects-if
#'(lambda (v)
(prog1
(or (setq translated
(or (get v 'once-translated)
(get v 'translated)))
(and (fboundp v)
;; might be traced
(not (mget v 'mexpr)))
(get v 'mfexpr*))
(when (and translated
(not (member v *declared-translated-functions* :test #'eq)))
(push v hint))))
*untranslated-functions-called*))
(when hint
(format stream
(intl:gettext "~2%/* The compiler might be able to optimize some function calls if you prepend the following declaration to your Maxima code: */~%"))
(mgrind `(($eval_when) $translate (($declare_translated) ,@hint))
stream)
(format stream "$"))
(when *untranslated-functions-called*
(format stream (intl:gettext "~2%/* The following functions are not known to be translated:~%"))
(mgrind `((mlist) ,@(nreverse *untranslated-functions-called*)) stream)
(format stream "$ */"))
(fresh-line stream)
(when (or hint *untranslated-functions-called*)
(format t (intl:gettext "~&translator: see the 'unlisp' file for possible optimizations.~%")))))
(defun translate-file (in-file-name out-file-name &optional (ttymsgsp $tr_file_tty_messagesp)
&aux warn-file translated-file *translation-msgs-files*
*untranslated-functions-called* *declared-translated-functions*)
(bind-transl-state
(setq *in-translate-file* t)
(setq translated-file (alter-pathname (or out-file-name in-file-name) :type "LISP"))
(setq warn-file (alter-pathname in-file-name :type "UNLISP"))
(with-open-file (in-stream in-file-name)
(with-open-file (out-stream translated-file :direction :output :if-exists :supersede)
(with-open-file (warn-stream warn-file :direction :output :if-exists :supersede)
(setq *translation-msgs-files* (list warn-stream))
(if ttymsgsp
(setq *translation-msgs-files* (cons *standard-output* *translation-msgs-files*)))
(format out-stream ";;; -*- Mode: Lisp; package:maxima; syntax:common-lisp ;Base: 10 -*- ;;;~%")
(flet ((timezone-iso8601-name (dst tz)
;; This function was borrowed from CMUCL.
(let ((tz (- tz)))
(if (and (not dst) (= tz 0))
"Z"
(multiple-value-bind (hours minutes)
(truncate (if dst (1+ tz) tz))
(format nil "~C~2,'0D:~2,'0D"
(if (minusp tz) #\- #\+)
(abs hours)
(abs (truncate (* minutes 60)))))))))
(multiple-value-bind (secs mins hours day month year dow dst tz)
(decode-universal-time (get-universal-time))
(declare (ignore dow))
(format out-stream (intl:gettext ";;; Translated on: ~D-~2,'0D-~2,'0D ~2,'0D:~2,'0D:~2,'0D~A~%")
year month day hours mins secs (timezone-iso8601-name dst tz))))
(format out-stream (intl:gettext ";;; Maxima version: ~A~%") *autoconf-version*)
(format out-stream (intl:gettext ";;; Lisp implementation: ~A~%") (lisp-implementation-type))
(format out-stream (intl:gettext ";;; Lisp version: ~A~%") (lisp-implementation-version))
(format out-stream "(in-package :maxima)~%")
(format warn-stream (intl:gettext "This is the unlisp file for ~A~%")
(namestring (pathname in-stream)))
(mformat out-stream
(intl:gettext ";;** Translator flags were: **~%~%"))
(loop for v in (cdr $tr_state_vars)
do (mformat out-stream ";; ~:M: ~:M;~%" v (symbol-value v)))
(mformat *terminal-io* (intl:gettext "translator: begin translating ~A.~%")
(pathname in-stream))
(call-batch1 in-stream out-stream)
(insert-necessary-function-declares warn-stream)
;; BATCH1 calls TRANSLATE-MACEXPR-toplevel on each expression read.
(cons '(mlist)
(mapcar 'namestring
(mapcar 'pathname (list in-stream out-stream warn-stream)))))))))
;; Should be rewritten to use streams. Barf -- perhaps SPRINTER
;; doesn't take a stream argument?
;; Yes Carl SPRINTER is old i/o, but KMP is writing a new one for NIL. -GJC
(defun print* (p)
(sub-print* p))
;;; i might as well be real pretty and flatten out PROGN's.
(defun sub-print* (p &aux (flag nil))
(cond ((atom p))
((and (eq (car p) 'progn) (cdr p) (equal (cadr p) ''compile))
(mapc #'sub-print* (cddr p)))
(t
(setq flag (and $tr_semicompile
(not (eq (car p) 'eval-when))))
(when flag (princ* #\() (princ* 'progn) (terpri*))
(if $compgrind
(prin1 p)
(prin1 p transl-file))
(when flag (princ* #\)))
(terpri transl-file))))
(defun princ* (form)
(princ form transl-file))
(defun nprinc* (&rest form)
(mapc #'(lambda (x) (princ x transl-file)) form))
(defun terpri* ()
(terpri transl-file))
(defun print-module (m)
(nprinc* " " m " version " (get m 'version)))
(defun new-comment-line ()
(terpri*)
(princ* ";;;"))
(defun print-abort-msg (fun from)
(mformat *translation-msgs-files*
(intl:gettext "compfile: failed to translate ~:@M.~
~A will continue, but file output will be aborted.~%") ;; WTF DOES THIS MEAN ???
fun from))
(defmspec $translate (functs)
(setq functs (cdr functs))
(cond ((and functs (stringp (car functs)))
(merror (intl:gettext "translate: call 'translate_file' to translate a file; found: ~M") (car functs)))
(t
(cond ((or (member '$functions functs :test #'eq)
(member '$all functs :test #'eq))
(setq functs (mapcar 'caar (cdr $functions)))))
(do ((l functs (cdr l))
(v nil))
((null l) `((mlist) ,@(nreverse v)))
(cond ((atom (car l))
(let ((it (translate-function ($verbify (car l)))))
(if it (push it v))))
(t
(tr-format (intl:gettext "error: 'translate' argument must be an atom; found: ~M~%") (car l))))))))
(defmspec $compile (form)
(let ((l (meval `(($translate) ,@(cdr form)))))
(mapc #'(lambda (x) (if (fboundp x) (compile x))) (cdr l))
l))
|