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

Issue 2299223002: Compile under-invalidation checking in all builds (Closed)

Created:
4 years, 3 months ago by Xianzhu
Modified:
4 years, 3 months ago
Reviewers:
pdr.
CC:
ajuma+watch_chromium.org, blink-layers+watch_chromium.org, blink-reviews, blink-reviews-paint_chromium.org, blink-reviews-platform-graphics_chromium.org, Rik, chromium-reviews, danakj+watch_chromium.org, dshwang, drott+blinkwatch_chromium.org, krit, f(malita), jbroman, Justin Novosad, pdr+graphicswatchlist_chromium.org, rwlbuis, Stephen Chennney, slimming-paint-reviews_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Compile under-invalidation checking in all builds This will let the tests having under-invalidation issues produce the same result on all builds, so enable us to rebaseline the tests with failure results. In this way we can track either regressions and progressions instead of ignoring the tests. BUG=619103 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Committed: https://crrev.com/1e01747a312617a0088b94f2e7cc55092d50975e Cr-Commit-Position: refs/heads/master@{#416060}

Patch Set 1 #

Total comments: 7

Patch Set 2 : - #

Patch Set 3 : Update FlagExpectations/enable-slimming-paint-v2 #

Patch Set 4 : Resolve conflict #

Unified diffs Side-by-side diffs Delta from patch set Stats (+72 lines, -138 lines) Patch
M third_party/WebKit/LayoutTests/FlagExpectations/enable-slimming-paint-v2 View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/compositing/repaint/page-scale-repaint.html View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/fast/repaint/obscured-background-no-repaint.html View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/fast/repaint/resources/text-based-repaint.js View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/fast/repaint/resources/window-resize-repaint.js View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/resources/run-after-layout-and-paint.js View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/paint/BoxPainter.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/paint/PaintLayerPainter.cpp View 1 2 3 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 2 chunks +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayer.h View 2 chunks +1 line, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp View 7 chunks +3 lines, -15 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/ClipDisplayItem.h View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.h View 1 chunk +2 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/CompositingDisplayItem.h View 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h View 2 chunks +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DrawingDisplayItem.h View 1 chunk +1 line, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DrawingDisplayItem.cpp View 3 chunks +1 line, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/FilterDisplayItem.h View 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/FloatClipDisplayItem.h View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.h View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/PaintController.h View 1 4 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp View 22 chunks +24 lines, -38 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp View 20 chunks +20 lines, -29 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/ScrollDisplayItem.h View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/Transform3DDisplayItem.h View 1 chunk +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/paint/TransformDisplayItem.h View 1 chunk +0 lines, -2 lines 0 comments Download

Messages

Total messages: 24 (12 generated)
Xianzhu
4 years, 3 months ago (2016-09-01 16:35:43 UTC) #3
pdr.
https://codereview.chromium.org/2299223002/diff/1/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp File third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp (right): https://codereview.chromium.org/2299223002/diff/1/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp#newcode95 third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp:95: Region paintInvalidationRegionSinceLastPaint; Region is a huge datastructure. Do we ...
4 years, 3 months ago (2016-09-01 16:48:52 UTC) #4
Xianzhu
https://codereview.chromium.org/2299223002/diff/1/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp File third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp (right): https://codereview.chromium.org/2299223002/diff/1/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp#newcode95 third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp:95: Region paintInvalidationRegionSinceLastPaint; On 2016/09/01 16:48:52, pdr. wrote: > Region ...
4 years, 3 months ago (2016-09-01 17:00:03 UTC) #5
pdr.
On 2016/09/01 at 17:00:03, wangxianzhu wrote: > https://codereview.chromium.org/2299223002/diff/1/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp > File third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp (right): > > https://codereview.chromium.org/2299223002/diff/1/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp#newcode95 ...
4 years, 3 months ago (2016-09-01 17:08:10 UTC) #6
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/2299223002/20001
4 years, 3 months ago (2016-09-01 17:10:58 UTC) #8
commit-bot: I haz the power
Try jobs failed on following builders: linux_layout_tests_slimming_paint_v2 on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_layout_tests_slimming_paint_v2/builds/272)
4 years, 3 months ago (2016-09-01 18:46:18 UTC) #10
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/2299223002/40001
4 years, 3 months ago (2016-09-01 19:06:55 UTC) #13
commit-bot: I haz the power
Try jobs failed on following builders: chromeos_amd64-generic_chromium_compile_only_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromeos_amd64-generic_chromium_compile_only_ng/builds/193512) linux_chromium_chromeos_ozone_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, ...
4 years, 3 months ago (2016-09-01 19:26:00 UTC) #16
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/2299223002/60001
4 years, 3 months ago (2016-09-01 19:39:33 UTC) #19
commit-bot: I haz the power
Committed patchset #4 (id:60001)
4 years, 3 months ago (2016-09-01 21:28:19 UTC) #21
commit-bot: I haz the power
Patchset 4 (id:??) landed as https://crrev.com/1e01747a312617a0088b94f2e7cc55092d50975e Cr-Commit-Position: refs/heads/master@{#416060}
4 years, 3 months ago (2016-09-01 21:29:57 UTC) #23
Xianzhu
4 years, 3 months ago (2016-09-01 23:06:24 UTC) #24
Message was sent while issue was closed.
A revert of this CL (patchset #4 id:60001) has been created in
https://codereview.chromium.org/2306783002/ by wangxianzhu@chromium.org.

The reason for reverting is: On Mac and Windows strange pixel under
invalidations are reported, e.g.:
https://storage.googleapis.com/chromium-layout-test-archives/WebKit_Win10/142....

Powered by Google App Engine
This is Rietveld 408576698