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

Issue 8139027: Version 3.6.5 (Closed)

Created:
9 years, 2 months ago by Erik Corry
Modified:
9 years, 2 months ago
Reviewers:
danno
CC:
v8-dev
Visibility:
Public.

Description

Version 3.6.5 New incremental garbage collector. Removed the hard heap size limit (soft heap size limit is still 700/1400Mbytes by default). Implemented ES5 generic Array.prototype.toString (Issue 1361). V8 now allows surrogate pair codes in decodeURIComponent (Issue 1415). Fixed x64 RegExp start-of-string bug (Issues 1746, 1748). Fixed propertyIsEnumerable for numeric properties (Issue 1692). Fixed the MinGW and Windows 2000 builds. Fixed "Prototype chain is not searched if named property handler does not set a property" (Issue 1636). Made the RegExp.prototype object be a RegExp object (Issue 1217). Disallowed future reserved words as labels in strict mode. Fixed string split to correctly coerce the separator to a string (Issue 1711). API: Added an optional source length field to the Extension constructor. API: Added Debug::DisableAgent to match existing Debug::EnableAgent (Issue 1573). Added "native" target to Makefile for the benefit of Linux distros. Fixed: debugger stops stepping outside evaluate (Issue 1639). More work on ES-Harmony proxies. Still hidden behind a flag. Bug fixes and performance improvements on all platforms. Committed: http://code.google.com/p/v8/source/detail?r=9534

Patch Set 1 #

Patch Set 2 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+23322 lines, -14246 lines) Patch
M ChangeLog View 1 1 chunk +42 lines, -0 lines 0 comments Download
M build/common.gypi View 1 4 chunks +9 lines, -1 line 0 comments Download
M build/standalone.gypi View 1 1 chunk +16 lines, -12 lines 0 comments Download
M include/v8.h View 1 6 chunks +31 lines, -11 lines 0 comments Download
MM include/v8-debug.h View 1 1 chunk +5 lines, -0 lines 0 comments Download
M include/v8-profiler.h View 1 1 chunk +6 lines, -0 lines 0 comments Download
MM src/SConscript View 1 2 chunks +2 lines, -0 lines 0 comments Download
M src/api.cc View 1 12 chunks +47 lines, -61 lines 0 comments Download
M src/arm/assembler-arm.h View 1 2 chunks +4 lines, -6 lines 0 comments Download
M src/arm/assembler-arm.cc View 1 4 chunks +7 lines, -5 lines 0 comments Download
M src/arm/assembler-arm-inl.h View 1 6 chunks +22 lines, -2 lines 0 comments Download
M src/arm/builtins-arm.cc View 1 13 chunks +541 lines, -509 lines 0 comments Download
M src/arm/code-stubs-arm.h View 1 5 chunks +244 lines, -1 line 0 comments Download
M src/arm/code-stubs-arm.cc View 1 26 chunks +457 lines, -60 lines 0 comments Download
M src/arm/codegen-arm.h View 1 1 chunk +0 lines, -10 lines 0 comments Download
M src/arm/codegen-arm.cc View 1 1 chunk +6 lines, -2 lines 0 comments Download
M src/arm/debug-arm.cc View 1 1 chunk +39 lines, -37 lines 0 comments Download
M src/arm/deoptimizer-arm.cc View 1 6 chunks +29 lines, -5 lines 0 comments Download
M src/arm/frames-arm.h View 1 1 chunk +10 lines, -0 lines 0 comments Download
M src/arm/full-codegen-arm.cc View 1 17 chunks +114 lines, -67 lines 0 comments Download
M src/arm/ic-arm.cc View 1 7 chunks +55 lines, -35 lines 0 comments Download
M src/arm/lithium-arm.h View 1 3 chunks +9 lines, -7 lines 0 comments Download
M src/arm/lithium-arm.cc View 1 8 chunks +20 lines, -18 lines 0 comments Download
M src/arm/lithium-codegen-arm.h View 1 2 chunks +6 lines, -1 line 0 comments Download
M src/arm/lithium-codegen-arm.cc View 1 30 chunks +119 lines, -63 lines 0 comments Download
M src/arm/macro-assembler-arm.h View 1 11 chunks +165 lines, -46 lines 0 comments Download
M src/arm/macro-assembler-arm.cc View 1 22 chunks +384 lines, -92 lines 0 comments Download
M src/arm/regexp-macro-assembler-arm.cc View 1 2 chunks +12 lines, -3 lines 0 comments Download
M src/arm/simulator-arm.cc View 1 1 chunk +2 lines, -0 lines 0 comments Download
M src/arm/stub-cache-arm.cc View 1 23 chunks +157 lines, -66 lines 0 comments Download
M src/array.js View 1 2 chunks +25 lines, -15 lines 0 comments Download
M src/assembler.h View 1 7 chunks +19 lines, -8 lines 0 comments Download
M src/assembler.cc View 1 6 chunks +41 lines, -15 lines 0 comments Download
M src/ast.h View 1 5 chunks +9 lines, -20 lines 0 comments Download
M src/ast.cc View 1 4 chunks +86 lines, -64 lines 0 comments Download
M src/bootstrapper.cc View 1 6 chunks +49 lines, -8 lines 0 comments Download
M src/builtins.cc View 1 27 chunks +79 lines, -21 lines 0 comments Download
M src/code-stubs.h View 1 13 chunks +75 lines, -21 lines 0 comments Download
M src/code-stubs.cc View 1 7 chunks +29 lines, -16 lines 0 comments Download
M src/codegen.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M src/compiler.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
A + src/compiler-intrinsics.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M src/contexts.h View 1 4 chunks +17 lines, -24 lines 0 comments Download
M src/contexts.cc View 1 3 chunks +46 lines, -54 lines 0 comments Download
M src/conversions.h View 1 1 chunk +0 lines, -2 lines 0 comments Download
M src/conversions-inl.h View 1 1 chunk +1 line, -1 line 0 comments Download
M src/cpu-profiler.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M src/d8.cc View 1 6 chunks +21 lines, -13 lines 0 comments Download
M src/d8-debug.cc View 1 3 chunks +4 lines, -1 line 0 comments Download
M src/debug.h View 1 1 chunk +2 lines, -85 lines 0 comments Download
M src/debug.cc View 1 14 chunks +114 lines, -17 lines 0 comments Download
M src/deoptimizer.h View 1 5 chunks +14 lines, -4 lines 0 comments Download
M src/deoptimizer.cc View 1 13 chunks +54 lines, -16 lines 0 comments Download
M src/disassembler.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M src/execution.h View 1 2 chunks +4 lines, -1 line 0 comments Download
M src/execution.cc View 1 10 chunks +32 lines, -8 lines 0 comments Download
M src/extensions/gc-extension.cc View 1 1 chunk +1 line, -6 lines 0 comments Download
M src/factory.h View 1 6 chunks +19 lines, -10 lines 0 comments Download
M src/factory.cc View 1 9 chunks +53 lines, -21 lines 0 comments Download
M src/flag-definitions.h View 1 6 chunks +24 lines, -0 lines 0 comments Download
M src/frames.h View 1 14 chunks +37 lines, -41 lines 0 comments Download
M src/frames.cc View 1 5 chunks +82 lines, -33 lines 0 comments Download
M src/frames-inl.h View 1 4 chunks +66 lines, -1 line 0 comments Download
M src/full-codegen.h View 1 1 chunk +6 lines, -15 lines 0 comments Download
M src/full-codegen.cc View 1 3 chunks +13 lines, -14 lines 0 comments Download
M src/func-name-inferrer.h View 1 1 chunk +6 lines, -0 lines 0 comments Download
M src/globals.h View 1 1 chunk +4 lines, -0 lines 0 comments Download
M src/handles.h View 1 2 chunks +7 lines, -8 lines 0 comments Download
M src/handles.cc View 1 2 chunks +7 lines, -6 lines 0 comments Download
M src/heap.h View 1 43 chunks +277 lines, -163 lines 0 comments Download
M src/heap.cc View 1 116 chunks +798 lines, -680 lines 0 comments Download
M src/heap-inl.h View 1 12 chunks +43 lines, -61 lines 0 comments Download
M src/heap-profiler.cc View 1 1 chunk +0 lines, -1 line 0 comments Download
M src/hydrogen.h View 1 4 chunks +18 lines, -9 lines 0 comments Download
M src/hydrogen.cc View 1 28 chunks +269 lines, -142 lines 0 comments Download
M src/hydrogen-instructions.h View 1 123 chunks +188 lines, -156 lines 0 comments Download
M src/hydrogen-instructions.cc View 1 10 chunks +58 lines, -8 lines 0 comments Download
M src/ia32/assembler-ia32.h View 1 17 chunks +69 lines, -19 lines 0 comments Download
M src/ia32/assembler-ia32.cc View 1 11 chunks +48 lines, -39 lines 0 comments Download
M src/ia32/assembler-ia32-inl.h View 1 6 chunks +23 lines, -3 lines 0 comments Download
M src/ia32/builtins-ia32.cc View 1 28 chunks +512 lines, -485 lines 0 comments Download
M src/ia32/code-stubs-ia32.h View 1 5 chunks +289 lines, -2 lines 0 comments Download
M src/ia32/code-stubs-ia32.cc View 1 172 chunks +727 lines, -314 lines 0 comments Download
M src/ia32/codegen-ia32.cc View 1 7 chunks +25 lines, -21 lines 0 comments Download
M src/ia32/debug-ia32.cc View 1 2 chunks +45 lines, -44 lines 0 comments Download
M src/ia32/deoptimizer-ia32.cc View 1 15 chunks +78 lines, -22 lines 0 comments Download
M src/ia32/disasm-ia32.cc View 1 6 chunks +23 lines, -6 lines 0 comments Download
M src/ia32/full-codegen-ia32.cc View 1 49 chunks +188 lines, -121 lines 0 comments Download
M src/ia32/ic-ia32.cc View 1 16 chunks +104 lines, -58 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.h View 1 5 chunks +12 lines, -1 line 0 comments Download
M src/ia32/lithium-codegen-ia32.cc View 1 32 chunks +183 lines, -72 lines 0 comments Download
M src/ia32/lithium-ia32.h View 1 8 chunks +19 lines, -9 lines 0 comments Download
M src/ia32/lithium-ia32.cc View 1 13 chunks +42 lines, -22 lines 0 comments Download
M src/ia32/macro-assembler-ia32.h View 1 12 chunks +185 lines, -41 lines 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 1 53 chunks +580 lines, -153 lines 0 comments Download
M src/ia32/regexp-macro-assembler-ia32.cc View 1 31 chunks +62 lines, -54 lines 0 comments Download
M src/ia32/stub-cache-ia32.cc View 1 42 chunks +194 lines, -160 lines 0 comments Download
M src/ic.cc View 1 5 chunks +20 lines, -20 lines 0 comments Download
M src/ic-inl.h View 1 1 chunk +2 lines, -0 lines 0 comments Download
A + src/incremental-marking.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + src/incremental-marking.cc View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + src/incremental-marking-inl.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M src/isolate.h View 1 5 chunks +13 lines, -16 lines 0 comments Download
M src/isolate.cc View 1 4 chunks +6 lines, -5 lines 0 comments Download
M src/isolate-inl.h View 1 1 chunk +15 lines, -0 lines 0 comments Download
M src/json-parser.h View 1 1 chunk +1 line, -1 line 0 comments Download
M src/jsregexp.h View 1 2 chunks +2 lines, -1 line 0 comments Download
M src/lithium.h View 1 2 chunks +14 lines, -2 lines 0 comments Download
M src/lithium.cc View 1 2 chunks +22 lines, -0 lines 0 comments Download
M src/lithium-allocator.cc View 1 2 chunks +12 lines, -7 lines 0 comments Download
M src/liveedit.cc View 1 6 chunks +8 lines, -3 lines 0 comments Download
M src/liveobjectlist.cc View 1 4 chunks +10 lines, -4 lines 0 comments Download
M src/log.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M src/log.cc View 1 5 chunks +8 lines, -6 lines 0 comments Download
M src/macro-assembler.h View 1 2 chunks +58 lines, -1 line 0 comments Download
M src/mark-compact.h View 1 12 chunks +453 lines, -186 lines 0 comments Download
M src/mark-compact.cc View 1 66 chunks +2053 lines, -1605 lines 0 comments Download
A + src/mark-compact-inl.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M src/mips/assembler-mips-inl.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/mips/builtins-mips.cc View 1 14 chunks +573 lines, -506 lines 0 comments Download
M src/mips/code-stubs-mips.h View 1 2 chunks +3 lines, -1 line 0 comments Download
M src/mips/code-stubs-mips.cc View 1 38 chunks +295 lines, -233 lines 0 comments Download
M src/mips/codegen-mips.cc View 1 1 chunk +6 lines, -2 lines 0 comments Download
M src/mips/debug-mips.cc View 1 1 chunk +40 lines, -37 lines 0 comments Download
M src/mips/full-codegen-mips.cc View 1 10 chunks +46 lines, -38 lines 0 comments Download
M src/mips/ic-mips.cc View 1 3 chunks +21 lines, -18 lines 0 comments Download
M src/mips/macro-assembler-mips.h View 1 21 chunks +155 lines, -60 lines 0 comments Download
M src/mips/macro-assembler-mips.cc View 1 40 chunks +431 lines, -78 lines 0 comments Download
M src/mips/regexp-macro-assembler-mips.cc View 1 3 chunks +18 lines, -8 lines 0 comments Download
M src/mips/stub-cache-mips.cc View 1 23 chunks +86 lines, -72 lines 0 comments Download
M src/mksnapshot.cc View 1 1 chunk +2 lines, -1 line 0 comments Download
M src/objects.h View 1 74 chunks +318 lines, -289 lines 0 comments Download
M src/objects.cc View 1 111 chunks +979 lines, -405 lines 0 comments Download
M src/objects-debug.cc View 1 9 chunks +18 lines, -7 lines 0 comments Download
M src/objects-inl.h View 1 59 chunks +309 lines, -350 lines 0 comments Download
M src/objects-printer.cc View 1 12 chunks +113 lines, -8 lines 0 comments Download
M src/objects-visiting.h View 1 8 chunks +9 lines, -125 lines 0 comments Download
M src/objects-visiting.cc View 1 1 chunk +3 lines, -0 lines 0 comments Download
A + src/objects-visiting-inl.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M src/parser.h View 1 1 chunk +0 lines, -5 lines 0 comments Download
M src/parser.cc View 1 8 chunks +27 lines, -32 lines 0 comments Download
M src/platform.h View 1 2 chunks +57 lines, -2 lines 0 comments Download
M src/platform-linux.cc View 1 5 chunks +99 lines, -14 lines 0 comments Download
M src/platform-macos.cc View 1 4 chunks +95 lines, -13 lines 0 comments Download
M src/platform-openbsd.cc View 1 2 chunks +3 lines, -2 lines 0 comments Download
M src/platform-win32.cc View 1 3 chunks +77 lines, -14 lines 0 comments Download
M src/preparser.cc View 1 6 chunks +41 lines, -31 lines 0 comments Download
M src/prettyprinter.cc View 1 3 chunks +0 lines, -26 lines 0 comments Download
M src/profile-generator.h View 1 5 chunks +9 lines, -3 lines 0 comments Download
M src/profile-generator.cc View 1 10 chunks +82 lines, -13 lines 0 comments Download
M src/property.h View 1 4 chunks +12 lines, -9 lines 0 comments Download
M src/proxy.js View 1 2 chunks +20 lines, -3 lines 0 comments Download
MM src/regexp.js View 1 4 chunks +7 lines, -4 lines 0 comments Download
M src/regexp-macro-assembler-tracer.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M src/runtime.h View 1 2 chunks +3 lines, -0 lines 0 comments Download
M src/runtime.cc View 1 86 chunks +443 lines, -432 lines 0 comments Download
M src/runtime.js View 1 2 chunks +4 lines, -14 lines 0 comments Download
M src/runtime-profiler.cc View 1 2 chunks +3 lines, -1 line 0 comments Download
M src/serialize.h View 1 1 chunk +2 lines, -1 line 0 comments Download
M src/serialize.cc View 1 11 chunks +81 lines, -52 lines 0 comments Download
M src/spaces.h View 1 53 chunks +1438 lines, -1127 lines 0 comments Download
M src/spaces.cc View 1 41 chunks +1173 lines, -1724 lines 0 comments Download
M src/spaces-inl.h View 1 4 chunks +205 lines, -317 lines 0 comments Download
A + src/store-buffer.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + src/store-buffer.cc View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + src/store-buffer-inl.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M src/string.js View 1 3 chunks +5 lines, -1 line 0 comments Download
M src/strtod.cc View 1 1 chunk +0 lines, -1 line 0 comments Download
M src/stub-cache.h View 1 1 chunk +2 lines, -1 line 0 comments Download
M src/stub-cache.cc View 1 2 chunks +12 lines, -5 lines 0 comments Download
M src/token.h View 1 1 chunk +4 lines, -0 lines 0 comments Download
M src/type-info.h View 1 2 chunks +3 lines, -1 line 0 comments Download
M src/type-info.cc View 1 11 chunks +29 lines, -11 lines 0 comments Download
M src/uri.js View 1 3 chunks +26 lines, -11 lines 0 comments Download
M src/utils.h View 1 4 chunks +12 lines, -6 lines 0 comments Download
M src/v8.h View 1 2 chunks +11 lines, -1 line 0 comments Download
M src/v8.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M src/v8-counters.h View 1 2 chunks +4 lines, -5 lines 0 comments Download
M src/v8globals.h View 1 6 chunks +22 lines, -14 lines 0 comments Download
M src/v8natives.js View 1 2 chunks +14 lines, -4 lines 0 comments Download
M src/version.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M src/win32-headers.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M src/x64/assembler-x64.h View 1 3 chunks +13 lines, -2 lines 0 comments Download
M src/x64/assembler-x64.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M src/x64/assembler-x64-inl.h View 1 6 chunks +23 lines, -3 lines 0 comments Download
M src/x64/builtins-x64.cc View 1 12 chunks +524 lines, -493 lines 0 comments Download
M src/x64/code-stubs-x64.h View 1 4 chunks +276 lines, -1 line 0 comments Download
M src/x64/code-stubs-x64.cc View 1 15 chunks +391 lines, -31 lines 0 comments Download
M src/x64/codegen-x64.cc View 1 1 chunk +6 lines, -2 lines 0 comments Download
M src/x64/debug-x64.cc View 1 1 chunk +50 lines, -49 lines 0 comments Download
M src/x64/deoptimizer-x64.cc View 1 6 chunks +27 lines, -5 lines 0 comments Download
M src/x64/full-codegen-x64.cc View 1 17 chunks +107 lines, -62 lines 0 comments Download
M src/x64/ic-x64.cc View 1 9 chunks +87 lines, -45 lines 0 comments Download
M src/x64/lithium-codegen-x64.h View 1 3 chunks +8 lines, -2 lines 0 comments Download
M src/x64/lithium-codegen-x64.cc View 1 28 chunks +122 lines, -74 lines 0 comments Download
M src/x64/lithium-x64.h View 1 5 chunks +16 lines, -12 lines 0 comments Download
M src/x64/lithium-x64.cc View 1 9 chunks +21 lines, -13 lines 0 comments Download
M src/x64/macro-assembler-x64.h View 1 11 chunks +190 lines, -56 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 1 23 chunks +503 lines, -117 lines 0 comments Download
M src/x64/regexp-macro-assembler-x64.cc View 1 4 chunks +16 lines, -6 lines 0 comments Download
M src/x64/stub-cache-x64.cc View 1 18 chunks +136 lines, -114 lines 0 comments Download
M test/cctest/cctest.gyp View 1 2 chunks +8 lines, -1 line 0 comments Download
M test/cctest/cctest.status View 1 1 chunk +14 lines, -0 lines 0 comments Download
M test/cctest/test-accessors.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/test-alloc.cc View 1 4 chunks +30 lines, -10 lines 0 comments Download
M test/cctest/test-api.cc View 1 49 chunks +351 lines, -93 lines 0 comments Download
M test/cctest/test-assembler-ia32.cc View 1 5 chunks +13 lines, -13 lines 0 comments Download
M test/cctest/test-debug.cc View 1 15 chunks +17 lines, -24 lines 0 comments Download
M test/cctest/test-decls.cc View 1 7 chunks +21 lines, -19 lines 0 comments Download
M test/cctest/test-disasm-ia32.cc View 1 9 chunks +23 lines, -25 lines 0 comments Download
M test/cctest/test-func-name-inference.cc View 1 1 chunk +39 lines, -0 lines 0 comments Download
M test/cctest/test-heap.cc View 1 12 chunks +74 lines, -128 lines 0 comments Download
M test/cctest/test-heap-profiler.cc View 1 25 chunks +90 lines, -34 lines 0 comments Download
M test/cctest/test-log.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/test-mark-compact.cc View 1 6 chunks +17 lines, -12 lines 0 comments Download
M test/cctest/test-profile-generator.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/test-reloc-info.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/test-serialize.cc View 1 9 chunks +18 lines, -19 lines 0 comments Download
M test/cctest/test-spaces.cc View 1 9 chunks +34 lines, -56 lines 0 comments Download
M test/cctest/test-strings.cc View 1 2 chunks +30 lines, -1 line 0 comments Download
M test/cctest/test-threads.cc View 1 4 chunks +19 lines, -3 lines 0 comments Download
M test/cctest/test-weakmaps.cc View 1 5 chunks +20 lines, -15 lines 0 comments Download
M test/es5conform/es5conform.status View 1 3 chunks +0 lines, -29 lines 0 comments Download
A + test/mjsunit/array-tostring.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M test/mjsunit/assert-opt-and-deopt.js View 1 2 chunks +1 line, -5 lines 0 comments Download
A + test/mjsunit/compiler/inline-context-slots.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/compiler/regress-96989.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M test/mjsunit/const-redecl.js View 1 2 chunks +61 lines, -1 line 0 comments Download
M test/mjsunit/element-kind.js View 1 4 chunks +114 lines, -10 lines 0 comments Download
M test/mjsunit/global-const-var-conflicts.js View 1 2 chunks +5 lines, -5 lines 0 comments Download
M test/mjsunit/harmony/block-let-declaration.js View 1 1 chunk +53 lines, -2 lines 0 comments Download
M test/mjsunit/harmony/proxies.js View 1 32 chunks +736 lines, -63 lines 0 comments Download
A + test/mjsunit/harmony/proxies-hash.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M test/mjsunit/mjsunit.status View 1 2 chunks +5 lines, -1 line 0 comments Download
M test/mjsunit/regress/regress-1170.js View 1 1 chunk +1 line, -1 line 0 comments Download
M test/mjsunit/regress/regress-1213575.js View 1 1 chunk +5 lines, -6 lines 0 comments Download
A + test/mjsunit/regress/regress-1217.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/regress/regress-1415.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/regress/regress-1639-2.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/regress/regress-1692.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/regress/regress-1708.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/regress/regress-1711.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/regress/regress-1713.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/regress/regress-1748.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M test/mjsunit/regress/regress-877615.js View 1 1 chunk +6 lines, -6 lines 0 comments Download
A + test/mjsunit/regress/regress-94873.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/regress/regress-98773.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M test/mjsunit/regress/regress-deopt-gc.js View 1 1 chunk +1 line, -1 line 0 comments Download
A + test/mjsunit/regress/short-circuit.js View 1 0 chunks +-1 lines, --1 lines 0 comments Download
M test/mjsunit/string-slices.js View 1 2 chunks +11 lines, -6 lines 0 comments Download
M test/mjsunit/undeletable-functions.js View 1 2 chunks +3 lines, -1 line 0 comments Download
M test/mozilla/mozilla.status View 1 4 chunks +6 lines, -3 lines 0 comments Download
M test/preparser/strict-identifiers.pyt View 1 5 chunks +55 lines, -0 lines 0 comments Download
M test/sputnik/sputnik.status View 1 2 chunks +16 lines, -0 lines 0 comments Download
M tools/gc-nvp-trace-processor.py View 1 7 chunks +56 lines, -3 lines 0 comments Download
M tools/gcmole/gccause.lua View 1 1 chunk +2 lines, -0 lines 0 comments Download
M tools/gyp/v8.gyp View 1 3 chunks +12 lines, -0 lines 0 comments Download
M tools/linux-tick-processor View 1 2 chunks +19 lines, -12 lines 0 comments Download
M tools/ll_prof.py View 1 1 chunk +10 lines, -6 lines 0 comments Download
M tools/logreader.js View 1 2 chunks +3 lines, -4 lines 0 comments Download

Messages

Total messages: 2 (0 generated)
Erik Corry
9 years, 2 months ago (2011-10-05 13:11:26 UTC) #1
danno
9 years, 2 months ago (2011-10-05 15:02:44 UTC) #2
lgtm

Powered by Google App Engine
This is Rietveld 408576698