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

Issue 2284313003: Separate CompilationInfo into its own file. (Closed)

Created:
4 years, 3 months ago by marja
Modified:
4 years, 3 months ago
CC:
v8-reviews_googlegroups.com, v8-x87-ports_googlegroups.com, v8-ppc-ports_googlegroups.com, Yang, v8-mips-ports_googlegroups.com, rmcilroy, oth
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

Separate CompilationInfo into its own file. This way, many files which only need CompilationInfo but not compiler.h and its dependencies can include just compilation-info.h. BUG= Committed: https://crrev.com/06451354461ac0f323b9759092ba43f7d29c2af3 Cr-Commit-Position: refs/heads/master@{#39038}

Patch Set 1 #

Patch Set 2 : rebased #

Patch Set 3 : fix #

Unified diffs Side-by-side diffs Delta from patch set Stats (+399 lines, -939 lines) Patch
M BUILD.gn View 1 1 chunk +2 lines, -0 lines 0 comments Download
M src/background-parsing-task.h View 1 chunk +1 line, -1 line 0 comments Download
M src/codegen.cc View 1 chunk +1 line, -1 line 0 comments Download
A + src/compilation-info.h View 1 7 chunks +18 lines, -246 lines 0 comments Download
A src/compilation-info.cc View 1 chunk +212 lines, -0 lines 0 comments Download
M src/compiler.h View 1 4 chunks +3 lines, -402 lines 0 comments Download
M src/compiler.cc View 4 chunks +16 lines, -197 lines 0 comments Download
M src/compiler-dispatcher/compiler-dispatcher-job.cc View 1 chunk +1 line, -0 lines 0 comments Download
M src/compiler-dispatcher/optimizing-compile-dispatcher.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M src/compiler/arm/code-generator-arm.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/arm64/code-generator-arm64.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/ast-graph-builder.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M src/compiler/ast-loop-assignment-analyzer.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M src/compiler/basic-block-instrumentor.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/bytecode-graph-builder.h View 2 chunks +3 lines, -1 line 0 comments Download
M src/compiler/bytecode-graph-builder.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M src/compiler/code-generator.h View 3 chunks +4 lines, -2 lines 0 comments Download
M src/compiler/code-generator.cc View 2 chunks +3 lines, -0 lines 0 comments Download
M src/compiler/graph-visualizer.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/ia32/code-generator-ia32.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/js-inlining.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/js-inlining-heuristic.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/linkage.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/mips/code-generator-mips.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/mips64/code-generator-mips64.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/osr.cc View 1 chunk +5 lines, -5 lines 0 comments Download
M src/compiler/pipeline.cc View 1 1 chunk +2 lines, -0 lines 0 comments Download
M src/compiler/pipeline-statistics.cc View 1 chunk +2 lines, -1 line 0 comments Download
M src/compiler/ppc/code-generator-ppc.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/s390/code-generator-s390.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/wasm-compiler.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/compiler/x64/code-generator-x64.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/compiler/x87/code-generator-x87.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/crankshaft/compilation-phase.h View 1 chunk +2 lines, -1 line 0 comments Download
M src/crankshaft/hydrogen.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/crankshaft/lithium-codegen.h View 2 chunks +2 lines, -2 lines 0 comments Download
M src/crankshaft/lithium-codegen.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M src/debug/debug-scopes.cc View 1 chunk +0 lines, -1 line 0 comments Download
M src/full-codegen/arm/full-codegen-arm.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M src/full-codegen/arm64/full-codegen-arm64.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M src/full-codegen/full-codegen.h View 4 chunks +9 lines, -32 lines 0 comments Download
M src/full-codegen/full-codegen.cc View 1 3 chunks +43 lines, -0 lines 0 comments Download
M src/full-codegen/ia32/full-codegen-ia32.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M src/full-codegen/mips/full-codegen-mips.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M src/full-codegen/mips64/full-codegen-mips64.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M src/full-codegen/ppc/full-codegen-ppc.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M src/full-codegen/s390/full-codegen-s390.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M src/full-codegen/x64/full-codegen-x64.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M src/full-codegen/x87/full-codegen-x87.cc View 1 2 1 chunk +3 lines, -1 line 0 comments Download
M src/gdb-jit.cc View 1 chunk +0 lines, -1 line 0 comments Download
M src/ic/ic-inl.h View 1 chunk +0 lines, -1 line 0 comments Download
M src/interpreter/bytecode-array-builder.cc View 1 1 chunk +0 lines, -1 line 0 comments Download
M src/interpreter/bytecode-generator.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M src/interpreter/interpreter.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M src/profiler/cpu-profiler.h View 1 chunk +0 lines, -1 line 0 comments Download
M src/profiler/profile-generator.h View 1 chunk +1 line, -1 line 0 comments Download
M src/regexp/jsregexp.cc View 1 chunk +0 lines, -1 line 0 comments Download
M src/runtime-profiler.cc View 1 chunk +1 line, -0 lines 0 comments Download
M src/runtime/runtime-test.cc View 1 chunk +1 line, -0 lines 0 comments Download
M src/type-info.cc View 1 chunk +0 lines, -1 line 0 comments Download
M src/v8.gyp View 1 1 chunk +2 lines, -0 lines 0 comments Download
M src/wasm/wasm-js.cc View 1 chunk +0 lines, -2 lines 0 comments Download
M test/cctest/compiler/codegen-tester.h View 1 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/compiler/function-tester.cc View 1 chunk +1 line, -0 lines 0 comments Download
M test/cctest/compiler/graph-builder-tester.h View 1 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/compiler/test-linkage.cc View 1 chunk +1 line, -0 lines 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/compiler/test-run-bytecode-graph-builder.cc View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/compiler/test-run-inlining.cc View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/compiler/test-run-intrinsics.cc View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/compiler/test-run-stubs.cc View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/interpreter/bytecode-expectations-printer.cc View 1 chunk +0 lines, -1 line 0 comments Download
M test/cctest/interpreter/generate-bytecode-expectations.cc View 1 chunk +0 lines, -1 line 0 comments Download
M test/cctest/interpreter/test-bytecode-generator.cc View 1 chunk +0 lines, -1 line 0 comments Download
M test/cctest/test-field-type-tracking.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M test/unittests/compiler/js-type-feedback-unittest.cc View 1 chunk +2 lines, -3 lines 0 comments Download

Messages

Total messages: 28 (20 generated)
marja
mstarzinger@, ptal
4 years, 3 months ago (2016-08-29 11:43:03 UTC) #14
marja
bmeurer@, titzer@, could you review? git cl owners says: bmeurer: src/compiler/arm/code-generator-arm.cc src/compiler/arm64/code-generator-arm64.cc src/compiler/ast-graph-builder.cc src/compiler/ast-loop-assignment-analyzer.cc src/compiler/basic-block-instrumentor.cc ...
4 years, 3 months ago (2016-08-30 07:58:08 UTC) #18
titzer
On 2016/08/30 07:58:08, marja wrote: > bmeurer@, titzer@, could you review? > > git cl ...
4 years, 3 months ago (2016-08-31 07:55:15 UTC) #19
Benedikt Meurer
Very nice! LGTM.
4 years, 3 months ago (2016-08-31 07:56:18 UTC) #20
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/2284313003/40001
4 years, 3 months ago (2016-08-31 07:57:53 UTC) #22
commit-bot: I haz the power
Committed patchset #3 (id:40001)
4 years, 3 months ago (2016-08-31 08:49:23 UTC) #24
commit-bot: I haz the power
Patchset 3 (id:??) landed as https://crrev.com/06451354461ac0f323b9759092ba43f7d29c2af3 Cr-Commit-Position: refs/heads/master@{#39038}
4 years, 3 months ago (2016-08-31 08:50:10 UTC) #26
Michael Starzinger
4 years, 3 months ago (2016-09-05 09:11:29 UTC) #28
Message was sent while issue was closed.
LGTM.

Powered by Google App Engine
This is Rietveld 408576698