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

Issue 2212383003: Revert of Separate Scope into DeclarationScope and Scope (Closed)

Created:
4 years, 4 months ago by Michael Achenbach
Modified:
4 years, 4 months ago
CC:
v8-reviews_googlegroups.com, oth, rmcilroy, adamk
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

Revert of Separate Scope into DeclarationScope and Scope (patchset #13 id:240001 of https://codereview.chromium.org/2209573002/ ) Reason for revert: [Sheriff] Make leak checker unhappy: https://build.chromium.org/p/client.v8/builders/V8%20Linux64%20-%20debug/builds/10959 Original issue's description: > Separate Scope into DeclarationScope and Scope > > This reduces peak zone memory usage by ~10% on codeload and ~5% on mandreel. > > BUG=v8:5209 > > Committed: https://crrev.com/2648162dcfff622f8587cea2faa8c3af56456968 > Cr-Commit-Position: refs/heads/master@{#38367} TBR=marja@chromium.org,mstarzinger@chromium.org,ahaas@chromium.org,adamk@chromium.org,verwaest@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=v8:5209 Committed: https://crrev.com/2b6675c35051c522570f07e52349fd185bea7176 Cr-Commit-Position: refs/heads/master@{#38380}

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+681 lines, -825 lines) Patch
M src/asmjs/asm-typer.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/asmjs/asm-wasm-builder.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/ast/ast.h View 5 chunks +8 lines, -8 lines 0 comments Download
M src/ast/ast-numbering.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/ast/ast-traversal-visitor.h View 1 chunk +1 line, -1 line 0 comments Download
M src/ast/modules.h View 1 chunk +4 lines, -3 lines 0 comments Download
M src/ast/modules.cc View 1 chunk +4 lines, -3 lines 0 comments Download
M src/ast/prettyprinter.h View 1 chunk +1 line, -1 line 0 comments Download
M src/ast/prettyprinter.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/ast/scopeinfo.cc View 7 chunks +12 lines, -26 lines 0 comments Download
M src/ast/scopes.h View 17 chunks +270 lines, -293 lines 0 comments Download
M src/ast/scopes.cc View 35 chunks +147 lines, -210 lines 0 comments Download
M src/compiler.h View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/ast-graph-builder.h View 1 chunk +1 line, -2 lines 0 comments Download
M src/compiler/ast-graph-builder.cc View 6 chunks +8 lines, -7 lines 0 comments Download
M src/compiler/ast-loop-assignment-analyzer.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/compiler/ast-loop-assignment-analyzer.cc View 1 chunk +5 lines, -3 lines 0 comments Download
M src/crankshaft/arm/lithium-codegen-arm.cc View 1 chunk +3 lines, -4 lines 0 comments Download
M src/crankshaft/arm64/lithium-codegen-arm64.cc View 1 chunk +3 lines, -4 lines 0 comments Download
M src/crankshaft/hydrogen.h View 1 chunk +1 line, -1 line 0 comments Download
M src/crankshaft/hydrogen.cc View 4 chunks +5 lines, -4 lines 0 comments Download
M src/crankshaft/ia32/lithium-codegen-ia32.cc View 1 chunk +3 lines, -4 lines 0 comments Download
M src/crankshaft/mips/lithium-codegen-mips.cc View 1 chunk +3 lines, -4 lines 0 comments Download
M src/crankshaft/mips64/lithium-codegen-mips64.cc View 1 chunk +3 lines, -4 lines 0 comments Download
M src/crankshaft/ppc/lithium-codegen-ppc.cc View 1 chunk +3 lines, -4 lines 0 comments Download
M src/crankshaft/s390/lithium-codegen-s390.cc View 1 chunk +3 lines, -4 lines 0 comments Download
M src/crankshaft/typing.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/crankshaft/typing.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M src/crankshaft/x64/lithium-codegen-x64.cc View 1 chunk +3 lines, -4 lines 0 comments Download
M src/crankshaft/x87/lithium-codegen-x87.cc View 1 chunk +3 lines, -4 lines 0 comments Download
M src/full-codegen/arm/full-codegen-arm.cc View 6 chunks +6 lines, -7 lines 0 comments Download
M src/full-codegen/arm64/full-codegen-arm64.cc View 6 chunks +6 lines, -7 lines 0 comments Download
M src/full-codegen/full-codegen.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/full-codegen/ia32/full-codegen-ia32.cc View 7 chunks +7 lines, -8 lines 0 comments Download
M src/full-codegen/mips/full-codegen-mips.cc View 6 chunks +6 lines, -7 lines 0 comments Download
M src/full-codegen/mips64/full-codegen-mips64.cc View 6 chunks +6 lines, -7 lines 0 comments Download
M src/full-codegen/ppc/full-codegen-ppc.cc View 6 chunks +6 lines, -7 lines 0 comments Download
M src/full-codegen/s390/full-codegen-s390.cc View 6 chunks +6 lines, -7 lines 0 comments Download
M src/full-codegen/x64/full-codegen-x64.cc View 8 chunks +7 lines, -10 lines 0 comments Download
M src/full-codegen/x87/full-codegen-x87.cc View 6 chunks +6 lines, -7 lines 0 comments Download
M src/globals.h View 1 chunk +0 lines, -1 line 0 comments Download
M src/interpreter/bytecode-generator.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/interpreter/bytecode-generator.cc View 2 chunks +2 lines, -3 lines 0 comments Download
M src/parsing/parameter-initializer-rewriter.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/parsing/parser.h View 10 chunks +13 lines, -15 lines 0 comments Download
M src/parsing/parser.cc View 31 chunks +52 lines, -60 lines 0 comments Download
M src/parsing/parser-base.h View 10 chunks +19 lines, -37 lines 0 comments Download
M src/parsing/pattern-rewriter.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/parsing/preparser.h View 3 chunks +5 lines, -4 lines 0 comments Download
M src/parsing/preparser.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M src/parsing/rewriter.h View 2 chunks +2 lines, -3 lines 0 comments Download
M src/parsing/rewriter.cc View 7 chunks +11 lines, -11 lines 0 comments Download
M test/cctest/asmjs/test-asm-typer.cc View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/compiler/test-loop-assignment-analysis.cc View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/test-parsing.cc View 3 chunks +4 lines, -4 lines 0 comments Download

Messages

Total messages: 15 (7 generated)
Michael Achenbach
Created Revert of Separate Scope into DeclarationScope and Scope
4 years, 4 months ago (2016-08-05 12:05:40 UTC) #2
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2212383003/1
4 years, 4 months ago (2016-08-05 12:05:47 UTC) #3
commit-bot: I haz the power
Failed to apply patch for src/ast/scopes.cc: While running git apply --index -3 -p1; error: patch ...
4 years, 4 months ago (2016-08-05 12:06:07 UTC) #5
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2212383003/1
4 years, 4 months ago (2016-08-05 12:08:11 UTC) #7
commit-bot: I haz the power
Failed to apply patch for src/ast/scopes.cc: While running git apply --index -3 -p1; error: patch ...
4 years, 4 months ago (2016-08-05 12:08:25 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2212383003/1
4 years, 4 months ago (2016-08-05 12:35:47 UTC) #11
commit-bot: I haz the power
Committed patchset #1 (id:1)
4 years, 4 months ago (2016-08-05 12:36:30 UTC) #13
commit-bot: I haz the power
4 years, 4 months ago (2016-08-05 12:37:33 UTC) #15
Message was sent while issue was closed.
Patchset 1 (id:??) landed as
https://crrev.com/2b6675c35051c522570f07e52349fd185bea7176
Cr-Commit-Position: refs/heads/master@{#38380}

Powered by Google App Engine
This is Rietveld 408576698