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

Issue 2095893002: Use source position table for unoptimized code. (Closed)

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

Description

Use source position table for unoptimized code. R=bmeurer@chromium.org, jgruber@chromium.org BUG=v8:5117 Committed: https://crrev.com/610a8cbb517eee8f3e03e02a49377309cdbdf198 Cr-Commit-Position: refs/heads/master@{#37309}

Patch Set 1 #

Total comments: 2

Patch Set 2 : fix gn build for unittests #

Patch Set 3 : address comment #

Patch Set 4 : fix #

Total comments: 6

Patch Set 5 : address comments #

Patch Set 6 : readd file #

Patch Set 7 : fixes #

Patch Set 8 : fix profiler #

Patch Set 9 : fix gc mole #

Unified diffs Side-by-side diffs Delta from patch set Stats (+249 lines, -597 lines) Patch
M BUILD.gn View 2 chunks +2 lines, -2 lines 0 comments Download
M src/DEPS View 1 chunk +0 lines, -1 line 0 comments Download
M src/debug/debug.h View 1 2 3 4 5 6 4 chunks +5 lines, -4 lines 0 comments Download
M src/debug/debug.cc View 1 2 3 4 5 6 5 chunks +32 lines, -45 lines 0 comments Download
M src/debug/liveedit.cc View 1 2 3 4 5 6 3 chunks +24 lines, -62 lines 0 comments Download
M src/extensions/statistics-extension.cc View 1 chunk +23 lines, -0 lines 0 comments Download
M src/factory.cc View 1 2 3 4 1 chunk +2 lines, -1 line 0 comments Download
M src/full-codegen/full-codegen.h View 3 chunks +5 lines, -0 lines 0 comments Download
M src/full-codegen/full-codegen.cc View 1 2 3 4 5 6 7 8 7 chunks +18 lines, -16 lines 0 comments Download
M src/interpreter/bytecode-array-writer.h View 1 chunk +4 lines, -2 lines 0 comments Download
M src/interpreter/bytecode-pipeline.cc View 1 chunk +1 line, -1 line 0 comments Download
D src/interpreter/source-position-table.h View 1 chunk +0 lines, -97 lines 0 comments Download
D src/interpreter/source-position-table.cc View 1 chunk +0 lines, -178 lines 0 comments Download
M src/objects.h View 1 2 3 4 5 6 2 chunks +6 lines, -1 line 0 comments Download
M src/objects.cc View 1 2 3 4 5 6 7 chunks +38 lines, -20 lines 0 comments Download
M src/objects-body-descriptors-inl.h View 1 chunk +2 lines, -0 lines 0 comments Download
M src/objects-inl.h View 1 2 3 4 5 6 3 chunks +3 lines, -0 lines 0 comments Download
M src/profiler/heap-snapshot-generator.cc View 1 chunk +4 lines, -0 lines 0 comments Download
M src/profiler/profiler-listener.cc View 1 2 3 4 5 6 7 2 chunks +29 lines, -22 lines 0 comments Download
A + src/source-position-table.h View 6 chunks +11 lines, -17 lines 0 comments Download
A + src/source-position-table.cc View 9 chunks +17 lines, -19 lines 0 comments Download
M src/v8.gyp View 2 chunks +2 lines, -2 lines 0 comments Download
M test/cctest/interpreter/bytecode-expectations-printer.h View 1 chunk +3 lines, -1 line 0 comments Download
M test/cctest/interpreter/bytecode-expectations-printer.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M test/cctest/interpreter/source-position-matcher.h View 1 chunk +1 line, -1 line 0 comments Download
M test/cctest/interpreter/source-position-matcher.cc View 4 chunks +9 lines, -10 lines 0 comments Download
M test/unittests/BUILD.gn View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M test/unittests/interpreter/bytecode-array-writer-unittest.cc View 3 chunks +3 lines, -3 lines 0 comments Download
D test/unittests/interpreter/source-position-table-unittest.cc View 1 chunk +0 lines, -87 lines 0 comments Download
A + test/unittests/source-position-table-unittest.cc View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M test/unittests/unittests.gyp View 1 2 3 4 2 chunks +1 line, -1 line 0 comments Download

Dependent Patchsets:

Messages

Total messages: 37 (17 generated)
Yang
4 years, 6 months ago (2016-06-24 09:43:18 UTC) #1
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2095893002/1
4 years, 6 months ago (2016-06-24 10:03:30 UTC) #4
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_android_arm_compile_rel on tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_android_arm_compile_rel/builds/19725) v8_linux_arm_rel_ng on ...
4 years, 6 months ago (2016-06-24 10:05:21 UTC) #6
rmcilroy
https://codereview.chromium.org/2095893002/diff/1/src/objects-inl.h File src/objects-inl.h (right): https://codereview.chromium.org/2095893002/diff/1/src/objects-inl.h#newcode6497 src/objects-inl.h:6497: size += handler_table()->Size(); Could you add source_position_table()->Size() here as ...
4 years, 6 months ago (2016-06-24 10:16:21 UTC) #8
Yang
This change very slightly increases the memory we use to encode source positions. After running ...
4 years, 6 months ago (2016-06-24 10:47:08 UTC) #9
jgruber
LGTM with comments https://codereview.chromium.org/2095893002/diff/60001/src/debug/debug.cc File src/debug/debug.cc (left): https://codereview.chromium.org/2095893002/diff/60001/src/debug/debug.cc#oldcode151 src/debug/debug.cc:151: if (RelocInfo::IsDebugBreakSlotAtReturn(rmode())) { Just for my ...
4 years, 5 months ago (2016-06-27 09:32:43 UTC) #10
Yang
https://codereview.chromium.org/2095893002/diff/60001/src/debug/debug.cc File src/debug/debug.cc (left): https://codereview.chromium.org/2095893002/diff/60001/src/debug/debug.cc#oldcode151 src/debug/debug.cc:151: if (RelocInfo::IsDebugBreakSlotAtReturn(rmode())) { On 2016/06/27 09:32:42, jgruber wrote: > ...
4 years, 5 months ago (2016-06-27 10:30:23 UTC) #11
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2095893002/80001
4 years, 5 months ago (2016-06-27 10:30:36 UTC) #13
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux64_asan_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux64_asan_rel_ng/builds/3902) v8_linux64_avx2_rel_ng on ...
4 years, 5 months ago (2016-06-27 10:32:38 UTC) #15
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2095893002/100001
4 years, 5 months ago (2016-06-27 11:02:50 UTC) #17
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_mac_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_mac_rel_ng/builds/3890) v8_mac_rel_ng_triggered on ...
4 years, 5 months ago (2016-06-27 11:21:58 UTC) #19
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2095893002/120001
4 years, 5 months ago (2016-06-27 12:15:07 UTC) #21
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2095893002/140001
4 years, 5 months ago (2016-06-27 12:27:20 UTC) #23
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: v8_linux_rel_ng on master.tryserver.v8 (JOB_FAILED, http://build.chromium.org/p/tryserver.v8/builders/v8_linux_rel_ng/builds/7960) v8_linux_rel_ng_triggered on ...
4 years, 5 months ago (2016-06-27 13:12:22 UTC) #25
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2095893002/160001
4 years, 5 months ago (2016-06-28 05:13:30 UTC) #27
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 5 months ago (2016-06-28 05:40:18 UTC) #29
Benedikt Meurer
LGTM.
4 years, 5 months ago (2016-06-28 05:45:58 UTC) #30
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/2095893002/160001
4 years, 5 months ago (2016-06-28 05:47:48 UTC) #33
commit-bot: I haz the power
Committed patchset #9 (id:160001)
4 years, 5 months ago (2016-06-28 05:51:19 UTC) #35
commit-bot: I haz the power
4 years, 5 months ago (2016-06-28 05:53:04 UTC) #37
Message was sent while issue was closed.
Patchset 9 (id:??) landed as
https://crrev.com/610a8cbb517eee8f3e03e02a49377309cdbdf198
Cr-Commit-Position: refs/heads/master@{#37309}

Powered by Google App Engine
This is Rietveld 408576698