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

Issue 6113004: Version 3.0.7 (Closed)

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

Description

Version 3.0.7 Stopped calling inherited setters when creating object literals (issue 1015). Changed interpretation of malformed \c? escapes in RegExp to match JSC. Enhanced the command-line debugger interface and fixed some minor bugs in the debugger. Performance improvements on the IA32 platform. Committed: http://code.google.com/p/v8/source/detail?r=6238

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+4041 lines, -1072 lines) Patch
M ChangeLog View 2 chunks +19 lines, -5 lines 0 comments Download
M src/SConscript View 3 chunks +3 lines, -1 line 0 comments Download
M src/accessors.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M src/arm/assembler-arm.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/arm/assembler-arm.cc View 2 chunks +8 lines, -4 lines 0 comments Download
M src/arm/code-stubs-arm.cc View 5 chunks +10 lines, -10 lines 0 comments Download
M src/arm/codegen-arm.cc View 4 chunks +4 lines, -4 lines 0 comments Download
M src/arm/full-codegen-arm.cc View 2 chunks +9 lines, -2 lines 0 comments Download
M src/arm/lithium-arm.h View 10 chunks +18 lines, -33 lines 0 comments Download
M src/arm/lithium-arm.cc View 9 chunks +15 lines, -159 lines 0 comments Download
M src/arm/lithium-codegen-arm.cc View 13 chunks +295 lines, -18 lines 0 comments Download
M src/arm/macro-assembler-arm.h View 2 chunks +10 lines, -6 lines 0 comments Download
M src/arm/macro-assembler-arm.cc View 2 chunks +8 lines, -1 line 0 comments Download
M src/arm/simulator-arm.cc View 2 chunks +7 lines, -5 lines 0 comments Download
M src/array.js View 2 chunks +29 lines, -17 lines 0 comments Download
M src/assembler.h View 1 chunk +3 lines, -0 lines 0 comments Download
M src/assembler.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M src/code-stubs.h View 9 chunks +46 lines, -14 lines 0 comments Download
M src/code-stubs.cc View 2 chunks +33 lines, -1 line 0 comments Download
M src/d8.js View 30 chunks +554 lines, -57 lines 0 comments Download
M src/debug.h View 2 chunks +10 lines, -0 lines 0 comments Download
M src/debug.cc View 2 chunks +5 lines, -3 lines 0 comments Download
M src/debug-agent.cc View 3 chunks +26 lines, -7 lines 0 comments Download
M src/debug-debugger.js View 8 chunks +133 lines, -3 lines 0 comments Download
M src/deoptimizer.cc View 1 chunk +4 lines, -4 lines 0 comments Download
M src/disassembler.cc View 2 chunks +7 lines, -4 lines 0 comments Download
M src/flag-definitions.h View 1 chunk +10 lines, -0 lines 0 comments Download
M src/handles.h View 2 chunks +8 lines, -3 lines 0 comments Download
M src/handles.cc View 2 chunks +11 lines, -2 lines 0 comments Download
M src/heap.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/heap.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M src/heap-inl.h View 1 chunk +0 lines, -4 lines 0 comments Download
M src/hydrogen.cc View 1 chunk +34 lines, -1 line 0 comments Download
M src/hydrogen-instructions.h View 3 chunks +24 lines, -0 lines 0 comments Download
M src/ia32/code-stubs-ia32.h View 2 chunks +0 lines, -11 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 7 chunks +143 lines, -40 lines 0 comments Download
M src/ia32/codegen-ia32.cc View 5 chunks +8 lines, -8 lines 0 comments Download
M src/ia32/deoptimizer-ia32.cc View 3 chunks +9 lines, -5 lines 0 comments Download
M src/ia32/full-codegen-ia32.cc View 6 chunks +25 lines, -12 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.cc View 8 chunks +110 lines, -7 lines 0 comments Download
M src/ia32/lithium-ia32.h View 10 chunks +37 lines, -42 lines 0 comments Download
M src/ia32/lithium-ia32.cc View 7 chunks +26 lines, -167 lines 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 1 chunk +1 line, -1 line 0 comments Download
A + src/lithium.h View 2 chunks +32 lines, -35 lines 0 comments Download
A src/lithium.cc View 1 chunk +179 lines, -0 lines 0 comments Download
M src/lithium-allocator.h View 3 chunks +12 lines, -1 line 0 comments Download
M src/lithium-allocator.cc View 2 chunks +8 lines, -0 lines 0 comments Download
M src/macros.py View 1 chunk +1 line, -0 lines 0 comments Download
M src/math.js View 7 chunks +21 lines, -21 lines 0 comments Download
M src/objects.h View 3 chunks +4 lines, -2 lines 0 comments Download
M src/objects.cc View 5 chunks +9 lines, -7 lines 0 comments Download
M src/objects-debug.cc View 1 chunk +4 lines, -2 lines 0 comments Download
M src/objects-inl.h View 1 chunk +5 lines, -0 lines 0 comments Download
M src/parser.h View 1 chunk +0 lines, -1 line 0 comments Download
M src/parser.cc View 5 chunks +34 lines, -47 lines 0 comments Download
M src/runtime.h View 1 chunk +6 lines, -1 line 0 comments Download
M src/runtime.cc View 13 chunks +72 lines, -40 lines 0 comments Download
M src/runtime.js View 9 chunks +37 lines, -30 lines 0 comments Download
M src/scanner-base.cc View 1 chunk +9 lines, -2 lines 0 comments Download
M src/serialize.cc View 1 chunk +4 lines, -0 lines 0 comments Download
M src/v8-counters.h View 1 chunk +1 line, -9 lines 0 comments Download
M src/v8natives.js View 4 chunks +12 lines, -10 lines 0 comments Download
M src/version.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M src/x64/code-stubs-x64.h View 2 chunks +99 lines, -1 line 0 comments Download
M src/x64/code-stubs-x64.cc View 1 chunk +188 lines, -1 line 0 comments Download
M src/x64/codegen-x64.cc View 5 chunks +8 lines, -8 lines 0 comments Download
M src/x64/full-codegen-x64.cc View 51 chunks +153 lines, -39 lines 0 comments Download
M src/x64/lithium-x64.h View 11 chunks +176 lines, -31 lines 0 comments Download
A + src/x64/lithium-x64.cc View 2 chunks +36 lines, -31 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/cctest.status View 3 chunks +22 lines, -3 lines 0 comments Download
M test/cctest/test-debug.cc View 5 chunks +13 lines, -3 lines 0 comments Download
M test/cctest/test-parsing.cc View 1 chunk +55 lines, -0 lines 0 comments Download
M test/cctest/test-regexp.cc View 2 chunks +16 lines, -4 lines 0 comments Download
M test/mjsunit/compiler/regress-3249650.js View 1 chunk +1 line, -1 line 0 comments Download
A test/mjsunit/debug-listbreakpoints.js View 1 chunk +210 lines, -0 lines 0 comments Download
A test/mjsunit/debug-setexceptionbreak.js View 1 chunk +119 lines, -0 lines 0 comments Download
M test/mjsunit/mjsunit.status View 1 chunk +8 lines, -1 line 0 comments Download
M test/mjsunit/regexp.js View 2 chunks +24 lines, -7 lines 0 comments Download
A + test/mjsunit/regress/regress-1015.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A test/mjsunit/regress/regress-1020.js View 1 chunk +32 lines, -0 lines 0 comments Download
M test/mjsunit/regress/regress-192.js View 1 chunk +10 lines, -3 lines 0 comments Download
M test/mozilla/mozilla.status View 1 chunk +2 lines, -0 lines 0 comments Download
M tools/gyp/v8.gyp View 3 chunks +6 lines, -1 line 0 comments Download
M tools/v8.xcodeproj/project.pbxproj View 38 chunks +690 lines, -64 lines 0 comments Download

Messages

Total messages: 2 (0 generated)
Kevin Millikin (Chromium)
9 years, 11 months ago (2011-01-10 08:12:23 UTC) #1
Mads Ager (chromium)
9 years, 11 months ago (2011-01-10 08:14:36 UTC) #2
Rubberstamp LGTM

Powered by Google App Engine
This is Rietveld 408576698