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
4d23fe3c
Commit
4d23fe3c
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
added lots of #ifdefs to conditionalize machine specific parts.
parent
ac0996bc
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
ldb/interrupt.c
+18
-3
18 additions, 3 deletions
ldb/interrupt.c
with
18 additions
and
3 deletions
ldb/interrupt.c
+
18
−
3
View file @
4d23fe3c
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/interrupt.c,v 1.1
1
1990/10/2
2
1
2:38:51
wlott Exp $ */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/interrupt.c,v 1.1
2
1990/10/2
9
1
9:24:18
wlott Exp $ */
/* Interrupt handing magic. */
/* Interrupt handing magic. */
...
@@ -32,7 +32,9 @@ static void fake_foreign_function_call(context)
...
@@ -32,7 +32,9 @@ static void fake_foreign_function_call(context)
/* Get current LISP state from context */
/* Get current LISP state from context */
current_dynamic_space_free_pointer
=
(
lispobj
*
)
context
->
sc_regs
[
ALLOC
];
current_dynamic_space_free_pointer
=
(
lispobj
*
)
context
->
sc_regs
[
ALLOC
];
current_binding_stack_pointer
=
(
lispobj
*
)
context
->
sc_regs
[
BSP
];
current_binding_stack_pointer
=
(
lispobj
*
)
context
->
sc_regs
[
BSP
];
#ifdef MIPS
current_flags_register
=
context
->
sc_regs
[
FLAGS
]
|
(
1
<<
flag_Atomic
);
current_flags_register
=
context
->
sc_regs
[
FLAGS
]
|
(
1
<<
flag_Atomic
);
#endif
/* Build a fake stack frame */
/* Build a fake stack frame */
current_control_frame_pointer
=
(
lispobj
*
)
context
->
sc_regs
[
CSP
];
current_control_frame_pointer
=
(
lispobj
*
)
context
->
sc_regs
[
CSP
];
...
@@ -157,13 +159,18 @@ struct sigcontext *context;
...
@@ -157,13 +159,18 @@ struct sigcontext *context;
pending_mask
=
context
->
sc_mask
;
pending_mask
=
context
->
sc_mask
;
context
->
sc_mask
|=
BLOCKABLE
;
context
->
sc_mask
|=
BLOCKABLE
;
SetSymbolValue
(
INTERRUPT_PENDING
,
T
);
SetSymbolValue
(
INTERRUPT_PENDING
,
T
);
}
else
if
((
!
foreign_function_call_active
)
&&
}
else
if
((
!
foreign_function_call_active
)
(
context
->
sc_regs
[
FLAGS
]
&
(
1
<<
flag_Atomic
)))
{
#ifdef mips
&&
(
context
->
sc_regs
[
FLAGS
]
&
(
1
<<
flag_Atomic
))
#endif
)
{
pending_signal
=
signal
;
pending_signal
=
signal
;
pending_code
=
code
;
pending_code
=
code
;
pending_mask
=
context
->
sc_mask
;
pending_mask
=
context
->
sc_mask
;
context
->
sc_mask
|=
BLOCKABLE
;
context
->
sc_mask
|=
BLOCKABLE
;
#ifdef mips
context
->
sc_regs
[
FLAGS
]
|=
(
1
<<
flag_Interrupted
);
context
->
sc_regs
[
FLAGS
]
|=
(
1
<<
flag_Interrupted
);
#endif
}
else
}
else
handle_now
(
signal
,
code
,
context
);
handle_now
(
signal
,
code
,
context
);
}
}
...
@@ -171,11 +178,17 @@ struct sigcontext *context;
...
@@ -171,11 +178,17 @@ struct sigcontext *context;
static
void
skip_instruction
(
context
)
static
void
skip_instruction
(
context
)
struct
sigcontext
*
context
;
struct
sigcontext
*
context
;
{
{
#ifdef mips
/* Skip the offending instruction */
/* Skip the offending instruction */
if
(
context
->
sc_cause
&
CAUSE_BD
)
if
(
context
->
sc_cause
&
CAUSE_BD
)
emulate_branch
(
context
,
*
(
unsigned
long
*
)
context
->
sc_pc
);
emulate_branch
(
context
,
*
(
unsigned
long
*
)
context
->
sc_pc
);
else
else
context
->
sc_pc
+=
4
;
context
->
sc_pc
+=
4
;
#endif
#ifdef sparc
context
->
sc_pc
=
context
->
sc_npc
;
context
->
sc_npc
+=
4
;
#endif
}
}
#define call_maybe_gc() \
#define call_maybe_gc() \
...
@@ -190,7 +203,9 @@ struct sigcontext *context;
...
@@ -190,7 +203,9 @@ struct sigcontext *context;
if
(
foreign_function_call_active
)
if
(
foreign_function_call_active
)
crap_out
(
"Oh no, got a PendingInterrupt while foreign function call was active.
\n
"
);
crap_out
(
"Oh no, got a PendingInterrupt while foreign function call was active.
\n
"
);
#ifdef mips
context
->
sc_regs
[
FLAGS
]
&=
~
(
1
<<
flag_Interrupted
);
context
->
sc_regs
[
FLAGS
]
&=
~
(
1
<<
flag_Interrupted
);
#endif
SetSymbolValue
(
INTERRUPT_PENDING
,
NIL
);
SetSymbolValue
(
INTERRUPT_PENDING
,
NIL
);
if
(
maybe_gc_pending
)
{
if
(
maybe_gc_pending
)
{
maybe_gc_pending
=
FALSE
;
maybe_gc_pending
=
FALSE
;
...
...
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