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
8247a95c
Commit
8247a95c
authored
14 years ago
by
rtoy
Browse files
Options
Downloads
Patches
Plain Diff
More comment cleanups.
parent
ebdda997
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lisp/elf.c
+24
-23
24 additions, 23 deletions
lisp/elf.c
lisp/mach-o.c
+9
-3
9 additions, 3 deletions
lisp/mach-o.c
with
33 additions
and
26 deletions
lisp/elf.c
+
24
−
23
View file @
8247a95c
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
Above changes put into main CVS branch. 05-Jul-2007.
Above changes put into main CVS branch. 05-Jul-2007.
$Id: elf.c,v 1.2
8
2010/08/02 21:
45:36
rtoy Exp $
$Id: elf.c,v 1.2
9
2010/08/02 21:
59:43
rtoy Exp $
*/
*/
#include
<stdio.h>
#include
<stdio.h>
...
@@ -466,17 +466,18 @@ map_core_sections(const char *exec_name)
...
@@ -466,17 +466,18 @@ map_core_sections(const char *exec_name)
if
(
!
strncmp
(
nambuf
,
section_names
[
j
],
6
))
{
if
(
!
strncmp
(
nambuf
,
section_names
[
j
],
6
))
{
os_vm_address_t
addr
;
os_vm_address_t
addr
;
/*
/*
* On Solaris, the section header sets the addr
* Found a core section. Map it!
* field to 0 because the linker script says the
* sections are NOTE sections. Hence, we need to
* look up the section addresses ourselves.
*
*
* For other systems, we don't care what the
* Although the segment may contain the correct
* address is. We infer the address from the
* address for the start of the segment, we don't
* segment name.
* care. We infer the address from the segment
* name. (The names better be unique!!!!) This
* approach allows for a possibly simpler linking
* operation because we don't have to figure out
* how to get the linker to give segments the
* correct address.
*/
*/
addr
=
section_addr
[
j
];
addr
=
section_addr
[
j
];
/* Found a core section. Map it! */
if
((
os_vm_address_t
)
os_map
(
exec_fd
,
sh
.
sh_offset
,
if
((
os_vm_address_t
)
os_map
(
exec_fd
,
sh
.
sh_offset
,
addr
,
sh
.
sh_size
)
addr
,
sh
.
sh_size
)
==
(
os_vm_address_t
)
-
1
)
{
==
(
os_vm_address_t
)
-
1
)
{
...
@@ -484,20 +485,20 @@ map_core_sections(const char *exec_name)
...
@@ -484,20 +485,20 @@ map_core_sections(const char *exec_name)
exit
(
-
1
);
exit
(
-
1
);
}
}
switch
(
j
)
{
switch
(
j
)
{
case
0
:
/* Dynamic space. */
case
0
:
/* Dynamic space. */
/* Dynamic space variables are set in lisp.c. */
/* Dynamic space variables are set in lisp.c. */
image_dynamic_space_size
=
sh
.
sh_size
;
image_dynamic_space_size
=
sh
.
sh_size
;
break
;
break
;
case
1
:
/* Static space. */
case
1
:
/* Static space. */
image_static_space_size
=
sh
.
sh_size
;
image_static_space_size
=
sh
.
sh_size
;
break
;
break
;
case
2
:
/* Read-only space. */
case
2
:
/* Read-only space. */
image_read_only_space_size
=
sh
.
sh_size
;
image_read_only_space_size
=
sh
.
sh_size
;
break
;
break
;
default:
default:
/* Should never get here. */
/* Should never get here. */
abort
();
abort
();
break
;
break
;
}
}
sections_remaining
--
;
sections_remaining
--
;
...
...
This diff is collapsed.
Click to expand it.
lisp/mach-o.c
+
9
−
3
View file @
8247a95c
/*
/*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/mach-o.c,v 1.
6
2010/08/02 21:
45:36
rtoy
Exp
$
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/mach-o.c,v 1.
7
2010/08/02 21:
59:43
rtoy
Rel
$
*
*
* This code was written by Raymond Toy as part of CMU Common Lisp and
* This code was written by Raymond Toy as part of CMU Common Lisp and
* has been placed in the public domain.
* has been placed in the public domain.
...
@@ -413,11 +413,17 @@ map_core_sections(const char *exec_name)
...
@@ -413,11 +413,17 @@ map_core_sections(const char *exec_name)
#endif
#endif
if
(
lc
.
cmd
==
LC_SEGMENT
)
{
if
(
lc
.
cmd
==
LC_SEGMENT
)
{
/* Read the rest of the command, which is a segment command. */
/*
* Got a segment command, so read the rest of the command so
* we can see if it's the segment for one of our Lisp
* spaces.
*/
#ifdef DEBUG_MACH_O
#ifdef DEBUG_MACH_O
fprintf
(
stderr
,
"Reading next %ld bytes for SEGMENT
\n
"
,
sizeof
(
sc
)
-
sizeof
(
lc
));
fprintf
(
stderr
,
"Reading next %ld bytes for SEGMENT
\n
"
,
sizeof
(
sc
)
-
sizeof
(
lc
));
#endif
#endif
eread
(
exec_fd
,
&
sc
.
segname
,
sizeof
(
sc
)
-
sizeof
(
lc
),
__func__
);
eread
(
exec_fd
,
&
sc
.
segname
,
sizeof
(
sc
)
-
sizeof
(
lc
),
__func__
);
#ifdef DEBUG_MACH_O
#ifdef DEBUG_MACH_O
fprintf
(
stderr
,
"LC_SEGMENT: name = %s
\n
"
,
sc
.
segname
);
fprintf
(
stderr
,
"LC_SEGMENT: name = %s
\n
"
,
sc
.
segname
);
#endif
#endif
...
@@ -475,7 +481,7 @@ map_core_sections(const char *exec_name)
...
@@ -475,7 +481,7 @@ map_core_sections(const char *exec_name)
#endif
#endif
elseek
(
exec_fd
,
lc
.
cmdsize
-
sizeof
(
sc
),
SEEK_CUR
,
__func__
);
elseek
(
exec_fd
,
lc
.
cmdsize
-
sizeof
(
sc
),
SEEK_CUR
,
__func__
);
}
else
{
}
else
{
/*
S
eek to the next command */
/*
Not a segment command, so s
eek to the next command */
#ifdef DEBUG_MACH_O
#ifdef DEBUG_MACH_O
fprintf
(
stderr
,
"Seeking by %ld bytes
\n
"
,
lc
.
cmdsize
-
sizeof
(
lc
));
fprintf
(
stderr
,
"Seeking by %ld bytes
\n
"
,
lc
.
cmdsize
-
sizeof
(
lc
));
#endif
#endif
...
...
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