source: trunk/abcl/src/org/armedbear/lisp/autoloads.lisp @ 13688

Last change on this file since 13688 was 13688, checked in by Mark Evenson, 12 years ago

Remove erroneous fbound defintion for EXTENSIONS:PROCESS.

The AUTOLOAD form currently only works for functions.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 15.8 KB
Line 
1;;; autoloads.lisp
2;;;
3;;; Copyright (C) 2003-2008 Peter Graves
4;;; $Id: autoloads.lisp 13688 2011-11-02 13:11:50Z mevenson $
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 'jnew-array-from-list "JAVA")
252(autoload 'jnew-array-from-list "java")
253(export 'jclass-constructors "JAVA")
254(autoload 'jclass-constructors "java")
255(export 'jconstructor-params "JAVA")
256(autoload 'jconstructor-params "java")
257(export 'jclass-field "JAVA")
258(autoload 'jclass-field "java")
259(export 'jclass-fields "JAVA")
260(autoload 'jclass-fields "java")
261(export 'jfield-type "JAVA")
262(autoload 'jfield-type "java")
263(export 'jfield-name "JAVA")
264(autoload 'jfield-name "java")
265(export 'jclass-methods "JAVA")
266(autoload 'jclass-methods "java")
267(export 'jmethod-params "JAVA")
268(autoload 'jmethod-params "java")
269(export 'jmethod-name "JAVA")
270(autoload 'jmethod-name "java")
271(export 'jinstance-of-p "JAVA")
272(autoload 'jinstance-of-p "java")
273(export 'jmember-static-p "JAVA")
274(autoload 'jmember-static-p "java")
275(export 'jmember-public-p "JAVA")
276(autoload 'jmember-public-p "java")
277(export 'jmember-protected-p "JAVA")
278(autoload 'jmember-protected-p "java")
279(export 'jnew-runtime-class "JAVA")
280(autoload 'jnew-runtime-class "runtime-class")
281(export 'jredefine-method "JAVA")
282(autoload 'jredefine-method "runtime-class")
283(export 'jruntime-class-exists-p "JAVA")
284(autoload 'jruntime-class-exists-p "runtime-class")
285(export 'ensure-java-class "JAVA")
286(autoload 'ensure-java-class "java")
287(export 'chain "JAVA")
288(autoload-macro 'chain "java")
289(export 'jmethod-let "JAVA")
290(autoload-macro 'jmethod-let "java")
291(export 'jequal "JAVA")
292(autoload-macro 'jequal "java")
293
294;; Profiler.
295(in-package "PROFILER")
296(export '(*granularity* show-call-counts show-hot-counts with-profiling))
297(autoload '(show-call-counts show-hot-counts) "profiler")
298(autoload-macro 'with-profiling "profiler")
299
300;; Extensions.
301(in-package "EXTENSIONS")
302(export 'simple-search)
303(autoload 'simple-search "search")
304(export 'run-shell-command)
305(autoload 'run-shell-command)
306(export 'run-program)
307(autoload 'run-program)
308(export 'process) ;; Not a function, but a DEFSTRUCT
309(export 'process-p)
310(autoload 'process-p "run-program")
311(export 'process-input)
312(autoload 'process-input "run-program")
313(export 'process-output)
314(autoload 'process-output "run-program")
315(export 'process-error)
316(autoload 'process-error "run-program")
317(export 'process-alive-p)
318(autoload 'process-alive-p "run-program")
319(export 'process-wait)
320(autoload 'process-wait "run-program")
321(export 'process-exit-code)
322(autoload 'process-exit-code "run-program")
323(export 'process-kill)
324(autoload 'process-kill "run-program")
325
326(export 'make-socket)
327(autoload 'make-socket "socket")
328(export 'make-server-socket)
329(autoload 'make-server-socket "socket")
330(export 'server-socket-close)
331(autoload 'server-socket-close "socket")
332(export 'socket-accept)
333(autoload 'socket-accept "socket")
334(export 'socket-close)
335(autoload 'socket-close "socket")
336(export 'get-socket-stream)
337(autoload 'get-socket-stream "socket")
338(export 'socket-peer-port)
339(autoload 'socket-peer-port "socket")
340(export 'socket-local-port)
341(autoload 'socket-local-port "socket")
342(export 'socket-local-address)
343(autoload 'socket-local-address "socket")
344(export 'socket-peer-address)
345(autoload 'socket-peer-address "socket")
346
347(in-package "THREADS")
348
349(autoload '(;; MAKE-THREAD helper
350            thread-function-wrapper
351
352            ;; Mailbox
353            make-mailbox mailbox-send mailbox-empty-p
354            mailbox-read mailbox-peek
355
356            ;; Lock
357            make-thread-lock 
358
359            ;; Mutex
360            make-mutex get-mutex release-mutex)
361    "threads")
362
363(autoload-macro '(;; Lock
364                  with-thread-lock
365
366                  ;; Mutex
367                  with-mutex)
368                "threads")
369
370(export '(make-mailbox mailbox-send mailbox-empty-p
371          mailbox-read mailbox-peek))
372(export '(make-thread-lock with-thread-lock))
373(export '(make-mutex get-mutex release-mutex with-mutex))
374
375
376(in-package "EXTENSIONS")
377
378(export '(grovel-java-definitions compile-system))
379(autoload '(grovel-java-definitions compile-system) "compile-system")
380(export 'aver)
381(autoload-macro 'aver)
382(autoload 'sys::%failed-aver "aver")
383(export 'collect)
384(autoload-macro 'collect)
385(export 'compile-file-if-needed)
386(autoload 'compile-file-if-needed "compile-file")
387(export 'describe-compiler-policy)
388(autoload 'describe-compiler-policy)
389(export 'macroexpand-all)
390(autoload 'macroexpand-all "format")
391
392(export '*gui-backend*)
393(export 'init-gui)
394(autoload 'init-gui "gui")
395(export 'make-dialog-prompt-stream)
396(autoload 'make-dialog-prompt-stream "gui")
397
398;; JVM compiler.
399(in-package "JVM")
400(export '(jvm-compile-package))
401(autoload '%with-compilation-unit "jvm")
402
403(in-package "LISP")
404(export 'compiler-let)
405(autoload 'compiler-let)
406
407
408(in-package "SYSTEM")
409
410;; #:SYSTEM in PRECOMPILER.LISP
411
412
413(export '(process-optimization-declarations
414          inline-p notinline-p inline-expansion expand-inline
415          note-name-defined precompile))
416(autoload '(process-optimization-declarations
417            inline-p notinline-p inline-expansion expand-inline
418            note-name-defined precompile) "precompiler")
419
420
421
422;; #:SYSTEM in SOURCE-TRANSFORM.LISP
423
424(export '(source-transform define-source-transform expand-source-transform))
425(autoload '(source-transform define-source-transform set-source-transform
426            expand-source-transform)
427    "source-transform")
428
429(in-package "PRECOMPILER")
430
431(export '(precompile-form precompile))
432(autoload '(precompile-form) "precompiler")
433
434
435;; items in the XP package (pprint.lisp)
436
437(in-package "XP")
438
439(sys::autoload '(xp-structure-p write-string++ output-pretty-object
440                 pprint-logical-block+ maybe-initiate-xp-printing
441                 check-block-abbreviation start-block end-block
442                 pprint-pop-check+) "pprint")
443
444(sys::autoload-macro '(pprint-logical-block+ pprint-pop+) "pprint")
445
446(in-package "COMMON-LISP")
447
448(sys::autoload '(documentation) "clos")
449
450(sys::autoload '(write print prin1 princ pprint write-to-string
451            prin1-to-string princ-to-string write-char
452            write-string write-line terpri finish-output
453            fresh-line force-output clear-output
454            pprint-newline pprint-indent pprint-tab pprint-linear
455            pprint-fill pprint-tabular) "pprint")
456
457(sys::autoload-macro '(pprint-logical-block) "pprint")
458
459(in-package "SYSTEM")
460
461;; This one must be last, or at least past print-object and clos:
462;; we don't want FORMATs executed before we can load those to end us
463;; in a debugger. This command replaces the earlier function binding
464;; where simple-format calls sys::%format
465
466(autoload 'simple-format "format")
Note: See TracBrowser for help on using the repository browser.