Changes between Version 37 and Version 38 of squirrelfish


Ignore:
Timestamp:
Apr 1, 2008 9:41:09 PM (16 years ago)
Author:
ggaren@apple.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • squirrelfish

    v37 v38  
    139139Make const work -- const info has to go in the symbol table, so writes to const vars can turn to no-ops at compile time.
    140140
     141Recover lost optimizations:
     142
     143{{{
     144optimized multiscope access
     145optimized access to global built-ins (http://trac.webkit.org/projects/webkit/changeset/31226)
     146static type inference of things like "numeric less than" and "string add"
     147}}}
     148
    141149Function call should store offset of R, not R, since vector may reallocate. This probably solves most problems related to new evaluations in same global object, since they all occur beneath function calls
    142150    -- arguments object also holds a pointer into the register file -- probably needs to be indirect index, instead