/usr/share/acl2-6.3/openmcl-acl2-trace.lisp is in acl2-source 6.3-5.
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 | ; ACL2 Version 6.3 -- A Computational Logic for Applicative Common Lisp
; Copyright (C) 2013, Regents of the University of Texas
; This version of ACL2 is a descendent of ACL2 Version 1.9, Copyright
; (C) 1997 Computational Logic, Inc. See the documentation topic NOTE-2-0.
; This program is free software; you can redistribute it and/or modify
; it under the terms of the LICENSE file distributed with ACL2.
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; LICENSE for more details.
; This file originally written by: Robert Krug
; email: rkrug@cs.utexas.edu
; Department of Computer Science
; University of Texas at Austin
; Austin, TX 78701 U.S.A.
; Written by: Matt Kaufmann and J Strother Moore
; email: Kaufmann@cs.utexas.edu and Moore@cs.utexas.edu
; Department of Computer Science
; University of Texas at Austin
; Austin, TX 78701 U.S.A.
; We don't intend this file to be compiled.
; TRACE stuff
; This file is allegro-acl2-trace, with modifications.
; CCL's trace facilities are somewhat limited. However it does have a
; function, advise, which is sufficiently general to allow it to imitate GCL's
; trace facilities as provided within ACL2. This function seems to have
; limited documentation, but see the file ccl/lib/encapsulate.lisp in the
; CCL sources.
; We put over into old-trace the macro for trace that comes with CCL.
; Thus one can type (old-trace foo) and get the effect that (trace
; foo) would have previously provided. We do not guarantee that using
; old-trace works well with trace$, however.
(cond ((null (macro-function 'old-trace))
(setf (macro-function 'old-trace) (macro-function 'trace))))
(cond ((null (macro-function 'old-untrace))
(setf (macro-function 'old-untrace) (macro-function 'untrace))))
; The variables *trace-arglist* and *trace-values* will contain the
; cleaned up arglist and values of a traced function. The alist
; *trace-sublis* allows one to refer to these variables by more
; common names.
(defvar *trace-arglist*)
(defvar *trace-values*)
(defparameter *trace-sublis* '((values . *trace-values*)
(ccl::values . *trace-values*)
(arglist . *trace-arglist*)
(ccl::arglist . *trace-arglist*)
))
(defun trace-pre-process (lst &aux (state *the-live-state*))
; The user has provided arguments lst to trace. Here we return the result of
; converting lst to a list of entries (fn orig-fn . rst). Each fn in lst is
; treated as (fn), and then each (fn . rst) is replaced with (fn fn . rst) and,
; if fn is known to ACL2, also (*1*fn fn . rst).
(let ((new-lst nil))
(dolist (x lst new-lst)
(let ((sym (cond ((symbolp x) x)
((and (consp x) (symbolp (car x)))
(car x))
(t (interface-er
"Not a symbol or a cons of a symbol: ~x0"
x)))))
(if (function-symbolp sym (w state))
; We have an ACL2 function.
(cond ((symbolp x)
(push (list (*1*-symbol x) x) new-lst)
(push (list x x) new-lst))
(t
(push (list* (*1*-symbol (car x)) (car x) (cdr x))
new-lst)
(push (list* (car x) (car x) (cdr x)) new-lst)))
; We do not have an ACL2 function.
(if (fboundp sym)
(if (symbolp x)
(push (list x x) new-lst)
(push (list* (car x) (car x) (cdr x)) new-lst))
(interface-er "~s0 is not a bound function symbol." sym)))))))
(defun trace-entry (name l)
; We construct the (ccl:advise <fn-name> ... :when :before) form that performs the
; tracing on entry.
(cond ((null l) ; no :entry directive was found
`(ccl:advise ,name
(progn (setq *trace-arglist* ccl::arglist)
(custom-trace-ppr :in
(cons ',name
(trace-hide-world-and-state
*trace-arglist*))))
:when :before))
((eq (car l) :entry)
`(ccl:advise ,name
(progn (setq *trace-arglist* ccl::arglist)
(custom-trace-ppr :in
(cons ',name
(trace-hide-world-and-state
,(sublis *trace-sublis*
(cadr l))))))
:when :before))
(t
(trace-entry name (cdr l)))))
(defun trace-values (name)
(declare (ignore name))
'values)
#-acl2-mv-as-values
(error "Trace-exit probably needs to be modified for CCL if we are to ~%~
avoid feature acl2-mv-as-values. See corresponding mods made for ~%~
Version 3.4 in akcl-acl2-trace.lisp and allegro-acl2-trace.lisp.")
(defun trace-exit (name original-name l)
; We construct the (ccl:advise <fn-name> ... :when :after) form that performs
; the tracing on exit.
(cond ((null l)
`(ccl:advise ,name
(progn (setq *trace-values*
,(trace-values original-name))
(custom-trace-ppr :out
(cons ',name
(trace-hide-world-and-state
*trace-values*))))
:when :after))
((eq (car l) :exit)
`(ccl:advise ,name
(progn (setq *trace-values*
,(trace-values original-name))
(setq *trace-arglist*
ccl::arglist)
(custom-trace-ppr :out
(cons ',name
(trace-hide-world-and-state
,(sublis *trace-sublis*
(cadr l))))))
:when :after))
(t
(trace-exit name original-name (cdr l)))))
(defun traced-fns-lst (lst)
(list 'QUOTE (mapcar #'car lst)))
(defun trace-process (lst)
; We perform a little error checking, and gather together all the (ccl:advise
; ...) calls.
(let ((new-lst (list (traced-fns-lst lst)))) ; for the returned value
(dolist (x lst new-lst)
(cond ((member :cond (cddr x))
(interface-er "The use of :cond is not supported in CCL."))
((member :break (cddr x))
(interface-er "The use of :break is not supported in CCL. ~
However, you can use either (~s0 :entry (break)) ~
or (~s0 :exit (break)). See any Lisp ~
documentation for more on break and its options."
(car x)))
(t
(push (trace-exit (car x) (cadr x) (cddr x)) new-lst)
(push (trace-entry (car x) (cddr x)) new-lst)
(push `(ccl:unadvise ,(car x)) new-lst))))))
(defun acl2-traced-fns ()
(sort (delete-duplicates (strip-cars (ccl:advisedp t)))
#'symbol-<))
(let ((temp ccl::*warn-if-redefine-kernel*))
(setf ccl::*warn-if-redefine-kernel* nil)
(defmacro trace (&rest fns)
(if fns
(cons 'progn
(trace-process (trace-pre-process fns)))
'(acl2-traced-fns)))
(setf ccl::*warn-if-redefine-kernel* temp))
(let ((temp ccl::*warn-if-redefine-kernel*))
(setf ccl::*warn-if-redefine-kernel* nil)
(defmacro untrace (&rest fns)
(if (null fns)
'(prog1 (acl2-traced-fns)
(ccl:unadvise t))
(cons 'progn
(let ((ans nil))
(dolist (fn fns ans)
(push `(when (fboundp ',fn)
(ccl:unadvise ,fn))
ans)
(push `(when (fboundp ',(*1*-symbol fn))
(ccl:unadvise ,(*1*-symbol fn)))
ans))))))
(setf ccl::*warn-if-redefine-kernel* temp))
|