micro-optimization: replaced undefined with void(0), and tried to keep environment array dense by using explicit stack push instead of assigning to the length argument
This commit is contained in:
parent
e253084850
commit
cb745f18b7
|
@ -22,7 +22,7 @@
|
||||||
;; Small optimization: try to avoid creating the array if we know up front
|
;; Small optimization: try to avoid creating the array if we know up front
|
||||||
;; that the closure has no closed values.
|
;; that the closure has no closed values.
|
||||||
[(null? (MakeCompiledProcedure-closed-vals op))
|
[(null? (MakeCompiledProcedure-closed-vals op))
|
||||||
(format "new RT.Closure(~a,~a,undefined,~a)"
|
(format "new RT.Closure(~a,~a,void(0),~a)"
|
||||||
(assemble-label (make-Label (MakeCompiledProcedure-label op))
|
(assemble-label (make-Label (MakeCompiledProcedure-label op))
|
||||||
blockht)
|
blockht)
|
||||||
(assemble-arity (MakeCompiledProcedure-arity op))
|
(assemble-arity (MakeCompiledProcedure-arity op))
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
(assemble-display-name (MakeCompiledProcedure-display-name op)))])]
|
(assemble-display-name (MakeCompiledProcedure-display-name op)))])]
|
||||||
|
|
||||||
[(MakeCompiledProcedureShell? op)
|
[(MakeCompiledProcedureShell? op)
|
||||||
(format "new RT.Closure(~a,~a,undefined,~a)"
|
(format "new RT.Closure(~a,~a,void(0),~a)"
|
||||||
(assemble-label (make-Label (MakeCompiledProcedureShell-label op))
|
(assemble-label (make-Label (MakeCompiledProcedureShell-label op))
|
||||||
blockht)
|
blockht)
|
||||||
(assemble-arity (MakeCompiledProcedureShell-arity op))
|
(assemble-arity (MakeCompiledProcedureShell-arity op))
|
||||||
|
|
|
@ -494,7 +494,7 @@
|
||||||
(symbol->string (ModuleLocator-name modname)))]
|
(symbol->string (ModuleLocator-name modname)))]
|
||||||
|
|
||||||
[(eq? pred 'linked?)
|
[(eq? pred 'linked?)
|
||||||
(format "(M.modules[~s]!==undefined)"
|
(format "(M.modules[~s]!==void(0))"
|
||||||
(symbol->string (ModuleLocator-name modname)))]))
|
(symbol->string (ModuleLocator-name modname)))]))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
(cond
|
(cond
|
||||||
|
|
||||||
[(CheckToplevelBound!? op)
|
[(CheckToplevelBound!? op)
|
||||||
(format "if (M.e[M.e.length-~a][~a]===undefined){ RT.raiseUnboundToplevelError(M,M.e[M.e.length-~a].names[~a]); }"
|
(format "if (M.e[M.e.length-~a][~a]===void(0)){ RT.raiseUnboundToplevelError(M,M.e[M.e.length-~a].names[~a]); }"
|
||||||
(add1 (CheckToplevelBound!-depth op))
|
(add1 (CheckToplevelBound!-depth op))
|
||||||
(CheckToplevelBound!-pos op)
|
(CheckToplevelBound!-pos op)
|
||||||
(add1 (CheckToplevelBound!-depth op))
|
(add1 (CheckToplevelBound!-depth op))
|
||||||
|
|
|
@ -567,10 +567,16 @@ EOF
|
||||||
(format "M.e.push(~a);" (string-join
|
(format "M.e.push(~a);" (string-join
|
||||||
(build-list (PushEnvironment-n stmt)
|
(build-list (PushEnvironment-n stmt)
|
||||||
(lambda: ([i : Natural])
|
(lambda: ([i : Natural])
|
||||||
"[undefined]"))
|
"[void(0)]"))
|
||||||
", "))]
|
","))]
|
||||||
[else
|
[else
|
||||||
(format "M.e.length+=~a;" (PushEnvironment-n stmt))])]
|
(format "M.e.push(~a);" (string-join
|
||||||
|
(build-list (PushEnvironment-n stmt)
|
||||||
|
(lambda: ([i : Natural])
|
||||||
|
"void(0)"))
|
||||||
|
","))
|
||||||
|
;(format "M.e.length+=~a;" (PushEnvironment-n stmt))
|
||||||
|
])]
|
||||||
[(PopEnvironment? stmt)
|
[(PopEnvironment? stmt)
|
||||||
(let: ([skip : OpArg (PopEnvironment-skip stmt)])
|
(let: ([skip : OpArg (PopEnvironment-skip stmt)])
|
||||||
(cond
|
(cond
|
||||||
|
@ -603,7 +609,7 @@ EOF
|
||||||
(cond
|
(cond
|
||||||
#;[(current-emit-debug-trace?)
|
#;[(current-emit-debug-trace?)
|
||||||
(string-append
|
(string-append
|
||||||
(format "if(typeof(window.console)!=='undefined'&&typeof(window.console.log)==='function'){window.console.log(~s);\n}"
|
(format "if(window.console!==void(0)&&typeof(window.console.log)==='function'){window.console.log(~s);\n}"
|
||||||
(format "~a" stmt))
|
(format "~a" stmt))
|
||||||
assembled)]
|
assembled)]
|
||||||
[else
|
[else
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
var Bytes = function(bts, mutable) {
|
var Bytes = function(bts, mutable) {
|
||||||
// bytes: arrayof [0-255]
|
// bytes: arrayof [0-255]
|
||||||
this.bytes = bts;
|
this.bytes = bts;
|
||||||
this.mutable = (mutable === undefined) ? false : mutable;
|
this.mutable = (mutable === void(0)) ? false : mutable;
|
||||||
};
|
};
|
||||||
|
|
||||||
Bytes.prototype.get = function(i) {
|
Bytes.prototype.get = function(i) {
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
Bytes.prototype.subbytes = function(start, end) {
|
Bytes.prototype.subbytes = function(start, end) {
|
||||||
if (end === null || end === undefined) {
|
if (end === null || end === void(0)) {
|
||||||
end = this.bytes.length;
|
end = this.bytes.length;
|
||||||
}
|
}
|
||||||
return new Bytes( this.bytes.slice(start, end), true );
|
return new Bytes( this.bytes.slice(start, end), true );
|
||||||
|
|
|
@ -38,13 +38,13 @@
|
||||||
return x.toString() === y.toString();
|
return x.toString() === y.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (x === undefined || x === null) {
|
if (x === void(0) || x === null) {
|
||||||
return (y === undefined || y === null);
|
return (y === void(0) || y === null);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof (x) === 'object' && typeof (y) === 'object' &&
|
if (typeof (x) === 'object' && typeof (y) === 'object' &&
|
||||||
x.equals && y.equals) {
|
x.equals && y.equals) {
|
||||||
if (typeof (aUnionFind) === 'undefined') {
|
if (aUnionFind === void(0)) {
|
||||||
aUnionFind = new baselib.UnionFind();
|
aUnionFind = new baselib.UnionFind();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -69,10 +69,10 @@
|
||||||
e = new RacketError(Exn.accessor(e, 0), e);
|
e = new RacketError(Exn.accessor(e, 0), e);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof(window.console) !== 'undefined' &&
|
if (window.console !== void(0) &&
|
||||||
typeof(window.console['log']) === 'function') {
|
typeof(window.console.log) === 'function') {
|
||||||
window.console.log(MACHINE);
|
window.console.log(MACHINE);
|
||||||
if (e['stack']) { window.console.log(e['stack']); }
|
if (e.stack) { window.console.log(e.stack); }
|
||||||
else { window.console.log(e); }
|
else { window.console.log(e); }
|
||||||
}
|
}
|
||||||
throw e;
|
throw e;
|
||||||
|
@ -108,7 +108,7 @@
|
||||||
actualValue) {
|
actualValue) {
|
||||||
var message;
|
var message;
|
||||||
var contMarks = MACHINE.captureContinuationMarks();
|
var contMarks = MACHINE.captureContinuationMarks();
|
||||||
if (argumentOffset !== undefined) {
|
if (argumentOffset !== void(0)) {
|
||||||
message = baselib.format.format(
|
message = baselib.format.format(
|
||||||
"~a: expected ~a as argument ~e but received ~e",
|
"~a: expected ~a as argument ~e but received ~e",
|
||||||
[callerName,
|
[callerName,
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
return "...";
|
return "...";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (x === undefined) {
|
if (x === void(0)) {
|
||||||
return "#<undefined>";
|
return "#<undefined>";
|
||||||
}
|
}
|
||||||
if (typeof(x) === 'string') {
|
if (typeof(x) === 'string') {
|
||||||
|
@ -103,7 +103,7 @@
|
||||||
return "...";
|
return "...";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (x === undefined || x === null) {
|
if (x === void(0) || x === null) {
|
||||||
return "#<undefined>";
|
return "#<undefined>";
|
||||||
}
|
}
|
||||||
if (typeof(x) === 'string') {
|
if (typeof(x) === 'string') {
|
||||||
|
@ -208,16 +208,16 @@
|
||||||
this[k] = params[k];
|
this[k] = params[k];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (this.cache === undefined) {
|
if (this.cache === void(0)) {
|
||||||
this.cache = baselib.hashes.makeLowLevelEqHash();
|
this.cache = baselib.hashes.makeLowLevelEqHash();
|
||||||
}
|
}
|
||||||
if (this.cycles === undefined) {
|
if (this.cycles === void(0)) {
|
||||||
this.cycles = baselib.hashes.makeLowLevelEqHash();
|
this.cycles = baselib.hashes.makeLowLevelEqHash();
|
||||||
}
|
}
|
||||||
if (this.depth === undefined) {
|
if (this.depth === void(0)) {
|
||||||
this.depth = 0;
|
this.depth = 0;
|
||||||
}
|
}
|
||||||
if (this.objectCounter === undefined) {
|
if (this.objectCounter === void(0)) {
|
||||||
this.objectCounter = 0;
|
this.objectCounter = 0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -374,7 +374,7 @@
|
||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (x === undefined) {
|
if (x === void(0)) {
|
||||||
node = document.createElement("span");
|
node = document.createElement("span");
|
||||||
node.appendChild(document.createTextNode("#<undefined>"));
|
node.appendChild(document.createTextNode("#<undefined>"));
|
||||||
$(node).addClass("undefined");
|
$(node).addClass("undefined");
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
// this.pendingBegin0Values = undefined;
|
// this.pendingBegin0Values = undefined;
|
||||||
};
|
};
|
||||||
Frame.prototype.getMarks = function() {
|
Frame.prototype.getMarks = function() {
|
||||||
if (this.marks === undefined) { this.marks = []; }
|
if (this.marks === void(0)) { this.marks = []; }
|
||||||
return this.marks;
|
return this.marks;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -398,7 +398,7 @@
|
||||||
// Returns a JavaScript number.
|
// Returns a JavaScript number.
|
||||||
var getEqualHashCode = function (x, depth) {
|
var getEqualHashCode = function (x, depth) {
|
||||||
var i, t, k = 0;
|
var i, t, k = 0;
|
||||||
if (depth === undefined) { depth = [0]; }
|
if (depth === void(0)) { depth = [0]; }
|
||||||
|
|
||||||
if (depth[0] > MAX_HASH_DEPTH) { return 0; }
|
if (depth[0] > MAX_HASH_DEPTH) { return 0; }
|
||||||
|
|
||||||
|
@ -415,7 +415,7 @@
|
||||||
return k;
|
return k;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (x === undefined || x === null) {
|
if (x === void(0) || x === null) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -274,12 +274,12 @@
|
||||||
hare = hare.rest;
|
hare = hare.rest;
|
||||||
if (hare instanceof Cons) {
|
if (hare instanceof Cons) {
|
||||||
// optimization to get amortized linear time isList:
|
// optimization to get amortized linear time isList:
|
||||||
if (hare._isList !== undefined) {
|
if (hare._isList !== void(0)) {
|
||||||
tortoise._isList = hare._isList; return hare._isList;
|
tortoise._isList = hare._isList; return hare._isList;
|
||||||
}
|
}
|
||||||
hare = hare.rest;
|
hare = hare.rest;
|
||||||
// optimization to get amortized linear time isList:
|
// optimization to get amortized linear time isList:
|
||||||
if (hare instanceof Cons && hare._isList !== undefined) {
|
if (hare instanceof Cons && hare._isList !== void(0)) {
|
||||||
tortoise._isList = hare._isList; return hare._isList;
|
tortoise._isList = hare._isList; return hare._isList;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return undefined;
|
return void(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
Namespace.prototype.refreshPrefixMapping = function() {
|
Namespace.prototype.refreshPrefixMapping = function() {
|
||||||
|
@ -136,7 +136,7 @@
|
||||||
throw that.label;
|
throw that.label;
|
||||||
} else {
|
} else {
|
||||||
MACHINE.exclusiveLock.acquire(
|
MACHINE.exclusiveLock.acquire(
|
||||||
undefined,
|
void(0),
|
||||||
function(release) {
|
function(release) {
|
||||||
MACHINE.params['currentErrorHandler'] = function (MACHINE, anError) {
|
MACHINE.params['currentErrorHandler'] = function (MACHINE, anError) {
|
||||||
MACHINE.params['currentErrorHandler'] = oldErrorHandler;
|
MACHINE.params['currentErrorHandler'] = oldErrorHandler;
|
||||||
|
|
|
@ -2390,7 +2390,7 @@
|
||||||
raiseArgumentTypeError(M,
|
raiseArgumentTypeError(M,
|
||||||
name,
|
name,
|
||||||
expected,
|
expected,
|
||||||
undefined,
|
void(0),
|
||||||
M.e[M.e.length - 1 - 2]);
|
M.e[M.e.length - 1 - 2]);
|
||||||
} else {
|
} else {
|
||||||
raiseArgumentTypeError(M,
|
raiseArgumentTypeError(M,
|
||||||
|
@ -2797,7 +2797,7 @@
|
||||||
sym = checkSymbol(M, "make-continuation-prompt-tag", 0);
|
sym = checkSymbol(M, "make-continuation-prompt-tag", 0);
|
||||||
return new baselib.contmarks.ContinuationPromptTag(sym.toString());
|
return new baselib.contmarks.ContinuationPromptTag(sym.toString());
|
||||||
}
|
}
|
||||||
return new baselib.contmarks.ContinuationPromptTag(undefined);
|
return new baselib.contmarks.ContinuationPromptTag(void(0));
|
||||||
});
|
});
|
||||||
|
|
||||||
installPrimitiveProcedure(
|
installPrimitiveProcedure(
|
||||||
|
|
|
@ -81,7 +81,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
Str.prototype.substring = function (start, end) {
|
Str.prototype.substring = function (start, end) {
|
||||||
if (end === null || end === undefined) {
|
if (end === null || end === void(0)) {
|
||||||
end = this.length;
|
end = this.length;
|
||||||
}
|
}
|
||||||
return Str.makeInstance( this.chars.slice(start, end) );
|
return Str.makeInstance( this.chars.slice(start, end) );
|
||||||
|
|
|
@ -269,7 +269,7 @@
|
||||||
var lookupStructureTypeProperty = function(structType, property) {
|
var lookupStructureTypeProperty = function(structType, property) {
|
||||||
var propertiesList = structType.propertiesList;
|
var propertiesList = structType.propertiesList;
|
||||||
if (! propertiesList) {
|
if (! propertiesList) {
|
||||||
return undefined;
|
return void(0);
|
||||||
}
|
}
|
||||||
while (propertiesList !== baselib.lists.EMPTY) {
|
while (propertiesList !== baselib.lists.EMPTY) {
|
||||||
if (propertiesList.first.first === property) {
|
if (propertiesList.first.first === property) {
|
||||||
|
@ -277,7 +277,7 @@
|
||||||
}
|
}
|
||||||
propertiesList = propertiesList.rest;
|
propertiesList = propertiesList.rest;
|
||||||
}
|
}
|
||||||
return undefined;
|
return void(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
}
|
}
|
||||||
})(window);
|
})(window, void(0));
|
|
@ -237,9 +237,9 @@
|
||||||
|
|
||||||
var Machine = function() {
|
var Machine = function() {
|
||||||
this.cbt = STACK_LIMIT_ESTIMATE; // calls before trampoline
|
this.cbt = STACK_LIMIT_ESTIMATE; // calls before trampoline
|
||||||
this.v = undefined; // value register
|
this.v = void(0); // value register
|
||||||
this.p = undefined; // procedure register
|
this.p = void(0); // procedure register
|
||||||
this.a = undefined; // argument count
|
this.a = void(0); // argument count
|
||||||
this.e = []; // environment
|
this.e = []; // environment
|
||||||
this.c = []; // control: Arrayof (U Frame CallFrame PromptFrame)
|
this.c = []; // control: Arrayof (U Frame CallFrame PromptFrame)
|
||||||
this.running = false;
|
this.running = false;
|
||||||
|
@ -312,14 +312,14 @@
|
||||||
if (MACHINE.modules['whalesong/lang/private/traced-app.rkt']) {
|
if (MACHINE.modules['whalesong/lang/private/traced-app.rkt']) {
|
||||||
return MACHINE.modules['whalesong/lang/private/traced-app.rkt'].getNamespace().get('traced-app-key') || 'traced-app-key';
|
return MACHINE.modules['whalesong/lang/private/traced-app.rkt'].getNamespace().get('traced-app-key') || 'traced-app-key';
|
||||||
}
|
}
|
||||||
return undefined;
|
return void(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
var getTracedCalleeKey = function(MACHINE) {
|
var getTracedCalleeKey = function(MACHINE) {
|
||||||
if (MACHINE.modules['whalesong/lang/private/traced-app.rkt']) {
|
if (MACHINE.modules['whalesong/lang/private/traced-app.rkt']) {
|
||||||
return MACHINE.modules['whalesong/lang/private/traced-app.rkt'].getNamespace().get('traced-callee-key') || 'traced-callee-key';
|
return MACHINE.modules['whalesong/lang/private/traced-app.rkt'].getNamespace().get('traced-callee-key') || 'traced-callee-key';
|
||||||
}
|
}
|
||||||
return undefined;
|
return void(0);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -467,7 +467,7 @@
|
||||||
var oldArgcount = MACHINE.a;
|
var oldArgcount = MACHINE.a;
|
||||||
return function(f) {
|
return function(f) {
|
||||||
pauseLock.acquire(
|
pauseLock.acquire(
|
||||||
undefined,
|
void(0),
|
||||||
function(pauseReleaseLock) {
|
function(pauseReleaseLock) {
|
||||||
MACHINE.a = oldArgcount;
|
MACHINE.a = oldArgcount;
|
||||||
MACHINE._trampoline(f, false, release);
|
MACHINE._trampoline(f, false, release);
|
||||||
|
@ -570,7 +570,7 @@
|
||||||
var restarted = false;
|
var restarted = false;
|
||||||
var restart = function(f) {
|
var restart = function(f) {
|
||||||
pauseLock.acquire(
|
pauseLock.acquire(
|
||||||
undefined,
|
void(0),
|
||||||
function(releasePauseLock) {
|
function(releasePauseLock) {
|
||||||
restarted = true;
|
restarted = true;
|
||||||
that.a = oldArgcount;
|
that.a = oldArgcount;
|
||||||
|
@ -588,7 +588,7 @@
|
||||||
args.push(arguments[i]);
|
args.push(arguments[i]);
|
||||||
}
|
}
|
||||||
pauseLock.acquire(
|
pauseLock.acquire(
|
||||||
undefined,
|
void(0),
|
||||||
function(release) {
|
function(release) {
|
||||||
var newSuccess = function() {
|
var newSuccess = function() {
|
||||||
success.apply(null, arguments);
|
success.apply(null, arguments);
|
||||||
|
|
|
@ -7,4 +7,4 @@
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
|
|
||||||
(define version "1.172")
|
(define version "1.173")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user