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
Container 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Jon Boone
cmucl
Commits
926c825e
Commit
926c825e
authored
13 years ago
by
Raymond Toy
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
git://common-lisp.net/projects/cmucl/cmucl
parents
22a72422
17c9b814
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
code/extfmts.lisp
+43
-16
43 additions, 16 deletions
code/extfmts.lisp
general-info/release-20d.txt
+52
-0
52 additions, 0 deletions
general-info/release-20d.txt
tools/build.sh
+1
-1
1 addition, 1 deletion
tools/build.sh
with
96 additions
and
17 deletions
code/extfmts.lisp
+
43
−
16
View file @
926c825e
...
...
@@ -851,39 +851,66 @@ character and illegal outputs are replaced by a question mark.")
(
funcall
f
state
))))
(
def-ef-macro
ef-string-to-octets
(
extfmt
lisp::lisp
+ef-max+
+ef-so+
)
`
(
lambda
(
string
start
end
buffer
error
&aux
(
ptr
0
)
(
state
nil
))
`
(
lambda
(
string
start
end
buffer
buffer-start
buffer-end
error
bufferp
&aux
(
ptr
buffer-start
)
(
state
nil
)
(
last-octet
buffer-start
))
(
declare
#|(optimize (speed 3) (safety 0) (space 0) (debug 0))|#
(
type
simple-string
string
)
(
type
kernel:index
start
end
ptr
)
(
type
(
simple-array
(
unsigned-byte
8
)
(
*
))
buffer
)
(
ignorable
state
))
(
dotimes
(
i
(
-
end
start
)
(
values
buffer
ptr
))
(
declare
(
type
kernel:index
i
))
(
char-to-octets
,
extfmt
(
schar
string
(
+
start
i
))
state
(
lambda
(
b
)
(
when
(
=
ptr
(
length
buffer
))
(
setq
buffer
(
adjust-array
buffer
(
*
2
ptr
))))
(
setf
(
aref
buffer
(
1-
(
incf
ptr
)))
b
))
error
))))
(
if
bufferp
(
block
ef-string-done
(
dotimes
(
i
(
-
end
start
)
(
values
buffer
ptr
i
))
(
declare
(
type
kernel:index
i
))
(
char-to-octets
,
extfmt
(
schar
string
(
+
start
i
))
state
(
lambda
(
b
)
(
when
(
=
ptr
buffer-end
)
(
return-from
ef-string-done
(
values
buffer
last-octet
i
)))
(
setf
(
aref
buffer
(
1-
(
incf
ptr
)))
b
))
error
)
(
setf
last-octet
ptr
)))
(
dotimes
(
i
(
-
end
start
)
(
values
buffer
ptr
i
))
(
declare
(
type
kernel:index
i
))
(
char-to-octets
,
extfmt
(
schar
string
(
+
start
i
))
state
(
lambda
(
b
)
(
when
(
=
ptr
(
length
buffer
))
(
setq
buffer
(
adjust-array
buffer
(
*
2
ptr
))))
(
setf
(
aref
buffer
(
1-
(
incf
ptr
)))
b
))
error
)))))
(
defun
string-to-octets
(
string
&key
(
start
0
)
end
(
external-format
:default
)
(
buffer
nil
bufferp
)
(
buffer-start
0
)
error
)
"Convert String to octets using the specified External-format. The
string is bounded by Start (defaulting to 0) and End (defaulting to
the end of the string. If Buffer is given, the octets are stored
there. If not, a new buffer is created."
there. If not, a new buffer is created. Buffer-start specifies
where in the buffer the first octet will be placed.
Three values are returned: The buffer, the number of valid octets
written, and the number of characters converted. Note that the
actual number of octets written may be greater than the returned
value, These represent the partial octets of the next character to
be converted, but there was not enough room to hold the complete set
of octets."
(
declare
(
type
string
string
)
(
type
kernel:index
start
)
(
type
(
or
kernel:index
null
)
end
)
(
type
(
or
(
simple-
array
(
unsigned-byte
8
)
(
*
))
null
)
buffer
))
(
type
(
or
(
array
(
unsigned-byte
8
)
(
*
))
null
)
buffer
))
(
let*
((
buffer
(
or
buffer
(
make-array
(
length
string
)
:element-type
'
(
unsigned-byte
8
)))))
(
multiple-value-bind
(
buffer
ptr
)
(
lisp::with-array-data
((
string
string
)
(
start
start
)
(
end
end
))
(
funcall
(
ef-string-to-octets
external-format
)
string
start
end
buffer
error
))
(
values
(
if
bufferp
buffer
(
lisp::shrink-vector
buffer
ptr
))
ptr
))))
(
lisp::with-array-data
((
b
buffer
)
(
b-start
)
(
b-end
))
(
multiple-value-bind
(
result
ptr
octets
)
(
lisp::with-array-data
((
string
string
)
(
start
start
)
(
end
end
))
(
funcall
(
ef-string-to-octets
external-format
)
string
start
end
b
(
+
b-start
buffer-start
)
b-end
error
bufferp
))
(
values
(
if
bufferp
buffer
(
lisp::shrink-vector
result
ptr
))
(
-
ptr
b-start
buffer-start
)
octets
)))))
(
def-ef-macro
ef-octets-to-string
(
extfmt
lisp::lisp
+ef-max+
+ef-os+
)
`
(
lambda
(
octets
ptr
end
state
string
s-start
s-end
error
...
...
This diff is collapsed.
Click to expand it.
general-info/release-20d.txt
0 → 100644
+
52
−
0
View file @
926c825e
========================== C M U C L 20 d =============================
[Not yet released]
The CMUCL project is pleased to announce the release of CMUCL 20d.
This is a major release which contains numerous enhancements and
bug fixes from the 20c release.
CMUCL is a free, high performance implementation of the Common Lisp
programming language which runs on most major Unix platforms. It
mainly conforms to the ANSI Common Lisp standard. CMUCL provides a
sophisticated native code compiler; a powerful foreign function
interface; an implementation of CLOS, the Common Lisp Object System,
which includes multi-methods and a meta-object protocol; a source-level
debugger and code profiler; and an Emacs-like editor implemented in
Common Lisp. CMUCL is maintained by a team of volunteers collaborating
over the Internet, and is mostly in the public domain.
New in this release:
* Known issues:
* Feature enhancements
* Changes
* ASDF2 updated to version 2.018.
* Behavior of STRING-TO-OCTETS has changed. This is an
incompatible change from the previous version but should be more
useful when a buffer is given which is not large enough to hold
all the octets for the given string. See docstring for more
details.
* ANSI compliance fixes:
* Bugfixes:
* Trac Tickets:
* Other changes:
* Improvements to the PCL implementation of CLOS:
* Changes to building procedure:
This release is not binary compatible with code compiled using CMUCL
20c; you will need to recompile FASL files.
See <URL:http://www.cons.org/cmucl/> for download information,
guidelines on reporting bugs, and mailing list details.
We hope you enjoy using this release of CMUCL!
This diff is collapsed.
Click to expand it.
tools/build.sh
+
1
−
1
View file @
926c825e
...
...
@@ -39,7 +39,7 @@ ENABLE2="yes"
ENABLE3
=
"yes"
ENABLE4
=
"yes"
version
=
20
b
version
=
20
c
SRCDIR
=
src
TOOLDIR
=
$SRCDIR
/tools
VERSION
=
"
`
date
'+%Y-%m-%d %H:%M:%S'
`
"
...
...
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