SCI: Revert r47929 (bad idea, as we may run out of offsets). Instead, adapt SCI32 list iteration code to store node successor before invoking.

svn-id: r48036
This commit is contained in:
Walter van Niftrik 2010-02-12 02:23:28 +00:00
parent 7eb92eb1cd
commit a3a07f19fc
2 changed files with 12 additions and 31 deletions

View file

@ -521,14 +521,15 @@ reg_t kListIndexOf(EngineState *s, int argc, reg_t *argv) {
reg_t kListEachElementDo(EngineState *s, int argc, reg_t *argv) { reg_t kListEachElementDo(EngineState *s, int argc, reg_t *argv) {
List *list = s->_segMan->lookupList(argv[0]); List *list = s->_segMan->lookupList(argv[0]);
reg_t curAddress = list->first; Node *curNode = s->_segMan->lookupNode(list->first);
Node *curNode = s->_segMan->lookupNode(curAddress);
reg_t curObject; reg_t curObject;
Selector slc = argv[1].toUint16(); Selector slc = argv[1].toUint16();
ObjVarRef address; ObjVarRef address;
while (curNode) { while (curNode) {
// We get the next node here as the current node might be gone after the invoke
reg_t nextNode = curNode->succ;
curObject = curNode->value; curObject = curNode->value;
// First, check if the target selector is a variable // First, check if the target selector is a variable
@ -543,11 +544,7 @@ reg_t kListEachElementDo(EngineState *s, int argc, reg_t *argv) {
invoke_selector_argv(s, curObject, slc, kContinueOnInvalidSelector, argc, argv, argc - 2, argv + 2); invoke_selector_argv(s, curObject, slc, kContinueOnInvalidSelector, argc, argv, argc - 2, argv + 2);
} }
// Lookup node again, since the nodetable it was in may have been reallocated curNode = s->_segMan->lookupNode(nextNode);
curNode = s->_segMan->lookupNode(curAddress);
curAddress = curNode->succ;
curNode = s->_segMan->lookupNode(curAddress);
} }
return s->r_acc; return s->r_acc;
@ -556,8 +553,7 @@ reg_t kListEachElementDo(EngineState *s, int argc, reg_t *argv) {
reg_t kListFirstTrue(EngineState *s, int argc, reg_t *argv) { reg_t kListFirstTrue(EngineState *s, int argc, reg_t *argv) {
List *list = s->_segMan->lookupList(argv[0]); List *list = s->_segMan->lookupList(argv[0]);
reg_t curAddress = list->first; Node *curNode = s->_segMan->lookupNode(list->first);
Node *curNode = s->_segMan->lookupNode(curAddress);
reg_t curObject; reg_t curObject;
Selector slc = argv[1].toUint16(); Selector slc = argv[1].toUint16();
@ -566,6 +562,7 @@ reg_t kListFirstTrue(EngineState *s, int argc, reg_t *argv) {
s->r_acc = NULL_REG; // reset the accumulator s->r_acc = NULL_REG; // reset the accumulator
while (curNode) { while (curNode) {
reg_t nextNode = curNode->succ;
curObject = curNode->value; curObject = curNode->value;
// First, check if the target selector is a variable // First, check if the target selector is a variable
@ -580,11 +577,7 @@ reg_t kListFirstTrue(EngineState *s, int argc, reg_t *argv) {
return curObject; return curObject;
} }
// Lookup node again, since the nodetable it was in may have been reallocated curNode = s->_segMan->lookupNode(nextNode);
curNode = s->_segMan->lookupNode(curAddress);
curAddress = curNode->succ;
curNode = s->_segMan->lookupNode(curAddress);
} }
// No selector returned true // No selector returned true
@ -594,8 +587,7 @@ reg_t kListFirstTrue(EngineState *s, int argc, reg_t *argv) {
reg_t kListAllTrue(EngineState *s, int argc, reg_t *argv) { reg_t kListAllTrue(EngineState *s, int argc, reg_t *argv) {
List *list = s->_segMan->lookupList(argv[0]); List *list = s->_segMan->lookupList(argv[0]);
reg_t curAddress = list->first; Node *curNode = s->_segMan->lookupNode(list->first);
Node *curNode = s->_segMan->lookupNode(curAddress);
reg_t curObject; reg_t curObject;
Selector slc = argv[1].toUint16(); Selector slc = argv[1].toUint16();
@ -604,6 +596,7 @@ reg_t kListAllTrue(EngineState *s, int argc, reg_t *argv) {
s->r_acc = make_reg(0, 1); // reset the accumulator s->r_acc = make_reg(0, 1); // reset the accumulator
while (curNode) { while (curNode) {
reg_t nextNode = curNode->succ;
curObject = curNode->value; curObject = curNode->value;
// First, check if the target selector is a variable // First, check if the target selector is a variable
@ -618,11 +611,7 @@ reg_t kListAllTrue(EngineState *s, int argc, reg_t *argv) {
break; break;
} }
// Lookup node again, since the nodetable it was in may have been reallocated curNode = s->_segMan->lookupNode(nextNode);
curNode = s->_segMan->lookupNode(curAddress);
curAddress = curNode->succ;
curNode = s->_segMan->lookupNode(curAddress);
} }
return s->r_acc; return s->r_acc;

View file

@ -621,16 +621,8 @@ static void callKernelFunc(EngineState *s, int kernelFuncNum, int argc) {
static void gc_countdown(EngineState *s) { static void gc_countdown(EngineState *s) {
if (s->gc_countdown-- <= 0) { if (s->gc_countdown-- <= 0) {
// Only run garbage collection when execution stack base
// is zero, as it cannot count references inside kernel
// functions
if (s->execution_stack_base == 0) {
s->gc_countdown = script_gc_interval; s->gc_countdown = script_gc_interval;
run_gc(s); run_gc(s);
} else {
// Try again later
s->gc_countdown = 1;
}
} }
} }