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

View File

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

View File

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

View File

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