1 | ;;; autoloads.lisp |
---|
2 | ;;; |
---|
3 | ;;; Copyright (C) 2003-2008 Peter Graves |
---|
4 | ;;; $Id: autoloads.lisp 12827 2010-07-25 19:47:37Z astalla $ |
---|
5 | ;;; |
---|
6 | ;;; This program is free software; you can redistribute it and/or |
---|
7 | ;;; modify it under the terms of the GNU General Public License |
---|
8 | ;;; as published by the Free Software Foundation; either version 2 |
---|
9 | ;;; of the License, or (at your option) any later version. |
---|
10 | ;;; |
---|
11 | ;;; This program is distributed in the hope that it will be useful, |
---|
12 | ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | ;;; GNU General Public License for more details. |
---|
15 | ;;; |
---|
16 | ;;; You should have received a copy of the GNU General Public License |
---|
17 | ;;; along with this program; if not, write to the Free Software |
---|
18 | ;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
19 | ;;; |
---|
20 | ;;; As a special exception, the copyright holders of this library give you |
---|
21 | ;;; permission to link this library with independent modules to produce an |
---|
22 | ;;; executable, regardless of the license terms of these independent |
---|
23 | ;;; modules, and to copy and distribute the resulting executable under |
---|
24 | ;;; terms of your choice, provided that you also meet, for each linked |
---|
25 | ;;; independent module, the terms and conditions of the license of that |
---|
26 | ;;; module. An independent module is a module which is not derived from |
---|
27 | ;;; or based on this library. If you modify this library, you may extend |
---|
28 | ;;; this exception to your version of the library, but you are not |
---|
29 | ;;; obligated to do so. If you do not wish to do so, delete this |
---|
30 | ;;; exception statement from your version. |
---|
31 | |
---|
32 | |
---|
33 | ;; This file lists public functions which package users can depend upon. |
---|
34 | ;; |
---|
35 | ;; In order to avoid loading the full CL system (of which not all functions |
---|
36 | ;; may be required by the current program), this file makes sure the symbols |
---|
37 | ;; are available, but when it tries to execute them, the autoloader causes |
---|
38 | ;; the actual functions or macros to be loaded. |
---|
39 | |
---|
40 | ;; This file lists for each autoloaded symbol which file has to be |
---|
41 | ;; REQUIRE'd to make it available. |
---|
42 | ;; |
---|
43 | ;; Please note: the actual function definition may not be always in the |
---|
44 | ;; same file as the one which needs to be REQUIRE'd; an example of |
---|
45 | ;; such a case is the compiler: all compiler functions have to be |
---|
46 | ;; loaded through loading jvm.lisp. |
---|
47 | |
---|
48 | |
---|
49 | (in-package "SYSTEM") |
---|
50 | |
---|
51 | (autoload '(char/= char> char>= char-not-equal) |
---|
52 | "chars") |
---|
53 | (autoload '(string-upcase string-downcase string-capitalize |
---|
54 | nstring-upcase nstring-downcase nstring-capitalize |
---|
55 | string= string/= string-equal string-not-equal |
---|
56 | string< string> |
---|
57 | string<= string>= |
---|
58 | string-lessp string-greaterp |
---|
59 | string-not-lessp string-not-greaterp |
---|
60 | string-left-trim string-right-trim string-trim) |
---|
61 | "strings") |
---|
62 | (autoload 'copy-symbol) |
---|
63 | (autoload '(open parse-integer)) |
---|
64 | (autoload '(sort stable-sort merge) "sort") |
---|
65 | (autoload 'tree-equal) |
---|
66 | (autoload 'make-hash-table) |
---|
67 | (autoload 'list-length) |
---|
68 | (autoload 'revappend) |
---|
69 | (autoload '(butlast nbutlast) "butlast") |
---|
70 | (autoload 'ldiff) |
---|
71 | (autoload '(subst subst-if subst-if-not nsubst nsubst-if nsubst-if-not) |
---|
72 | "subst") |
---|
73 | (autoload '(sublis nsublis) "sublis") |
---|
74 | (autoload '(member-if member-if-not) "member-if") |
---|
75 | (autoload 'tailp) |
---|
76 | (autoload 'adjoin) |
---|
77 | (autoload '(union nunion |
---|
78 | intersection nintersection |
---|
79 | set-difference nset-difference |
---|
80 | set-exclusive-or nset-exclusive-or |
---|
81 | subsetp) |
---|
82 | "sets") |
---|
83 | (autoload '(assoc assoc-if assoc-if-not rassoc rassoc-if rassoc-if-not |
---|
84 | acons pairlis copy-alist) |
---|
85 | "assoc") |
---|
86 | (autoload-macro 'sequence::seq-dispatch "extensible-sequences-base") |
---|
87 | (autoload '(mapcan mapl maplist mapcon) "map1") |
---|
88 | (autoload 'make-sequence) |
---|
89 | ;(autoload 'sequence::fill "extensible-sequences") |
---|
90 | (autoload '(copy-seq fill replace)) |
---|
91 | (autoload '(map map-into)) |
---|
92 | (autoload 'reduce) |
---|
93 | (autoload '(delete delete-if delete-if-not) "delete") |
---|
94 | (autoload '(remove remove-if remove-if-not) "remove") |
---|
95 | (autoload '(remove-duplicates delete-duplicates)) |
---|
96 | (autoload '(substitute substitute-if substitute-if-not) "substitute") |
---|
97 | (autoload '(nsubstitute nsubstitute-if nsubstitute-if-not) "nsubstitute") |
---|
98 | (autoload '(position position-if position-if-not find find-if find-if-not |
---|
99 | list-find* vector-find*) |
---|
100 | "find") |
---|
101 | (autoload '(count count-if count-if-not) "count") |
---|
102 | (autoload '(mismatch search)) |
---|
103 | (autoload 'make-string) |
---|
104 | (autoload 'directory "directory") |
---|
105 | (autoload '(signum round ffloor fceiling fround rationalize gcd isqrt |
---|
106 | float-precision decode-float conjugate phase) |
---|
107 | "numbers") |
---|
108 | (autoload 'boole) |
---|
109 | (export '%ldb '#:system) |
---|
110 | (autoload '(byte byte-size byte-position %ldb ldb ldb-test dpb) "ldb") |
---|
111 | (autoload 'lcm) |
---|
112 | (autoload '(apropos apropos-list) "apropos") |
---|
113 | (autoload '(y-or-n-p yes-or-no-p) "query") |
---|
114 | (autoload '(decode-universal-time get-decoded-time encode-universal-time) |
---|
115 | "time") |
---|
116 | (autoload 'gentemp) |
---|
117 | (autoload '(bit-and bit-ior bit-xor bit-eqv bit-nand bit-nor bit-andc1 |
---|
118 | bit-andc2 bit-orc1 bit-orc2 bit-not) |
---|
119 | "bit-array-ops") |
---|
120 | (autoload 'deposit-field) |
---|
121 | (autoload 'mask-field) |
---|
122 | (autoload '(ensure-class ensure-generic-function make-condition |
---|
123 | mop::ensure-method |
---|
124 | define-method-combination |
---|
125 | %defgeneric |
---|
126 | canonicalize-direct-superclasses |
---|
127 | slot-value slot-makunbound slot-boundp) |
---|
128 | "clos") |
---|
129 | (export '(ensure-class subclassp %defgeneric canonicalize-direct-superclasses) |
---|
130 | '#:system) |
---|
131 | (autoload '(inspect istep) "inspect") |
---|
132 | (autoload 'enough-namestring) |
---|
133 | (autoload 'upgraded-complex-part-type) |
---|
134 | |
---|
135 | (autoload '(tpl::top-level-loop) "top-level") |
---|
136 | |
---|
137 | (autoload 'hash-table-iterator-function "with-hash-table-iterator") |
---|
138 | (autoload-macro 'with-hash-table-iterator) |
---|
139 | |
---|
140 | (autoload 'package-iterator-function "with-package-iterator") |
---|
141 | (autoload-macro 'with-package-iterator) |
---|
142 | |
---|
143 | (autoload-macro 'remf) |
---|
144 | (autoload-macro 'check-type) |
---|
145 | (autoload-macro 'deftype) |
---|
146 | (autoload 'expand-deftype "deftype") |
---|
147 | (autoload-macro '(defclass defgeneric defmethod define-condition) "clos") |
---|
148 | (autoload-macro 'with-standard-io-syntax) |
---|
149 | (autoload 'sys::%with-standard-io-syntax "with-standard-io-syntax") |
---|
150 | (autoload-macro 'psetf) |
---|
151 | (autoload-macro 'rotatef) |
---|
152 | (autoload-macro 'shiftf) |
---|
153 | |
---|
154 | (autoload-macro 'do-all-symbols) |
---|
155 | (autoload-macro '(trace untrace) "trace") |
---|
156 | (autoload '(sys::list-traced-functions sys::trace-1 sys::untrace-1 sys::untrace-all) "trace") |
---|
157 | (autoload 'sys::%define-symbol-macro "define-symbol-macro") |
---|
158 | (autoload-macro 'define-symbol-macro) |
---|
159 | (autoload-macro 'with-slots) |
---|
160 | (autoload-macro 'with-accessors) |
---|
161 | (autoload-macro '(sys::%print-unreadable-object print-unreadable-object) |
---|
162 | "print-unreadable-object") |
---|
163 | (autoload 'print-object) |
---|
164 | (autoload-macro '(prog prog*) "prog") |
---|
165 | (export 'concatenate-to-string '#:system) |
---|
166 | (autoload '(concatenate-to-string concatenate) "concatenate") |
---|
167 | (autoload 'parse-lambda-list) |
---|
168 | (autoload-macro 'assert) |
---|
169 | (autoload '(sys::assert-error sys::assert-prompt) "assert") |
---|
170 | (autoload-macro 'with-input-from-string) |
---|
171 | (autoload-macro 'with-output-to-string) |
---|
172 | (autoload 'ensure-directories-exist) |
---|
173 | (autoload 'coerce) |
---|
174 | (autoload 'read-from-string) |
---|
175 | (autoload 'read-sequence) |
---|
176 | (autoload 'write-sequence) |
---|
177 | (autoload 'make-load-form-saving-slots) |
---|
178 | (autoload 'compile-file) |
---|
179 | (autoload 'compile-file-pathname) |
---|
180 | |
---|
181 | (autoload 'format "format") |
---|
182 | (autoload-macro 'formatter "format") |
---|
183 | |
---|
184 | (autoload '(write-byte read-byte) "byte-io") |
---|
185 | (autoload-macro 'with-open-file) |
---|
186 | (autoload '(pathname-host pathname-device pathname-directory pathname-name |
---|
187 | pathname-type wild-pathname-p pathname-match-p translate-pathname |
---|
188 | logical-pathname-translations translate-logical-pathname |
---|
189 | load-logical-pathname-translations logical-pathname |
---|
190 | parse-namestring) |
---|
191 | "pathnames") |
---|
192 | (autoload 'make-string-output-stream) |
---|
193 | (autoload 'find-all-symbols) |
---|
194 | (autoload 'dribble) |
---|
195 | (autoload-macro 'step) |
---|
196 | (autoload 'load) |
---|
197 | (autoload '(compile with-file-compilation) "jvm") |
---|
198 | (autoload-macro 'with-compilation-unit "jvm") |
---|
199 | |
---|
200 | (autoload-macro '(case ccase ecase typecase ctypecase etypecase) "case") |
---|
201 | (autoload-macro '(and cond dolist dotimes |
---|
202 | do-symbols do-external-symbols |
---|
203 | multiple-value-bind multiple-value-list multiple-value-setq |
---|
204 | nth-value |
---|
205 | or)) |
---|
206 | (autoload-macro '(do do*) "do") |
---|
207 | |
---|
208 | (autoload 'ed) |
---|
209 | (autoload 'describe) |
---|
210 | (autoload 'disassemble) |
---|
211 | |
---|
212 | (in-package "MOP") |
---|
213 | (export '(class-precedence-list class-slots slot-definition-allocation |
---|
214 | slot-definition-initargs slot-definition-initform |
---|
215 | slot-definition-initfunction slot-definition-name |
---|
216 | compute-applicable-methods |
---|
217 | compute-applicable-methods-using-classes)) |
---|
218 | (autoload '(class-precedence-list class-slots) "clos") |
---|
219 | |
---|
220 | |
---|
221 | ;; Java interface. |
---|
222 | (in-package "JAVA") |
---|
223 | (export 'jregister-handler "JAVA") |
---|
224 | (autoload 'jregister-handler "java") |
---|
225 | (export 'jinterface-implementation "JAVA") |
---|
226 | (autoload 'jinterface-implementation "java") |
---|
227 | (export 'jmake-invocation-handler "JAVA") |
---|
228 | (autoload 'jmake-invocation-handler "java") |
---|
229 | (export 'jmake-proxy "JAVA") |
---|
230 | (autoload 'jmake-proxy "java") |
---|
231 | (export 'jproperty-value "JAVA") |
---|
232 | (autoload 'jproperty-value "java") |
---|
233 | (export 'jobject-class "JAVA") |
---|
234 | (autoload 'jobject-class "java") |
---|
235 | (export 'jclass-superclass "JAVA") |
---|
236 | (autoload 'jclass-superclass "java") |
---|
237 | (export 'jclass-interfaces "JAVA") |
---|
238 | (autoload 'jclass-interfaces "java") |
---|
239 | (export 'jclass-interface-p "JAVA") |
---|
240 | (autoload 'jclass-interface-p "java") |
---|
241 | (export 'jclass-superclass-p "JAVA") |
---|
242 | (autoload 'jclass-superclass-p "java") |
---|
243 | (export 'jclass-array-p "JAVA") |
---|
244 | (autoload 'jclass-array-p "java") |
---|
245 | (export 'jarray-component-type "JAVA") |
---|
246 | (autoload 'jarray-component-type "java") |
---|
247 | (export 'jarray-length "JAVA") |
---|
248 | (autoload 'jarray-length "java") |
---|
249 | (export 'jnew-array-from-array "JAVA") |
---|
250 | (autoload 'jnew-array-from-array "java") |
---|
251 | (export 'jclass-constructors "JAVA") |
---|
252 | (autoload 'jclass-constructors "java") |
---|
253 | (export 'jconstructor-params "JAVA") |
---|
254 | (autoload 'jconstructor-params "java") |
---|
255 | (export 'jclass-field "JAVA") |
---|
256 | (autoload 'jclass-field "java") |
---|
257 | (export 'jclass-fields "JAVA") |
---|
258 | (autoload 'jclass-fields "java") |
---|
259 | (export 'jfield-type "JAVA") |
---|
260 | (autoload 'jfield-type "java") |
---|
261 | (export 'jfield-name "JAVA") |
---|
262 | (autoload 'jfield-name "java") |
---|
263 | (export 'jclass-methods "JAVA") |
---|
264 | (autoload 'jclass-methods "java") |
---|
265 | (export 'jmethod-params "JAVA") |
---|
266 | (autoload 'jmethod-params "java") |
---|
267 | (export 'jmethod-name "JAVA") |
---|
268 | (autoload 'jmethod-name "java") |
---|
269 | (export 'jinstance-of-p "JAVA") |
---|
270 | (autoload 'jinstance-of-p "java") |
---|
271 | (export 'jmember-static-p "JAVA") |
---|
272 | (autoload 'jmember-static-p "java") |
---|
273 | (export 'jmember-public-p "JAVA") |
---|
274 | (autoload 'jmember-public-p "java") |
---|
275 | (export 'jmember-protected-p "JAVA") |
---|
276 | (autoload 'jmember-protected-p "java") |
---|
277 | (export 'jnew-runtime-class "JAVA") |
---|
278 | (autoload 'jnew-runtime-class "runtime-class") |
---|
279 | (export 'jredefine-method "JAVA") |
---|
280 | (autoload 'jredefine-method "runtime-class") |
---|
281 | (export 'jruntime-class-exists-p "JAVA") |
---|
282 | (autoload 'jruntime-class-exists-p "runtime-class") |
---|
283 | (export 'ensure-java-class "JAVA") |
---|
284 | (autoload 'ensure-java-class "java") |
---|
285 | |
---|
286 | ;; Profiler. |
---|
287 | (in-package "PROFILER") |
---|
288 | (export '(*granularity* show-call-counts show-hot-counts with-profiling)) |
---|
289 | (autoload '(show-call-counts show-hot-counts) "profiler") |
---|
290 | (autoload-macro 'with-profiling "profiler") |
---|
291 | |
---|
292 | ;; Extensions. |
---|
293 | (in-package "EXTENSIONS") |
---|
294 | (export 'simple-search) |
---|
295 | (autoload 'simple-search "search") |
---|
296 | (export 'run-shell-command) |
---|
297 | (autoload 'run-shell-command) |
---|
298 | |
---|
299 | (export 'make-socket) |
---|
300 | (autoload 'make-socket "socket") |
---|
301 | (export 'make-server-socket) |
---|
302 | (autoload 'make-server-socket "socket") |
---|
303 | (export 'server-socket-close) |
---|
304 | (autoload 'server-socket-close "socket") |
---|
305 | (export 'socket-accept) |
---|
306 | (autoload 'socket-accept "socket") |
---|
307 | (export 'socket-close) |
---|
308 | (autoload 'socket-close "socket") |
---|
309 | (export 'get-socket-stream) |
---|
310 | (autoload 'get-socket-stream "socket") |
---|
311 | (export 'socket-peer-port) |
---|
312 | (autoload 'socket-peer-port "socket") |
---|
313 | (export 'socket-local-port) |
---|
314 | (autoload 'socket-local-port "socket") |
---|
315 | (export 'socket-local-address) |
---|
316 | (autoload 'socket-local-address "socket") |
---|
317 | (export 'socket-peer-address) |
---|
318 | (autoload 'socket-peer-address "socket") |
---|
319 | |
---|
320 | (in-package "THREADS") |
---|
321 | |
---|
322 | (autoload '(;; MAKE-THREAD helper |
---|
323 | thread-function-wrapper |
---|
324 | |
---|
325 | ;; Mailbox |
---|
326 | make-mailbox mailbox-send mailbox-empty-p |
---|
327 | mailbox-read mailbox-peek |
---|
328 | |
---|
329 | ;; Lock |
---|
330 | make-thread-lock thread-lock thread-unlock |
---|
331 | |
---|
332 | ;; Mutex |
---|
333 | make-mutex get-mutex release-mutex) |
---|
334 | "threads") |
---|
335 | |
---|
336 | (autoload-macro '(;; Lock |
---|
337 | with-thread-lock |
---|
338 | |
---|
339 | ;; Mutex |
---|
340 | with-mutex) |
---|
341 | "threads") |
---|
342 | |
---|
343 | (export '(make-mailbox mailbox-send mailbox-empty-p |
---|
344 | mailbox-read mailbox-peek)) |
---|
345 | (export '(make-thread-lock thread-lock thread-unlock with-thread-lock)) |
---|
346 | (export '(make-mutex get-mutex release-mutex with-mutex)) |
---|
347 | |
---|
348 | |
---|
349 | (in-package "EXTENSIONS") |
---|
350 | |
---|
351 | (export '(grovel-java-definitions compile-system)) |
---|
352 | (autoload '(grovel-java-definitions compile-system) "compile-system") |
---|
353 | (export 'aver) |
---|
354 | (autoload-macro 'aver) |
---|
355 | (autoload 'sys::%failed-aver "aver") |
---|
356 | (export 'collect) |
---|
357 | (autoload-macro 'collect) |
---|
358 | (export 'compile-file-if-needed) |
---|
359 | (autoload 'compile-file-if-needed "compile-file") |
---|
360 | (export 'describe-compiler-policy) |
---|
361 | (autoload 'describe-compiler-policy) |
---|
362 | (export 'macroexpand-all) |
---|
363 | (autoload 'macroexpand-all) |
---|
364 | |
---|
365 | (export '*gui-backend*) |
---|
366 | (export 'init-gui) |
---|
367 | (autoload 'init-gui "gui") |
---|
368 | (export 'make-dialog-prompt-stream) |
---|
369 | (autoload 'make-dialog-prompt-stream "gui") |
---|
370 | |
---|
371 | ;; JVM compiler. |
---|
372 | (in-package "JVM") |
---|
373 | (export '(jvm-compile-package)) |
---|
374 | (autoload '%with-compilation-unit "jvm") |
---|
375 | |
---|
376 | (in-package "LISP") |
---|
377 | (export 'compiler-let) |
---|
378 | (autoload 'compiler-let) |
---|
379 | |
---|
380 | |
---|
381 | (in-package "SYSTEM") |
---|
382 | |
---|
383 | ;; #:SYSTEM in PRECOMPILER.LISP |
---|
384 | |
---|
385 | |
---|
386 | (export '(process-optimization-declarations |
---|
387 | inline-p notinline-p inline-expansion expand-inline |
---|
388 | note-name-defined precompile)) |
---|
389 | (autoload '(process-optimization-declarations |
---|
390 | inline-p notinline-p inline-expansion expand-inline |
---|
391 | note-name-defined precompile) "precompiler") |
---|
392 | |
---|
393 | |
---|
394 | |
---|
395 | ;; #:SYSTEM in SOURCE-TRANSFORM.LISP |
---|
396 | |
---|
397 | (export '(source-transform define-source-transform expand-source-transform)) |
---|
398 | (autoload '(source-transform define-source-transform set-source-transform |
---|
399 | expand-source-transform) |
---|
400 | "source-transform") |
---|
401 | |
---|
402 | (in-package "PRECOMPILER") |
---|
403 | |
---|
404 | (export '(precompile-form precompile)) |
---|
405 | (autoload '(precompile-form) "precompiler") |
---|
406 | |
---|
407 | |
---|
408 | ;; items in the XP package (pprint.lisp) |
---|
409 | |
---|
410 | (in-package "XP") |
---|
411 | |
---|
412 | (sys::autoload '(xp-structure-p write-string++ output-pretty-object |
---|
413 | pprint-logical-block+ maybe-initiate-xp-printing |
---|
414 | check-block-abbreviation start-block end-block |
---|
415 | pprint-pop-check+) "pprint") |
---|
416 | |
---|
417 | (sys::autoload-macro '(pprint-logical-block+ pprint-pop+) "pprint") |
---|
418 | |
---|
419 | (in-package "COMMON-LISP") |
---|
420 | |
---|
421 | (sys::autoload '(documentation) "clos") |
---|
422 | |
---|
423 | (sys::autoload '(write print prin1 princ pprint write-to-string |
---|
424 | prin1-to-string princ-to-string write-char |
---|
425 | write-string write-line terpri finish-output |
---|
426 | fresh-line force-output clear-output |
---|
427 | pprint-newline pprint-indent pprint-tab pprint-linear |
---|
428 | pprint-fill pprint-tabular) "pprint") |
---|
429 | |
---|
430 | (sys::autoload-macro '(pprint-logical-block) "pprint") |
---|
431 | |
---|