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

Issue 196133017: Experimental parser: merge r19949 (Closed)

Created:
6 years, 9 months ago by dcarney
Modified:
6 years, 9 months ago
Reviewers:
marja
CC:
v8-dev, Paweł Hajdan Jr.
Visibility:
Public.

Description

Experimental parser: merge r19949 TBR=marja@chromium.org BUG= Committed: https://code.google.com/p/v8/source/detail?r=19950

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+18983 lines, -15383 lines) Patch
M .gitignore View 1 chunk +1 line, -1 line 0 comments Download
M ChangeLog View 1 chunk +188 lines, -0 lines 0 comments Download
M Makefile View 2 chunks +15 lines, -1 line 0 comments Download
M PRESUBMIT.py View 1 chunk +9 lines, -0 lines 0 comments Download
M build/standalone.gypi View 3 chunks +23 lines, -0 lines 0 comments Download
M include/v8.h View 21 chunks +213 lines, -85 lines 0 comments Download
M include/v8-profiler.h View 1 chunk +6 lines, -0 lines 0 comments Download
A include/v8-util.h View 1 chunk +219 lines, -0 lines 0 comments Download
M samples/lineprocessor.cc View 1 chunk +2 lines, -1 line 0 comments Download
M samples/shell.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/a64/assembler-a64.h View 24 chunks +197 lines, -71 lines 0 comments Download
M src/a64/assembler-a64.cc View 25 chunks +228 lines, -53 lines 0 comments Download
M src/a64/assembler-a64-inl.h View 18 chunks +70 lines, -39 lines 0 comments Download
M src/a64/builtins-a64.cc View 21 chunks +137 lines, -107 lines 0 comments Download
M src/a64/code-stubs-a64.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/a64/code-stubs-a64.cc View 46 chunks +142 lines, -145 lines 0 comments Download
M src/a64/codegen-a64.cc View 5 chunks +5 lines, -7 lines 0 comments Download
M src/a64/constants-a64.h View 1 chunk +25 lines, -19 lines 0 comments Download
M src/a64/debug-a64.cc View 2 chunks +3 lines, -4 lines 0 comments Download
D src/a64/debugger-a64.h View 1 chunk +0 lines, -56 lines 0 comments Download
D src/a64/debugger-a64.cc View 1 chunk +0 lines, -111 lines 0 comments Download
M src/a64/deoptimizer-a64.cc View 5 chunks +18 lines, -11 lines 0 comments Download
M src/a64/disasm-a64.cc View 10 chunks +16 lines, -15 lines 0 comments Download
M src/a64/frames-a64.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/a64/frames-a64.cc View 1 chunk +8 lines, -0 lines 0 comments Download
M src/a64/full-codegen-a64.cc View 42 chunks +71 lines, -88 lines 0 comments Download
M src/a64/ic-a64.cc View 12 chunks +12 lines, -21 lines 0 comments Download
M src/a64/instructions-a64.h View 3 chunks +8 lines, -28 lines 0 comments Download
M src/a64/instructions-a64.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/a64/lithium-a64.h View 18 chunks +179 lines, -50 lines 0 comments Download
M src/a64/lithium-a64.cc View 15 chunks +222 lines, -101 lines 0 comments Download
M src/a64/lithium-codegen-a64.h View 3 chunks +3 lines, -1 line 0 comments Download
M src/a64/lithium-codegen-a64.cc View 42 chunks +405 lines, -239 lines 0 comments Download
M src/a64/macro-assembler-a64.h View 24 chunks +110 lines, -139 lines 0 comments Download
M src/a64/macro-assembler-a64.cc View 89 chunks +429 lines, -372 lines 0 comments Download
M src/a64/macro-assembler-a64-inl.h View 11 chunks +56 lines, -28 lines 0 comments Download
M src/a64/regexp-macro-assembler-a64.h View 1 chunk +2 lines, -2 lines 0 comments Download
M src/a64/regexp-macro-assembler-a64.cc View 21 chunks +25 lines, -23 lines 0 comments Download
M src/a64/simulator-a64.h View 11 chunks +53 lines, -18 lines 0 comments Download
M src/a64/simulator-a64.cc View 36 chunks +337 lines, -105 lines 0 comments Download
M src/a64/stub-cache-a64.cc View 14 chunks +31 lines, -83 lines 0 comments Download
M src/a64/utils-a64.h View 4 chunks +27 lines, -5 lines 0 comments Download
M src/accessors.h View 2 chunks +0 lines, -2 lines 0 comments Download
M src/accessors.cc View 3 chunks +3 lines, -26 lines 0 comments Download
M src/allocation-tracker.h View 7 chunks +45 lines, -11 lines 0 comments Download
M src/allocation-tracker.cc View 10 chunks +129 lines, -43 lines 0 comments Download
M src/api.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/api.cc View 15 chunks +338 lines, -210 lines 0 comments Download
M src/arm/assembler-arm.h View 7 chunks +49 lines, -13 lines 0 comments Download
M src/arm/assembler-arm.cc View 7 chunks +26 lines, -27 lines 0 comments Download
M src/arm/assembler-arm-inl.h View 9 chunks +21 lines, -10 lines 0 comments Download
M src/arm/builtins-arm.cc View 16 chunks +27 lines, -22 lines 0 comments Download
M src/arm/code-stubs-arm.h View 1 chunk +1 line, -1 line 0 comments Download
M src/arm/code-stubs-arm.cc View 36 chunks +79 lines, -91 lines 0 comments Download
M src/arm/debug-arm.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/arm/deoptimizer-arm.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M src/arm/full-codegen-arm.cc View 28 chunks +36 lines, -54 lines 0 comments Download
M src/arm/ic-arm.cc View 6 chunks +6 lines, -6 lines 0 comments Download
M src/arm/lithium-arm.h View 16 chunks +163 lines, -58 lines 0 comments Download
M src/arm/lithium-arm.cc View 9 chunks +181 lines, -127 lines 0 comments Download
M src/arm/lithium-codegen-arm.h View 4 chunks +7 lines, -17 lines 0 comments Download
M src/arm/lithium-codegen-arm.cc View 39 chunks +310 lines, -349 lines 0 comments Download
M src/arm/macro-assembler-arm.h View 5 chunks +72 lines, -4 lines 0 comments Download
M src/arm/macro-assembler-arm.cc View 4 chunks +37 lines, -9 lines 0 comments Download
M src/arm/stub-cache-arm.cc View 15 chunks +30 lines, -102 lines 0 comments Download
M src/array.js View 6 chunks +7 lines, -7 lines 0 comments Download
M src/arraybuffer.js View 1 chunk +6 lines, -5 lines 0 comments Download
M src/assembler.h View 12 chunks +40 lines, -7 lines 0 comments Download
M src/assembler.cc View 10 chunks +60 lines, -22 lines 0 comments Download
M src/ast.h View 1 chunk +1 line, -2 lines 0 comments Download
M src/ast.cc View 2 chunks +4 lines, -4 lines 0 comments Download
M src/atomicops.h View 4 chunks +20 lines, -11 lines 0 comments Download
M src/atomicops_internals_arm_gcc.h View 4 chunks +204 lines, -33 lines 0 comments Download
A src/atomicops_internals_atomicword_compat.h View 1 chunk +122 lines, -0 lines 0 comments Download
A + src/atomicops_internals_mac.h View 6 chunks +11 lines, -93 lines 0 comments Download
M src/atomicops_internals_tsan.h View 7 chunks +94 lines, -100 lines 0 comments Download
D src/atomicops_internals_x86_macosx.h View 1 chunk +0 lines, -301 lines 0 comments Download
M src/atomicops_internals_x86_msvc.h View 2 chunks +14 lines, -0 lines 0 comments Download
M src/bootstrapper.cc View 20 chunks +62 lines, -63 lines 0 comments Download
M src/builtins.h View 2 chunks +3 lines, -3 lines 0 comments Download
M src/builtins.cc View 6 chunks +11 lines, -14 lines 0 comments Download
M src/code-stubs.h View 15 chunks +74 lines, -38 lines 0 comments Download
M src/code-stubs.cc View 3 chunks +4 lines, -4 lines 0 comments Download
M src/code-stubs-hydrogen.cc View 10 chunks +102 lines, -87 lines 0 comments Download
M src/codegen.cc View 1 chunk +4 lines, -4 lines 0 comments Download
M src/compilation-cache.h View 3 chunks +4 lines, -5 lines 0 comments Download
M src/compilation-cache.cc View 4 chunks +5 lines, -5 lines 0 comments Download
M src/compiler.h View 7 chunks +21 lines, -22 lines 0 comments Download
M src/compiler.cc View 21 chunks +36 lines, -37 lines 0 comments Download
M src/contexts.h View 7 chunks +39 lines, -26 lines 0 comments Download
M src/contexts.cc View 3 chunks +6 lines, -6 lines 0 comments Download
M src/counters.cc View 2 chunks +2 lines, -6 lines 0 comments Download
M src/d8.cc View 4 chunks +9 lines, -5 lines 0 comments Download
M src/date.h View 4 chunks +10 lines, -5 lines 0 comments Download
M src/date.cc View 1 chunk +1 line, -0 lines 0 comments Download
M src/date.js View 3 chunks +16 lines, -2 lines 0 comments Download
M src/debug.cc View 6 chunks +23 lines, -18 lines 0 comments Download
M src/deoptimizer.h View 2 chunks +3 lines, -1 line 0 comments Download
M src/deoptimizer.cc View 14 chunks +91 lines, -30 lines 0 comments Download
M src/disassembler.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/elements.h View 1 chunk +1 line, -1 line 0 comments Download
M src/elements.cc View 10 chunks +28 lines, -20 lines 0 comments Download
M src/elements-kind.h View 1 chunk +1 line, -1 line 0 comments Download
M src/elements-kind.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/execution.cc View 1 chunk +3 lines, -2 lines 0 comments Download
M src/extensions/externalize-string-extension.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/factory.h View 4 chunks +6 lines, -4 lines 0 comments Download
M src/factory.cc View 8 chunks +18 lines, -17 lines 0 comments Download
M src/flag-definitions.h View 6 chunks +6 lines, -12 lines 0 comments Download
M src/frames.h View 4 chunks +16 lines, -1 line 0 comments Download
M src/frames.cc View 3 chunks +8 lines, -0 lines 0 comments Download
M src/frames-inl.h View 1 chunk +5 lines, -0 lines 0 comments Download
M src/full-codegen.h View 5 chunks +3 lines, -13 lines 0 comments Download
M src/full-codegen.cc View 6 chunks +32 lines, -14 lines 0 comments Download
M src/func-name-inferrer.h View 1 chunk +4 lines, -0 lines 0 comments Download
M src/global-handles.h View 2 chunks +2 lines, -1 line 0 comments Download
M src/global-handles.cc View 2 chunks +5 lines, -3 lines 0 comments Download
M src/globals.h View 2 chunks +5 lines, -27 lines 0 comments Download
M src/handles.cc View 3 chunks +8 lines, -31 lines 0 comments Download
M src/handles-inl.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/harmony-array.js View 2 chunks +2 lines, -2 lines 0 comments Download
M src/harmony-math.js View 1 chunk +55 lines, -6 lines 0 comments Download
M src/heap.h View 9 chunks +34 lines, -24 lines 0 comments Download
M src/heap.cc View 18 chunks +93 lines, -122 lines 0 comments Download
M src/heap-inl.h View 3 chunks +4 lines, -3 lines 0 comments Download
M src/heap-profiler.cc View 1 chunk +4 lines, -1 line 0 comments Download
M src/heap-snapshot-generator.h View 11 chunks +16 lines, -36 lines 0 comments Download
M src/heap-snapshot-generator.cc View 24 chunks +106 lines, -93 lines 0 comments Download
M src/hydrogen.h View 3 chunks +2 lines, -9 lines 0 comments Download
M src/hydrogen.cc View 36 chunks +92 lines, -104 lines 0 comments Download
M src/hydrogen-bce.cc View 3 chunks +20 lines, -0 lines 0 comments Download
M src/hydrogen-gvn.h View 2 chunks +27 lines, -7 lines 0 comments Download
M src/hydrogen-gvn.cc View 5 chunks +65 lines, -9 lines 0 comments Download
M src/hydrogen-instructions.h View 59 chunks +166 lines, -143 lines 0 comments Download
M src/hydrogen-instructions.cc View 21 chunks +196 lines, -144 lines 0 comments Download
D src/hydrogen-minus-zero.h View 1 chunk +0 lines, -56 lines 0 comments Download
D src/hydrogen-minus-zero.cc View 1 chunk +0 lines, -91 lines 0 comments Download
M src/hydrogen-range-analysis.h View 2 chunks +14 lines, -1 line 0 comments Download
M src/hydrogen-range-analysis.cc View 2 chunks +98 lines, -1 line 0 comments Download
M src/hydrogen-representation-changes.cc View 1 chunk +4 lines, -1 line 0 comments Download
M src/i18n.cc View 33 chunks +40 lines, -40 lines 0 comments Download
M src/ia32/assembler-ia32.h View 2 chunks +17 lines, -4 lines 0 comments Download
M src/ia32/assembler-ia32.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M src/ia32/assembler-ia32-inl.h View 5 chunks +18 lines, -9 lines 0 comments Download
M src/ia32/builtins-ia32.cc View 4 chunks +8 lines, -9 lines 0 comments Download
M src/ia32/code-stubs-ia32.h View 1 chunk +1 line, -1 line 0 comments Download
M src/ia32/code-stubs-ia32.cc View 19 chunks +53 lines, -57 lines 0 comments Download
M src/ia32/deoptimizer-ia32.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M src/ia32/disasm-ia32.cc View 2 chunks +18 lines, -10 lines 0 comments Download
M src/ia32/frames-ia32.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/ia32/full-codegen-ia32.cc View 29 chunks +41 lines, -56 lines 0 comments Download
M src/ia32/ic-ia32.cc View 6 chunks +6 lines, -6 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.h View 2 chunks +6 lines, -6 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.cc View 26 chunks +358 lines, -304 lines 0 comments Download
M src/ia32/lithium-ia32.h View 16 chunks +181 lines, -56 lines 0 comments Download
M src/ia32/lithium-ia32.cc View 10 chunks +203 lines, -118 lines 0 comments Download
M src/ia32/macro-assembler-ia32.h View 2 chunks +7 lines, -0 lines 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 2 chunks +22 lines, -0 lines 0 comments Download
M src/ia32/stub-cache-ia32.cc View 11 chunks +29 lines, -76 lines 0 comments Download
M src/ic.h View 20 chunks +67 lines, -35 lines 0 comments Download
M src/ic.cc View 32 chunks +143 lines, -115 lines 0 comments Download
M src/ic-inl.h View 4 chunks +54 lines, -7 lines 0 comments Download
M src/incremental-marking.h View 1 chunk +0 lines, -4 lines 0 comments Download
M src/incremental-marking.cc View 1 chunk +0 lines, -22 lines 0 comments Download
M src/interpreter-irregexp.cc View 1 chunk +2 lines, -15 lines 0 comments Download
M src/isolate.h View 10 chunks +26 lines, -32 lines 0 comments Download
M src/isolate.cc View 9 chunks +14 lines, -20 lines 0 comments Download
M src/json.js View 1 chunk +11 lines, -4 lines 0 comments Download
M src/json-parser.h View 2 chunks +2 lines, -4 lines 0 comments Download
M src/json-stringifier.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/lithium.h View 4 chunks +25 lines, -132 lines 0 comments Download
M src/lithium.cc View 2 chunks +22 lines, -22 lines 0 comments Download
M src/lithium-allocator.h View 1 chunk +0 lines, -4 lines 0 comments Download
M src/lithium-codegen.cc View 1 chunk +1 line, -0 lines 0 comments Download
M src/liveedit.cc View 12 chunks +36 lines, -38 lines 0 comments Download
M src/log.h View 1 chunk +5 lines, -2 lines 0 comments Download
M src/log.cc View 1 chunk +7 lines, -1 line 0 comments Download
M src/macro-assembler.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/mark-compact.h View 1 chunk +8 lines, -4 lines 0 comments Download
M src/mark-compact.cc View 8 chunks +62 lines, -26 lines 0 comments Download
M src/mark-compact-inl.h View 1 chunk +3 lines, -2 lines 0 comments Download
M src/messages.js View 2 chunks +5 lines, -5 lines 0 comments Download
M src/mips/assembler-mips.h View 2 chunks +22 lines, -1 line 0 comments Download
M src/mips/assembler-mips.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M src/mips/assembler-mips-inl.h View 9 chunks +18 lines, -10 lines 0 comments Download
M src/mips/builtins-mips.cc View 4 chunks +8 lines, -9 lines 0 comments Download
M src/mips/code-stubs-mips.h View 1 chunk +1 line, -1 line 0 comments Download
M src/mips/code-stubs-mips.cc View 22 chunks +55 lines, -68 lines 0 comments Download
M src/mips/deoptimizer-mips.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M src/mips/frames-mips.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/mips/full-codegen-mips.cc View 28 chunks +36 lines, -53 lines 0 comments Download
M src/mips/ic-mips.cc View 7 chunks +9 lines, -6 lines 0 comments Download
M src/mips/lithium-codegen-mips.h View 3 chunks +7 lines, -6 lines 0 comments Download
M src/mips/lithium-codegen-mips.cc View 29 chunks +328 lines, -289 lines 0 comments Download
M src/mips/lithium-mips.h View 15 chunks +162 lines, -72 lines 0 comments Download
M src/mips/lithium-mips.cc View 9 chunks +180 lines, -102 lines 0 comments Download
M src/mips/macro-assembler-mips.h View 1 chunk +4 lines, -0 lines 0 comments Download
M src/mips/macro-assembler-mips.cc View 1 chunk +22 lines, -0 lines 0 comments Download
M src/mips/stub-cache-mips.cc View 13 chunks +27 lines, -100 lines 0 comments Download
M src/mirror-debugger.js View 13 chunks +73 lines, -35 lines 0 comments Download
M src/object-observe.js View 7 chunks +97 lines, -51 lines 0 comments Download
M src/objects.h View 49 chunks +158 lines, -154 lines 0 comments Download
M src/objects.cc View 151 chunks +464 lines, -481 lines 0 comments Download
M src/objects-debug.cc View 6 chunks +10 lines, -4 lines 0 comments Download
M src/objects-inl.h View 31 chunks +112 lines, -102 lines 0 comments Download
M src/objects-printer.cc View 5 chunks +9 lines, -8 lines 0 comments Download
M src/objects-visiting-inl.h View 4 chunks +15 lines, -14 lines 0 comments Download
M src/optimizing-compiler-thread.cc View 1 chunk +7 lines, -3 lines 0 comments Download
M src/parser.h View 13 chunks +80 lines, -39 lines 0 comments Download
M src/parser.cc View 44 chunks +157 lines, -504 lines 0 comments Download
src/platform.h View 2 chunks +10 lines, -3 lines 0 comments Download
M src/platform-cygwin.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/platform-freebsd.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/platform-linux.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/platform-macos.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/platform-openbsd.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/platform-posix.cc View 4 chunks +29 lines, -6 lines 0 comments Download
M src/platform-qnx.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/platform-solaris.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M src/platform-win32.cc View 9 chunks +136 lines, -127 lines 0 comments Download
M src/preparse-data.h View 4 chunks +119 lines, -120 lines 0 comments Download
M src/preparse-data.cc View 4 chunks +48 lines, -36 lines 0 comments Download
M src/preparser.h View 30 chunks +509 lines, -59 lines 0 comments Download
M src/preparser.cc View 23 chunks +79 lines, -244 lines 0 comments Download
M src/profile-generator-inl.h View 1 chunk +1 line, -1 line 0 comments Download
M src/promise.js View 4 chunks +29 lines, -4 lines 0 comments Download
M src/property-details.h View 1 chunk +2 lines, -0 lines 0 comments Download
A + src/property-details-inl.h View 1 chunk +16 lines, -11 lines 0 comments Download
M src/runtime.h View 19 chunks +20 lines, -28 lines 0 comments Download
M src/runtime.cc View 93 chunks +284 lines, -275 lines 0 comments Download
M src/safepoint-table.h View 1 chunk +3 lines, -0 lines 0 comments Download
M src/scanner.h View 12 chunks +119 lines, -85 lines 0 comments Download
M src/scanner.cc View 9 chunks +93 lines, -34 lines 0 comments Download
M src/scopeinfo.cc View 3 chunks +4 lines, -4 lines 0 comments Download
M src/scopes.h View 7 chunks +16 lines, -24 lines 0 comments Download
M src/scopes.cc View 13 chunks +27 lines, -36 lines 0 comments Download
M src/serialize.h View 1 chunk +1 line, -1 line 0 comments Download
M src/serialize.cc View 8 chunks +20 lines, -14 lines 0 comments Download
M src/store-buffer.cc View 4 chunks +19 lines, -12 lines 0 comments Download
M src/stub-cache.h View 10 chunks +24 lines, -33 lines 0 comments Download
M src/stub-cache.cc View 5 chunks +5 lines, -5 lines 0 comments Download
M src/token.h View 1 chunk +1 line, -1 line 0 comments Download
M src/type-info.h View 2 chunks +3 lines, -2 lines 0 comments Download
M src/type-info.cc View 3 chunks +13 lines, -16 lines 0 comments Download
M src/typedarray.js View 2 chunks +2 lines, -2 lines 0 comments Download
M src/types.h View 9 chunks +35 lines, -19 lines 0 comments Download
M src/types.cc View 2 chunks +6 lines, -4 lines 0 comments Download
M src/typing.cc View 2 chunks +2 lines, -1 line 0 comments Download
M src/unique.h View 1 chunk +4 lines, -0 lines 0 comments Download
M src/utils.h View 2 chunks +6 lines, -26 lines 0 comments Download
M src/utils.cc View 1 chunk +0 lines, -14 lines 0 comments Download
M src/v8.cc View 1 chunk +3 lines, -6 lines 0 comments Download
M src/v8globals.h View 2 chunks +3 lines, -3 lines 0 comments Download
M src/v8natives.js View 2 chunks +2 lines, -2 lines 0 comments Download
M src/variables.h View 1 chunk +1 line, -1 line 0 comments Download
M src/variables.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M src/version.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/win32-headers.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/x64/assembler-x64.h View 4 chunks +20 lines, -4 lines 0 comments Download
M src/x64/assembler-x64.cc View 3 chunks +24 lines, -0 lines 0 comments Download
M src/x64/assembler-x64-inl.h View 6 chunks +16 lines, -7 lines 0 comments Download
M src/x64/builtins-x64.cc View 4 chunks +8 lines, -9 lines 0 comments Download
M src/x64/code-stubs-x64.h View 1 chunk +1 line, -1 line 0 comments Download
M src/x64/code-stubs-x64.cc View 19 chunks +52 lines, -66 lines 0 comments Download
M src/x64/deoptimizer-x64.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M src/x64/disasm-x64.cc View 3 chunks +25 lines, -27 lines 0 comments Download
M src/x64/frames-x64.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/x64/full-codegen-x64.cc View 28 chunks +41 lines, -54 lines 0 comments Download
M src/x64/ic-x64.cc View 6 chunks +6 lines, -6 lines 0 comments Download
M src/x64/lithium-codegen-x64.h View 2 chunks +2 lines, -3 lines 0 comments Download
src/x64/lithium-codegen-x64.cc View 23 chunks +355 lines, -302 lines 0 comments Download
M src/x64/lithium-x64.h View 18 chunks +180 lines, -56 lines 0 comments Download
M src/x64/lithium-x64.cc View 13 chunks +212 lines, -127 lines 0 comments Download
src/x64/macro-assembler-x64.h View 1 chunk +4 lines, -0 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 1 chunk +12 lines, -0 lines 0 comments Download
M src/x64/stub-cache-x64.cc View 11 chunks +27 lines, -74 lines 0 comments Download
M test/cctest/cctest.h View 1 chunk +61 lines, -11 lines 0 comments Download
M test/cctest/cctest.gyp View 2 chunks +2 lines, -0 lines 0 comments Download
M test/cctest/cctest.status View 1 chunk +7 lines, -0 lines 0 comments Download
M test/cctest/test-api.cc View 108 chunks +505 lines, -284 lines 0 comments Download
M test/cctest/test-assembler-a64.cc View 38 chunks +1164 lines, -409 lines 0 comments Download
A test/cctest/test-atomicops.cc View 1 chunk +276 lines, -0 lines 0 comments Download
M test/cctest/test-compiler.cc View 3 chunks +38 lines, -2 lines 0 comments Download
M test/cctest/test-constantpool.cc View 2 chunks +29 lines, -11 lines 0 comments Download
M test/cctest/test-cpu-profiler.cc View 1 chunk +6 lines, -10 lines 0 comments Download
M test/cctest/test-date.cc View 1 chunk +22 lines, -0 lines 0 comments Download
M test/cctest/test-debug.cc View 15 chunks +20 lines, -87 lines 0 comments Download
M test/cctest/test-decls.cc View 3 chunks +0 lines, -3 lines 0 comments Download
M test/cctest/test-disasm-a64.cc View 4 chunks +35 lines, -35 lines 0 comments Download
M test/cctest/test-disasm-arm.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M test/cctest/test-disasm-ia32.cc View 3 chunks +13 lines, -2 lines 0 comments Download
M test/cctest/test-disasm-x64.cc View 7 chunks +26 lines, -12 lines 0 comments Download
M test/cctest/test-heap.cc View 17 chunks +87 lines, -40 lines 0 comments Download
M test/cctest/test-heap-profiler.cc View 3 chunks +91 lines, -2 lines 0 comments Download
M test/cctest/test-log.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M test/cctest/test-macro-assembler-ia32.cc View 1 chunk +11 lines, -0 lines 0 comments Download
M test/cctest/test-mark-compact.cc View 3 chunks +4 lines, -5 lines 0 comments Download
M test/cctest/test-microtask-delivery.cc View 1 chunk +0 lines, -1 line 0 comments Download
M test/cctest/test-object-observe.cc View 25 chunks +78 lines, -116 lines 0 comments Download
M test/cctest/test-parsing.cc View 22 chunks +260 lines, -84 lines 0 comments Download
M test/cctest/test-types.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M test/cctest/test-utils-a64.h View 1 chunk +6 lines, -6 lines 0 comments Download
M test/cctest/test-utils-a64.cc View 7 chunks +26 lines, -27 lines 0 comments Download
A test/mjsunit/compiler/division-by-constant.js View 1 chunk +131 lines, -0 lines 0 comments Download
A test/mjsunit/constant-fold-control-instructions.js View 1 chunk +47 lines, -0 lines 0 comments Download
M test/mjsunit/debug-scopes.js View 1 chunk +11 lines, -0 lines 0 comments Download
M test/mjsunit/debug-script.js View 1 chunk +1 line, -1 line 0 comments Download
A test/mjsunit/double-intrinsics.js View 1 chunk +36 lines, -0 lines 0 comments Download
test/mjsunit/es6/math-cbrt.js View 0 chunks +-1 lines, --1 lines 0 comments Download
test/mjsunit/es6/math-clz32.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/es6/math-expm1.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/es6/math-fround.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/es6/math-hyperbolic.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/es6/math-hypot.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/es6/math-log1p.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/es6/math-log2-log10.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/es6/math-sign.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/es6/math-trunc.js View 0 chunks +-1 lines, --1 lines 0 comments Download
A + test/mjsunit/es7/object-observe.js View 0 chunks +-1 lines, --1 lines 0 comments Download
M test/mjsunit/harmony/block-let-declaration.js View 1 chunk +2 lines, -2 lines 0 comments Download
M test/mjsunit/harmony/generators-parsing.js View 2 chunks +2 lines, -2 lines 0 comments Download
D test/mjsunit/harmony/math-cbrt.js View 1 chunk +0 lines, -27 lines 0 comments Download
D test/mjsunit/harmony/math-clz32.js View 1 chunk +0 lines, -36 lines 0 comments Download
D test/mjsunit/harmony/math-expm1.js View 1 chunk +0 lines, -38 lines 0 comments Download
D test/mjsunit/harmony/math-fround.js View 1 chunk +0 lines, -99 lines 0 comments Download
D test/mjsunit/harmony/math-hyperbolic.js View 1 chunk +0 lines, -138 lines 0 comments Download
D test/mjsunit/harmony/math-hypot.js View 1 chunk +0 lines, -94 lines 0 comments Download
D test/mjsunit/harmony/math-log1p.js View 1 chunk +0 lines, -41 lines 0 comments Download
D test/mjsunit/harmony/math-log2-log10.js View 1 chunk +0 lines, -47 lines 0 comments Download
D test/mjsunit/harmony/math-sign.js View 1 chunk +0 lines, -48 lines 0 comments Download
D test/mjsunit/harmony/math-trunc.js View 1 chunk +0 lines, -51 lines 0 comments Download
D test/mjsunit/harmony/object-observe.js View 1 chunk +0 lines, -1789 lines 0 comments Download
M test/mjsunit/harmony/promises.js View 2 chunks +4 lines, -4 lines 0 comments Download
M test/mjsunit/harmony/proxies-example-membrane.js View 1 chunk +1 line, -1 line 0 comments Download
M test/mjsunit/harmony/proxies-function.js View 3 chunks +4 lines, -4 lines 0 comments Download
M test/mjsunit/json2.js View 1 chunk +4 lines, -0 lines 0 comments Download
M test/mjsunit/math-floor-of-div.js View 1 chunk +11 lines, -0 lines 0 comments Download
M test/mjsunit/mjsunit.status View 2 chunks +1 line, -3 lines 0 comments Download
M test/mjsunit/proto-accessor.js View 1 chunk +4 lines, -3 lines 0 comments Download
A + test/mjsunit/regress-keyed-store-non-strict-arguments.js View 1 chunk +10 lines, -8 lines 0 comments Download
M test/mjsunit/regress/regress-2273.js View 2 chunks +2 lines, -2 lines 0 comments Download
M test/mjsunit/regress/regress-2564.js View 1 chunk +1 line, -1 line 0 comments Download
M test/mjsunit/regress/regress-3135.js View 2 chunks +22 lines, -2 lines 0 comments Download
A + test/mjsunit/regress/regress-3183.js View 1 chunk +45 lines, -34 lines 0 comments Download
A test/mjsunit/regress/regress-3204.js View 1 chunk +25 lines, -0 lines 0 comments Download
A + test/mjsunit/regress/regress-346587.js View 1 chunk +6 lines, -2 lines 0 comments Download
A + test/mjsunit/regress/regress-348280.js View 1 chunk +10 lines, -4 lines 0 comments Download
A + test/mjsunit/regress/regress-348512.js View 1 chunk +6 lines, -10 lines 0 comments Download
A + test/mjsunit/regress/regress-349870.js View 1 chunk +3 lines, -6 lines 0 comments Download
A + test/mjsunit/regress/regress-349885.js View 1 chunk +8 lines, -4 lines 0 comments Download
A + test/mjsunit/regress/regress-350863.js View 1 chunk +15 lines, -12 lines 0 comments Download
A + test/mjsunit/regress/regress-350865.js View 1 chunk +10 lines, -7 lines 0 comments Download
A + test/mjsunit/regress/regress-350884.js View 1 chunk +9 lines, -8 lines 0 comments Download
A test/mjsunit/regress/regress-350887.js View 1 chunk +12 lines, -0 lines 0 comments Download
A test/mjsunit/regress/regress-351257.js View 1 chunk +17 lines, -0 lines 0 comments Download
A + test/mjsunit/regress/regress-351261.js View 1 chunk +9 lines, -4 lines 0 comments Download
A + test/mjsunit/regress/regress-351263.js View 1 chunk +7 lines, -11 lines 0 comments Download
A + test/mjsunit/regress/regress-351315.js View 1 chunk +14 lines, -12 lines 0 comments Download
A + test/mjsunit/regress/regress-351319.js View 1 chunk +9 lines, -12 lines 0 comments Download
A test/mjsunit/regress/regress-351624.js View 1 chunk +23 lines, -0 lines 0 comments Download
A + test/mjsunit/regress/regress-352059.js View 1 chunk +9 lines, -4 lines 0 comments Download
A test/mjsunit/regress/regress-crbug-349079.js View 1 chunk +23 lines, -0 lines 0 comments Download
A test/mjsunit/regress/regress-crbug-349465.js View 1 chunk +17 lines, -0 lines 0 comments Download
A test/mjsunit/regress/regress-crbug-349853.js View 1 chunk +21 lines, -0 lines 0 comments Download
A + test/mjsunit/regress/regress-crbug-349878.js View 1 chunk +18 lines, -11 lines 0 comments Download
A test/mjsunit/regress/regress-crbug-350434.js View 1 chunk +33 lines, -0 lines 0 comments Download
A + test/mjsunit/regress/regress-crbug-350864.js View 1 chunk +8 lines, -8 lines 0 comments Download
A + test/mjsunit/regress/regress-crbug-351262.js View 1 chunk +2 lines, -6 lines 0 comments Download
A test/mjsunit/regress/regress-crbug-351320.js View 1 chunk +21 lines, -0 lines 0 comments Download
A test/mjsunit/regress/regress-crbug-351787.js View 1 chunk +42 lines, -0 lines 0 comments Download
A test/mjsunit/regress/regress-force-representation.js View 1 chunk +22 lines, -0 lines 0 comments Download
A + test/mjsunit/regress/regress-migrate-callbacks.js View 1 chunk +7 lines, -6 lines 0 comments Download
A + test/mjsunit/regress/regress-sort-arguments.js View 1 chunk +6 lines, -8 lines 0 comments Download
A + test/mjsunit/regress/regress-store-global-proxy.js View 1 chunk +7 lines, -5 lines 0 comments Download
M test/mjsunit/string-case.js View 2 chunks +15 lines, -1 line 0 comments Download
A + test/mjsunit/test-hidden-string.js View 1 chunk +5 lines, -4 lines 0 comments Download
M test/mjsunit/value-wrapper-accessor.js View 1 chunk +1 line, -1 line 0 comments Download
M test/webkit/fast/js/Object-getOwnPropertyNames-expected.txt View 1 chunk +2 lines, -2 lines 0 comments Download
A + test/webkit/fast/js/Promise-already-rejected.js View 2 chunks +17 lines, -7 lines 0 comments Download
A test/webkit/fast/js/Promise-already-rejected-expected.txt View 1 chunk +9 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-already-resolved.js View 2 chunks +18 lines, -17 lines 0 comments Download
A test/webkit/fast/js/Promise-already-resolved-expected.txt View 1 chunk +9 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-catch.js View 2 chunks +37 lines, -46 lines 0 comments Download
A test/webkit/fast/js/Promise-catch-expected.txt View 1 chunk +15 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-chained-then.js View 1 chunk +72 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-chained-then-expected.txt View 1 chunk +19 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-exception.js View 2 chunks +18 lines, -11 lines 0 comments Download
A test/webkit/fast/js/Promise-exception-expected.txt View 1 chunk +10 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-init.js View 1 chunk +70 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-init-callback-receiver.js View 2 chunks +8 lines, -12 lines 0 comments Download
A test/webkit/fast/js/Promise-init-callback-receiver-expected.txt View 1 chunk +9 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-init-expected.txt View 1 chunk +19 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-onFulfilled-deep.js View 2 chunks +15 lines, -20 lines 0 comments Download
A test/webkit/fast/js/Promise-onFulfilled-deep-expected.txt View 1 chunk +10 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-onRejected-deep.js View 2 chunks +15 lines, -18 lines 0 comments Download
A test/webkit/fast/js/Promise-onRejected-deep-expected.txt View 1 chunk +10 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-reject.js View 2 chunks +27 lines, -29 lines 0 comments Download
A test/webkit/fast/js/Promise-reject-expected.txt View 1 chunk +12 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-resolve.js View 2 chunks +17 lines, -17 lines 0 comments Download
A + test/webkit/fast/js/Promise-resolve-chain.js View 2 chunks +33 lines, -32 lines 0 comments Download
A test/webkit/fast/js/Promise-resolve-chain-expected.txt View 1 chunk +10 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-resolve-expected.txt View 1 chunk +10 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-resolve-state.js View 2 chunks +27 lines, -29 lines 0 comments Download
A test/webkit/fast/js/Promise-resolve-state-expected.txt View 1 chunk +12 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-resolve-with-itself.js View 2 chunks +15 lines, -11 lines 0 comments Download
A test/webkit/fast/js/Promise-resolve-with-itself-expected.txt View 1 chunk +10 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-resolve-with-then-exception.js View 2 chunks +18 lines, -15 lines 0 comments Download
A test/webkit/fast/js/Promise-resolve-with-then-exception-expected.txt View 1 chunk +11 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-resolve-with-then-fulfill.js View 2 chunks +26 lines, -15 lines 0 comments Download
A test/webkit/fast/js/Promise-resolve-with-then-fulfill-expected.txt View 1 chunk +13 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-resolve-with-then-reject.js View 2 chunks +26 lines, -15 lines 0 comments Download
A test/webkit/fast/js/Promise-resolve-with-then-reject-expected.txt View 1 chunk +13 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-simple.js View 2 chunks +22 lines, -13 lines 0 comments Download
A test/webkit/fast/js/Promise-simple-expected.txt View 1 chunk +11 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-static-all.js View 1 chunk +117 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-static-all-expected.txt View 1 chunk +32 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-static-cast.js View 2 chunks +29 lines, -15 lines 0 comments Download
A test/webkit/fast/js/Promise-static-cast-expected.txt View 1 chunk +14 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-static-race.js View 1 chunk +108 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-static-race-expected.txt View 1 chunk +21 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-static-reject.js View 2 chunks +14 lines, -7 lines 0 comments Download
A test/webkit/fast/js/Promise-static-reject-expected.txt View 1 chunk +10 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-static-resolve.js View 2 chunks +17 lines, -10 lines 0 comments Download
A test/webkit/fast/js/Promise-static-resolve-expected.txt View 1 chunk +10 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-then.js View 2 chunks +44 lines, -7 lines 0 comments Download
A + test/webkit/fast/js/Promise-then-callback-receiver.js View 2 chunks +23 lines, -20 lines 0 comments Download
A test/webkit/fast/js/Promise-then-callback-receiver-expected.txt View 1 chunk +12 lines, -0 lines 0 comments Download
A test/webkit/fast/js/Promise-then-expected.txt View 1 chunk +17 lines, -0 lines 0 comments Download
A + test/webkit/fast/js/Promise-then-without-callbacks.js View 2 chunks +11 lines, -12 lines 0 comments Download
A test/webkit/fast/js/Promise-then-without-callbacks-expected.txt View 1 chunk +9 lines, -0 lines 0 comments Download
M test/webkit/webkit.status View 1 chunk +3 lines, -0 lines 0 comments Download
M tools/gyp/v8.gyp View 4 chunks +1 line, -5 lines 0 comments Download
M tools/push-to-trunk/auto_roll.py View 6 chunks +40 lines, -66 lines 0 comments Download
M tools/push-to-trunk/common_includes.py View 9 chunks +86 lines, -35 lines 0 comments Download
M tools/push-to-trunk/git_recipes.py View 1 chunk +1 line, -1 line 0 comments Download
M tools/push-to-trunk/merge_to_branch.py View 7 chunks +62 lines, -94 lines 0 comments Download
M tools/push-to-trunk/push_to_trunk.py View 13 chunks +81 lines, -134 lines 0 comments Download
A + tools/push-to-trunk/script_test.py View 2 chunks +22 lines, -19 lines 0 comments Download
M tools/push-to-trunk/test_scripts.py View 19 chunks +275 lines, -273 lines 0 comments Download
M tools/v8heapconst.py View 2 chunks +56 lines, -53 lines 0 comments Download

Messages

Total messages: 1 (0 generated)
dcarney
6 years, 9 months ago (2014-03-14 20:05:25 UTC) #1
Message was sent while issue was closed.
Committed patchset #1 manually as r19950 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698