From 02779f353704805ae791957505e6443e4ad4c9d5 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sun, 3 Apr 2011 17:40:01 -0400 Subject: [PATCH] closure compile can shrink down the size of the runtime to something more managable. --- runtime.compressed.js | 16 ++++++++++++++++ runtime.js | 18 +++++++++--------- test-browser-evaluate.rkt | 4 +++- 3 files changed, 28 insertions(+), 10 deletions(-) create mode 100644 runtime.compressed.js diff --git a/runtime.compressed.js b/runtime.compressed.js new file mode 100644 index 0000000..d7b1954 --- /dev/null +++ b/runtime.compressed.js @@ -0,0 +1,16 @@ +this.plt===void 0&&(this.plt={}); +(function(){this.plt.runtime={};var g=this.plt.runtime,m=function(a){var b=function(){};b.prototype=a;return new b},r=function(a){return function(b){return b instanceof a}},h=function(a){return typeof a==="number"},k=function(a){return typeof a=="object"&&a.length===2},o=function(a){return typeof a=="object"&&a.length!==void 0},p=function(){},t=function(a,b){this.label=a;this.proc=b};t.prototype=m(p.prototype);var u=function(a,b){this.label=a;this.tag=b};u.prototype=m(p.prototype);var n=function(){}; +p=r(n);var s=function(){};s.prototype=m(n.prototype);s.prototype.write=function(a,b){a.params.currentDisplayer(b)};var i=function(){this.buf=[]};i.prototype=m(n.prototype);i.prototype.write=function(a,b){this.buf.push(String(b))};i.prototype.getOutputString=function(){return this.buf.join("")};n=r(i);i=function(a){this.name=a};var w=new i("default-continuation-prompt-tag"),l=[],j=function(a){throw a;},f=function(a,b,c,d,e){if(b(c))return!0;else j(Error(e+": expected "+a+" as argument #"+d+" but received "+ +c+" instead"))},q=function(a,b,c,d){(bd)&&j(Error(a+": expected at least "+c+" arguments but received "+observer))},e={};e.display=function(a,b){q("display",b,1,2);var c=a.env[a.env.length-1],d=a.params.currentOutputPort;b==2&&(d=a.env[a.env.length-2]);d.write(a,c)};e.newline=function(a,b){q("newline",b,0,1);var c=a.params.currentOutputPort;b==1&&(c=a.env[a.env.length-1]);c.write(a,"\n")};e.displayln=function(a,b){q("displayln",b,1,2);var c=a.env[a.env.length-1],d=a.params.currentOutputPort; +b==2&&(d=a.env[a.env.length-2]);d.write(a,c);d.write(a,"\n")};e.pi=Math.PI;e.e=Math.E;e["="]=function(a){var b=a.env[a.env.length-1];a=a.env[a.env.length-2];f("number",h,b,0,"=");f("number",h,a,1,"=");return b===a};e["<"]=function(a){var b=a.env[a.env.length-1];a=a.env[a.env.length-2];f("number",h,b,0,"<");f("number",h,a,1,"<");return b"]=function(a){var b=a.env[a.env.length-1];a=a.env[a.env.length-2];f("number",h,b,0,">");f("number",h,a,1,">");return b>a};e["<="]=function(a){var b=a.env[a.env.length- +1];a=a.env[a.env.length-2];f("number",h,b,0,"<=");f("number",h,a,1,"<=");return b<=a};e[">="]=function(a){var b=a.env[a.env.length-1];a=a.env[a.env.length-2];f("number",h,b,0,">=");f("number",h,a,1,">=");return b>=a};e["+"]=function(a,b){var c=0,d=0;for(d=0;dlist"]=function(a){f("vector", +o,a.env[a.env.length-1],0,"vector->list");a=a.env[a.env.length-1];var b,c=l;for(b=0;bvector"]=function(a){a=a.env[a.env.length-1];for(var b=[];a!==l;)b.push(a[0]),a=a[1];return b};e["vector-ref"]=function(a){f("vector",o,a.env[a.env.length-1],0,"vector-ref");return a.env[a.env.length-1][a.env[a.env.length-2]]};e["vector-set!"]=function(a){f("vector",o,a.env[a.env.length-1],0,"vector-set!");a.env[a.env.length-1][a.env[a.env.length-2]]=a.env[a.env.length- +3];return null};e["symbol?"]=function(a){return typeof a.env[a.env.length-1]==="string"};e["symbol->string"]=function(a){return a.env[a.env.length-1]};e["string-append"]=function(a,b){var c=[],d;for(d=0;d=0;d--)if(a.control[d].tag===c)return a.control.slice(d+1,a.control.length-b);j(Error("captureControl: unable to find tag "+c))};g.restoreControl=function(a,b){var c;for(c=a.control.length-1;c>=0;c--)if(a.control[c].tag===b){a.control=a.control.slice(0,c+1).concat(a.env[a.env.length-1]);return}j(Error("restoreControl: unable to find tag "+b))}; +g.isNumber=h;g.isPair=k;g.isVector=o;g.isOutputPort=p;g.isOutputStringPort=n;g.heir=m;g.makeClassPredicate=r;g.trampoline=v}).call(this); diff --git a/runtime.js b/runtime.js index 6d8d854..1ed322a 100644 --- a/runtime.js +++ b/runtime.js @@ -40,13 +40,13 @@ this.env = []; this.control = []; // Arrayof (U CallFrame PromptFrame) this.running = false; - this.params = { currentDisplayer: function(v) {}, + this.params = { 'currentDisplayer': function(v) {}, - currentOutputPort: new StandardOutputPort(), - currentSuccessHandler: function(MACHINE) {}, - currentErrorHandler: function(MACHINE, exn) {}, + 'currentOutputPort': new StandardOutputPort(), + 'currentSuccessHandler': function(MACHINE) {}, + 'currentErrorHandler': function(MACHINE, exn) {}, - currentNamespace: {}, + 'currentNamespace': {}, // These parameters control how often // control yields back to the browser @@ -59,9 +59,9 @@ // are adjusted automatically by the // recomputeMaxNumBouncesBeforeYield // procedure. - desiredYieldsPerSecond: 5, - numBouncesBeforeYield: 2000, // self-adjusting - maxNumBouncesBeforeYield: 2000 // self-adjusting + 'desiredYieldsPerSecond': 5, + 'numBouncesBeforeYield': 2000, // self-adjusting + 'maxNumBouncesBeforeYield': 2000 // self-adjusting }; this.primitives = Primitives; }; @@ -99,7 +99,7 @@ var StandardOutputPort = function() {}; StandardOutputPort.prototype = heir(OutputPort.prototype); StandardOutputPort.prototype.write = function(MACHINE, v) { - MACHINE.params.currentDisplayer(v); + MACHINE.params['currentDisplayer'](v); }; diff --git a/test-browser-evaluate.rkt b/test-browser-evaluate.rkt index c481473..ee312ba 100644 --- a/test-browser-evaluate.rkt +++ b/test-browser-evaluate.rkt @@ -4,7 +4,9 @@ racket/runtime-path) -(define-runtime-path runtime.js "runtime.js") +(define-runtime-path runtime.js + "runtime.js" + #;"runtime.compressed.js") (define evaluate (make-evaluate (lambda (program op)