mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 21:20:07 +00:00
e8680d792e
Scheme program errors without making Rua abort now, although there are a few things that still need to actually report errors instead of failing in weird ways.
50 lines
900 B
R
50 lines
900 B
R
#include "Continuation.h"
|
|
#include "defs.h"
|
|
|
|
@implementation Continuation
|
|
+ (id) newWithState: (state_t []) st pc: (integer) p
|
|
{
|
|
return [[self alloc] initWithState: st pc: p];
|
|
}
|
|
- (id) initWithState: (state_t []) st pc: (integer) p
|
|
{
|
|
self = [self init];
|
|
state.program = st.program;
|
|
state.pc = p;
|
|
state.literals = st.literals;
|
|
state.stack = st.stack;
|
|
state.cont = st.cont;
|
|
state.env = st.env;
|
|
state.proc = st.proc;
|
|
state.lineinfo = st.lineinfo;
|
|
return self;
|
|
}
|
|
|
|
- (void) restoreOnMachine: (Machine) m
|
|
{
|
|
[m state: &state];
|
|
return;
|
|
}
|
|
|
|
- (void) invokeOnMachine: (Machine) m
|
|
{
|
|
[m value: [[m stack] car]];
|
|
[m state: &state];
|
|
return;
|
|
}
|
|
|
|
- (void) markReachable
|
|
{
|
|
[state.literals mark];
|
|
[state.stack mark];
|
|
[state.cont mark];
|
|
[state.env mark];
|
|
[state.proc mark];
|
|
}
|
|
|
|
- (string) printForm
|
|
{
|
|
return "<continuation>";
|
|
}
|
|
|
|
@end
|