trying to trace down why we're not breaking

This commit is contained in:
Danny Yoo 2013-03-08 16:24:14 -07:00
parent 34ecaa9b68
commit d03f86477f
4 changed files with 22 additions and 23 deletions

View File

@ -300,15 +300,15 @@
var makePrimitiveProcedure = function (name, arity, f) {
var proc = makeClosure(name,
arity,
function(M) {
M.cbt--;
M.v = f(M);
M.e.length -= M.a;
return M.c.pop().label(M);
},
[]);
var impl = function(M) {
if(--M.cbt < 0) {
throw impl;
}
M.v = f(M);
M.e.length -= M.a;
return M.c.pop().label(M);
};
var proc = makeClosure(name, arity, impl, []);
// Also, record the raw implementation of the function.
proc._i = f;
return proc;

View File

@ -15,18 +15,16 @@
this.val = val;
};
var symbolCache = {};
var symbolCache = new baselib.Dict();
var hasOwnProperty = {}.hasOwnProperty;
// makeSymbol: string -> Symbol.
// Interns a symbol.
var makeSymbol = function (val) {
// To ensure that we can eq? symbols with equal values.
if (!(hasOwnProperty.call(symbolCache,val))) {
symbolCache[val] = new Symbol(val);
if (!(symbolCache.has(val))) {
symbolCache.set(val, new Symbol(val));
}
return symbolCache[val];
return symbolCache.get(val);
};
Symbol.prototype.equals = function (other, aUnionFind) {
@ -89,4 +87,4 @@
exports.makeSymbol = makeSymbol;
exports.isSymbol = isSymbol;
}(this.plt.baselib));
}(this.plt.baselib));

View File

@ -478,11 +478,13 @@
MACHINE.running = false;
MACHINE.params.currentErrorHandler(
MACHINE,
makeExnBreak("User break.",
MACHINE.captureContinuationMarks(),
// FIXME: capture the continuation as well,
// rather than just hold false.
false));
new baselib.exceptions.RacketError(
"User break",
makeExnBreak("User break.",
MACHINE.captureContinuationMarks(),
// FIXME: capture the continuation as well,
// rather than just hold false.
false)));
return true;
}
return false;
@ -554,7 +556,6 @@
var that = this;
var thunk = initialJump;
var startTime = (new Date()).valueOf();
that.cbt = STACK_LIMIT_ESTIMATE;
that.params.numBouncesBeforeYield =
that.params.maxNumBouncesBeforeYield;
that.running = true;

View File

@ -104,7 +104,7 @@ $(document).ready(function() {
};
var interruptEvaluation = function() {
console.log('interrupt evaluation');
console.log('scheduling an interruption');
M.scheduleBreak();
};