Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(711)

Issue 10105026: Version 3.10.3 (Closed)

Created:
8 years, 8 months ago by Erik Corry
Modified:
8 years, 8 months ago
Reviewers:
Michael Starzinger
CC:
v8-dev
Visibility:
Public.

Description

Version 3.10.3 Fixed several bugs in heap profiles (including issue 2078). Throw syntax errors on illegal escape sequences. Implemented rudimentary module linking (behind --harmony flag) Implemented ES5 erratum: Global declarations should shadow inherited properties. Made handling of const more consistent when combined with 'eval' and 'with'. Fixed V8 on MinGW-x64 (issue 2026). Performance and stability improvements on all platforms. Committed: https://code.google.com/p/v8/source/detail?r=11353

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2647 lines, -2086 lines) Patch
M ChangeLog View 1 chunk +19 lines, -0 lines 0 comments Download
M include/v8-profiler.h View 3 chunks +28 lines, -10 lines 0 comments Download
M samples/lineprocessor.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M samples/samples.gyp View 2 chunks +7 lines, -1 line 0 comments Download
M src/api.cc View 2 chunks +9 lines, -1 line 0 comments Download
M src/arm/code-stubs-arm.cc View 1 chunk +4 lines, -28 lines 0 comments Download
M src/arm/full-codegen-arm.cc View 6 chunks +156 lines, -56 lines 0 comments Download
M src/arm/lithium-codegen-arm.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/array.js View 2 chunks +6 lines, -2 lines 0 comments Download
M src/ast.h View 4 chunks +6 lines, -4 lines 0 comments Download
M src/ast.cc View 2 chunks +70 lines, -125 lines 0 comments Download
M src/bootstrapper.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/contexts.h View 1 chunk +1 line, -1 line 0 comments Download
M src/factory.h View 3 chunks +9 lines, -3 lines 0 comments Download
M src/factory.cc View 3 chunks +19 lines, -4 lines 0 comments Download
M src/full-codegen.h View 5 chunks +8 lines, -15 lines 0 comments Download
M src/full-codegen.cc View 3 chunks +64 lines, -61 lines 0 comments Download
M src/handles.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M src/heap.h View 2 chunks +6 lines, -0 lines 0 comments Download
M src/heap.cc View 24 chunks +165 lines, -22 lines 0 comments Download
M src/heap-profiler.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/heap-profiler.cc View 1 chunk +9 lines, -0 lines 0 comments Download
M src/hydrogen.h View 2 chunks +1 line, -5 lines 0 comments Download
M src/hydrogen.cc View 6 chunks +75 lines, -87 lines 0 comments Download
M src/hydrogen-instructions.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/hydrogen-instructions.cc View 1 chunk +7 lines, -0 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 chunk +5 lines, -1 line 0 comments Download
M src/ia32/codegen-ia32.cc View 1 chunk +17 lines, -1 line 0 comments Download
M src/ia32/full-codegen-ia32.cc View 6 chunks +153 lines, -53 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/ia32/stub-cache-ia32.cc View 1 chunk +1 line, -0 lines 0 comments Download
M src/incremental-marking.cc View 1 chunk +13 lines, -0 lines 0 comments Download
M src/interface.h View 4 chunks +43 lines, -3 lines 0 comments Download
M src/interface.cc View 3 chunks +11 lines, -2 lines 0 comments Download
M src/jsregexp.h View 23 chunks +173 lines, -182 lines 0 comments Download
M src/jsregexp.cc View 28 chunks +234 lines, -596 lines 0 comments Download
M src/macros.py View 1 chunk +9 lines, -0 lines 0 comments Download
M src/mark-compact.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/mark-compact.cc View 1 chunk +0 lines, -6 lines 0 comments Download
M src/mips/lithium-codegen-mips.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/mips/regexp-macro-assembler-mips.cc View 1 chunk +4 lines, -1 line 0 comments Download
M src/mips/stub-cache-mips.cc View 19 chunks +86 lines, -41 lines 0 comments Download
M src/objects.h View 9 chunks +35 lines, -6 lines 0 comments Download
M src/objects.cc View 11 chunks +10 lines, -12 lines 0 comments Download
M src/objects-debug.cc View 2 chunks +12 lines, -0 lines 0 comments Download
M src/objects-inl.h View 7 chunks +27 lines, -11 lines 0 comments Download
M src/objects-printer.cc View 4 chunks +18 lines, -1 line 0 comments Download
M src/objects-visiting.h View 1 chunk +17 lines, -0 lines 0 comments Download
M src/objects-visiting.cc View 1 chunk +1 line, -0 lines 0 comments Download
M src/objects-visiting-inl.h View 1 chunk +1 line, -3 lines 0 comments Download
M src/parser.cc View 7 chunks +32 lines, -17 lines 0 comments Download
M src/platform.h View 1 chunk +3 lines, -0 lines 0 comments Download
M src/platform-cygwin.cc View 2 chunks +8 lines, -5 lines 0 comments Download
M src/platform-freebsd.cc View 2 chunks +8 lines, -5 lines 0 comments Download
M src/platform-linux.cc View 3 chunks +48 lines, -5 lines 0 comments Download
M src/platform-macos.cc View 2 chunks +8 lines, -5 lines 0 comments Download
M src/platform-nullos.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M src/platform-openbsd.cc View 2 chunks +8 lines, -5 lines 0 comments Download
M src/platform-solaris.cc View 2 chunks +8 lines, -5 lines 0 comments Download
M src/platform-win32.cc View 2 chunks +8 lines, -5 lines 0 comments Download
M src/profile-generator.h View 12 chunks +36 lines, -25 lines 0 comments Download
M src/profile-generator.cc View 29 chunks +221 lines, -190 lines 0 comments Download
M src/profile-generator-inl.h View 1 chunk +6 lines, -0 lines 0 comments Download
M src/property.h View 1 chunk +0 lines, -7 lines 0 comments Download
MM src/regexp.js View 4 chunks +9 lines, -7 lines 0 comments Download
M src/runtime.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/runtime.cc View 5 chunks +68 lines, -56 lines 0 comments Download
M src/scanner.h View 1 chunk +6 lines, -3 lines 0 comments Download
M src/scanner.cc View 5 chunks +9 lines, -9 lines 0 comments Download
M src/scopeinfo.cc View 3 chunks +6 lines, -4 lines 0 comments Download
M src/scopes.h View 3 chunks +6 lines, -13 lines 0 comments Download
M src/scopes.cc View 7 chunks +17 lines, -10 lines 0 comments Download
M src/v8.cc View 2 chunks +2 lines, -1 line 0 comments Download
M src/v8globals.h View 1 chunk +4 lines, -0 lines 0 comments Download
M src/version.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M src/x64/code-stubs-x64.cc View 1 chunk +6 lines, -38 lines 0 comments Download
M src/x64/full-codegen-x64.cc View 6 chunks +153 lines, -53 lines 0 comments Download
M src/x64/lithium-codegen-x64.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/x64/macro-assembler-x64.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 3 chunks +16 lines, -2 lines 0 comments Download
M src/x64/stub-cache-x64.cc View 4 chunks +10 lines, -8 lines 0 comments Download
M test/cctest/test-api.cc View 1 chunk +3 lines, -7 lines 0 comments Download
M test/cctest/test-decls.cc View 4 chunks +7 lines, -7 lines 0 comments Download
M test/cctest/test-heap-profiler.cc View 26 chunks +136 lines, -66 lines 0 comments Download
M test/cctest/test-regexp.cc View 4 chunks +2 lines, -73 lines 0 comments Download
M test/cctest/test-strings.cc View 1 chunk +52 lines, -0 lines 0 comments Download
M test/mjsunit/compiler/literals.js View 1 chunk +12 lines, -12 lines 0 comments Download
M test/mjsunit/declare-locally.js View 1 chunk +2 lines, -2 lines 0 comments Download
A + test/mjsunit/harmony/module-linking.js View 0 chunks +-1 lines, --1 lines 0 comments Download
M test/mjsunit/harmony/module-parsing.js View 3 chunks +5 lines, -5 lines 0 comments Download
M test/mjsunit/harmony/module-resolution.js View 1 chunk +1 line, -1 line 0 comments Download
M test/mjsunit/mjsunit.js View 1 chunk +1 line, -1 line 0 comments Download
M test/mjsunit/regexp-capture-3.js View 1 chunk +59 lines, -1 line 0 comments Download
M test/mjsunit/regress/regress-1119.js View 1 chunk +5 lines, -5 lines 0 comments Download
M test/mjsunit/regress/regress-115452.js View 1 chunk +7 lines, -10 lines 0 comments Download
M test/mjsunit/regress/regress-1170.js View 1 chunk +43 lines, -19 lines 0 comments Download
A + test/mjsunit/regress/regress-123512.js View 0 chunks +-1 lines, --1 lines 0 comments Download
M test/mozilla/mozilla.status View 1 chunk +8 lines, -0 lines 0 comments Download
M test/sputnik/sputnik.status View 1 chunk +4 lines, -26 lines 0 comments Download
M test/test262/README View 1 chunk +2 lines, -2 lines 0 comments Download
M test/test262/test262.status View 2 chunks +8 lines, -13 lines 0 comments Download
M test/test262/testcfg.py View 3 chunks +6 lines, -2 lines 0 comments Download
M tools/common-includes.sh View 1 chunk +2 lines, -1 line 0 comments Download
M tools/push-to-trunk.sh View 2 chunks +9 lines, -0 lines 0 comments Download

Messages

Total messages: 2 (0 generated)
Erik Corry
8 years, 8 months ago (2012-04-17 11:54:41 UTC) #1
Michael Starzinger
8 years, 8 months ago (2012-04-17 11:56:52 UTC) #2
LGTM (rubber-stamp).

Powered by Google App Engine
This is Rietveld 408576698