Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
0ee52820
"README" did not exist on "b100a65010dfed1b4532d75a345a630d5f27e7b4"
Commit
0ee52820
authored
35 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Allow LIST for all function valued attributes in #-new-compiler conditional
(for bootstrapping.)
parent
3b375089
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/globaldb.lisp
+14
-13
14 additions, 13 deletions
compiler/globaldb.lisp
with
14 additions
and
13 deletions
compiler/globaldb.lisp
+
14
−
13
View file @
0ee52820
...
@@ -929,21 +929,22 @@
...
@@ -929,21 +929,22 @@
;;; A macro-like function which transforms a call to this function into some
;;; A macro-like function which transforms a call to this function into some
;;; other Lisp form. This expansion is inhibited if inline expansion is
;;; other Lisp form. This expansion is inhibited if inline expansion is
;;; inhibited.
;;; inhibited.
(
define-info-type
function
source-transform
(
or
function
null
))
(
define-info-type
function
source-transform
(
or
function
null
#-
new-compiler
list
))
;;; The macroexpansion function for this macro.
;;; The macroexpansion function for this macro.
;;; ### For now, allow List, since in our bootstrapping environment, a List
(
define-info-type
function
macro-function
(
or
function
null
;;; isn't function, but there also isn't any way to coerce a lambda-list to a
#-
new-compiler
list
)
;;; function.
(
define-info-type
function
macro-function
(
or
function
null
list
)
nil
)
nil
)
;;; A function which converts this special form into IR1.
;;; A function which converts this special form into IR1.
(
define-info-type
function
ir1-convert
(
or
function
null
))
(
define-info-type
function
ir1-convert
(
or
function
null
#-
new-compiler
list
))
;;; A function which gets a chance to do stuff to the IR1 for any call to this
;;; A function which gets a chance to do stuff to the IR1 for any call to this
;;; function.
;;; function.
(
define-info-type
function
ir1-transform
(
or
function
null
))
(
define-info-type
function
ir1-transform
(
or
function
null
#-
new-compiler
list
))
;;; If a function is an alien-operator, then this is the Alien-Info.
;;; If a function is an alien-operator, then this is the Alien-Info.
(
define-info-type
function
alien-operator
(
or
lisp::alien-info
null
)
nil
)
(
define-info-type
function
alien-operator
(
or
lisp::alien-info
null
)
nil
)
...
@@ -1017,10 +1018,12 @@
...
@@ -1017,10 +1018,12 @@
nil
))
nil
))
;;; Expander function for a defined type.
;;; Expander function for a defined type.
(
define-info-type
type
expander
(
or
function
null
)
nil
)
(
define-info-type
type
expander
(
or
function
null
#-
new-compiler
list
)
nil
)
;;; Print function for a type.
;;; Print function for a type.
(
define-info-type
type
printer
(
or
function
symbol
null
)
nil
)
(
define-info-type
type
printer
(
or
function
symbol
null
#-
new-compiler
list
)
nil
)
;;; Defstruct description information for a structure type. DEFINED is the
;;; Defstruct description information for a structure type. DEFINED is the
;;; current global definition, and is not shadowed by compilation of
;;; current global definition, and is not shadowed by compilation of
...
@@ -1047,10 +1050,8 @@
...
@@ -1047,10 +1050,8 @@
(
define-info-type
setf
documentation
(
or
string
null
)
nil
)
(
define-info-type
setf
documentation
(
or
string
null
)
nil
)
;;; ### bootstrap hack...
(
define-info-type
setf
expander
(
or
function
null
;;; Allow List for function for now.
#-
new-compiler
list
)
nil
)
;;;
(
define-info-type
setf
expander
(
or
function
null
list
)
nil
)
;;; Used for storing random documentation types. The stuff is an alist
;;; Used for storing random documentation types. The stuff is an alist
;;; translating documentation kinds to values.
;;; translating documentation kinds to values.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment