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
0bcc733e
Commit
0bcc733e
authored
21 years ago
by
toy
Browse files
Options
Downloads
Patches
Plain Diff
Bootfile for callback support.
parent
0a0d8902
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
bootfiles/18e/boot9.lisp
+58
-0
58 additions, 0 deletions
bootfiles/18e/boot9.lisp
with
58 additions
and
0 deletions
bootfiles/18e/boot9.lisp
0 → 100644
+
58
−
0
View file @
0bcc733e
;;; Bootstrap file for callback support
;;;
;;;
(
in-package
:alien
)
;;; Some abbreviations for alien-type classes. The $ suffix is there
;;; to prevent name clashes.
(
deftype
void$
()
'
(
satisfies
alien-void-type-p
))
(
deftype
integer$
()
'alien::alien-integer-type
)
(
deftype
integer-64$
()
'
(
satisfies
alien-integer-64-type-p
))
(
deftype
signed-integer$
()
'
(
satisfies
alien-signed-integer-type-p
))
(
deftype
pointer$
()
'alien::alien-pointer-type
)
(
deftype
single$
()
'alien::alien-single-float-type
)
(
deftype
double$
()
'alien::alien-double-float-type
)
(
deftype
sap$
()
'
(
satisfies
alien-sap-type=
))
(
defun
alien-sap-type=
(
type
)
(
alien::alien-type-=
type
(
alien::parse-alien-type
'system-area-pointer
)))
(
defun
alien-void-type-p
(
type
)
(
and
(
alien::alien-values-type-p
type
)
(
null
(
alien::alien-values-type-values
type
))))
(
defun
alien-integer-64-type-p
(
type
)
(
and
(
alien::alien-integer-type-p
type
)
(
=
(
alien::alien-type-bits
type
)
64
)))
(
defun
alien-signed-integer-type-p
(
type
)
(
and
(
alien::alien-integer-type-p
type
)
(
alien::alien-integer-type-signed
type
)))
(
defun
segment-to-trampoline
(
segment
length
)
(
let*
((
code
(
alien-funcall
(
extern-alien
"malloc"
(
function
system-area-pointer
unsigned
))
length
))
(
fill-pointer
code
))
(
new-assem:segment-map-output
segment
(
lambda
(
sap
length
)
(
kernel:system-area-copy
sap
0
fill-pointer
0
(
*
length
vm:byte-bits
))
(
setf
fill-pointer
(
sys:sap+
fill-pointer
length
))))
code
))
(
in-package
:vm
)
(
export
'
(
make-callback-trampoline
callback-accessor-form
))
;; Just define the function for bootstrap. The real one will get
;; defined later.
(
defun
make-callback-trampoline
(
index
return-type
)
)
(
defun
callback-accessor-form
(
type
sp
offset
)
)
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