Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl-copy
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
Richard M Kreuter
cmucl-copy
Commits
950d9f01
Commit
950d9f01
authored
19 years ago
by
rtoy
Browse files
Options
Downloads
Patches
Plain Diff
Signal a program-error instead of error when the number of arguments
to a methood is wrong. Bug found by ansi-tests.
parent
43025687
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pcl/boot.lisp
+7
-7
7 additions, 7 deletions
pcl/boot.lisp
pcl/dfun.lisp
+6
-1
6 additions, 1 deletion
pcl/dfun.lisp
pcl/low.lisp
+6
-1
6 additions, 1 deletion
pcl/low.lisp
with
19 additions
and
9 deletions
pcl/boot.lisp
+
7
−
7
View file @
950d9f01
...
...
@@ -25,7 +25,7 @@
;;; *************************************************************************
(
file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/boot.lisp,v 1.7
2
200
4
/0
4/06 20:44
:0
2
rtoy
Exp
$"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/boot.lisp,v 1.7
3
200
5
/0
8/18 16:55
:0
0
rtoy
Rel
$"
)
(
in-package
:pcl
)
...
...
@@ -910,15 +910,15 @@ work during bootstrapping.
(
cond
((
null
args
)
(
if
(
eql
nreq
0
)
(
invoke-fast-method-call
emf
)
(
internal-error
"Wrong number of args."
)))
(
internal-
program-
error
emf
"Wrong number of args."
)))
((
null
(
cdr
args
))
(
if
(
eql
nreq
1
)
(
invoke-fast-method-call
emf
(
car
args
))
(
internal-error
"Wrong number of args."
)))
(
internal-
program-
error
emf
"Wrong number of args."
)))
((
null
(
cddr
args
))
(
if
(
eql
nreq
2
)
(
invoke-fast-method-call
emf
(
car
args
)
(
cadr
args
))
(
internal-error
"Wrong number of args."
)))
(
internal-
program-
error
emf
"Wrong number of args."
)))
(
t
(
apply
(
fast-method-call-function
emf
)
(
fast-method-call-pv-cell
emf
)
...
...
@@ -930,7 +930,7 @@ work during bootstrapping.
(
method-call-call-method-args
emf
)))
(
fixnum
(
cond
((
null
args
)
(
internal-error
"1 or 2 args expected."
))
(
internal-
program-
error
emf
"1 or 2 args expected."
))
((
null
(
cdr
args
))
(
let
((
value
(
%slot-ref
(
get-slots
(
car
args
))
emf
)))
(
if
(
eq
value
+slot-unbound+
)
...
...
@@ -940,10 +940,10 @@ work during bootstrapping.
(
setf
(
%slot-ref
(
get-slots
(
cadr
args
))
emf
)
(
car
args
)))
(
t
(
internal-error
"1 or 2 args expected."
))))
(
internal-
program-
error
emf
"1 or 2 args expected."
))))
(
fast-instance-boundp
(
if
(
or
(
null
args
)
(
cdr
args
))
(
internal-error
"1 arg expected."
)
(
internal-
program-
error
emf
"1 arg expected."
)
(
not
(
eq
(
%slot-ref
(
get-slots
(
car
args
))
(
fast-instance-boundp-index
emf
))
+slot-unbound+
))))
...
...
This diff is collapsed.
Click to expand it.
pcl/dfun.lisp
+
6
−
1
View file @
950d9f01
...
...
@@ -25,7 +25,7 @@
;;; *************************************************************************
(
file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/dfun.lisp,v 1.3
7
2005/0
6
/1
5
1
7:30:59
rtoy Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/dfun.lisp,v 1.3
8
2005/0
8
/1
8
1
6:55:00
rtoy Exp $"
)
(
in-package
:pcl
)
...
...
@@ -1127,8 +1127,13 @@ And so, we are saved.
(
declare
(
ignore
nreq
applyp
nkeys
))
(
with-dfun-wrappers
(
args
metatypes
)
(
dfun-wrappers
invalid-wrapper-p
wrappers
classes
types
)
#+
nil
(
error
"~@<The function ~S requires at least ~D arguments.~@:>"
gf
(
length
metatypes
))
(
error
'kernel:simple-program-error
:name
gf
:format-control
"~<The function ~S requires at least ~D arguments.~@:>"
:format-arguments
(
list
gf
(
length
metatypes
)))
(
multiple-value-bind
(
emf
methods
accessor-type
index
)
(
cache-miss-values-internal
gf
arg-info
wrappers
classes
types
state
)
(
values
emf
methods
...
...
This diff is collapsed.
Click to expand it.
pcl/low.lisp
+
6
−
1
View file @
950d9f01
...
...
@@ -26,7 +26,7 @@
;;;
(
file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/low.lisp,v 1.3
2
200
3
/0
5/26 16:03:08 gerd
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/low.lisp,v 1.3
3
200
5
/0
8/18 16:55:01 rtoy
Exp $"
)
;;;
;;; This file contains optimized low-level constructs for PCL.
...
...
@@ -420,6 +420,11 @@ the compiler as completely as possible. Currently this means that
(
error
(
format
nil
"~~@<Internal error: ~?~~@:>"
format-control
format-args
)))
(
defun
internal-program-error
(
name
&rest
args
)
(
error
'kernel:simple-program-error
:function-name
name
:format-control
(
car
args
)
:format-arguments
(
list
(
cdr
args
))))
;;;; Structure-instance stuff:
...
...
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