On Thu, Jun 3, 2010 at 1:15 PM, Alan Leung <acl...@gmail.com> wrote:
> I can't think of any reasons.
> I wonder what's the gain we get for post gzipped output.
> We do have keyword aliasing (current not on) which do something like
> x=false;alert(x);alert(x);alert(x);alert(x);alert(x);alert(x);alert(x);alert(x);
> If you have too many references to false,true/null.
> Looks like it's a very small change if you want to hack that into
> FoldConstants.java and try it on your project. Let us know the result too!
fwiw, I think you would want to make changes like this in
CodeGenerator, not in FoldConstants. FoldConstants is more for
optimziations that benefit from a fixed-point iteration.
Nick
Nick
You have to be careful around operator precedence so it does require
some knowledge.
In {var x = false.toString()}, depending on where you split lines you
can get either
var x = 1.toString() // syntactically invalid since . is part of
the numeric token
or
var x = 1. // assigns 1 to x instead of "1" due to semicolon insertion
toString() // syntactically valid expression statement.
So false.toString() will have to be evaluated to a constant String "0"
as well. This not only requires parsing the syntax tree, but also
parse the semantics, and infer datatypes to correctly evaluate the
methods.
This is a much more complex project than a simple substitution. In
fact for such project, the comoiler would have to become a full
interpreter of Javascript (making additional verifications related to
data paths used in the code, and correctly infer where/when variables
are assigned ; given that all Javascript variables are actually
members in a contextual object, computing the associated class
interfaces for these objects and tracking their modifications is
really a complex work, as complex as writing the full V8 compiler
already built in Chrome, where those optimisations will above will no
longer be necessary as they are immediately infered at runtime),
Actually, if your replace a constant variable by its numeric value,
you will have to also evaluate their methods before substituting.
So false.toString() will have to be evaluated to a constant String "0"
as well. This not only requires parsing the syntax tree, but also
parse the semantics, and infer datatypes to correctly evaluate the
methods.
This is a much more complex project than a simple substitution. In
fact for such project, the comoiler would have to become a full
interpreter of Javascript
(making additional verifications related to
data paths used in the code, and correctly infer where/when variables
are assigned ; given that all Javascript variables are actually
members in a contextual object, computing the associated class
interfaces for these objects and tracking their modifications is
really a complex work,
as complex as writing the full V8 compiler
already built in Chrome, where those optimisations will above will no
longer be necessary as they are immediately infered at runtime),
Sorry for the confusion. I wrote a bad example.
What I meant to say was that since ! has a lower precedence than some
operators that can be applied to boolean keywords, you have to be
careful to parenthesize in same cases which offsets much of the space
gain.
Here is a less confusing example:
true.methodCall(x)
is semantically equivalent to
(!0).methodCall(x)
which doesn't save any space but not to the syntactically invalid
!0.methodCall(x)
or the syntactically valid
!0.
methodCall(x)
I raised this because Rhino's AST includes a parenthesize expression
node type which suggested to me that maybe the code generator does not
automatically insert parentheses. If that's not the case, then please
ignore.
Sorry for the confusion. I wrote a bad example.
But parentheses do not introduce a parse tree node for caja so the
parenthesization stuff is all testing the typical case for us. That
isn't true of curly brackets which do introduce block nodes because
we're looking forward to lexical scopes in some future version of ES.
You'll find some hideous renderer tests like
assertEquals(
"(new (/./.constructor)('', ''))",
render(new RegexpLiteral(FilePosition.UNKNOWN, "//")));
in http://code.google.com/p/google-caja/source/browse/trunk/tests/com/google/caja/parser/js/ParserTest.java
where slashdot shows up twice in a row.
2010/6/11 Alan Leung <acl...@gmail.com>: