source: branches/0.17.x/abcl/src/org/armedbear/lisp/autoloads.lisp

Last change on this file was 12230, checked in by ehuelsmann, 16 years ago

More efficient startup: only autoload pprint[.lisp] if necessary.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 14.6 KB
Line 
1;;; autoloads.lisp
2;;;
3;;; Copyright (C) 2003-2008 Peter Graves
4;;; $Id: autoloads.lisp 12230 2009-10-26 22:41:29Z ehuelsmann $
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 '(mapcan mapl maplist mapcon) "map1")
87(autoload 'make-sequence)
88(autoload '(copy-seq fill replace))
89(autoload '(map map-into))
90(autoload 'reduce)
91(autoload '(delete delete-if delete-if-not) "delete")
92(autoload '(remove remove-if remove-if-not) "remove")
93(autoload '(remove-duplicates delete-duplicates))
94(autoload '(substitute substitute-if substitute-if-not) "substitute")
95(autoload '(nsubstitute nsubstitute-if nsubstitute-if-not) "nsubstitute")
96(autoload '(position position-if position-if-not find find-if find-if-not
97            list-find* vector-find*)
98          "find")
99(autoload '(count count-if count-if-not) "count")
100(autoload '(mismatch search))
101(autoload 'make-string)
102(autoload 'directory "directory")
103(autoload '(signum round ffloor fceiling fround rationalize gcd isqrt
104            float-precision decode-float conjugate phase)
105          "numbers")
106(autoload 'boole)
107(export '%ldb '#:system)
108(autoload '(byte byte-size byte-position %ldb ldb ldb-test dpb) "ldb")
109(autoload 'lcm)
110(autoload '(apropos apropos-list) "apropos")
111(autoload '(y-or-n-p yes-or-no-p) "query")
112(autoload '(decode-universal-time get-decoded-time encode-universal-time)
113          "time")
114(autoload 'gentemp)
115(autoload '(bit-and bit-ior bit-xor bit-eqv bit-nand bit-nor bit-andc1
116            bit-andc2 bit-orc1 bit-orc2 bit-not)
117          "bit-array-ops")
118(autoload 'deposit-field)
119(autoload 'mask-field)
120(autoload '(ensure-class ensure-generic-function make-condition
121            mop::ensure-method
122            define-method-combination
123            %defgeneric
124            canonicalize-direct-superclasses)
125          "clos")
126(export '(ensure-class subclassp %defgeneric canonicalize-direct-superclasses)
127        '#:system)
128(autoload '(inspect istep) "inspect")
129(autoload 'enough-namestring)
130(autoload 'upgraded-complex-part-type)
131
132(autoload '(tpl::top-level-loop) "top-level")
133
134(autoload 'hash-table-iterator-function "with-hash-table-iterator")
135(autoload-macro 'with-hash-table-iterator)
136
137(autoload 'package-iterator-function "with-package-iterator")
138(autoload-macro 'with-package-iterator)
139
140(autoload-macro 'remf)
141(autoload-macro 'check-type)
142(autoload-macro 'deftype)
143(autoload 'expand-deftype "deftype")
144(autoload-macro '(defclass defgeneric defmethod define-condition) "clos")
145(autoload-macro 'with-standard-io-syntax)
146(autoload 'sys::%with-standard-io-syntax "with-standard-io-syntax")
147(autoload-macro 'psetf)
148(autoload-macro 'rotatef)
149(autoload-macro 'shiftf)
150
151(autoload-macro 'do-all-symbols)
152(autoload-macro '(trace untrace) "trace")
153(autoload '(sys::list-traced-functions sys::trace-1 sys::untrace-1 sys::untrace-all) "trace")
154(autoload 'sys::%define-symbol-macro "define-symbol-macro")
155(autoload-macro 'define-symbol-macro)
156(autoload-macro 'with-slots)
157(autoload-macro 'with-accessors)
158(autoload-macro '(sys::%print-unreadable-object print-unreadable-object)
159                "print-unreadable-object")
160(autoload 'print-object)
161(autoload-macro '(prog prog*) "prog")
162(export 'concatenate-to-string '#:system)
163(autoload '(concatenate-to-string concatenate) "concatenate")
164(autoload 'parse-lambda-list)
165(autoload-macro 'assert)
166(autoload '(sys::assert-error sys::assert-prompt) "assert")
167(autoload-macro 'with-input-from-string)
168(autoload-macro 'with-output-to-string)
169(autoload 'ensure-directories-exist)
170(autoload 'coerce)
171(autoload 'read-from-string)
172(autoload 'read-sequence)
173(autoload 'write-sequence)
174(autoload 'make-load-form-saving-slots)
175(autoload 'compile-file)
176(autoload 'compile-file-pathname)
177
178(autoload 'format "format")
179(autoload-macro 'formatter "format")
180
181(autoload '(write-byte read-byte) "byte-io")
182(autoload-macro 'with-open-file)
183(autoload '(pathname-host pathname-device pathname-directory pathname-name
184            pathname-type wild-pathname-p pathname-match-p translate-pathname
185            logical-pathname-translations translate-logical-pathname
186            load-logical-pathname-translations logical-pathname
187            parse-namestring)
188          "pathnames")
189(autoload 'make-string-output-stream)
190(autoload 'find-all-symbols)
191(autoload 'dribble)
192(autoload-macro 'step)
193(autoload 'load)
194(autoload '(compile with-file-compilation) "jvm")
195(autoload-macro 'with-compilation-unit "jvm")
196
197(autoload-macro '(case ccase ecase typecase ctypecase etypecase) "case")
198(autoload-macro '(and cond dolist dotimes
199                  do-symbols do-external-symbols
200                  multiple-value-bind multiple-value-list multiple-value-setq
201                  nth-value
202                  or))
203(autoload-macro '(do do*) "do")
204
205(autoload 'ed)
206(autoload 'describe)
207(autoload 'disassemble)
208
209(in-package "MOP")
210(export '(class-precedence-list class-slots slot-definition-name))
211(autoload '(class-precedence-list class-slots slot-definition-name) "clos")
212
213
214;; Java interface.
215(in-package "JAVA")
216(export 'jregister-handler "JAVA")
217(autoload 'jregister-handler "java")
218(export 'jinterface-implementation "JAVA")
219(autoload 'jinterface-implementation "java")
220(export 'jmake-invocation-handler "JAVA")
221(autoload 'jmake-invocation-handler "java")
222(export 'jmake-proxy "JAVA")
223(autoload 'jmake-proxy "java")
224(export 'jproperty-value "JAVA")
225(autoload 'jproperty-value "java")
226(export 'jobject-class "JAVA")
227(autoload 'jobject-class "java")
228(export 'jclass-superclass "JAVA")
229(autoload 'jclass-superclass "java")
230(export 'jclass-interfaces "JAVA")
231(autoload 'jclass-interfaces "java")
232(export 'jclass-interface-p "JAVA")
233(autoload 'jclass-interface-p "java")
234(export 'jclass-superclass-p "JAVA")
235(autoload 'jclass-superclass-p "java")
236(export 'jclass-array-p "JAVA")
237(autoload 'jclass-array-p "java")
238(export 'jarray-component-type "JAVA")
239(autoload 'jarray-component-type "java")
240(export 'jarray-length "JAVA")
241(autoload 'jarray-length "java")
242(export 'jnew-array-from-array "JAVA")
243(autoload 'jnew-array-from-array "java")
244(export 'jclass-constructors "JAVA")
245(autoload 'jclass-constructors "java")
246(export 'jconstructor-params "JAVA")
247(autoload 'jconstructor-params "java")
248(export 'jclass-field "JAVA")
249(autoload 'jclass-field "java")
250(export 'jclass-fields "JAVA")
251(autoload 'jclass-fields "java")
252(export 'jfield-type "JAVA")
253(autoload 'jfield-type "java")
254(export 'jfield-name "JAVA")
255(autoload 'jfield-name "java")
256(export 'jclass-methods "JAVA")
257(autoload 'jclass-methods "java")
258(export 'jmethod-params "JAVA")
259(autoload 'jmethod-params "java")
260(export 'jmethod-name "JAVA")
261(autoload 'jmethod-name "java")
262(export 'jinstance-of-p "JAVA")
263(autoload 'jinstance-of-p "java")
264(export 'jmember-static-p "JAVA")
265(autoload 'jmember-static-p "java")
266(export 'jmember-public-p "JAVA")
267(autoload 'jmember-public-p "java")
268(export 'jmember-protected-p "JAVA")
269(autoload 'jmember-protected-p "java")
270(export 'jnew-runtime-class "JAVA")
271(autoload 'jnew-runtime-class "runtime-class")
272(export 'jredefine-method "JAVA")
273(autoload 'jredefine-method "runtime-class")
274(export 'jruntime-class-exists-p "JAVA")
275(autoload 'jruntime-class-exists-p "runtime-class")
276
277;; Profiler.
278(in-package "PROFILER")
279(export '(*granularity* show-call-counts with-profiling))
280(autoload 'show-call-counts "profiler")
281(autoload-macro 'with-profiling "profiler")
282
283;; Extensions.
284(in-package "EXTENSIONS")
285(export 'simple-search)
286(autoload 'simple-search "search")
287(export 'run-shell-command)
288(autoload 'run-shell-command)
289
290(export 'make-socket)
291(autoload 'make-socket "socket")
292(export 'make-server-socket)
293(autoload 'make-server-socket "socket")
294(export 'server-socket-close)
295(autoload 'server-socket-close "socket")
296(export 'socket-accept)
297(autoload 'socket-accept "socket")
298(export 'socket-close)
299(autoload 'socket-close "socket")
300(export 'get-socket-stream)
301(autoload 'get-socket-stream "socket")
302(export 'socket-peer-port)
303(autoload 'socket-peer-port "socket")
304(export 'socket-local-port)
305(autoload 'socket-local-port "socket")
306(export 'socket-local-address)
307(autoload 'socket-local-address "socket")
308(export 'socket-peer-address)
309(autoload 'socket-peer-address "socket")
310
311(in-package "THREADS")
312
313
314(autoload '(;; Mailbox
315            make-mailbox mailbox-send mailbox-empty-p
316            mailbox-read mailbox-peek
317
318            ;; Lock
319            make-thread-lock thread-lock thread-unlock
320
321            ;; Mutex
322            make-mutex get-mutex release-mutex)
323    "threads")
324
325(autoload-macro '(;; Lock
326                  with-thread-lock
327
328                  ;; Mutex
329                  with-mutex)
330                "threads")
331
332(export '(make-mailbox mailbox-send mailbox-empty-p
333          mailbox-read mailbox-peek))
334(export '(make-thread-lock thread-lock thread-unlock with-thread-lock))
335(export '(make-mutex get-mutex release-mutex with-mutex))
336
337(progn
338  ;; block to be removed at 0.22
339  ;; It exists solely for pre-0.17 compatibility
340  ;; FIXME 0.22
341  (in-package "EXTENSIONS")
342  (export '(mailbox-send mailbox-empty-p mailbox-read mailbox-peek))
343  (export '(make-thread-lock thread-lock thread-unlock with-thread-lock))
344  (export '(with-mutex make-mutex get-mutex release-mutex)))
345
346;; end of 0.22 block
347
348(in-package "EXTENSIONS")
349
350(export '(grovel-java-definitions compile-system))
351(autoload '(grovel-java-definitions compile-system) "compile-system")
352(export 'aver)
353(autoload-macro 'aver)
354(autoload 'sys::%failed-aver "aver")
355(export 'collect)
356(autoload-macro 'collect)
357(export 'compile-file-if-needed)
358(autoload 'compile-file-if-needed "compile-file")
359(export 'describe-compiler-policy)
360(autoload 'describe-compiler-policy)
361(export 'macroexpand-all)
362(autoload 'macroexpand-all)
363
364(export '*gui-backend*)
365(export 'init-gui)
366(autoload 'init-gui "gui")
367(export 'make-dialog-prompt-stream)
368(autoload 'make-dialog-prompt-stream "gui")
369
370;; JVM compiler.
371(in-package "JVM")
372(export '(jvm-compile-package))
373(autoload '%with-compilation-unit "jvm")
374
375(in-package "LISP")
376(export 'compiler-let)
377(autoload 'compiler-let)
378
379
380(in-package "SYSTEM")
381
382;; #:SYSTEM in PRECOMPILER.LISP
383
384
385(export '(process-optimization-declarations
386          inline-p notinline-p inline-expansion expand-inline
387          note-name-defined precompile))
388(autoload '(process-optimization-declarations
389            inline-p notinline-p inline-expansion expand-inline
390            note-name-defined precompile) "precompiler")
391
392
393
394;; #:SYSTEM in SOURCE-TRANSFORM.LISP
395
396(export '(source-transform define-source-transform expand-source-transform))
397(autoload '(source-transform define-source-transform set-source-transform
398            expand-source-transform)
399    "source-transform")
400
401(in-package "PRECOMPILER")
402
403(export '(precompile-form precompile))
404(autoload '(precompile-form) "precompiler")
405
406
407;; items in the XP package (pprint.lisp)
408
409(in-package "XP")
410
411(sys::autoload '(xp-structure-p write-string++ output-pretty-object
412                 pprint-logical-block+ maybe-initiate-xp-printing
413                 check-block-abbreviation start-block end-block
414                 pprint-pop-check+) "pprint")
415
416(sys::autoload-macro '(pprint-logical-block+ pprint-pop+) "pprint")
417
418(in-package "COMMON-LISP")
419
420(sys::autoload '(write print prin1 princ pprint write-to-string
421            prin1-to-string princ-to-string write-char
422            write-string write-line terpri finish-output
423            fresh-line force-output clear-output
424            pprint-newline pprint-indent pprint-tab pprint-linear
425            pprint-fill pprint-tabular) "pprint")
426
427(sys::autoload-macro '(pprint-logical-block) "pprint")
428
Note: See TracBrowser for help on using the repository browser.