Changes between Version 37 and Version 38 of squirrelfish
- Timestamp:
- Apr 1, 2008, 9:41:09 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
squirrelfish
v37 v38 139 139 Make const work -- const info has to go in the symbol table, so writes to const vars can turn to no-ops at compile time. 140 140 141 Recover lost optimizations: 142 143 {{{ 144 optimized multiscope access 145 optimized access to global built-ins (http://trac.webkit.org/projects/webkit/changeset/31226) 146 static type inference of things like "numeric less than" and "string add" 147 }}} 148 141 149 Function 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 142 150 -- arguments object also holds a pointer into the register file -- probably needs to be indirect index, instead