Drive by observation.
-- Vitaly http://codereview.chromium.org/3143032/diff/1/2 File src/builtins.cc (right): http://codereview.chromium.org/3143032/diff/1/2#newcode332 src/builtins.cc:332: return elms + to_trim * kPointerSize; This line advances elms pointer by (to_trim * kPointerSize) fixed arrays, but since our object classes have no data members, sizeof(FixedArray) happens to be 1 (the least allowed size), and advancing by this many fixed arrays is equivalent to advancing by this many bytes. I think this is too subtle to rely on. http://codereview.chromium.org/3143032/show -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
