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

Issue 7043003: Version 3.3.8 (Closed)

Created:
9 years, 7 months ago by Kevin Millikin (Chromium)
Modified:
9 years, 7 months ago
CC:
v8-dev
Visibility:
Public.

Description

Version 3.3.8 Added MarkIndependent to the persistent handle API. Independent handles are independent of all other persistent handles and can be garbage collected more frequently. Implemented the get trap for Harmony proxies. Proxies are enabled with the --harmony-proxies flag. Performance improvements and bug fixes on all platforms. R=ager@chromium.org Committed: http://code.google.com/p/v8/source/detail?r=7923

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+9566 lines, -867 lines) Patch
M ChangeLog View 1 chunk +12 lines, -0 lines 0 comments Download
M include/v8.h View 3 chunks +15 lines, -0 lines 0 comments Download
M src/api.cc View 1 chunk +7 lines, -0 lines 0 comments Download
M src/arm/code-stubs-arm.cc View 5 chunks +25 lines, -21 lines 0 comments Download
M src/arm/lithium-arm.h View 2 chunks +41 lines, -0 lines 0 comments Download
M src/arm/lithium-arm.cc View 2 chunks +26 lines, -0 lines 0 comments Download
M src/arm/lithium-codegen-arm.cc View 2 chunks +53 lines, -3 lines 0 comments Download
M src/arm/macro-assembler-arm.h View 3 chunks +10 lines, -2 lines 0 comments Download
M src/arm/macro-assembler-arm.cc View 4 chunks +43 lines, -5 lines 0 comments Download
M src/arm/stub-cache-arm.cc View 4 chunks +12 lines, -5 lines 0 comments Download
M src/assembler.h View 2 chunks +4 lines, -0 lines 0 comments Download
M src/assembler.cc View 2 chunks +14 lines, -0 lines 0 comments Download
M src/bootstrapper.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/builtins.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/execution.h View 1 chunk +1 line, -1 line 0 comments Download
M src/execution.cc View 1 chunk +6 lines, -1 line 0 comments Download
M src/frames.h View 1 chunk +6 lines, -0 lines 0 comments Download
M src/full-codegen.h View 1 chunk +9 lines, -0 lines 0 comments Download
M src/global-handles.h View 4 chunks +14 lines, -1 line 0 comments Download
M src/global-handles.cc View 9 chunks +63 lines, -2 lines 0 comments Download
M src/handles.h View 1 chunk +4 lines, -0 lines 0 comments Download
M src/handles.cc View 1 chunk +11 lines, -0 lines 0 comments Download
M src/heap.cc View 5 chunks +28 lines, -9 lines 0 comments Download
M src/hydrogen.h View 1 chunk +1 line, -2 lines 0 comments Download
M src/hydrogen.cc View 9 chunks +61 lines, -48 lines 0 comments Download
M src/hydrogen-instructions.h View 5 chunks +61 lines, -1 line 0 comments Download
M src/hydrogen-instructions.cc View 3 chunks +9 lines, -1 line 0 comments Download
M src/ia32/code-stubs-ia32.cc View 4 chunks +23 lines, -12 lines 0 comments Download
M src/ia32/ic-ia32.cc View 7 chunks +16 lines, -7 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.cc View 2 chunks +49 lines, -18 lines 0 comments Download
M src/ia32/lithium-ia32.h View 2 chunks +40 lines, -0 lines 0 comments Download
M src/ia32/lithium-ia32.cc View 3 chunks +29 lines, -8 lines 0 comments Download
M src/ia32/macro-assembler-ia32.h View 3 chunks +9 lines, -1 line 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 3 chunks +34 lines, -5 lines 0 comments Download
M src/ia32/stub-cache-ia32.cc View 4 chunks +4 lines, -4 lines 0 comments Download
M src/ic.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/mark-compact.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/messages.js View 1 chunk +1 line, -0 lines 0 comments Download
M src/mips/assembler-mips.h View 2 chunks +0 lines, -7 lines 0 comments Download
M src/mips/assembler-mips.cc View 5 chunks +1 line, -219 lines 0 comments Download
M src/mips/full-codegen-mips.cc View 7 chunks +3802 lines, -138 lines 0 comments Download
M src/mips/regexp-macro-assembler-mips.h View 5 chunks +6 lines, -4 lines 0 comments Download
M src/mips/regexp-macro-assembler-mips.cc View 12 chunks +859 lines, -86 lines 0 comments Download
M src/mips/stub-cache-mips.cc View 37 chunks +3626 lines, -125 lines 0 comments Download
M src/mirror-debugger.js View 1 chunk +6 lines, -5 lines 0 comments Download
M src/objects.h View 1 chunk +3 lines, -0 lines 0 comments Download
M src/objects.cc View 5 chunks +66 lines, -24 lines 0 comments Download
M src/property.h View 4 chunks +17 lines, -9 lines 0 comments Download
M src/property.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M src/runtime.js View 1 chunk +17 lines, -0 lines 0 comments Download
M src/v8globals.h View 5 chunks +23 lines, -7 lines 0 comments Download
M src/version.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/x64/code-stubs-x64.cc View 4 chunks +20 lines, -15 lines 0 comments Download
M src/x64/lithium-codegen-x64.cc View 2 chunks +51 lines, -10 lines 0 comments Download
M src/x64/lithium-x64.h View 2 chunks +44 lines, -0 lines 0 comments Download
M src/x64/lithium-x64.cc View 2 chunks +29 lines, -0 lines 0 comments Download
M src/x64/macro-assembler-x64.h View 3 chunks +9 lines, -1 line 0 comments Download
M src/x64/macro-assembler-x64.cc View 3 chunks +34 lines, -3 lines 0 comments Download
M src/x64/stub-cache-x64.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M test/cctest/test-api.cc View 1 chunk +91 lines, -30 lines 0 comments Download
M test/cctest/test-debug.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M test/mjsunit/external-array.js View 3 chunks +63 lines, -17 lines 0 comments Download
A test/mjsunit/regress/regress-1389.js View 1 chunk +42 lines, -0 lines 0 comments Download

Messages

Total messages: 2 (0 generated)
Kevin Millikin (Chromium)
9 years, 7 months ago (2011-05-18 08:56:10 UTC) #1
Mads Ager (chromium)
9 years, 7 months ago (2011-05-18 08:57:46 UTC) #2
Rubber stamp LGTM

Powered by Google App Engine
This is Rietveld 408576698